/* Popular Products Slider (Slider-Catalog) */

.popular-products-section {
    position: relative;
    width: 100%;
    height: 842px;
    background: #F4F4F4;
    overflow: hidden;
}

.popular-products-section__wrapper {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    height: 100%;
}

.popular-products-section__header {
    position: absolute;
    top: 64px;
    left: 180px;
    width: calc(100% - 360px);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
    z-index: 5;
}

.popular-products-section__title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: #0C181A;
    margin: 0;
}

.popular-products-section__filters {
    display: flex;
    gap: 8px;
    align-items: center;
}

.popular-products-section__filter {
    border: 1px solid #0C181A;
    border-radius: 22px;
    padding: 9px 20px 8px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    background: transparent;
    color: #0C181A;
    cursor: pointer;
    transition: all 0.2s ease;
}

.popular-products-section__filter--active {
    background: #57A7B3;
    color: #FFFFFF;
    border-color: #57A7B3;
}

.popular-products-section__arrows {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: flex-end;
}

.popular-products-section__arrow {
    width: 40px;
    height: 40px;
    border: 0.5px solid #0C181A;
    border-radius: 60px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.popular-products-section__arrow:hover {
    background: rgba(12, 24, 26, 0.05);
}

.popular-products-section__arrow--prev svg {
    transform: rotate(180deg);
}

.popular-products-section__slider {
    position: absolute;
    top: 110px;
    left: 0;
    width: 100%;
    height: 607px;
    overflow: hidden;
}

.popular-products-section__slider-container {
    position: absolute;
    top: 26px;
    left: 172px;
    display: flex;
    gap: 10px;
    padding-right: 60px;
    transition: transform 0.3s ease;
}

.popular-products-card {
    width: 368px;
    height: 560px;
    background: #FFFFFF;
    padding: 8px;
    box-sizing: border-box;
    flex-shrink: 0;
    position: relative;
}

.popular-products-card__link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.popular-products-card__image {
    width: 100%;
    height: 396px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.popular-products-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-products-card__label {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 5px 12px;
    border-radius: 22px;
    background: #FFFFFF;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: none;
    color: #0C181A;
}

.popular-products-card__favorite {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #EEEEEE;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.popular-products-card__favorite img {
    width: 24px;
    height: 24px;
}

.popular-products-card__content {
    padding: 18px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.popular-products-card__title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    color: #0C181A;
    margin: 0;
    height: 36px;
    overflow: hidden;
}

.popular-products-card__colors {
    display: flex;
    gap: 5px;
    align-items: center;
}

.popular-products-card__color {
    width: 24px;
    height: 24px;
    border-radius: 5px;
    background: #EBEBEB;
    display: inline-flex;
}

.popular-products-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.popular-products-card__prices {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.popular-products-card__price-current {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #0C181A;
}

.popular-products-card__price-old {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #0C181A;
    text-decoration: line-through;
}

.popular-products-card__cart {
    width: 64px;
    height: 36px;
    border-radius: 30px;
    border: none;
    background: #0C181A;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.popular-products-card__cart-icon {
    width: 26px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popular-products-card__cart-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.popular-products-section__line {
    position: absolute;
    left: 180px;
    top: 742px;
    width: calc(100% - 360px);
    height: 1px;
    background: #DEDEDE;
}

.popular-products-section__line-slider {
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    background: #0C181A;
    width: 460px;
}

@media screen and (max-width: 1600px) {
    .popular-products-section__header {
        left: clamp(20px, 8%, 180px);
        width: calc(100% - clamp(20px, 8%, 180px) * 2);
    }

    .popular-products-section__slider-container {
        left: clamp(20px, 8%, 180px);
        width: calc(100% - clamp(20px, 8%, 180px));
    }

    .popular-products-section__line {
        left: clamp(20px, 8%, 180px);
        width: calc(100% - clamp(20px, 8%, 180px) * 2);
    }
}

@media screen and (max-width: 1199px) {
    .popular-products-section {
        height: auto;
        padding-bottom: 60px;
    }

    .popular-products-section__header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .popular-products-section__filters {
        flex-wrap: wrap;
    }

    .popular-products-section__slider {
        position: relative;
        top: 200px;
        height: auto;
        padding-bottom: 100px;
    }

    .popular-products-section__slider-container {
        position: relative;
        top: 0;
        left: 0;
        padding: 0 20px;
    }

    .popular-products-section__line {
        top: auto;
        bottom: 20px;
    }
}

/* Mobile (640px и меньше) */
@media screen and (max-width: 639px) {
    .popular-products-section {
        height: auto;
        padding: 40px 0 60px;
    }
    
    .popular-products-section__wrapper {
        height: auto;
    }
    
    .popular-products-section__header {
        position: static;
        width: 100%;
        padding: 0 20px;
        margin-bottom: 24px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .popular-products-section__title {
        font-size: 20px;
    }
    
    .popular-products-section__filters {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .popular-products-section__filter {
        padding: 7px 14px;
        font-size: 10px;
    }
    
    .popular-products-section__arrows {
        justify-content: flex-start;
    }
    
    .popular-products-section__arrow {
        width: 36px;
        height: 36px;
    }
    
    .popular-products-section__slider {
        position: static;
        width: 100%;
        height: auto;
        padding-bottom: 0;
    }
    
    .popular-products-section__slider-container {
        position: static;
        width: 100%;
        padding: 0 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .popular-products-section__slider-container::-webkit-scrollbar {
        display: none;
    }
    
    .popular-products-card {
        width: 280px;
        min-width: 280px;
        height: auto;
        scroll-snap-align: start;
    }
    
    .popular-products-card__image {
        height: 320px;
    }
    
    .popular-products-card__title {
        font-size: 14px;
    }
    
    .popular-products-card__price-current {
        font-size: 18px;
    }
    
    .popular-products-card__price-old {
        font-size: 13px;
    }
    
    .popular-products-section__line {
        position: static;
        width: 100%;
        margin: 32px 20px 0;
    }
    
    .popular-products-section__line-slider {
        width: 200px;
    }
}

/* Small Mobile (480px и меньше) */
@media screen and (max-width: 479px) {
    .popular-products-section {
        padding: 32px 0 48px;
    }
    
    .popular-products-section__header {
        padding: 0 16px;
        margin-bottom: 20px;
        gap: 16px;
    }
    
    .popular-products-section__title {
        font-size: 18px;
    }
    
    .popular-products-section__filter {
        padding: 6px 12px;
        font-size: 9px;
    }
    
    .popular-products-section__arrow {
        width: 32px;
        height: 32px;
    }
    
    .popular-products-section__slider-container {
        padding: 0 16px;
    }
    
    .popular-products-card {
        width: 240px;
        min-width: 240px;
    }
    
    .popular-products-card__image {
        height: 280px;
    }
    
    .popular-products-card__title {
        font-size: 13px;
    }
    
    .popular-products-card__price-current {
        font-size: 16px;
    }
    
    .popular-products-section__line {
        margin: 24px 16px 0;
    }
    
    .popular-products-section__line-slider {
        width: 150px;
    }
}

