.product-collection {
    padding: 60px 0;
}
.product-collection .collection-holder {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.collection-holder .collection-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: 
        linear-gradient(224deg, rgba(255, 255, 255, 0) 0%, #fff 100%),
        url('img/col-bg.svg') center / cover no-repeat,
        #ff92b3;
    padding: 16px;
    border-radius: 20px;
    max-height: 546px;
    overflow: hidden;
}
.collection-holder .collection-info .tabs {
    display: flex;
    align-items: center;
    background-color: var(--white-color);
    border-radius: 32px;
    padding: 4px;
    margin-bottom: 16px;
    width: 100%;
}
.collection-holder .collection-info .tabs button {
    width: 50%;
    background-color: transparent;
    padding: 10px;
    font-size: var(--h6-size);
    line-height: 120%;
    font-weight: 700;
    border-radius: 24px;
}
.collection-holder .collection-info .tabs button.active {
    color: var(--white-color);
    background-color: var(--main-color);
}
.collection-holder .collection-info h3 {
    color: var(--gray-black);
    font-weight: 700;
    font-size: 30px;
}
.collection-holder .collection-info span {
    color: var(--main-color);
}
.collection-holder .col-content {
    max-width: 490px;
    padding: 8px;
}
.collection-holder .collection-info .col-content-descr {
    margin-top: 16px;
    font-size: var(--p2-size);
    line-height: 125%;
    font-weight: 600;
}
.collection-holder .content-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.collection-holder .content-products .col-product {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 24px;
    background-color: var(--gray-3);
    border-radius: 20px;
    min-height: 265px;
    overflow: hidden;
}
.collection-holder .col-product .col-prod-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.collection-holder .col-product .col-prod-img img {
    object-fit: contain;
    object-position: bottom;
    width: 100%;
    height: 100%;
    transform: scale(1);
    transition: .15s ease-in-out;
}
.collection-holder .col-product .col-prod-title {
    color: var(--gray-black);
    font-weight: 700;
    line-height: 100%;
    z-index: 2;
}
.collection-holder .col-product .product-subtitle {
    font-size: var(--h6-size);
    color: var(--gray-1);
    font-weight: 700;
    line-height: 100%;
    margin-top: 8px;
    z-index: 2;
}
@media screen and (min-width: 768px) {
    .collection-holder .col-product:hover .col-prod-img img {
        transform: scale(1.05);
    }
}
@media screen and (max-width: 991px) {
    .product-collection .collection-holder {
        grid-template-columns: repeat(1, 1fr);
    }
    .collection-holder .collection-info h3 {
        max-width: 400px;
        width: 100%;
        font-size: 26px;
    }
    .collection-holder .collection-info .col-content-descr {
        max-width: 320px;
        width: 100%;
    }
    .collection-holder .col-content {
        padding: 0;
        margin-bottom: 20px;
    }
    .collection-holder .content-products {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    .collection-holder .collection-info .tabs {
        width: fit-content;
    }
    .collection-holder .collection-info .tabs button {
        width: fit-content;
        padding: 8px 24px;
    }
    .collection-holder .content-products .col-product {
        border-radius: 12px;
        min-height: 140px;
    }
    .collection-holder .col-product .col-prod-title {
        font-size: 14px;
    }
    .collection-holder .col-product .product-subtitle {
        font-size: 14px;
    }
}
@media screen and (max-width: 767px) {
    .product-collection {
        padding: 16px 0;
    }
}
@media screen and (max-width: 700px) {
    .collection-holder .collection-info .tabs {
        margin-bottom: 80px;
    }
    .collection-holder .collection-info .tabs button {
        padding: 8px 16px;
    }
    .collection-holder .content-products {
        grid-template-columns: repeat(2, 1fr);
    }
    .collection-holder .col-product .col-prod-img img {
        object-position: bottom right;
    }
    .collection-holder .collection-info .col-content-descr {
        margin-top: 12px;
    }
    .product-collection .collection-holder {
        gap: 10px;
    }
}