
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body { 
    margin: 0; 
    background-color: #F8F9FA; 
    font-family: 'Inter', sans-serif;
}
        
        .new-figma-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 40px;
            background-color: #ffffff;
            border-bottom: 1px solid #F0F0F0;
            margin-bottom: 0px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-left { display: flex; align-items: center; gap: 20px; }
        .menu-btn {
            width: 44px; height: 44px;
            border-radius: 50%;
            background-color: #F8F9FA;
            border: none;
            display: flex; align-items: center; justify-content: center;
            font-size: 16px; color: #111; cursor: pointer;
            transition: 0.2s;
        }
        .menu-btn:hover { background-color: #E2E2E2; }
        
        .header-logo {
        display: flex ;
        flex-direction: column ;
        transition: max-width 0.3s ease, opacity 0.2s ease;
        max-width: 250px;
        opacity: 1;
        overflow: hidden;
        white-space: nowrap ;
        }

        .logo-main { font-size: 24px; font-weight: 600; color: #111; letter-spacing: -0.5px; }
        .logo-sub { font-size: 7px; font-weight: 600; letter-spacing: 1.5px; color: #555; margin-top: 4px; }
        
        .header-center { flex: 1; display: flex; justify-content: center; padding: 0 40px; }
        .search-bar {
            display: flex; align-items: center;
            background-color: #FFFFFF;
            border: 1px solid #E5E5E5;
            border-radius: 8px;
            padding: 10px 15px;
            width: 100%; max-width: 500px;
            gap: 10px;
        }
        .search-bar i { color: #999; }
        .search-bar input { border: none; outline: none; width: 100%; font-family: 'Inter', sans-serif; font-size: 14px; }
        .search-bar input::placeholder { color: #999; }
        
        .header-right { display: flex; align-items: center; }
        .header-cart-btn {
            display: flex; align-items: center; gap: 10px;
            background-color: #F8F9FA;
            border: none; border-radius: 30px;
            padding: 8px 15px 8px 10px;
            font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500;
            color: #111; cursor: pointer; transition: 0.2s;
        }
        .header-cart-btn:hover { background-color: #E2E2E2; }
        .cart-badge-new {
            background-color: #FF2D55; color: white;
            width: 22px; height: 22px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 11px; font-weight: 600;
        }

        .product-controls {
            display: flex;
            flex-direction: column; 
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .discount-wrap {
            display: flex; align-items: center; gap: 5px;
            color: #FF2D55; font-size: 18px; font-weight: 600;
        }
        .discount-icon {
            width: 18px; height: 18px;
            background-color: #FF2D55; color: #fff;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 9px;
        }
        
        .action-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }
        .btn-buy-now {
            flex: 0 0 280px; 
            height: 54px;
            background-color: #0A0A0A;
            color: #FFFFFF;
            border: none; border-radius: 8px;
            font-size: 16px; font-weight: 500;
            cursor: pointer;
        }
        .btn-add-cart {
            /*width: 54px; height: 54px;
            border-radius: 50%;
            background-color: #F8F9FA;
            border: 1px solid #E5E5E5;
            font-size: 18px; color: #333;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;*/

            flex: 0 0 280px; 
            height: 54px;
            background-color: #F4F4F5;
            color: #000000;
            border: none; border-radius: 8px;
            font-size: 16px; font-weight: 500;
            cursor: pointer;
        }




.product-page {
    max-width: 1240px;
    margin: 0 auto;
    padding: 30px 20px;
}


.product-page *:not(i) {
    font-family: 'Inter', sans-serif ;
}
.header-logo-a{
    text-decoration: none ;
}


.img-placeholder {
    background-color: #E2E2E2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: 500;
    font-size: 14px;
    border-radius: inherit;
}
.img-placeholder img{
    width: 100% ;
    height: 100% ;
    object-fit: cover ;
    display: block ;
    border-radius: 12px;
}
.main-photo-placeholder {
    font-size: 20px;
    color: #888;
}

.breadcrumbs {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.breadcrumbs a {
    color: #1A1A1A;
    text-decoration: none;
    font-weight: 500;
}
.breadcrumbs a i {
    font-size: 12px;
    margin-right: 5px;
}
.breadcrumbs .separator {
    color: #999;
}
.breadcrumbs .current {
    color: #666;
}

.product-main-grid {
            display: grid ;
            grid-template-columns: 440px 1fr ; 
            gap: 30px ;
            align-items: start ;
        }

        .product-gallery-column {
            background-color: #FFFFFF ;
            padding: 16px ; 
            border-radius: 16px ;
            
            position: sticky ;
            top: 140px ; 
            z-index: 10 ;
            
            width: 440px ; 
            box-sizing: border-box ;
        }

        .main-image-box {
            position: relative ;
            border-radius: 12px ;
            overflow: hidden ;
            margin-bottom: 16px ;
            
            width: 408px ; 
            height: 408px ; 
            aspect-ratio: auto ;
        }

       .thumbnail-list {
    display: flex ;
    flex-wrap: nowrap ;
    justify-content: flex-start ; 
    gap: 10px ;
    width: 100% ;
    max-width: 408px ;
    overflow-x: auto ; 
    scroll-behavior: smooth ;
    -webkit-overflow-scrolling: touch ;
    padding-bottom: 12px ; 
    scrollbar-width: thin ;
    scrollbar-color: #D1D5DB transparent ;
    user-select: none ;
}

.thumbnail-list:focus, 
.thumbnail-list:active {
    outline: none ;
}

.thumbnail-list::-webkit-scrollbar {
    height: 6px ; 
    display: block ;
}
.thumbnail-list::-webkit-scrollbar-track {
    background: transparent ; 
}
.thumbnail-list::-webkit-scrollbar-thumb {
    background: #D1D5DB ; 
    border-radius: 10px ;
}
.thumbnail-list::-webkit-scrollbar-thumb:hover {
    background: #9CA3AF ; 
}

.thumb {
    width: 80px ;
    height: 80px ;
    flex-shrink: 0 ;
    border-radius: 8px ;
    cursor: pointer ;
    border: 2px solid transparent ;
    padding: 2px ; 
    box-sizing: border-box ;
}

.thumbnail-list .thumb.active {
    border-color: #111 ; 
}

.thumb img {
    -webkit-user-drag: none ;
    pointer-events: none ;
}


.thumbnail-list .thumb {
    border-radius: 8px ;
    padding: 2px ;
    border: 2px solid transparent ;
    box-sizing: border-box ;
    background-color: transparent ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
}

.thumbnail-list .thumb img {
    width: 100% ;
    height: 100% ;
    object-fit: cover ;
    border-radius: 5px ;
    display: block ;
    margin: 0 ;
    -webkit-user-drag: none ;
    pointer-events: none ;
}

.product-info-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    text-align: left ;
}

.product-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
}

.status-badge {
    display: inline-block;
    background-color: #84CC16;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.product-controls {
    display: flex;
    flex-direction: column; 
    align-items: flex-start ;
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
}

.size-selector, 
.quantity-selector {
    display: flex;
    justify-content: flex-start ; 
    width: 100%;
    gap: 14px ;
    flex-wrap: wrap;
}

.size-option input {
    display: none;
}

.size-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 46px;
    padding: 0 15px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
    color: #000000;
    white-space: nowrap;
    box-sizing: border-box;
}

.size-option input:checked + span {
    border-color: #1A1A1A;
    background: #000000;
    color: #ffffff;
    font-weight: 600;
    border-width: 2px;
}


@media (max-width: 1024px) {
    .size-selector {
        gap: 10px ;
    }
    .size-option span {
        min-width: 44px;
        height: 44px;
        padding: 0 12px;
        font-size: 13px;
    }
}

@media (max-width: 700px) {
    .size-selector {
        gap: 8px ;
    }
    .size-option span {
        min-width: 40px;
        height: 40px;
        padding: 0 10px;
        font-size: 12px;
        border-radius: 6px;
    }
}


.quantity-selector {
    display: flex;
    align-items: center;
    gap: 12px;
}
.qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background-color: #F0F0F0;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.quantity-selector input {
    width: 30px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
    background: transparent;
    outline: none;
}

.price-block {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
.current-price {
    font-size: 28px;
    font-weight: 700;
    color: #FF2D55;
}
.old-price {
    font-size: 16px;
    color: #A0A0A0;
    text-decoration: line-through;
    font-weight: 500;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}
.btn-buy-now {
    flex: 0 0 280px;
    height: 54px;
    background-color: #0A0A0A;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}
.btn-buy-now:hover {
    background-color: #333;
}

.btn-add-cart:hover {
    background-color: #E5E5E5;
}

.promo-banner {
    background-color: #FEF9C3;
    color: #A16207;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
    background-color: #F8F9FA;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 35px;
    font-size: 14px;
    color: #333;
}
.spec-item strong {
    color: #111;
    font-weight: 600;
    margin-right: 5px;
}

.similar-products h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111;
}
.similar-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.similar-thumb {
    position: relative ;
    width: calc(100% / 8 - 11px);
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    background-color: #E2E2E2;
    overflow: hidden ; 
    padding: 0 ;
    border: none ;
}

.similar-thumb:hover {
    opacity: 0.8;
}

.similar-thumb a {
    display: block ;
    width: 100% ;
    height: 100% ;
}

.similar-thumb img {
    position: absolute ;
    top: 0 ;
    left: 0 ;
    width: 100% ;
    height: 100% ;
    object-fit: cover ;
    display: block ;
    margin: 0 ;
    padding: 0 ;
    border: none ;
}

.product-description-section {
    max-width: 860px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.desc-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.main-desc-card {
    padding: 45px;
}

.small-desc-card {
    padding: 30px 45px;
}

.desc-divider {
    height: 1px;
    background-color: #F0F0F0;
    margin: 35px 0;
}

.desc-block h3, 
.small-desc-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-bottom: 15px;
}

.desc-block p, 
.small-desc-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.desc-block p:last-child {
    margin-bottom: 0;
}

.mt-15 {
    margin-top: 15px ;
}

.custom-list, 
.custom-numbered-list {
    margin: 15px 0;
    padding-left: 0;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

.custom-list {
    list-style-type: none;
}
.custom-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
}
.custom-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #111;
    font-weight: bold;
}

.custom-numbered-list {
    padding-left: 20px;
}
.custom-numbered-list li {
    margin-bottom: 8px;
}


.product-gallery-column {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 16px;
    position: sticky;
    top: 75px;
    align-self: start;
}

.product-details-column {
    display: flex;
    flex-direction: column;
    gap: 20px; 
}

.product-description-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px; 
    margin: 0;
}



.bought-together-section {
    background-color: #f4f5f6; 
    border: 2px dashed #d1d5db; 
    border-radius: 24px; 
    padding: 40px 30px;
    width: 100%; 
    max-width: 100%;
    box-sizing: border-box;
    margin: 60px auto;
    font-family: 'Inter', sans-serif ;
}

.bought-together-title {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: #111;
    margin-bottom: 30px;
}

.bought-together-products {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.bought-product-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 12px;
    width: 250px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.bought-img-wrap {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.bought-name {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
    text-align: left;
}

.bought-price-block {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bought-current {
    font-size: 15px;
    font-weight: 700;
    color: #FF2D55;
}

.bought-old {
    font-size: 11px;
    color: #A0A0A0;
    text-decoration: line-through;
    font-weight: 500;
}

.bought-plus {
    font-size: 45px;
    font-weight: 300;
    color: #65C466;
    line-height: 1;
    margin: 0 10px;
}

.bought-total-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.total-label {
    font-size: 22px;
    font-weight: 600;
    color: #111;
}

.total-current {
    font-size: 24px;
    font-weight: 700;
    color: #FF2D55;
}

.total-old {
    font-size: 14px;
    color: #A0A0A0;
    text-decoration: line-through;
    font-weight: 500;
}

.bought-btn-wrap {
    text-align: center;
}

.btn-buy-together {
    background-color: #0A0A0A;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 45px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-buy-together:hover {
    background-color: #333;
}




.gift-banner-section {
    max-width: 1320px;
    margin: 0 auto 80px auto;
    padding: 75px 20px; 
    width: 100%;
    box-sizing: border-box;
}
.gift-banner-section-catalog {
            max-width: 1320px;
            margin: 0 auto 80px auto;
            padding: 50px 5px; 
            width: 100%;
            box-sizing: border-box;
        }

.gift-banner-placeholder-catalog {
    position: relative ; 
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    aspect-ratio: 1280 / 550;
    background-color: #E2E2E2;
    border-radius: 24px; 
    display: block ;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); 
    overflow: hidden ; 
    padding: 0 ;
    border: none ;
}

.gift-banner-placeholder-catalog picture {
    display: block ;
    width: 100% ;
    height: 100% ;
}

.gift-banner-img-catalog, 
.gift-banner-placeholder-catalog img {
    position: absolute ;
    top: 0 ;
    left: 0 ;
    width: 100% ;
    height: 100% ;
    object-fit: cover ;
    display: block ;
    margin: 0 ;
    padding: 0 ;
    border: none ;
}

.gift-banner-placeholder {
    position: relative ; 
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    aspect-ratio: 1280 / 550;
    background-color: #E2E2E2;
    border-radius: 24px; 
    display: block ;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); 
    overflow: hidden ; 
    padding: 0 ;
    border: none ;
}

.gift-banner-placeholder picture {
    display: block ;
    width: 100% ;
    height: 100% ;
}

.gift-banner-img, 
.gift-banner-placeholder img {
    position: absolute ;
    top: 0 ;
    left: 0 ;
    width: 100% ;
    height: 100% ;
    object-fit: cover ;
    display: block ;
    margin: 0 ;
    padding: 0 ;
    border: none ;
}
/*валідація полів*/
.input-error {
    border-color: #ef4444 ; /* Червона рамка */
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2); /* Легке червоне світіння */
}



        



        .recommended-section {
            position: relative;
            max-width: 1300px;
            margin: 30px auto 0 auto ;
            padding: 30px 20px 60px 20px ;
            font-family: 'Inter', sans-serif ;
            background: transparent ;
            box-shadow: none ; 
            clip-path: none ;
            z-index: 1;
        }

        .recommended-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100vw;
            height: 100%;
            background-color: #F4F5F7;
            z-index: -1;
        }

        .recommended-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            margin-top: 80px;
        }

        .recommended-title {
            font-size: 32px;
            font-weight: 600;
            color: #111;
            margin: 0;
        }

        .recommended-nav {
            display: flex;
            gap: 12px;
        }

        .rec-nav-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background-color: #0A0A0A;
            color: #fff;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            cursor: pointer;
            transition: 0.3s;
        }

        .rec-nav-btn:hover {
            background-color: #333;
        }

        .recommended-slider-wrapper {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .recommended-track {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            padding-bottom: 20px;
            -ms-overflow-style: none;  
            scrollbar-width: none;  
        }
        .recommended-track::-webkit-scrollbar { 
            display: none; 
        }

        .rec-card {
            flex: 0 0 260px;
            background-color: #fff;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            text-decoration: none ;
            color: inherit;
            scroll-snap-align: start;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
            overflow: hidden;
            transition: transform 0.3s;
        }

        .rec-card:hover {
            transform: translateY(-5px);
        }

        .rec-card-inner {
            padding: 12px 12px 20px 12px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .rec-img-wrap {
            width: 100%;
            aspect-ratio: 4/5;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 15px;
        }
       
        .rec-name {
            font-size: 16px;
            font-weight: 600;
            color: #111;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .rec-price-block {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: auto;
        }

        .rec-current {
            font-size: 16px;
            font-weight: 700;
            color: #FF2D55;
        }

        .rec-old {
            font-size: 12px;
            color: #A0A0A0;
            text-decoration: line-through;
            font-weight: 500;
        }

        .rec-badge {
            width: 100%;
            padding: 8px 0;
            text-align: center;
            font-size: 12px;
            font-weight: 600;
            color: #fff;
        }

        .badge-green { 
            background-color: #84CC16; 
        }

        .badge-yellow { 
            background-color: #EFB100; 
        }

        .badge-red { 
            background-color: #FF2D55; 
        }




        /*футер*/

        .blue-site-footer {
            background-color: #08263a;
            color: #e0e5e9;
            padding: 70px 20px 40px 20px;
            font-family: 'Inter', sans-serif ;
        }

        .blue-footer-container {
            max-width: 1240px;
            margin: 0 auto;
        }

        .blue-footer-top {
            display: grid;
            grid-template-columns: 2fr 1.5fr 1.5fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo-img {
            max-width: 200px;
            height: auto;
            display: block;
            margin-bottom: 10px;
        }

        .footer-tagline {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2.5px;
            color: #ffffff;
            margin-bottom: 30px;
        }

        .blue-footer-socials {
            display: flex;
            gap: 15px;
        }

        .blue-footer-socials a {
            color: #ffffff;
            font-size: 28px;
            text-decoration: none;
            transition: 0.3s;
        }

        .blue-footer-socials a:hover {
            opacity: 0.7;
        }

        .blue-footer-info h4, 
        .blue-footer-contacts h4, 
        .blue-cat-col h4 {
            font-size: 15px;
            font-weight: 600;
            color: #ffffff;
            margin-top: 0;
            margin-bottom: 25px;
        }

        .blue-footer-info ul, 
        .blue-cat-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .blue-footer-info li, 
        .blue-cat-col li {
            margin-bottom: 12px;
        }

        .blue-footer-info a, 
        .blue-cat-col a,
        .blue-footer-contacts a {
            color: #e0e5e9;
            text-decoration: none;
            font-size: 14px;
            transition: 0.2s;
        }

        .blue-footer-info a:hover, 
        .blue-cat-col a:hover,
        .blue-footer-contacts a:hover {
            color: #ffffff;
        }

        .blue-footer-contacts p {
            font-size: 14px;
            line-height: 1.6;
            margin-top: 0;
            margin-bottom: 20px;
        }

        .blue-footer-contacts .work-hours {
            margin-bottom: 15px;
        }

        .blue-footer-payments {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
        }

        .blue-footer-payments img {
            height: 25px;
            width: auto;
            filter: brightness(0) invert(1);
        }

        .blue-footer-divider {
            border: none;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            margin: 40px 0;
        }

        .blue-footer-categories {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        .blue-footer-copyright {
            text-align: center;
            font-size: 13px;
            color: #0ea5e9;
            font-weight: 500;
        }

        /*animation for product-card*/


        .bought-product-card, .rec-card {
            background-color: #fff ;
            border-radius: 16px ;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) ;
            display: flex ;
            flex-direction: column ;
            overflow: hidden ;
            transition: transform 0.3s ease, box-shadow 0.3s ease ;
        }

        .bought-product-card:hover, .rec-card:hover {
            transform: translateY(-5px) ;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) ;
            z-index: 2;
        }

        .bought-info, .rec-card-inner {
            padding: 15px ;
            display: flex ;
            flex-direction: column ;
            flex: 1;
        }

        .bought-img-wrap, .rec-img-wrap {
            width: 100% ;
            overflow: hidden ;
            border-radius: 12px 12px 0 0 ;
        }

        .bought-name, .rec-name {
            margin-bottom: 12px ;
            font-size: 16px ;
            font-weight: 600 ;
            color: #111 ;
        }

        .hover-btn-wrapper {
            display: grid ;
            grid-template-rows: 0fr ;
            opacity: 0 ;
            margin-top: 0 ;
            transition: grid-template-rows 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease ;
        }

        .hover-btn-inner {
            overflow: hidden ;
        }

       /* .slide-up-cart-btn {
            width: 100% ;
            background-color: #0A0A0A ;
            color: #ffffff ;
            border: none ;
            border-radius: 8px ;
            padding: 12px 20px ;
            font-family: 'Inter', sans-serif ;
            font-size: 15px ;
            font-weight: 500 ;
            cursor: pointer ;
            transition: background-color 0.2s ease ;
        }

        .slide-up-cart-btn:hover {
            background-color: #333 ;
        }*/

        .bought-product-card:hover .hover-btn-wrapper, 
        .rec-card:hover .hover-btn-wrapper {
            grid-template-rows: 1fr ;
            opacity: 1 ;
            margin-top: 15px ;
        }

        @media (max-width: 768px) {
            .hover-btn-wrapper {
                grid-template-rows: 1fr ;
                opacity: 1 ;
                margin-top: 15px ;
            }
            .bought-product-card:hover, .rec-card:hover {
                transform: none ;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) ;
            }
        }

        /*catalog animatiob buy*/

.product-card {
    background-color: #fff ;
    border-radius: 16px ;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) ;
    display: flex ;
    flex-direction: column ;
    overflow: hidden ;
    transition: transform 0.3s ease, box-shadow 0.3s ease ;
    position: relative;
    height: 100% ; 
}

.product-card:hover {
    transform: translateY(-5px) ;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) ;
    z-index: 2;
}
.product-info {
    padding: 15px ;
    display: flex ;
    flex-direction: column ;
    flex: 1;
}

.product-img-wrap {
    width: 100% ;
    overflow: hidden ;
    border-radius: 12px 12px 0 0 ;
}

.product-name {
    margin-bottom: 12px ;
    font-size: 16px ;
    font-weight: 600 ;
    color: #111 ;
    flex-grow: 1 ; 
}

.hover-btn-wrapper {
    display: grid ;
    grid-template-rows: 0fr ;
    opacity: 0 ;
    margin-top: 0 ;
    transition: grid-template-rows 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease ;
}

.hover-btn-inner {
    overflow: hidden ;
}

.slide-up-cart-btn {
    width: 100% ;
    background-color: #0A0A0A ;
    color: #ffffff ;
    border: none ;
    border-radius: 8px ;
    padding: 12px 20px ;
    font-family: 'Inter', sans-serif ;
    font-size: 15px ;
    font-weight: 500 ;
    cursor: pointer ;
    transition: background-color 0.2s ease ;
}

.slide-up-cart-btn:hover {
    background-color: #333 ;
}
.slide-up-cart-btn-catalog {
    width: 100% ;
    background-color: #0A0A0A ;
    color: #ffffff ;
    border: none ;
    border-radius: 8px ;
    padding: 12px 20px ;
    font-family: 'Inter', sans-serif ;
    font-size: 15px ;
    font-weight: 500 ;
    cursor: pointer ;
    transition: background-color 0.2s ease ;
}
.slide-up-cart-btn-catalog:hover {
    background-color: #333 ;
}

.product-card:hover .hover-btn-wrapper {
    grid-template-rows: 1fr ;
    opacity: 1 ;
    margin-top: 15px ;
}

@media (max-width: 700px) {
    .catalog-container,
    .product-page, 
    .home-categories-section {
        padding: 0 10px ;
    }
    
    .product-grid {
        gap: 8px ;
        align-items: stretch ;
    }

    .product-card {
        height: 100% ;
    }

    .product-info {
        padding: 10px 8px ;
        display: flex ;
        flex-direction: column ;
    }

    .product-name {
        font-size: 15px ;
        margin-bottom: 10px ;
        flex-grow: 1 ;
    }
}



        #image-zoom-container {
            position: relative ;
            border-radius: 12px ;
            overflow: hidden ;
            width: 408px ;
            height: 408px ;
            margin-bottom: 16px ;
            cursor: crosshair;
        }

        #main-product-image {
            width: 100% ;
            height: 100% ;
            object-fit: cover ;
            transform-origin: center center;
            transition: transform 0.3s ease-out; 
        }

        #image-zoom-container:hover #main-product-image {
            transition: none ;
        }



        @keyframes fadeInImage {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .fadeInAnimation {
            animation: fadeInImage 0.3s ease-in;
        }



        .photo-modal {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background-color: #F4F5F7;
            z-index: 10000;
            display: none;
            flex-direction: column;
            font-family: 'Inter', sans-serif ;
        }

        .modal-header {
            position: relative;
            padding: 25px 40px;
            text-align: center;
        }

        .modal-figma-label {
            position: absolute;
            left: 40px;
            top: 50%;
            transform: translateY(-50%);
            color: #A0A0A0;
            font-size: 13px;
            font-weight: 500;
        }

        .modal-title {
            font-size: 28px;
            font-weight: 600;
            color: #111;
            margin: 0;
        }

        .modal-close {
            position: absolute;
            right: 40px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            font-size: 24px;
            color: #666;
            cursor: pointer;
            transition: 0.2s;
        }

        .modal-close:hover { color: #111; }

        .modal-white-area {
            background-color: #FFFFFF;
            flex: 1; 
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 50px;
        }

        .modal-nav-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background-color: #0A0A0A;
            color: #FFFFFF;
            border: none;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: 0.2s;
            flex-shrink: 0;
        }

        .modal-nav-btn:hover { background-color: #333; }

        .modal-image-container {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            height: 100%;
        }

        #modalMainImage {
            max-height: 70vh;
            max-width: 100%;
            object-fit: contain;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            animation: fadeInImage 0.3s ease-in;
        }

        .modal-footer {
            padding: 15px;
            display: flex;
            justify-content: center;
        }

        .modal-thumbnails {
            display: flex;
            gap: 15px;
        }

        .modal-thumb {
            width: 70px;
            height: 70px;
            border-radius: 8px;
            cursor: pointer;
            border: 2px solid transparent;
            padding: 2px;
            background-color: transparent;
            box-sizing: border-box;
            transition: 0.2s;
        }

        .modal-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 6px;
        }

        .modal-thumb.active {
            border-color: #0EA5E9;
            background-color: #FFFFFF;
        }

        @media (max-width: 768px) {
            .modal-white-area { padding: 0 15px; }
            .modal-figma-label { display: none; }
            .modal-thumb { width: 50px; height: 50px; }
            #modalMainImage { max-height: 60vh; }
        }


        .modal-image-viewport {
            flex: 1;
            height: 100%;
            overflow: hidden;
            position: relative;
            margin: 0 30px;
        }

        .modal-image-track {
            display: flex;
            height: 100%;
            width: 100%;
            transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); 
        }

        .modal-slide-img {
            width: 100%;
            height: 100%;
            flex-shrink: 0;
            object-fit: contain;
            border-radius: 12px;
            padding: 10px;
            box-sizing: border-box;
        }

        .checkout-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background-color: rgba(0, 0, 0, 0.45);
            z-index: 10005;
            display: none;
            align-items: center;
            justify-content: center;
            font-family: 'Inter', sans-serif ;
            backdrop-filter: blur(2px);
        }

        .checkout-box {
            background-color: #FFFFFF;
            width: 100%;
            max-width: 420px;
            border-radius: 20px;
            padding: 30px;
            box-sizing: border-box;
            position: relative;
            animation: slideUpModal 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        @keyframes slideUpModal {
            from { opacity: 0; transform: translateY(30px) scale(0.95); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        .checkout-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .checkout-header h2 {
            font-size: 24px;
            font-weight: 600;
            line-height: 1.25;
            color: #111;
            margin: 0;
        }

        .checkout-close {
            position: absolute;
            top: 25px;
            right: 25px;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background-color: #F4F5F7;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            cursor: pointer;
            transition: 0.2s ease;
            z-index: 10;
        }

        .checkout-close:hover {
            background-color: #E2E4E8;
            color: #000;
        }

        .checkout-input {
            width: 100%;
            height: 52px;
            border: 1px solid #E5E7EB;
            border-radius: 12px;
            padding: 0 16px;
            font-size: 15px;
            font-family: 'Inter', sans-serif;
            color: #111;
            box-sizing: border-box;
            margin-bottom: 16px;
            outline: none;
            transition: border-color 0.2s ease;
        }

        .checkout-input::placeholder {
            color: #9CA3AF;
        }

        .checkout-input:focus {
            border-color: #111;
        }


        .checkout-submit-btn {
            width: 100%;
            height: 54px;
            background-color: #0A0A0A;
            color: #FFFFFF;
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 500;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            transition: background-color 0.2s ease;
            margin-top: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 5px;
            text-decoration: none;
        }

        .checkout-submit-btn:hover {
            background-color: #333;
        }


        .checkout-error {
            color: #FF2D55;
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 12px;
            text-align: center;
        }

        .checkout-input.error-border {
            border-color: #FF2D55 ;
            background-color: #FFF5F7;
        }




        .success-text {
            font-size: 15px;
            color: #111;
            line-height: 1.4;
            margin-top: 0;
            margin-bottom: 20px;
        }

        .success-info-box {
            background-color: #EAECEF;
            border-radius: 8px;
            padding: 16px 20px;
            margin-bottom: 24px;
        }

        .success-info-box p {
            margin: 0 0 8px 0;
            font-size: 15px;
            color: #111;
        }

        .success-info-box p:last-child {
            margin-bottom: 0;
        }

        .success-info-box strong {
            font-weight: 600;
        }

        .success-submit-btn {
            width: 100%;
            height: 52px;
            background-color: #000000;
            color: #FFFFFF;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }



        .btn-light-gray {
            width: 100%;
            height: 54px;
            background-color: #F4F5F7;
            color: #111111;
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 500;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }

        .btn-light-gray:hover {
            background-color: #E2E4E8;
        }









        .cart-box {
            max-width: 550px ;
            padding: 30px;
        }

        .cart-items-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 25px;
            max-height: 45vh;
            overflow-y: auto;
            padding-right: 5px;
        }

        .cart-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .cart-item-img {
            width: 75px;
            height: 75px;
            border-radius: 8px;
            object-fit: cover;
            background-color: #F4F5F7;
        }

        .cart-item-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .cart-item-title {
            font-weight: 600;
            font-size: 15px;
            color: #111;
            line-height: 1.2;
        }

        .cart-item-size {
            font-size: 13px;
            color: #A0A0A0;
        }

        .cart-item-prices {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .cart-current-price {
            font-weight: 700;
            font-size: 15px;
            color: #FF2D55;
        }

        .cart-old-price {
            color: #A0A0A0;
            text-decoration: line-through;
            font-size: 13px;
        }

        .cart-item-controls {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .cart-qty-wrapper {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .cart-qty-btn, .cart-remove-btn {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #F4F5F7;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #111;
            cursor: pointer;
            transition: 0.2s;
        }

        .cart-qty-btn i, .cart-remove-btn i {
            font-size: 12px;
        }

        .cart-qty-btn:hover, .cart-remove-btn:hover {
            background-color: #E2E4E8;
        }

        .cart-qty-num {
            font-size: 14px;
            font-weight: 500;
            min-width: 15px;
            text-align: center;
        }

        .cart-total-box {
            background-color: #EDFAC0;
            border-radius: 12px;
            padding: 18px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 25px;
        }

        .cart-total-label {
            font-size: 18px;
            font-weight: 600;
            color:#000000;
        }

        .cart-total-current {
            font-size: 18px;
            font-weight: 700;
            color: #FF2D55;
        }

        .cart-total-old{
            color:#A0A0A0;
            text-decoration: line-through;
        }





/*менюшка*/

.burger-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(2px);
}

.burger-overlay.active {
    opacity: 1;
    visibility: visible;
}

.burger-menu {
    position: fixed;
    top: 0; 
    left: -360px;
    width: 100%;
    max-width: 340px;
    height: 100vh;
    background-color: #FFFFFF;
    z-index: 10001;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: left 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    font-family: 'Inter', sans-serif;
}

.burger-menu.active {
    left: 0;
}

.burger-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
}

.burger-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #111;
    margin: 0;
}

.burger-close-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #F4F5F7;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: background-color 0.2s;
}

.burger-close-btn:hover {
    background-color: #E2E4E8;
}

.burger-content {
    padding: 0 30px 30px 30px;
    overflow-y: auto; 
    flex: 1;
}

.burger-section {
    margin-bottom: 25px;
}

.burger-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-top: 0;
    margin-bottom: 15px;
}

.burger-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.burger-section li {
    margin-bottom: 12px;
}

.burger-section li:last-child {
    margin-bottom: 0;
}

.burger-section a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: color 0.2s;
}

.burger-section a:hover {
    color: #111;
    font-weight: 600;
}

.burger-divider {
    border: none;
    border-top: 1px solid #F0F0F0;
    margin: 25px 0;
}

.mobile-search-wrapper {
    display: none; 
}


.sticky-bottom-bar {
    display: block; 
}

@media (max-width: 1400px) {
    .sticky-bottom-bar {
        position: fixed ;
        bottom: 0 ;
        left: 0 ;
        width: 100% ;
        background-color: #FFFFFF ;
        padding: 15px 20px 20px 20px ;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08) ;
        z-index: 9990 ; 
        box-sizing: border-box ;
        border-radius: 20px 20px 0 0 ; 
    }

    .sticky-bottom-bar .price-block {
        margin-bottom: 12px ;
        display: flex ;
        align-items: center ;
        justify-content: flex-start ;
        gap: 10px ;
    }

    .sticky-bottom-bar .current-price {
        font-size: 24px ;
        font-weight: 700 ;
        color: #FF2D55 ;
    }

    .sticky-bottom-bar .old-price {
        font-size: 14px ;
        color: #A0A0A0 ;
        text-decoration: line-through ;
    }

    .sticky-bottom-bar .action-buttons {
        margin: 0 ;
        width: 100% ;
        display: flex ;
        gap: 10px ;
    }

    .sticky-bottom-bar .btn-buy-now,
    .sticky-bottom-bar .btn-add-cart {
        flex: 1 ;
        height: 50px ;
        border-radius: 8px ;
        font-size: 16px ;
        font-weight: 500 ;
    }

    .blue-site-footer {
        padding-bottom: 180px ;
    }
}

@media (max-width: 700px) {
    .sticky-bottom-bar {
        padding: 15px 15px 20px 15px ; 
    }

    .sticky-bottom-bar .action-buttons {
        flex-direction: column ;
        gap: 10px ;
    }

    .sticky-bottom-bar .btn-buy-now,
    .sticky-bottom-bar .btn-add-cart {
        width: 100% ;
        max-width: 100% ;
        flex: none ;
    }
}

@media (max-width: 1400px) {
    .sticky-bottom-bar {
        padding: 15px 15px 20px 15px ; 
    }

    .sticky-bottom-bar .action-buttons {
        flex-direction: column ;
        gap: 10px ;
    }

    .sticky-bottom-bar .btn-buy-now,
    .sticky-bottom-bar .btn-add-cart {
        width: 100% ;
        max-width: 100% ;
        flex: none ;
    }
}


@media (max-width: 992px) {
    .privacy-container {
        padding: 50px 40px;
    }
    .privacy-title {
        font-size: 40px;
        margin-bottom: 25px;
    }
    .img-placeholder img{
    width: 100% ;
    height: 100% ;
    object-fit: cover ;
    display: block ;
    border-radius: 12px;
}
}

@media (max-width: 768px) {
    .privacy-section {
        padding: 40px 15px;
    }
    .privacy-container {
        padding: 40px 30px;
        border-radius: 16px;
    }
    .privacy-title {
        font-size: 34px;
    }
    .privacy-subtitle {
        font-size: 20px;
        margin-top: 35px;
    }
}

@media (max-width: 576px) {
    .privacy-section {
        padding: 20px 10px;
    }
    
    .privacy-container {
        padding: 25px 20px;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    }

    .privacy-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .privacy-subtitle {
        font-size: 18px;
        margin-top: 25px;
        margin-bottom: 12px;
        line-height: 1.35;
    }

    .privacy-text {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 12px;
    }
}

@media (max-width: 400px) {
    .privacy-container {
        padding: 20px 15px;
    }
    .privacy-title {
        font-size: 24px;
    }
}




        /* планшет */

       @media (max-width: 1400px) {
            
            .product-main-grid {
                display: flex ;
                flex-direction: column ;
                align-items: center ;
                gap: 20px ;
                padding: 0 15px ;
            }

            .product-gallery-column {
                position: relative ; 
                top: auto ; 
                width: 100% ;
                max-width: 100% ;
                padding: 20px ;
                background-color: #F4F5F7 ;
                border-radius: 16px ;
                margin: 0 auto ;
                box-sizing: border-box ;
                height: auto ; 
            }

            .main-image-box {
                position: relative ;
                display: block ; 
                width: 100% ;
                max-width: 408px ;
                height: auto ;
                aspect-ratio: 1 / 1 ;
                margin: 0 auto 15px auto ; 
                border-radius: 12px ;
                overflow: hidden ; 
                cursor: pointer ; 
            }

            .main-image-box {
                position: relative ;
                display: block ; 
                width: 100% ;
                max-width: 700px ;
                height: auto ;
                aspect-ratio: 1 / 1 ;
                margin: 0 auto 15px auto ; 
                border-radius: 12px ;
                overflow: hidden ; 
                cursor: pointer ; 
            }

            .zoom-btn {
                display: none ;
            }

            .thumbnail-list {
                width: 100% ;
                max-width: 700px ;
                display: flex ;
                justify-content: space-between ;
                margin: 0 auto ;
                gap: 10px ;
            }

            .thumb {
                width: calc(20% - 8px) ;
                height: auto ;
                aspect-ratio: 1 / 1 ;
                box-sizing: border-box ;
                border: 2px solid transparent ; 
                padding: 2px ; 
                border-radius: 8px ;
                display: block ;
                pointer-events: auto ; 
            }

            .thumb.active {
                border-color: #111 ; 
            }

            .thumb img {
                width: 100% ;
                height: 100% ;
                object-fit: cover ;
                border-radius: 4px ;
                display: block ;
            }

            .product-details-column {
                width: 100% ;
                max-width: 100% ;
                margin: 0 auto ;
            }
            .product-info-card {
                padding: 25px ;
                background-color: #ffffff ;
                border-radius: 16px ;
                width: 100% ;
                box-sizing: border-box ;
            }

            .action-buttons {
                display: flex ;
                flex-direction: row ;
                align-items: center ;
                gap: 15px ;
                width: 100% ;
                margin-top: 25px ;
                margin-bottom: 25px ;
            }

            .btn-buy-now {
                flex: 1 ;
                max-width: 280px ;
            }

            .btn-add-cart {
                width: 54px ;
                height: 54px ;
                flex-shrink: 0 ;
            }

            .specs-grid {
                display: grid ;
                grid-template-columns: 1fr 1fr ;
                gap: 15px ;
            }

            .similar-gallery {
                display: flex ;
                flex-wrap: wrap ; 
                gap: 12px ; 
                justify-content: flex-start ; 
                margin-top: 15px ;
            }

            .similar-gallery .similar-thumb {
                width: 89px ; 
                height: 89px ; 
                flex-shrink: 0 ; 
                border-radius: 8px ; 
                overflow: hidden ;
                background-color: #EAECEF ;
                display: block ;
            }

            .similar-gallery .similar-thumb img {
                width: 100% ;
                height: 100% ;
                object-fit: cover ;
                display: block ;
                border-radius: 8px ;
            }

           .hover-btn-wrapper, 
            .hover-btn-inner {
                display: block ;
                opacity: 1 ;
                visibility: visible ;
                transform: none ;
                position: static ;
                height: auto ;
                max-height: none ;
                overflow: visible ;
                margin-top: 10px ;
            }
            
            .slide-up-cart-btn {
                display: block ;
                opacity: 1 ;
                visibility: visible ;
                transform: none ;
                position: static ;
                width: 100% ;
                box-sizing: border-box ;
            }

            .bought-product-card:hover .hover-btn-wrapper,
            .rec-card:hover .hover-btn-wrapper,
            .bought-product-card:active .hover-btn-wrapper,
            .rec-card:active .hover-btn-wrapper {
                transform: none ;
            }


            .gift-banner-section {
                width: 100% ;
                display: flex ;
                justify-content: center ;
                padding: 0 15px ;
                box-sizing: border-box ;
                margin-top: 40px ; 
                margin-bottom: 40px ;
            }

            .gift-banner-placeholder {
                width: 100% ;
                max-width: 680px ;
                height: 904px ;
                border-radius: 16px ;
                display: flex ;
                align-items: center ;
                justify-content: center ;
                background-color: #EAECEF ;
            }


            .gift-banner-section-catalog {
                width: 100% ;
                margin-top: 40px ;
                margin-bottom: 40px ;
                display: flex ;
                justify-content: center ;
                padding: 0 15px ;
                box-sizing: border-box ;
            }

            .gift-banner-placeholder-catalog {
                width: 100% ;
                max-width: 680px ;
                height: 904px ;
                border-radius: 16px ;
                display: flex ;
                align-items: center ;
                justify-content: center ;
                background-color: #EAECEF ;
            }

            .product-description-section {
                width: 100% ;
                max-width: 100% ;
                margin: 0 auto 40px auto ; 
            }

        .desc-card {
                width: 100% ;
                max-width: 100% ;
                box-sizing: border-box ;
            }

        .cart-box {
            width: 90% ;
            max-width: 650px ;
            padding: 25px ;
        }

        .cart-item-info {
            flex: 1 ;
            min-width: 0 ;
        }

        .cart-item-title {
            white-space: normal ;
            overflow: visible ;
            text-overflow: clip ;
            font-size: 15px ;
            line-height: 1.3 ;
            margin-bottom: 4px ;
            padding-right: 5px ;
        }
        }

        @media (max-width: 576px) {
            .cart-box {
                width: 95% ;
                padding: 20px 15px ;
            }
            .cart-item {
                gap: 10px ;
            }
            .cart-item-img {
                width: 65px ;
                height: 65px ;
            }
            .cart-item-title {
                font-size: 14px ;
            }
            .cart-qty-btn, .cart-remove-btn {
                width: 28px ;
                height: 28px ;
            }
            .cart-total-label, .cart-total-current {
                font-size: 16px ;
            }
        }


        /* телефон */

@media (max-width: 700px) {
    body, html {
        overflow-x: hidden ;
    }
    .product-description-section {
    width: 100% ;
    max-width: 100% ;
    margin: 0 auto 40px auto ; 
    }

    .gift-banner-section,
    .gift-banner-section-catalog {
        width: 100% ;
        padding: 0 15px ;
        box-sizing: border-box ;
        margin-top: 40px ; 
        margin-bottom: 40px ;
    }
    
    .product-page {
        width: 100% ;
        max-width: 100vw ;
        padding: 15px ; 
        box-sizing: border-box ;
        overflow-x: hidden ;
    }
    
    .product-main-grid {
        width: 100% ;
        padding: 0 ;
        gap: 15px ;
        box-sizing: border-box ;
    }

    .breadcrumbs {
        width: 100% ;
        font-size: 12px ;
        white-space: nowrap ; 
        overflow: hidden ;
        text-overflow: ellipsis ;
        display: block ;
        margin-bottom: 15px ;
        box-sizing: border-box ;
    }

    .product-gallery-column {
        width: 100% ;
        max-width: 100% ;
        padding: 10px ;
        border-radius: 12px ;
        box-sizing: border-box ;
        overflow: hidden ;
    }
    
    .main-image-box {
        width: 100% ;
        max-width: 100% ;
        margin: 0 0 10px 0 ;
        border-radius: 8px ;
        box-sizing: border-box ;
    }

    .main-image-box img {
        width: 100% ;
        max-width: 100% ;
        height: 100% ;
        object-fit: cover ;
        display: block ;
    }

    .thumbnail-list {
        width: 100% ;
        max-width: 100% ;
        gap: 8px ;
        box-sizing: border-box ;
    }
    
    .thumb {
        width: calc(20% - 6.4px) ; 
        height: auto ;
        aspect-ratio: 1 / 1 ;
        border-radius: 6px ;
        padding: 1px ;
        box-sizing: border-box ;
    }

    .product-details-column {
        width: 100% ;
        box-sizing: border-box ;
    }
    
    .product-info-card {
        width: 100% ;
        padding: 0 ; 
        background-color: transparent ;
        box-sizing: border-box ;
    }
    
    .product-title {
        font-size: 20px ; 
        line-height: 1.3 ;
        margin-bottom: 12px ;
    }
    
    .current-price {
        font-size: 24px ;
    }

    .action-buttons {
        width: 100% ;
        gap: 10px ;
        margin-top: 15px ;
        margin-bottom: 20px ;
    }
    
    .btn-buy-now {
        height: 48px ; 
        font-size: 15px ;
    }
    
    .btn-add-cart {
        width: 48px ;
        height: 48px ;
    }

    .specs-grid {
        grid-template-columns: 1fr 1fr ; 
        gap: 8px ;
        font-size: 12px ;
    }

    .similar-gallery {
        gap: 8px ;
        margin-top: 10px ;
    }
    
    .similar-gallery .similar-thumb {
        width: calc(25% - 6px) ; 
        height: auto ;
        aspect-ratio: 1 / 1 ;
        border-radius: 6px ;
    }

    .gift-banner-placeholder {
        height: 700px ; 
        border-radius: 12px ;
    }

    .checkout-box, .cart-box {
        position: relative ;
        width: 95% ;
        max-height: 85vh ;
        overflow-y: auto ;
        padding: 20px 15px ;
        border-radius: 16px ;
        display: flex ;
        flex-direction: column ;
    }
    
    .checkout-header h2 {
        font-size: 20px ;
    }
    
    .cart-item {
        gap: 10px ;
    }
    
    .cart-item-img {
        width: 60px ;
        height: 60px ;
    }
    
    .cart-item-title {
        font-size: 13px ;
    }
    
    .cart-current-price {
        font-size: 14px ;
    }
    
    .cart-qty-btn, .cart-remove-btn {
        width: 28px ;
        height: 28px ;
    }

    .photo-modal {
        padding: 15px ;
        box-sizing: border-box ;
    }
            
    .modal-white-area {
        position: relative ;
        display: flex ;
        align-items: center ;
        justify-content: center ;
        height: 60vh ; 
        padding: 0 ;
        margin: 0 ;
        background-color: #fff ;
    }

    .modal-nav-btn {
        position: absolute ;
        top: 50% ;
        transform: translateY(-50%) ;
        z-index: 100 ;
        background: rgba(17, 17, 17, 0.5) ;
        color: #fff ;
        width: 44px ;
        height: 44px ;
        border-radius: 50% ;
        margin: 0 ;
    }

    #modalPrevBtn {
        left: 10px ;
    }

    #modalNextBtn {
        right: 10px ;
    }

    .modal-image-container {
        width: 100% ;
        height: 100% ;
        display: flex ;
        align-items: center ;
        justify-content: center ;
        padding: 0 10px ;
    }

    #modalMainImage {
        max-width: 100% ;
        max-height: 100% ;
        object-fit: contain ;
    }

    .modal-footer {
        padding: 15px 10px ;
        background: #f4f5f7 ;
    }

    .modal-thumbnails {
        display: flex ;
        justify-content: flex-start ; 
        align-items: center ; 
        gap: 12px ; 
        overflow-x: auto ;
        padding: 15px ; 
        -webkit-overflow-scrolling: touch ;
        scrollbar-width: none ;
        width: 100% ;
        box-sizing: border-box ;
    }

    .modal-thumbnails::-webkit-scrollbar {
        display: none ;
    }

    .modal-thumbnails * {
        outline: none ;
        box-shadow: none ;
        text-decoration: none ;
    }

    .modal-thumbnails > * {
        margin-right: 12px ; 
        flex-shrink: 0 ; 
        display: block ;
        border: none ; 
        outline: none ; 
        box-shadow: none ;
        background: transparent ;
        text-decoration: none ;
    }

    .modal-thumbnails > *:last-child {
        margin-right: 0 ;
    }

    .modal-thumbnails img {
        width: 65px ;
        height: 65px ;
        min-width: 65px ; 
        flex-shrink: 0 ;
        object-fit: cover ;
        border-radius: 8px ;
        cursor: pointer ;
        display: block ;
        box-sizing: border-box ;
        padding: 0 ; 
        margin: 0 ; 
        transform: none ;
        border: 2px solid transparent ;
        opacity: 1 ; 
        transition: border-color 0.2s ease ;
    }

    .modal-thumbnails img.active,
    .modal-thumbnails .active img {
        border-color: #007bff ; 
    }
    
    .modal-thumbnails .active {
        border: none ;
        outline: none ;
        box-shadow: none ;
    }

    .recommended-header {
        display: flex ;
        justify-content: space-between ;
        align-items: center ;
        flex-wrap: nowrap ;
        padding: 0 15px ;
        margin-bottom: 15px ;
        position: relative ;
        z-index: 10 ; 
    }

    .recommended-title {
        font-size: 20px ;
        margin: 0 ;
        flex: 1 ;
    }

    .recommended-nav {
        display: flex ;
        gap: 8px ;
    }

    .recommended-slider-wrapper {
        width: 100% ;
        overflow: hidden ; 
        display: block ;
        padding: 0 ;
        box-sizing: border-box ;
    }

    .recommended-track {
        display: flex ;
        width: 100% ; 
        gap: 12px ;
        overflow-x: auto ;
        -webkit-overflow-scrolling: touch ;
        scroll-behavior: smooth ;
        padding: 0 15px 15px 15px ;
        box-sizing: border-box ;
    }

    .recommended-track::-webkit-scrollbar {
        display: none ;
    }

    .rec-card {
        width: 160px ;
        flex-shrink: 0 ;
    }

    .new-figma-header {
        position: sticky ;
        top: 0 ;
        z-index: 1000 ;
        overflow: hidden ;
    }

    .header-left {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-shrink: 1;
        transition: gap 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .header-right {
        display: flex;
        align-items: center;
        gap: 8px;
        transition: flex-grow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }


    .header-cart-btn {
        display: flex ;
        align-items: center ;
        justify-content: center ;
        gap: 6px ; 
        padding: 6px 14px 6px 6px ; 
        background-color: #F4F5F7 ;
        border-radius: 24px ; 
        border: none ;
        color: #111 ;
        height: 44px ;
        flex-shrink: 0;
    }
    
    .cart-text { 
        display: none ; 
    }
    
    .cart-badge-new {
        position: static ; 
        width: 28px ;
        height: 28px ;
        background-color: #FF2D55 ;
        color: #FFFFFF ;
        border-radius: 50% ;
        display: flex ;
        align-items: center ;
        justify-content: center ;
        font-size: 14px ;
        font-weight: 700 ;
        margin: 0 ;
    }

    .header-center {
        display: none ;
    }

    .bought-together-section {
        background-color: #F9F9F9 ;
        border: 2px dashed #E0E0E0 ;
        padding: 25px 15px ;
        border-radius: 16px ;
        text-align: center ;
        width: 100% ;
        box-sizing: border-box ;
        margin: 30px 0 ;
    }

    .bought-together-title {
        font-size: 20px ;
        font-weight: 700 ;
        color: #111 ;
        margin-bottom: 20px ;
        line-height: 1.2 ;
    }

    .bought-together-products {
        display: flex ;
        flex-direction: column ;
        align-items: center ;
        gap: 0 ;
    }

    .bought-product-card {
        background: #ffffff ;
        border-radius: 12px ;
        padding: 12px ;
        width: 100% ;
        max-width: 300px ;
        display: flex ;
        flex-direction: column ;
        align-items: center ;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04) ;
    }

    .bought-img-wrap {
        width: 100% ;
        height: auto ;
        aspect-ratio: 1 / 1 ;
        margin-bottom: 10px ;
        border-radius: 8px ;
        overflow: hidden ;
    }

    .bought-img-wrap img, 
    .bought-img-wrap .img-placeholder {
        width: 100% ;
        height: 100% ;
        object-fit: cover ;
    }
    .img-placeholder img{
    width: 100% ;
    height: 100% ;
    object-fit: cover ;
    display: block ;
    border-radius: 12px;
}

    .bought-name {
        font-size: 14px ;
        font-weight: 600 ;
        color: #111 ;
        margin-bottom: 8px ;
    }

    .bought-price-block {
        display: flex ;
        align-items: center ;
        justify-content: center ;
        gap: 8px ;
    }

    .bought-current {
        color: #FF4D4D ;
        font-size: 16px ;
        font-weight: 700 ;
    }

    .bought-old {
        color: #A0A0A0 ;
        font-size: 13px ;
        text-decoration: line-through ;
    }

    .bought-plus {
        font-size: 32px ;
        color: #88C057 ; 
        font-weight: 300 ;
        margin: 15px 0 ;
        display: block ;
    }

    .bought-total-block {
        margin-top: 25px ;
        padding-top: 15px ;
        border-top: 1px solid rgba(0,0,0,0.05) ;
    }

    .total-label {
        display: block ;
        font-size: 22px ;
        font-weight: 700 ;
        color: #111 ;
        margin-bottom: 8px ;
    }

    .bought-total-block .prices-row {
        display: flex ;
        align-items: center ;
        justify-content: center ;
        gap: 10px ;
        margin-bottom: 20px ;
    }

    .total-current {
        font-size: 26px ;
        font-weight: 800 ;
        color: #FF4D4D ;
    }

    .total-old {
        font-size: 18px ;
        color: #A0A0A0 ;
        text-decoration: line-through ;
    }

    .discount-wrap {
        background-color: #FF4D4D ;
        color: #fff ;
        padding: 3px 7px ;
        border-radius: 6px ;
        font-size: 12px ;
        font-weight: 700 ;
    }

    .btn-buy-together {
        background-color: #111111 ;
        color: #ffffff ;
        width: 100% ;
        padding: 16px ;
        border-radius: 10px ;
        font-size: 16px ;
        font-weight: 600 ;
        border: none ;
        text-transform: none ;
    }
            
    .blue-site-footer {
        width: 100% ;
        background-color: #002333 ;
        padding: 30px 0 ;
        box-sizing: border-box ;
    }

    .blue-footer-container {
        padding: 0 20px ;
        width: 100% ;
        box-sizing: border-box ;
    }

    .blue-footer-top {
        display: flex ;
        flex-direction: column ;
        align-items: center ;
        text-align: center ;
        gap: 35px ;
    }

    .blue-footer-brand {
        display: flex ;
        flex-direction: column ;
        align-items: center ;
    }

    .footer-logo-img {
        max-width: 180px ;
        margin-bottom: 10px ;
    }

    .blue-footer-socials {
        justify-content: center ;
        margin-top: 15px ;
        gap: 20px ;
    }

    .blue-footer-categories {
        display: grid ;
        grid-template-columns: 1fr 1fr ;
        gap: 30px 15px ;
        margin-top: 40px ;
        text-align: left ;
    }

    .blue-cat-col h4, .blue-footer-info h4, .blue-footer-contacts h4 {
        font-size: 16px ;
        margin-bottom: 15px ;
        color: #fff ;
        border-bottom: 1px solid rgba(255,255,255,0.1) ;
        padding-bottom: 8px ;
    }

    .blue-cat-col ul, .blue-footer-info ul {
        padding: 0 ;
        list-style: none ;
    }

    .blue-cat-col li, .blue-footer-info li {
        margin-bottom: 10px ;
    }

    .blue-cat-col a, .blue-footer-info a, .blue-footer-contacts p, .blue-footer-contacts a {
        font-size: 14px ;
        color: rgba(255,255,255,0.7) ;
        text-decoration: none ;
    }

    .blue-footer-payments {
        justify-content: center ;
        margin-top: 20px ;
        gap: 15px ;
    }

    .blue-footer-divider {
        margin: 30px 0 ;
        border: 0 ;
        border-top: 1px solid rgba(255,255,255,0.1) ;
    }

    .blue-footer-copyright {
        text-align: center ;
        font-size: 12px ;
        color: rgba(255,255,255,0.5) ;
        margin-top: 30px ;
    }

    .new-figma-header {
        position: sticky ;
        top: 0 ;
        z-index: 1000 ;
        overflow: hidden ; 
    }

    .header-logo {
        display: flex ;
        flex-direction: column ;
        opacity: 1;
        white-space: nowrap ;
    }
    
    .logo-main, .logo-sub {
        white-space: nowrap ;
    }

    .header-left {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .header-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .header-cart-btn {
        display: flex ;
        align-items: center ;
        justify-content: center ;
        gap: 6px ;
        padding: 6px 14px 6px 6px ;
        background-color: #F4F5F7 ;
        border-radius: 24px ;
        border: none ;
        color: #111 ;
        height: 44px ;
        width: 76px ; 
        min-width: 76px ; 
        flex-shrink: 0 ;
        box-sizing: border-box ;
    }

    .mobile-search-wrapper {
        position: relative ;
        display: flex;
        align-items: center;
        width: 44px;
        height: 44px;
    }

    .mobile-search-btn {
        position: relative ;
        width: 44px ;
        height: 44px ;
        border-radius: 50% ;
        background-color: #F4F5F7 ;
        border: none ;
        display: flex ;
        align-items: center ;
        justify-content: center ;
        color: #111 ;
        cursor: pointer ;
        z-index: 21 ;
    }

    .mobile-search-wrapper.active .mobile-search-btn {
        background-color: transparent ; 
    }

    .mobile-search-btn i {
        font-size: 18px ;
        display: flex ;
        align-items: center ;
        justify-content: center ;
        margin: 0 ;
        padding: 0 ;
    }

    .mobile-search-input {
        position: absolute ;
        right: 0 ;
        top: 0 ;
        width: 44px ;
        height: 44px ;
        border-radius: 24px ;
        background: transparent ;
        color: transparent ;
        padding: 0 ;
        border: none ;
        outline: none ;
        transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease ;
        z-index: 20 ;
        pointer-events: none;
    }

    .mobile-search-wrapper.active .mobile-search-input {
        width: calc(100vw - 155px) ;
        max-width: 320px ;
        background-color: #F4F5F7 ;
        color: #111 ;
        padding: 0 44px 0 20px ;
        pointer-events: auto;
    }
}


/*Catalog*/

.catalog-container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 40px;
}

.catalog-top {
    background-color: #FFFFFF;
    padding: 60px 0 40px 0;
    border-bottom: 1px solid #F0F0F0;
}

.breadcrumbs {
        display: flex ;
        flex-direction: row ;
        align-items: center ;
        width: 100% ;
        font-size: 13px ;
        white-space: nowrap ; 
        overflow-x: auto ;
        margin-bottom: 15px ;
        box-sizing: border-box ;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .breadcrumbs::-webkit-scrollbar {
        display: none;
    }

.back-btn {
    width: 32px ;
    height: 32px ;
    min-width: 32px ; 
    min-height: 32px ;
    border-radius: 50% ;
    background-color: #F4F5F7 ;
    border: none ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
    padding: 0 ;
    margin: 0 ;
    cursor: pointer;
    flex-shrink: 0 ;
}

.back-btn i {
    font-size: 14px ;
    color: #333 ;
    display: block ;
    transform: translateX(-1px) ; 
    margin: 0 ;
    padding: 0 ;
}

.breadcrumbs-text {
    display: block ; 
    font-size: 14px ;
    line-height: 1.4 ;
    white-space: normal ;
    word-wrap: break-word ;
}

.breadcrumbs-text a {
    color: #111 ;
    text-decoration: none ;
    font-weight: 500 ;
}

.breadcrumbs-text .separator { 
    color: #999 ; 
    margin: 0 6px ; 
}

.breadcrumbs-text .current { 
    color: #666 ; 
}

.breadcrumbs::-webkit-scrollbar {
    display: none; 
}

.back-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #F4F5F7;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    cursor: pointer;
    transition: 0.2s;
    flex-shrink: 0;
}

.back-btn:hover { 
    background-color: #E2E2E2; 
}

.breadcrumbs a {
    color: #111;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumbs .separator { 
    color: #999; 
}

.breadcrumbs .current { 
    color: #666; 
}

.catalog-title {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
}

.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-tag {
    background-color: #FFFFFF;
    border: 1px solid #E5E5E5;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.filter-tag:hover {
    border-color: #111;
    color: #111;
}

.catalog-main {
    background-color: #F8F9FA;
    padding: 60px 0 100px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.product-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.herf-product-card{
    text-decoration: none ;
}

.product-img-wrap {
    padding: 12px 12px 0 12px;
}

.product-img-wrap img {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.product-info {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.4;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.price-current {
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

.price-current.red {
    color: #FF2D55;
}

.price-old {
    font-size: 12px;
    color: #A0A0A0;
    text-decoration: line-through;
}

.discount-badge {
    background-color: #FF2D55;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-bottom-badge {
    width: 100%;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #FFFFFF;
    text-align: left;
    margin-top: 5px;
}

.badge-green {
    background-color: #84CC16;
}

.badge-yellow { 
    background-color: #EFB100; 
}


.badge-red {
    background-color: #FF2D55;
}

.grey-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    background-color: #E2E4E8;
    border-radius: 12px;
}

@media (min-width: 993px) and (max-width: 1200px) {
    .product-grid { 
        grid-template-columns: repeat(4, 1fr); 
    } 

    .back-btn i {
        font-size: 14px;
        margin-left: -2px;
        margin-top: 1px;
        display: block;
    }
}
@media (max-width: 992px) {
    .product-grid { 
        grid-template-columns: repeat(3, 1fr); 
        align-items: stretch ;
    }
    
    .product-card {
        height: 100% ;
    }
    
    .product-name {
        flex-grow: 1 ;
    }
    .catalog-title { 
        font-size: 36px; 
    }

    .back-btn i {
        font-size: 14px;
        margin-left: -2px;
        margin-top: 1px;
        display: block;
    }
}

@media (min-width: 280px) and (max-width: 710px) {
    .product-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px; 
    }
    .catalog-top { 
        padding: 30px 0; 
    }
    .catalog-title { 
        font-size: 28px; 
        margin-bottom: 20px; 
    }
    .product-info { 
        padding: 15px 12px; 
    }
    .product-name { 
        font-size: 14px; 
        margin-bottom: 15px; 
    }
    .price-current { 
        font-size: 15px; 
    }
    .back-btn i {
    font-size: 14px ;
    margin-left: -2px ;
    margin-top: 0 ;
    display: block ;
    line-height: 1 ;
    }
}

@media (max-width: 400px) {
    .catalog-filters { 
        flex-direction: column; 
    }
    .filter-tag { 
        text-align: center; 
        width: 100%; 
    }

    .back-btn i {
    font-size: 14px ;
    margin-left: -2px ;
    margin-top: 0 ;
    display: block ;
    line-height: 1 ;
    }
}


@media (max-width: 500px) {
    .breadcrumbs-text {
        font-size: 13px ;
    }
    .breadcrumbs-text .separator {
        margin: 0 4px ;
    }
}




/*trade_turn*/


return-container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 60px 20px;
}

.return-block {
    background-color: #F2F9FD;
    border-radius: 24px;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-blue {
    background-color: #0ea3e8;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 25px;
    display: inline-block;
}

.return-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.15;
    color: #111;
    margin-bottom: 40px;
    max-width: 900px;
}

.return-content {
    max-width: 1000px;
}

.return-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.return-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .return-block {
        padding: 50px 40px;
    }
    .return-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .return-block {
        padding: 40px 30px;
    }
    .return-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .return-content p {
        font-size: 15px;
    }
}

@media (max-width: 500px) {
    .return-container {
        padding: 30px 15px;
    }
    .return-block {
        padding: 30px 20px;
        border-radius: 16px;
    }
    .return-title {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .return-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

/*politica*/

.privacy-section {
    width: 100%;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.privacy-container {
    width: 100%;
    max-width: 800px;
    background-color: #FFFFFF;
    padding: 60px 70px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.privacy-title {
    font-size: 46px;
    font-weight: 700;
    color: #111;
    line-height: 1.15;
    margin-bottom: 30px;
}

.privacy-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #111;
    margin-top: 40px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.privacy-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.privacy-text:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .privacy-section {
        padding: 40px 15px;
    }
    
    .privacy-container {
        padding: 40px 30px;
        border-radius: 16px;
    }

    .privacy-title {
        font-size: 36px;
    }

    .privacy-subtitle {
        font-size: 20px;
        margin-top: 30px;
    }
}

@media (max-width: 500px) {
    .privacy-section {
        padding: 20px 10px;
    }

    .privacy-container {
        padding: 30px 20px;
    }

    .privacy-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .privacy-subtitle {
        font-size: 18px;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .privacy-text {
        font-size: 14px;
    }
}

/*contact*/
.contact-banner {
    display: flex;
    background-color: #FEF7D2;
    border-radius: 24px;
    overflow: hidden;
    min-height: 480px;
    max-width: 1312px;
    margin: 0 auto 50px auto;
    font-family: 'Inter', sans-serif;
}

.contact-content {
    flex: 1.1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.badge-contact {
    background-color: #FFC700;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 25px;
    display: inline-block;
}

.contact-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.15;
    color: #111;
    margin-bottom: 30px;
    margin-top: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #111;
    font-size: 16px;
    line-height: 1.5;
}

.contact-info p {
    margin: 0;
}

.contact-info strong {
    font-weight: 600;
    margin-right: 4px;
}

.schedule-line {
    margin-top: -6px ;
    color: #333;
}

.contact-image {
    flex: 1;
    position: relative;
}

.contact-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .contact-content {
        padding: 50px 40px;
    }
    .contact-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .contact-banner {
        flex-direction: column; 
        min-height: auto;
    }
    
    .contact-image {
        min-height: 350px;
    }
}
@media (max-width: 500px) {
    .contact-content {
        padding: 35px 20px;
    }
    .contact-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .contact-info {
        font-size: 15px;
    }
}

/*delivery and pay*/


.dp-section {
    width: 100%;
    padding: 60px 20px;
}

.dp-container {
    max-width: 1312px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}


.dp-card {
    background-color: #f0f0f0;
    border-radius: 24px;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
}

.dp-title {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 35px;
    line-height: 1.1;
}

.dp-item {
    margin-bottom: 25px;
}

.dp-item:last-child {
    margin-bottom: 0;
}

.dp-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}

.dp-margin-bottom {
    margin-bottom: 25px;
}

.dp-text {
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
}

.dp-inner-box {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dp-inner-box p {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

@media (max-width: 992px) {
    .dp-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dp-card {
        padding: 40px 30px;
    }
}

@media (max-width: 500px) {
    .dp-section {
        padding: 40px 15px;
    }

    .dp-card {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .dp-title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .dp-inner-box {
        padding: 16px 20px;
    }
}

/*about us*/

.about-container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 40px 20px 80px 20px;
}


.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 30px;
}

.back-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #F4F5F7;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    cursor: pointer;
    transition: 0.2s;
}

.back-btn:hover { background-color: #E2E2E2; }

.breadcrumbs a {
    color: #111;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumbs .separator { color: #999; }
.breadcrumbs .current { color: #666; }

.about-banner {
    position: relative;
    width: 100%;
    min-height: 580px;
    border-radius: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #E2E4E8;    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 80px 60px;
    max-width: 700px;
}

.badge-about {
    display: inline-block;
    background-color: #84CC16;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 25px;
}

.banner-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: #111;
    margin-bottom: 25px;
}

.banner-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.banner-image {
    display: none;
}

.company-info-block {
    background-color: #F4F5F7;
    border-radius: 16px;
    padding: 30px 40px;
    margin-bottom: 50px;
}

.company-info-block p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

/*.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.feature-card {
    border-radius: 16px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    line-height: 1.3;
}


.feature-green { background-color: #F0FDF4; }
.feature-green .feature-icon { background-color: #DCFCE7; color: #22C55E; border: 1px solid #BBF7D0; }

.feature-pink { background-color: #FDF2F8; }
.feature-pink .feature-icon { background-color: #FCE7F3; color: #EC4899; border: 1px solid #FBCFE8; }

.feature-blue { background-color: #EFF6FF; }
.feature-blue .feature-icon { background-color: #DBEAFE; color: #3B82F6; border: 1px solid #BFDBFE; }

.feature-orange { background-color: #FFF7ED; }
.feature-orange .feature-icon { background-color: #FFEDD5; color: #F97316; border: 1px solid #FED7AA; }

.feature-yellow { background-color: #FEFCE8; }
.feature-yellow .feature-icon { background-color: #FEF08A; color: #EAB308; border: 1px solid #FDE047; }


@media (max-width: 1024px) {
    .banner-title { font-size: 42px; }
    .banner-content { padding: 50px 40px; }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-card, .feature-yellow{
        max-width: 100%;
    }
}

@media (max-width: 700px) {
    .about-banner {
        flex-direction: column;
        min-height: auto;
    }
    
    .banner-content {
        padding: 40px 30px;
    }

    .banner-title {
        font-size: 36px;
    }

    .banner-image img {
        height: 350px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .about-container {
        padding: 20px 15px 50px 15px;
    }

    .banner-title { font-size: 32px; }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

    .company-info-block {
        padding: 20px;
    }
}*/

.features-section {
    position: relative ;
    background-color: #FFFFFF ;
    width: 100% ;
    padding: 80px 20px ; 
    box-sizing: border-box ;
    z-index: 2 ;
}

.features-grid {
    display: grid ;
    grid-template-columns: repeat(5, 1fr) ;
    gap: 20px ;
    max-width: 1300px ;
    margin: 0 auto ; 
    width: 100% ;
    box-sizing: border-box ;
}

.feature-card {
    border-radius: 16px ;
    padding: 30px 15px ;
    display: flex ;
    flex-direction: column ;
    align-items: center ;
    text-align: center ;
    justify-content: flex-start ;
    gap: 20px ;
    min-height: 190px ;
    box-sizing: border-box ;
    height: 100% ;
    transform: none ;
    box-shadow: none ;
    background-color: transparent; 
}

.feature-card:hover, 
.feature-card:focus, 
.feature-card:active {
    transform: none ;
    box-shadow: none ;
    outline: none ;
}

.feature-icon {
    width: 76px ; 
    height: 76px ; 
    border-radius: 50% ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
    font-size: 32px ; 
    transition: transform 0.3s ease ;
    flex-shrink: 0 ;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) ;
}

.feature-title {
    font-size: 16px ; 
    font-weight: 600 ;
    color: #111 ;
    line-height: 1.4 ;
    margin: 0 ;
}

.feature-green { background-color: #F0FDF4 ; }
.feature-green .feature-icon { background-color: #DCFCE7 ; color: #22C55E ; }
.feature-pink { background-color: #FDF2F8 ; }
.feature-pink .feature-icon { background-color: #FCE7F3 ; color: #EC4899 ; }
.feature-blue { background-color: #EFF6FF ; }
.feature-blue .feature-icon { background-color: #DBEAFE ; color: #3B82F6 ; }
.feature-orange { background-color: #FFF7ED ; }
.feature-orange .feature-icon { background-color: #FFEDD5 ; color: #F97316 ; }
.feature-yellow { background-color: #FEFCE8 ; }
.feature-yellow .feature-icon { background-color: #FEF08A ; color: #EAB308 ; }


@media (max-width: 1024px) {
    .features-section {
        padding: 60px 20px ;
    }
    .features-grid {
        grid-template-columns: repeat(3, 1fr) ;
        gap: 20px ;
    }
}

@media (max-width: 700px) {
    .features-section {
        padding: 40px 15px ;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr) ;
        gap: 15px ;
    }
    .feature-card {
        padding: 25px 10px ;
        min-height: 160px ;
        gap: 15px ;
    }
    .feature-icon {
        width: 60px ;
        height: 60px ;
        font-size: 24px ;
    }
    .feature-title {
        font-size: 14px ;
    }
}

@media (max-width: 500px) {
    .features-grid {
        grid-template-columns: 1fr ;
        gap: 15px ;
        max-width: 320px ;
    }
    .feature-card {
        flex-direction: column ;
        padding: 25px 15px ;
    }
}
/*zakaz*/


.checkout-wrapper {
    display: flex;
    min-height: 100vh;
}

.checkout-left {
    flex: 1.1;
    background-color: #FFFFFF;
    display: flex;
    justify-content: flex-end;
    padding: 60px 40px;
}

.left-content {
    width: 100%;
    max-width: 600px;
}

.checkout-right {
    flex: 1;
    background-color: #F4F5F7;
    display: flex;
    justify-content: flex-start;
    padding: 60px 40px;
}

.right-content {
    width: 100%;
    max-width: 550px;
    position: sticky;
    top: 60px;
}

.checkout-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
}

.back-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #F4F5F7;
    border: none;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: 0.2s;
}

.back-btn:hover {
    background-color: #E2E2E2;
}

.checkout-header h1 {
    font-size: 32px;
    font-weight: 700;
}


.checkout-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.custom-input {
    width: 100%;
    height: 54px;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 15px;
    outline: none;
    transition: 0.2s;
}

.custom-input:focus {
    border-color: #111;
}

.custom-textarea {
    height: 120px;
    padding: 16px;
    resize: none;
}


.radio-card {
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    overflow: hidden;
}

.radio-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: #FFF;
    transition: background-color 0.2s;
}

.radio-row:hover {
    background-color: #FAFAFA;
}

.radio-row input[type="radio"] {
    display: none;
}

.radio-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #D1D5DB;
    border-radius: 50%;
    position: relative;
}

.radio-row input[type="radio"]:checked + .custom-radio {
    border-color: #E5E5E5;
}

.radio-row input[type="radio"]:checked + .custom-radio::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 12px; height: 12px;
    background-color: #F4F5F7; 
    border-radius: 50%;
}

.radio-label {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.radio-hint {
    font-size: 13px;
    color: #999;
}

.divider {
    height: 1px;
    background-color: #E5E5E5;
    margin: 0 20px;
}

.liqpay-logo {
    font-size: 15px;
    color: #111;
    display: flex;
    align-items: center;
    gap: 5px;
}

.checkout-cart-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.cart-item {
    display: flex;
    gap: 15px;
}

.item-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

.item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.item-name {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: #111;
}

.item-size {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
    font-weight: 500;
}

.item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn, .remove-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #E5E5E5;
    border: none;
    color: #555;
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn {
    background-color: transparent;
    font-size: 14px;
    margin-left: 5px;
}

.qty-num {
    font-size: 13px;
    font-weight: 600;
    min-width: 12px;
    text-align: center;
}

.item-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-current {
    font-size: 15px;
    font-weight: 700;
}

.price-current.red {
    color: #FF2D55;
}

.price-old {
    font-size: 12px;
    color: #A0A0A0;
    text-decoration: line-through;
}

.summary-divider {
    border: none;
    border-top: 1px solid #D1D5DB;
    margin: 30px 0;
}

.summary-totals {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.total-line {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: #555;
}

.total-line b {
    color: #111;
}

.gray-currency {
    color: #999;
    margin-right: 3px;
}

.total-final {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.total-final span:first-child {
    font-size: 26px;
    font-weight: 700;
}

.final-price {
    font-size: 26px;
    font-weight: 700;
}

.terms-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #E6F4FE;
    padding: 16px 20px;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 25px;
}

.terms-box input {
    display: none;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    background-color: #FFF;
    border: 1px solid #BAE6FD;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: 0.2s;
}

.terms-box input:checked + .custom-checkbox {
    color: #0EA5E9;
    border-color: #0EA5E9;
}

.terms-text {
    font-size: 13px;
    color: #333;
}

.terms-text a {
    color: #0EA5E9;
    text-decoration: none;
}

.submit-order-btn {
    width: 100%;
    background-color: #0A0A0A;
    color: #FFFFFF;
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.submit-order-btn:hover {
    background-color: #333;
}


.delivery-extra-fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}


.delivery-extra-fields.active {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
    overflow: visible;
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select {
    width: 100%;
    height: 54px;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 0 40px 0 16px;
    font-size: 15px;
    color: #111;
    background-color: #FFFFFF;
    outline: none;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s;
}

.custom-select:focus {
    border-color: #111;
}

.custom-select:invalid {
    color: #999;
}

.select-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #999;
    pointer-events: none;
}

.radio-row input[type="radio"]:checked + .custom-radio {
    border-color: #111 ;
}

.radio-row input[type="radio"]:checked + .custom-radio::after {
    background-color: #111 ;
}


@media (max-width: 992px) {
    .checkout-wrapper {
        flex-direction: column;
    }
    
    .checkout-left, .checkout-right {
        justify-content: center;
        padding: 40px 20px;
    }

    .right-content {
        position: static;
        max-width: 600px;
    }
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .item-top-row {
        flex-direction: column;
        gap: 10px;
    }
}


/*banner in index.php*/

.hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden; 
    background-color: #F4F8EA; 
    padding: 40px 0;
    margin-bottom: 60px;
    font-family: 'Inter', sans-serif;
}

.hero-slider-wrapper {
    width: 100%;
}

.hero-slider-track {
    display: flex;
    gap: 30px;
    will-change: transform;
}

.hero-slide {
    position: relative;
    flex: 0 0 85%;
    max-width: 1200px;
    aspect-ratio: 1280 / 550;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px 80px;
    box-sizing: border-box;
}
.hero-picture, .hero-img {
    position: absolute ;
    top: 0 ;
    left: 0 ;
    width: 100% ;
    height: 100% ;
    z-index: 1 ;
    pointer-events: none;
}
.hero-img {
    object-fit: cover ;
}

.hero-slide-content {
    position: relative ;
    z-index: 2 ;
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-slide-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #111;
    margin: 0 0 15px 0;
}

.hero-slide-desc {
    font-size: 16px;
    color: #333;
    margin: 0 0 25px 0;
    line-height: 1.5;
}

.hero-slide-badge {
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 35px;
    line-height: 1.4;
}

.hero-slide-btn {
    background-color: #111;
    color: #fff;
    border: none;
    padding: 16px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
}

.hero-slide-btn:hover { background-color: #333; }

.hero-slider-nav-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 1200px;
    height: 0;
    z-index: 10;
    pointer-events: none; 
}

.hero-nav-btn {
    pointer-events: auto; 
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #0A0A0A;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

.hero-nav-btn:hover { background-color: #333; }
.hero-prev { left: -24px; }
.hero-next { right: -24px; }

@media (max-width: 1024px) {
    .hero-slide {
        aspect-ratio: 680 / 876;
        padding: 50px 40px;
        align-items: flex-start;
    }
    .hero-slide-content { max-width: 100%; }
    .hero-slider-nav-container { width: 90%; }
    .hero-prev { left: -10px; }
    .hero-next { right: -10px; }
}

@media (max-width: 700px) {
    .hero-slider-section {
        padding: 20px 0;
        margin-bottom: 40px;
    }
    
    .hero-slider-track { 
        gap: 15px; 
    }
    
    .hero-slide {
        aspect-ratio: 320 / 603;
        border-radius: 16px;
        padding: 45px 25px 20px 25px;
        align-items: flex-start;
    }
    
    .hero-slide-content {
        max-width: 100%;
    }

    .hero-slide-title { 
        font-size: 34px;
        margin-bottom: 12px; 
    }
    
    .hero-slide-desc { 
        display: block; 
        font-size: 14px; 
        margin-bottom: 15px; 
    }
    
    .hero-slide-badge { 
        display: inline-block; 
        font-size: 13px; 
        padding: 10px 16px; 
        margin-bottom: 25px; 
    }
    
    .hero-slide-btn { 
        padding: 14px 28px; 
        font-size: 15px; 
        border-radius: 8px; 
    }
    
    .hero-nav-btn { 
        width: 38px; 
        height: 38px; 
        font-size: 14px; 
    }
    .hero-prev { left: 10px; } 
    .hero-next { right: 10px; }

    .recommended-section {
        padding: 20px 15px 40px 15px ; 
        margin: 20px auto 0 auto ; 
    }

    
}
/*baners*/

/*card categories*/

.home-categories-section {
    max-width: 100%;
    margin: 0 auto 60px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif ;
}

.home-category-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-category-title {
    font-size: 38px;
    font-weight: 700;
    color: #111;
    margin-bottom: 35px;
    margin-top: 0;
    text-align: center;
}

.home-category-track {
    display: flex;
    justify-content: center; 
    flex-wrap: wrap;
    gap: 25px;
    width: 100%;
    padding-top: 10px ;
    padding-bottom: 20px ;
    margin-top: -10px;
}

.home-category-track::-webkit-scrollbar {
    display: none;
}
@media (max-width: 1450px) {
    .home-category-track {
        flex-wrap: nowrap ;
        overflow-x: auto ;
        justify-content: flex-start ;
        padding-left: 20px ;
        padding-right: 20px ;
        -webkit-overflow-scrolling: touch ; 
        scrollbar-width: none ; 
        -ms-overflow-style: none ; 
    }
    .home-category-track::-webkit-scrollbar {
        display: none ;
    }
}

.home-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 120px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.home-category-item:hover {
    transform: translateY(-5px);
}

.hc-img-wrap {
    width: 120px;
    height: 120px;
    min-width: 120px;
    min-height: 120px;
    flex-shrink: 0;
    border-radius: 16px;
    background-color: #EAECEF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.hc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.hc-title {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    text-align: center;
    line-height: 1.35;
}

.home-category-item:hover .hc-title {
    color: #111;
    font-weight: 600;
}

.home-category-divider {
    width: 100%;
    height: 1px;
    background-color: #EAECEF;
    margin: 50px 0;
}
.view-card-btn {
    width: 100% ;
    background-color: #0A0A0A ;
    color: #ffffff ;
    border: none ;
    border-radius: 8px ;
    padding: 12px 20px ;
    font-family: 'Inter', sans-serif ;
    font-size: 15px ;
    font-weight: 500 ;
    cursor: pointer ;
    text-decoration: none ;
    display: block ;
    text-align: center ;
    box-sizing: border-box ;
    transition: background-color 0.2s ease ;
}

.view-card-btn:hover {
    background-color: #333 ;
}

.rec-card:hover .hover-btn-wrapper {
    grid-template-rows: 1fr ;
    opacity: 1 ;
    margin-top: 15px ;
}

@media (max-width: 1450px) {
    .home-category-track {
        flex-wrap: nowrap ;
        overflow-x: auto ;
        justify-content: flex-start ;
        padding-left: 20px ;
        padding-right: 20px ;
        -webkit-overflow-scrolling: touch ; 
        scrollbar-width: none ; 
        -ms-overflow-style: none ; 
    }
    .home-category-track::-webkit-scrollbar {
        display: none ;
    }
}

@media (max-width: 700px) {
    .home-categories-section {
        margin-bottom: 40px ;
        padding: 0 ;
    }

    .home-category-title {
        font-size: 28px ;
        margin-bottom: 25px ;
    }

    .home-category-track {
        justify-content: flex-start ; 
        padding: 10px 20px 20px 20px ; 
        margin-top: -10px ;
        gap: 15px ; 
    }

    .home-category-divider {
        margin: 40px 20px ;
        width: calc(100% - 40px) ;
    }
}
