
        :root {
            --max-width: 1400px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        * a, p, button, span{
            font-family:'Geologica', serif !important ;
        }
        * h1, h2, h3{
            font-family:'Montserrat', serif !important ;
        }
        body {
            font-family: 'Geologica', serif;
            overflow-x: hidden;
            background: rgba(241, 241, 241, 1);
            color: #19191C;
        }
/* 1. ПРИОРИТЕТ ДЛЯ БИТРИКСА (Ставим выше всего) */
#bx-panel {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: auto !important;
    /* 2147483647 - это максимально возможное число для z-index в браузере */
    z-index: 2147483647 !important; 
}

        /* Header - Fixed */
        .header {
  
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 30px 50px;
            z-index: 900;
            background: none;
           
        }
        
        .header.scrolled {
            background: rgba(0,0,0,0.9);
            padding: 10px 50px;
            
        }
        .header.scrolled img{
            height: 25px;
        }
        .header.hidden {
            transform: translateY(-100%);
            opacity: 0;
        }
        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 10px;
            transition: transform 0.3s ease;
        }

        .hamburger:hover {
            transform: scale(1.1);
        }

        .hamburger span {
            width: 28px;
            height: 2px;
            background: #fff;
            transition: all 0.3s ease;
        }

        .nav-menu {
            display: flex;
            gap: 30px;
        }

        .nav-menu a {
            text-decoration: none;
            color: #fff;
            font-size: 15px;
            font-weight: 400;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: opacity 0.3s ease;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: #fff;
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-menu a:hover {
            opacity: 0.7;
        }

        .logo img {
            height: 45px;
            width: auto;
            filter: brightness(0) invert(1);
        }

        .search-icon {
            position: relative;
            display: flex;
            cursor: pointer;
            padding: 10px;
            transition: transform 0.3s ease;
            justify-content: end;
        }

        .search-icon svg {
            min-width: 26px;
            min-height: 26px;
            z-index: 100;
            stroke: #fff;
            stroke-width: 1.5;
            fill: none;
            margin-left: 30px;
        }

        /* Hero Section */
        .slider-container {
            width: 100%;
            height: 100vh;
            position: relative;
            overflow: hidden;
           
        }

        

        .carousel-item img {
            height: 100vh;
            object-fit: cover;
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.4) 100%);
        }

        /* Hero Content */
        .hero-content {
            position: absolute;
            bottom: 150px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: #fff;
            z-index: 50;
        }

        .hero-subtitle {
            font-size: 16px;
            font-weight: 300;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .hero-title {
            font-size: 56px;
            font-weight: 400;
            letter-spacing: 2px;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-link {
            font-size: 13px;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #fff;

            
            display: inline-block;
            padding: 10px 20px;
            
        }

        .hero-link:hover {
            opacity: 1;
            border-color: #fff;
        }

        /* Hero Pagination */
        .hero-pagination {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 50;
        }

        .hero-pagination-dot {
            width: 40px;
            height: 2px;
            background: rgba(255,255,255,0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .hero-pagination-dot.active {
            background: #fff;
        }

        .hero-pagination-dot:hover {
            background: rgba(255,255,255,0.6);
        }

        .carousel-indicators,
        .carousel-control-prev,
        .carousel-control-next {
            display: none;
        }

        /* Container Max Width */
        .container-max {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 30px;
        }

        /* Section Padding */
        .section-padding {
            padding: 50px 0;
        }

        /* Catalog Section */
       

        .catalog-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 50px;
        }

        .catalog-title {
            font-size: 42px;
            font-weight: 400;
            color: #19191C;
        }

        .catalog-nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .catalog-link {
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #19191C;

            transition: opacity 0.3s ease;
        }

        .catalog-link:hover {
            opacity: 1;
        }

        .catalog-slider-nav {
            display: flex;
            gap: 15px;
        }

        .slider-nav-btn {
            width: 45px;
            height: 45px;
            border: none;
            background: transparent;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            padding: 0;
        }

        .slider-nav-btn:hover {
            transform: scale(1.1);
        }

        .slider-nav-btn svg {
            width: 26px;
            height: 26px;
            stroke: #19191C;
            stroke-width: 1.5;
            fill: none;
        }

        /* Product Cards */
        .product-slider {
            overflow: hidden;
        }

        .product-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
        }
        .product-track1 {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
        }
        .product-card {
            flex: 0 0 315px;
            cursor: pointer;
        }

        .product-card:hover .product-image {
            transform: scale(1.02);
        }
        
        .product-image-wrapper {
            position: relative;
            width: 315px;
            height: 400px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-trend {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #19191C;
            margin-bottom: 10px;
            opacity: 0.5;
           font-family:'Geologica', serif !important ;
        }

        .product-name a{
            font-size: 16px;
            font-weight: 400;
            color: #19191C;
            margin-bottom: 15px;
            line-height: 1.4;
            text-decoration: none;
           
        }

        .product-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        

        
        .product-buy-link svg {
            width: 20px;
            height: 20px;
        }

        /* Category Images Section */
        .category-images-section {
           
        }

        .category-images-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .category-image-wrapper {
            display: flex;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        .category-image-wrapper.left{
            max-height: 530px;
        }
        .category-image-wrapper img {
            width: 100%;
            object-fit: cover;
        }

        .category-image-wrapper.left img {
            height: 530px;
        }

        .category-image-wrapper.right img {
            height: 670px;
        }

        .category-label {
            position: absolute;
            bottom: 30px;
            left: 30px;
            color: #fff;
            z-index: 10;
        }

        .category-label .label-subtitle {
            font-size: 13px;
            font-weight: 400;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 10px;
            opacity: 0.9;
        }

        .category-label .label-title {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .category-label .label-link {
            font-size: 12px;
            font-weight: 400;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #fff;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .category-label .label-link:hover {
            opacity: 1;
        }

        .category-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
        }

        .category-promo-text {
            text-align: center;
            margin-top: 40px;
        }

        .category-promo-text h3 {
            font-size: 30px;
            font-weight: 400;
            color: #19191C;
            margin-bottom: 15px;
        }

        .category-promo-text a {
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #19191C;
            
            
            transition: opacity 0.3s ease;
        }

        .category-promo-text a:hover {
            opacity: 1;
        }

        /* Full Screen Slider Section */
        .fullscreen-slider-section {
            width: 100%;
            
            position: relative;
            overflow: hidden;
        }

        .fullscreen-slider-nav {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 50px;
            z-index: 50;
        }

        .fullscreen-nav-btn {
            width: 55px;
            height: 55px;
            border: none;
            background: transparent;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            padding: 0;
        }

        .fullscreen-nav-btn:hover {
            transform: scale(1.2);
        }

        .fullscreen-nav-btn svg {
            width: 36px;
            height: 36px;
            stroke: #fff;
            stroke-width: 1.5;
            fill: none;
        }

        .fullscreen-slider-content {
            position: absolute;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: #fff;
            z-index: 50;
        }

        .fullscreen-slider-title {
            text-wrap: nowrap;
            font-size: 64px;
            font-weight: 400;
            letter-spacing: 3px;
            margin-bottom: 20px;
        }

        .fullscreen-slider-link {
            font-size: 13px;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #fff;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .fullscreen-slider-link:hover {
            opacity: 1;
        }

        /* Studio Section */
        .studio-section {
            background: #0a0a0a;
            color: #fff;
            position: relative;
            margin-top: 200px;
            margin-bottom: 150px;
            max-height: 300px;
        }

        .studio-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            align-items: center;
        }

        .studio-image-wrapper {
           
            height: 100%;
            overflow: visible;
        }

        .studio-image-wrapper img {
            
            width: 500px;
            height: 814px;
            object-fit: cover;
            position: absolute;
            z-index: 1;
            top: -115%;
            left: 10%;

        }

        .studio-content {
            
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .studio-subtitle {
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 25px;
            opacity: 0.8;
        }

        .studio-title {
            font-size: 62px;
            font-weight: 400;
            letter-spacing: 8px;
            margin-bottom: 35px;
        }

        .studio-link {
            font-size: 13px;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #fff;
            opacity: 0.7;
            transition: opacity 0.3s ease;
            align-self: flex-start;
        }

        .studio-link:hover {
            opacity: 1;
        }

        /* Catalog Categories Section */
        .catalog-categories-section {
           
        }

        .categories-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
        }

        .category-card {
            flex: 0 0 calc((100% - 60px) / 3);
            position: relative;
            cursor: pointer;
        }

        .category-card-image-wrapper {
            width: 100%;
            height: 580px;
            overflow: hidden;
        }

        .category-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .category-card:hover .category-card-image {
            transform: scale(1.05);
        }

        .category-card-label {
            position: absolute;
            bottom: 30px;
            left: 30px;
            color: #fff;
            z-index: 10;
            
        }

        .category-card-label h3 {
            font-size: 18px;
            font-weight: 500;
            text-transform: uppercase;
        }

        .category-card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
        }

        /* Split Section */
        .split-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            padding-bottom: 100px;
            
        }

        .split-image-wrapper {
            
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .split-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .split-content {
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
           
        }

        .split-slider-container {
            max-width: 640px;
            overflow: hidden;
            margin-bottom: 40px;
        }

        .split-slider-track {
            display: flex;
            gap: 20px;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .split-slider-item {
            flex: 0 0 200px;
        }

        .split-slider-item img {
            width: 200px;
            height: 230px;
            object-fit: cover;
        }

        .split-slider-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .split-slider-counter {
            font-size: 15px;
            font-weight: 400;
            color: #19191C;
        }

        .split-slider-btn {
            width: 45px;
            height: 45px;
            border: none;
            background: transparent;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            padding: 0;
        }

        .split-slider-btn:hover {
            transform: scale(1.1);
        }

        .split-slider-btn svg {
            width: 26px;
            height: 26px;
            stroke: #19191C;
            stroke-width: 1.5;
            fill: none;
        }

        .split-section-title {
            font-size: 48px;
            font-weight: 400;
            margin-bottom: 20px;
            text-align: center;
        }

        .split-section-link {
            font-size: 13px;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #19191C;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .split-section-link:hover {
            opacity: 1;
        }

        /* Footer */
        .footer {
            background: #0a0a0a;
            color: #fff;
            padding: 80px 50px 0;
            overflow: hidden;

        }
        .footer-left{
            display: flex;
            flex-direction: column;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            padding-bottom: 60px;
        }

        .footer-logo {
            margin-bottom: auto;
        }

        .footer-logo img {
            height: 60px;
            width: auto;
            filter: brightness(0) invert(1);
        }

        .footer-copyright {
            font-size: 12px;
            font-weight: 300;
            letter-spacing: 1px;
            color: rgba(255,255,255,0.5);
           text-decoration: none;
        }
.footer-copyright a{
            font-size: 12px;
            font-weight: 300;
            letter-spacing: 1px;
            color: rgba(255,255,255,0.5);
           text-decoration: none;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .footer-links-column h4 {
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 25px;
            opacity: 0.8;
        }

        .footer-links-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links-column li {
            margin-bottom: 12px;
        }

        .footer-links-column a {
            font-size: 14px;
            font-weight: 300;
            color: rgba(255,255,255,0.7);
            transition: color 0.3s ease;
            text-decoration: none;
        }

        .footer-links-column a:hover {
            color: #fff;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .footer-social svg {
            width: 32px;
            height: 32px;
        }

        .footer-bottom-logo {
            width: 100%;
            padding: 40px 0;
            padding-bottom: 80px;
            position: relative;
        }

        .footer-bottom-logo img {
            height: 167px;
            width: 100%;
            filter: brightness(0) invert(1);
            position: absolute;
            margin-top:0 ;
        }
        @media (max-width: 1500px) {
           .studio-image-wrapper img {
           
            left: 7%;

        }
        }
        /* От 1200px до 1024px */
        @media (max-width: 1200px) {
           .studio-image-wrapper img {

            top: -105%;
            left: 0%;
        }
        }

        /* От 1024px до 992px */
        @media (max-width: 1024px) {
           .studio-image-wrapper img {
            height: 700px;
            top: -87%;
            left: 0%;
        }
        }
        /* От 992px до 768px */
        @media (max-width: 992px) {
            .studio-image-wrapper img {
                
            top: -87%;
            left: -5%;
        }
        }
        @media (max-width: 840px) {
            .studio-image-wrapper img {
            height: 600px;
            top: -67%;
            left: -10%;
        }
        }
       

        /* От 480px до 400px - плавный переход к мобильной версии */
        @media  (max-width: 550px) {
           .studio-image-wrapper img {
           
            left: 15% !important;
        }
        }

        /* Мобильная версия: 400px и ниже */
        @media (max-width: 400px) {
           
        }

        /* Для очень маленьких экранов (320px и ниже) */
        @media (max-width: 350px) {
           .studio-image-wrapper img {
           
            left: -10% !important;
        }
        }
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }

        .hero-content {
            animation: fadeInUp 1s ease-out 0.5s both;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .category-card {
                flex: 0 0 calc((100% - 30px) / 2);
            }
        }
         @media (max-width: 1100px) {
            .nav-menu{
                gap: 10px;
            }
            .header a{
                font-size: 12px;
            }
            .logo img{
                height: 25px;
            }
         }

        @media (max-width: 768px) {
            * h1{
                font-size: 30px !important;
                
            }
            * h2{
                font-size: 26px !important;
                text-wrap: nowrap;
            }
            * h3{
                font-size: 22px !important;
            }
            .product-track1 {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 30px;
            transition: transform 0.5s ease;
        }
            .header {
                padding: 10px 30px;
            }
            .search-icon svg{
                margin-left: 18px;
            }
            .nav-menu {
                display: none;
            }

            .logo img {
                height: 25px;
            }
            .search-icon{
                flex-direction: row;
            }
            .hero-subtitle {
                font-size: 14px;
                letter-spacing: 2px;
            }

            .hero-title {
                font-size: 38px;
            }

            .hero-link {
                font-size: 11px;
            }

            .hero-pagination-dot {
                width: 30px;
            }

            .container-max {
                overflow: hidden;
                padding: 0 30px;
                max-width: 768px;
            }

            .catalog-title {
                font-size: 32px;
            }

            .catalog-header {
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
            }

            .catalog-nav {
                width: 100%;
                justify-content: space-between;
            }

            .product-card {
                flex: 0 0 280px;
            }

            .product-image-wrapper {
                width: 280px;
                height: 360px;
            }

            .category-images-grid {
                grid-template-columns: 1fr;
            }

            .category-image-wrapper.left img,
            .category-image-wrapper.left,
            .category-image-wrapper.right img {
                height: 400px;
            }

            .studio-grid {
                grid-template-columns: 1fr;
            }

            
            

            .category-card-image-wrapper {
                height: 400px;
            }

            .split-section {
                grid-template-columns: 1fr;
            }

            .split-content {
                padding: 60px 30px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-links {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .fullscreen-slider-title {
                font-size: 42px;
            }
             .studio-image-wrapper{
                height: 200px;
            }
            .studio-section{
                max-height: 500px;
                display: flex;
                display: flex;
                justify-content: center;
                align-items: center;
                text-align: center;
                
            }
            .studio-image-wrapper img{
                height: 500px;
                width: 335px;
                top: -38%;
                left: 25%;
            }
            .studio-content{
                display: block;
            }
            
            .split-section-title {
                font-size: 36px;
            }
            .category-image-wrapper.right{
                display: none;
            }
           
            .split-section{
                display: block;
            }
            .split-slider-item{
                max-height: 160px;
                max-width: 150px;
                flex: 0 0 110px;
            }
            .split-slider-item img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            .split-slider-track{
                gap: 23px;
            }
            .footer-grid{
            
                justify-content: center;
                align-items: center;
                text-align: center;
            }
            .footer-logo img{
                height: 40px;
            }
            .footer-bottom-logo{
                display: none;
            }
            .footer-social{
                justify-content: center;
            }
        }
        @media (max-width: 400px) {
            * h1{
                font-size: 24px !important;
                
            }
            * h2{
                font-size: 24px !important;
                text-wrap: nowrap;
            }
            * h3{
                font-size: 20px !important;
            }
            .wishlist-counter{
                top: -4px !important;
                right: -9px !important;
            }
            .header.scrolled img{
                height: 20px;
            }
            .header.scrolled{
                padding: 10px 10px;
            }
            .hero-content{
                    display: flex;
                position: relative;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                bottom: 274px;
            }
            .fullscreen-slider-section{
                max-height: 400px;
            }
            .fullscreen-slider-nav{
                padding: 0;
            }
            .container-max{
                padding: 0 10px;
            }
            .footer-grid{
            
                justify-content: center;
                align-items: center;
                text-align: center;
            }
            .footer-logo img{
                height: 40px;
            }
            .footer-bottom-logo{
                display: none;
            }
            .footer-social{
                justify-content: center;
            }
            .split-section{
                display: block;
            }
            .split-slider-item{
                max-height: 120px;
                max-width: 110px;
                flex: 0 0 110px;
            }
            .split-slider-item img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            .split-slider-track{
                gap: 23px;
            }
            
            .logo img {
                height: 20px;
            }
            .header {
                padding: 20px 10px;
            }
            .search-icon {
                flex-direction: row;
                display: flex;
                padding: 0;
            }
            .search-icon svg{
                margin-left: 8px;
            }
            .menu-right{
                display: none !important;
            }
            .studio-image-wrapper{
                height: 200px;
            }
            .studio-section{
                max-height: 500px;
                display: flex;
                display: flex;
                justify-content: center;
                align-items: center;
                text-align: center;
                
            }
            .studio-image-wrapper img{
                height: 500px;
                width: 335px;
                top: -38%;
                left: 5% !important;
            }
            .studio-content{
                display: block;
            }
            .carousel-item img {
                height: 50vh;
            }
            .fullscreen-slider-title{
                font-size: 20px !important;
            }
            .menu-main{
                padding-top: 0 !important;
            }
            .category-image-wrapper.right{
                display: none;
            }
        }
        /* Modal Overlay */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        /* Modal Window */
        .modal-window {
            width: 670px;
            height: 570px;
            background: #fff;
            position: relative;
            overflow: hidden;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .modal-overlay.active .modal-window {
            transform: scale(1);
        }

        /* Modal Top Half */
        .modal-top {
            width: 100%;
            height: 285px;
            position: relative;
            overflow: hidden;
        }

        .modal-top img {
            width: 100%;
            height: 570px;
            object-fit: cover;
            object-position: center top;
        }

        .modal-close {
            position: absolute;
            top: 25px;
            right: 25px;
            width: 50px;
            height: 50px;
            border: none;
            background: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .modal-close:hover {
            
            transform: scale(1.1);
        }

        .modal-close svg {
            width: 36px;
            height: 36px;
            stroke: #fff;
            stroke-width: 1.5;
            fill: none;
        }

        /* Modal Bottom Half */
        .modal-bottom {
            width: 100%;
            height: 285px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0 40px;
        }

        .modal-title {
            font-size: 30px;
            font-weight: 400;
            color: #19191C;
            text-align: center;
            line-height: 1.3;
            margin-bottom: 15px;
        }

        .modal-subtitle {
            font-size: 18px !important;
            font-weight: 300 !important;
            color: #19191C !important;
            text-align: center !important;
            line-height: 1.6 !important;
            
        }

        .modal-buttons {
            display: flex;
            flex-direction: row;
            gap: 15px;
            width: 100%;
            justify-content: center;
            margin-top: 50px;
        }

        .modal-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 180px;
            height: 60px;
            background: transparent;
            border: 1px solid #19191C;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #19191C;
            transition: all 0.3s ease;
            cursor: pointer;
            white-space: nowrap;
            text-decoration: none;
        }

        .modal-btn:hover {
            background: #19191C;
            color: #fff;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .modal-window {
                width: 90%;
                height: auto;
                max-height: 90vh;
            }

            .modal-top {
                height: 200px;
            }

            .modal-top img {
                height: 400px;
            }

            .modal-close {
                width: 44px;
                height: 44px;
                top: 15px;
                right: 15px;
            }

            .modal-close svg {
                width: 24px;
                height: 24px;
            }

            .modal-bottom {
                height: auto;
                padding: 40px 30px;
            }

            .modal-title {
                text-wrap: wrap ;
                font-size: 24px;
            }

            .modal-subtitle {
                font-size: 14px;
            }

            .modal-buttons {
                flex-direction: column;
                margin-top: 30px;
                align-items: center;
                
            }

            .modal-btn {
                text-decoration: none;
                width: 100%;
                max-width: 280px;
                height: 50px;
            }
        }
         /* Demo Hamburger Button */
        

        .hamburger:hover {
            transform: scale(1.1);
        }

        .hamburger span {
            width: 28px;
            height: 2px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Menu Overlay */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: #fff;
            z-index: 999;
            transform: translateX(-100%);
            transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
            overflow: hidden;
        }

        .menu-overlay.active {
            transform: translateX(0);
        }

        /* Menu Header */
        .menu-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 30px 50px;
        }

        .menu-close {
            width: 40px;
            height: 40px;
            border: none;
            background: transparent;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            padding: 0;
        }

        .menu-close:hover {
            transform: scale(1.1);
        }

        .menu-close svg {
            width: 40px;
            height: 40px;
            stroke: #19191C;
            stroke-width: 1.5;
            fill: none;
        }

        .menu-logo {
            margin-left: 20px;
        }

        .menu-logo img {
            width: 270px;
            height: 30px;
            object-fit: contain;
        }

        .menu-header-links {
            display: flex;
            align-items: center;
            gap: 40px;
            margin-left: 270px;
            flex: 1;
        }

        .menu-header-link {
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #19191C;
            transition: opacity 0.3s ease;
            text-decoration: none;
        }

        .menu-header-link:hover {
            opacity: 0.6;
        }

        .menu-dropdown {
            position: relative;
        }

        .menu-dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #19191C;
            background: transparent;
            border: none;
            cursor: pointer;
            transition: opacity 0.3s ease;
            padding: 0;
        }

        .menu-dropdown-toggle:hover {
            opacity: 0.6;
        }

        .menu-dropdown-toggle svg {
            width: 16px;
            height: 16px;
            stroke: #19191C;
            stroke-width: 1.5;
            fill: none;
            transition: transform 0.3s ease;
        }

        .menu-dropdown-toggle.active svg {
            transform: rotate(180deg);
        }

        .menu-dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(250, 250, 250, 1);
            min-width: 200px;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .menu-dropdown-content.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .menu-dropdown-content a {
            display: block;
            font-size: 14px;
            font-weight: 300;
            color: #19191C;
            padding: 8px 0;
            transition: opacity 0.3s ease;
        }

        .menu-dropdown-content a:hover {
            opacity: 0.6;
        }

        .menu-search {
            cursor: pointer;
            padding: 10px;
            transition: transform 0.3s ease;
        }

        .menu-search:hover {
            transform: scale(1.1);
        }

        .menu-search svg {
            width: 24px;
            height: 24px;
            stroke: #19191C;
            stroke-width: 1.5;
            fill: none;
        }

        /* Menu Main Content */
        .menu-main {
            display: flex;
            padding: 160px 50px 50px;
            min-height: calc(100vh - 100px);
            gap: 60px;
        }

        .menu-left {
            width: 50%;
            padding-left: 170px;
        }

        .menu-category {
            display: flex;
            margin-bottom: 60px;
        }

        .menu-category-number {
            font-size: 16px;
            font-weight: 400;
            color: #19191C;
            opacity: 0.5;
        }

        .menu-category-content {
            justify-content: space-around;
            display: flex;
            flex: 1;
            flex-direction: row; 
        }

        .menu-category-title {
            font-size: 16px;
            font-weight: 400;
            color: #19191C;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .menu-subitems {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            column-gap: 20px
        }

        .menu-subitem {
            text-decoration: none;
            text-transform: uppercase;
            font-size: 14px;
            font-weight: 300;
            color: #19191C;
            transition: opacity 0.3s ease;
        }

        .menu-subitem:hover {
            opacity: 0.6;
        }

        .menu-right {
            
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
        }

        .menu-slider-container {
            max-width: 630px;
            width: 100%;
            overflow: hidden;
            margin-bottom: 30px;
        }

        .menu-slider-track {
            overflow: hidden;
            display: flex;
            gap: 20px;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .menu-slider-item {
            max-width: 200px;
            flex: 0 0 calc((100% - 40px) / 3);
        }

        .menu-slider-item img {
            width: 100%;
            height: 230px;
            object-fit: cover;
        }

        .menu-slider-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .menu-slider-btn {
            width: 45px;
            height: 45px;
            border: none;
            background: transparent;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            padding: 0;
        }

        .menu-slider-btn:hover {
            transform: scale(1.1);
        }

        .menu-slider-btn svg {
            width: 26px;
            height: 26px;
            stroke: #19191C;
            stroke-width: 1.5;
            fill: none;
        }

        .menu-slider-counter {
            font-size: 15px;
            font-weight: 400;
            color: #19191C;
        }

        .menu-slider-title {
            font-size: 30px;
            font-weight: 400;
            color: #19191C;
            text-align: center;
            margin-bottom: 15px;
        }
        .slider-under-text{
            flex-direction: column;
    justify-content: center;
            display: flex;
            align-items: center;
        }
        .menu-slider-link {
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #19191C;
            opacity: 0.7;
            transition: opacity 0.3s ease;
           
        }

        .menu-slider-link:hover {
            opacity: 1;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .menu-header-links {
                margin-left: 150px;
                gap: 20px;
            }

            .menu-left {
                padding-left: 100px;
            }

            .menu-slider-item {
                flex: 0 0 calc((100% - 40px) / 2);
            }
        }

        @media (max-width: 768px) {
            .menu-header {
                padding: 20px 30px;
            }

            .menu-logo img {
                width: 180px;
                height: 20px;
            }

            .menu-header-links {
                display: none;
            }

            .menu-main {
                flex-direction: column;
                padding: 100px 30px 30px;
                gap: 40px;
            }

            .menu-left,
            .menu-right {
                width: 100%;
                padding-left: 0;
            }

            .menu-category {
                gap: 20px;
            }

            .menu-slider-item {
                flex: 0 0 100%;
            }
        }
        /* Базовые стили для мобильного аккордеона */
.accordion-item {
    display: none; /* Скрыт по умолчанию */
    width: 100%;
}

/* Показываем мобильную версию и скрываем десктопную при ширине до 400px */
@media (max-width: 400px) {
    .menu-category {
        display: none !important;
    }
    
    
    .mobile-menu-accordion {
        display: block;
    }
    
    /* Стили для каждого пункта аккордеона */
    .accordion-item {
        display: block;
        border-top: 1px solid rgba(25, 25, 28, 0.1) !important; /* Верхняя граница */
        border-bottom: 1px solid rgba(25, 25, 28, 0.1) !important; /* Нижняя граница */
        margin-bottom: -1px; /* Чтобы границы не удваивались */
    }
    
    /* Шапка аккордеона (кликабельная область) */
    .accordion-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        cursor: pointer;
        user-select: none;
    }
    
    /* Левая часть заголовка (номер + название) */
    .accordion-title {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    /* Нумерация */
    .accordion-number {
        font-size: 16px;
        font-weight: 400;
        color: #19191C;
        opacity: 0.5;
    }
    
    /* Название категории */
    .accordion-name {
        font-size: 16px;
        font-weight: 400;
        color: #19191C;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    
    /* Стрелка */
    .accordion-arrow {
        font-size: 20px;
        color: #19191C;
        transition: transform 0.3s ease; /* Плавный поворот */
    }
    
    /* Поворот стрелки при закрытом аккордеоне */
    .accordion-item.inactive .accordion-arrow {
        transform: rotate(180deg); /* Поворачиваем на 180 градусов */
    }
    
    /* Контент (подменю) - показано по умолчанию на мобиле */
    .accordion-content {
        display: flex;
        padding-bottom: 20px;
        padding-left: 34px; /* Отступ слева, чтобы выровнять с названием (номер 16px + gap 12px + немного) */
        flex-direction: column;
        gap: 12px;
        max-height: 50vh;
        overflow-y: auto;
    }
    
    /* Можно скрывать контент при клике на заголовок (если будет добавлена логика) */
    .accordion-item.inactive .accordion-content {
        display: none;
        max-height: none;
        overflow-y: visible;
    }
    
    /* Стили для ссылок подменю */
    .accordion-subitem {
        text-decoration: none;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 300;
        color: #19191C;
        transition: opacity 0.3s ease;
        padding: 4px 0;
    }
    
    .accordion-subitem:hover {
        opacity: 0.6;
    }
}
/* ========== FILTERS BAR ========== */
.filters-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 16px;
    max-width: 100%;
    font-size: 14px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(25,25,28,0.1);
}
.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.arrow-btn {
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}
.arrow-btn:hover {
    background-color: #f0f0f0;
}
.home-link {
    color: rgba(25, 25, 28, 0.7);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.3px;
    white-space: nowrap;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 12px;
}
.home-link:hover {
    color: #19191C;
    border-color: #19191C;
}
.filter-icon {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}
.filter-icon:hover {
    background-color: #f0f0f0;
}
.filters-scroll {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    max-width: 1000px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}
.filters-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
.filters-list {
    display: flex;
    gap: 28px;
    white-space: nowrap;
    padding: 4px 0;
}
.filter-item {
    font-size: 14px;
    font-weight: 500;
    color: #19191C;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: opacity 0.2s, color 0.2s;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
    font-family: 'Montserrat', sans-serif;
}
.filter-item:hover,
.filter-item.active {
    opacity: 1;
    color: #19191C;
    border-color: #19191C;
}

/* ========== DARK HEADER VARIANT (для каталога) ========== */
.header--dark .hamburger span,
.header--dark .nav-menu a,
.header--dark .search-icon svg {
    stroke: #19191C !important;
    color: #19191C !important;
    z-index: 98 !important;
}
.header--dark .logo img {
    filter: none !important;
}

/* ========== CATALOG PAGE SPACING ========== */
.catalog-page__spacer {
    padding-top: 120px;
}
.catalog-page__bottom-spacer {
    padding-top: 120px;
}

/* ========== RESPONSIVE FOR FILTERS ========== */
@media (max-width: 600px) {
    .filters-container {
        padding: 10px 16px;
        gap: 12px;
    }
    .filters-list {
        gap: 20px;
    }
    .nav-left, .nav-right {
        gap: 8px;
    }
    .filter-item {
        font-size: 12px;
    }
}
/* ========== CATALOG GRID - FIX OVERLAP ========== */
.catalog-section-catalog .row {
    /* Центрируем карточки, если они уже контента */
    justify-content: center;
}

/* Карточка: гибкая, но с ограничением по ширине */
.catalog-section-catalog .product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    max-width: 315px; /* Ограничиваем ширину карточки размером изображения */
    margin: 0 auto; /* Центрируем в колонке */
    cursor: pointer;
    box-sizing: border-box;
}

/* Изображение: строго 315x400, но адаптивно на мобильных */
.catalog-section-catalog .product-image-wrapper {
        background: #f5f5f5;
    position: relative;
    width: 100%;
    max-width: 315px;
    height: 400px;
    margin: 0 auto 20px; /* Центрируем и отступ снизу */
    overflow: hidden;
    flex-shrink: 0;
}

.catalog-section-catalog .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.catalog-section-catalog .product-card:hover .product-image {
    transform: scale(1.02);
}

/* Иконка в правом верхнем углу */
/* === Твои существующие стили (без изменений) === */
.product-wishlist-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.product-wishlist-btn:hover {
    transform: scale(1.1);
    opacity: 0.7;
}

.product-wishlist-btn svg {
    width: 24px;
    height: 24px;
    stroke: #19191C;
    stroke-width: 1.5;
    fill: none;
}


/* Закрашиваем сердечко когда товар в избранном */
.product-wishlist-btn.active svg path {
    fill: #19191C !important;
}

/* Плавный переход заливки */
.product-wishlist-btn svg path {
    transition: fill 0.2s ease;
}

/* Анимация "пульс" при добавлении */
@keyframes wishlistPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.product-wishlist-btn.added svg {
    animation: wishlistPulse 0.3s ease;
}

/* === Опционально: счётчик в шапке === */
.wishlist-counter {
    position: absolute;
    top: 5px;
    right: 2px;
    background: #19191C;
    border: 1px solid #fff;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
    z-index: 100;
}

/* Текст карточки */
.catalog-section-catalog .product-trend {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #19191C;
    margin-bottom: 10px;
    text-align: left;
}

.catalog-section-catalog .product-name {
    font-size: 22px;
    font-weight: 400;
    color: #19191C;
    margin-bottom: 0px;
    line-height: 1.4;
    flex-grow: 1;
    text-align: left;
}

/* Кнопки: всегда в строку, по краям */
.catalog-section-catalog .product-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
    padding-top: 10px;
    width: 100%;
    max-width: 315px;
    margin-left: auto;
    margin-right: auto;
}

/* Ссылка "ПОДРОБНЕЕ" с анимацией подчёркивания */
 .product-details-link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #19191C;
    text-decoration: none;
    position: relative;
    display: inline-block;
    text-wrap: nowrap;
}

.product-details-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #19191C;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

 .product-details-link:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}

/* Кнопка "КУПИТЬ" с такой же анимацией */
 .product-buy-link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #19191C;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

 .product-buy-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #19191C;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-buy-link:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}

 .product-buy-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ========== RESPONSIVE: предотвращаем наложение ========== */

/* Планшеты: карточка центрируется, изображение 315px */
@media (max-width: 991px) {
    .catalog-section-catalog .product-card {
        max-width: 315px;
    }
    .catalog-section-catalog .product-actions {
        justify-content: center;
        gap: 25px;
    }
}

/* Мобильные: карточка на всю ширину, изображение адаптируется */
@media (max-width: 576px) {
    .catalog-section-catalog .product-card {
        max-width: 100%;
    }
    .catalog-section-catalog .product-image-wrapper {
        max-width: 100%;
        height: auto;
        padding-top: 127%; /* Соотношение 400/315 ≈ 127% для адаптивной высоты */
    }
    .catalog-section-catalog .product-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .catalog-section-catalog .product-name {
        font-size: 18px;
    }
    .catalog-section-catalog .product-actions {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        max-width: 100%;
    }
    .catalog-section-catalog .product-buy-link {
        width: 100%;
        justify-content: center;
        
        
    }
}

/* ========== FILTERS BAR ========== */
.filters-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 100%;
    font-size: 14px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(25,25,28,0.1);
}
.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.arrow-btn {
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}
.arrow-btn:hover {
    background-color: #f0f0f0;
}
.home-link {
    color: rgba(25, 25, 28, 0.7);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.3px;
    white-space: nowrap;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 12px;
}
.home-link:hover {
    color: #19191C;
    border-color: #19191C;
}
.filter-icon {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}
.filter-icon:hover {
    background-color: #f0f0f0;
}
.filters-scroll {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    max-width: 1000px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.filters-scroll::-webkit-scrollbar {
    display: none;
}
.filters-list {
    display: flex;
    gap: 28px;
    white-space: nowrap;
    padding: 4px 0;
}
.filter-item {
    font-size: 14px;
    font-weight: 500;
    color: #19191C;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: opacity 0.2s, color 0.2s;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
    font-family: 'Montserrat', sans-serif;
}
.filter-item:hover,
.filter-item.active {
    opacity: 1;
    color: #19191C;
    border-color: #19191C;
}

/* ========== DARK HEADER VARIANT ========== */
/* Стили для темной шапки (все страницы кроме главной) */
.header--dark .hamburger span,
.header--dark .nav-menu a,
.header--dark .search-icon svg {
    stroke: #19191C !important;
    color: #19191C !important;
    filter: brightness(0) !important;
}
.header--dark .logo img {
    filter: brightness(0) !important;
}

/* При скролле на темной шапке - все элементы становятся белыми */
.header--dark.scrolled .hamburger span,
.header--dark.scrolled .nav-menu a,
.header--dark.scrolled .search-icon svg {
    stroke: #fff !important;
    color: #fff !important;
    filter: brightness(1) !important;
}
.header--dark.scrolled .logo img {
    filter: brightness(0) invert(1) !important;
}
/* ========== PRODUCT PAGE LAYOUT ========== */
.product-page__spacer {
    padding-top: 120px;
}
.product-page__bottom-spacer {
    padding-top: 120px;
}

/* ========== PRODUCT CARD OP (детальная страница) ========== */
.product-card-op {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding: 40px 0;
}

/* Left Side - Images */
.product-images {
    display: flex;
    gap: 20px;
    height: auto;
    flex: 0 0 50%;
    max-width: 600px;
}
.thumbnails-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    height: 100%;
}
.thumbnail-nav {
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}
.thumbnail-nav:hover {
    transform: scale(1.1);
}
.thumbnail-nav svg {
    width: 20px;
    height: 20px;
    stroke: #19191C;
    stroke-width: 1.5;
    fill: none;
}
.thumbnails-slider {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    overflow: hidden;
    flex: 1;
    align-items: center;
}
.thumbnail-track {
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.4s ease;
}
.thumbnail-item {
    width: 90px;
    height: 90px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 0 0 90px;
    border: 2px solid transparent;
    border-radius: 4px;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.thumbnail-item:hover img {
    opacity: 0.8;
}

/* === РАЗНЫЕ ЧАСТИ ИЗОБРАЖЕНИЯ ДЛЯ КАЖДОЙ МИНИАТЮРЫ === */

/* 1-я миниатюра - центр (общий вид) */
.thumbnail-item:nth-child(1) img {
    object-position: center center;
    transform: scale(1);
}

/* 2-я миниатюра - верхняя левая часть */
.thumbnail-item:nth-child(2) img {
    object-position: 110% 25%;
    transform: scale(2.5);
}

/* 3-я миниатюра - верхняя правая часть */
.thumbnail-item:nth-child(3) img {
    object-position: 75% 25%;
    transform: scale(2.5);
}

/* 4-я миниатюра - нижняя левая часть */
.thumbnail-item:nth-child(4) img {
    object-position: 25% 75%;
    transform: scale(2.5);
}



/* Активная миниатюра - подсветка */
.thumbnail-item.active {
    transform: scale(1.05);
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
    .thumbnail-item {
        width: 70px;
        height: 70px;
        flex: 0 0 70px;
    }
}
.main-image-wrapper {
    width: 430px;

    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Right Side - Content */
.product-content {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    height: auto;
    flex: 1;
}
.product-title {
    font-size: 30px;
    font-weight: 400;
    color: #19191C;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: 'Prata', serif;
}
.product-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #19191C;
    margin-bottom: 30px;
    max-width: 500px;
}

/* Buttons */
.product-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid #19191C;
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #19191C;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}
.product-btn:hover {
    background: #19191C;
    color: #fff;
}

/* Accordions */
.product-accordions {
    max-width: 600px;
}
.accordion-item-card {
    border: none;
    border-top: 1px solid #19191C;
    background: transparent;
}
.accordion-item-card:first-child {
    border-top: 1px solid #19191C;
}
.accordion-item-card:last-child {
    border-bottom: 1px solid #19191C;
}
.accordion-button-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    background: transparent;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #19191C;
    cursor: pointer;
    transition: all 0.3s ease;
}
.accordion-button-card:hover {
    opacity: 0.7;
}
.accordion-button-card .accordion-title-card {
    font-family: 'Prata', serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}
.accordion-icon-card {
    width: 24px;
    height: 24px;
    transition: transform 0.4s ease;
}
.accordion-icon-card svg {
    width: 100%;
    height: 100%;
    stroke: #19191C;
    stroke-width: 1.5;
    fill: none;
}
.accordion-button.active-card .accordion-icon-card {
    transform: rotate(180deg);
}
.accordion-content-card {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.accordion-content-inner-card {
    padding: 0 0 20px 0;
}
.accordion-content-inner-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.accordion-content-inner-card li {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #19191C;
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
}
.accordion-content-inner-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #19191C;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .product-card-op {
        flex-direction: column;
        gap: 40px;
    }
    .product-images {
        justify-content: center;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .main-image-wrapper {
        width: 100%;
        max-width: 260px;
        height: auto;
        aspect-ratio: 430/550;
    }
    .product-title {
        font-size: 26px;
    }
    .product-description {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .thumbnails-slider {
        flex-direction: row;
        overflow-x: auto;
        padding: 10px 0;
    }
   
    .thumbnail-item {
        width: 70px;
        height: 90px;
        flex: 0 0 70px;
    }
    .product-title {
        font-size: 22px;
    }
    .product-buttons {
        max-width: 100%;
    }
    .product-btn {
        padding: 12px 20px;
        font-size: 11px;
        width: 100%;
        justify-content: center;
    }
    .filters-container {
        padding: 10px 0;
        gap: 12px;
    }
    .filters-list {
        gap: 20px;
    }
}
/* ========== ABOUT PAGE HERO ========== */
.about-hero {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/about-big.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.about-hero-title {
    position: relative;
    z-index: 10;
    font-size: 44px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    font-family: 'Prata', serif;
}

/* ========== ABOUT SECTIONS ========== */
.about-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0;
}
.about-section-grid {
    display: flex;
    max-width: 1400px;
    width: 100%;
}

/* Section 1 - Image Right */
.about-section-1 .text-content {
    text-align: left;
    padding-right: 140px;
    flex: 1;
}
.about-section-1 .image-content {
    width: 650px;
    height: 430px;
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
}
.about-section-1 .image-content img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

/* Section 2 - Image Left */
.about-section-2 .text-content {
    text-align: left;
    padding-left: 10px;
    order: 2;
    flex: 1;
}
.about-section-2 .image-content {
    width: 650px;
    height: 430px;
    display: flex;
    justify-content: flex-start;
    order: 1;
    flex-shrink: 0;
}
.about-section-2 .image-content img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

/* Typography */
.about-title {
    font-size: 44px;
    font-weight: 400;
    color: #19191C;
    line-height: 1.3;
    margin-bottom: 25px;
    font-family: 'Prata', serif;
}
.about-title-muted {
    font-size: 44px;
    font-weight: 400;
    color: rgba(25, 25, 28, 0.5);
    line-height: 1.3;
    margin-bottom: 25px;
    margin-left: 130px;
    font-family: 'Prata', serif;
}
.about-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: #19191C;
}

/* Spacers */
.about-page__spacer {
    padding-top: 120px;
}
.about-page__bottom-spacer {
    padding-top: 120px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .about-hero-title {
        font-size: 36px;
    }
    .about-section {
        padding: 60px 0;
    }
    .about-section-grid {
        flex-direction: column;
        gap: 40px;
    }
    .about-section-1 .text-content {
        text-align: left;
        padding-right: 0;
    }
    .about-section-1 .image-content {
        justify-content: center;
        width: 100%;
    }
    .about-section-2 .text-content {
        padding-left: 0;
        order: 1;
    }
    .about-section-2 .image-content {
        order: 2;
        justify-content: center;
        width: 100%;
    }
    .about-title,
    .about-title-muted {
        font-size: 32px;
    }
    .about-title-muted {
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 28px;
    }
    .about-title,
    .about-title-muted {
        font-size: 26px;
    }
    .about-text {
        font-size: 15px;
    }
    .about-section-1 .image-content,
    .about-section-2 .image-content {
        height: auto;
    }
}
/* ========== PRIVACY PAGE ========== */
.privacy-page__spacer {
    padding-top: 120px;
}
.privacy-page__bottom-spacer {
    padding-top: 120px;
}

.privacy-section {
    color: rgba(25, 25, 28, 0.7);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section h1 {
    font-family: 'Prata', serif;
    font-size: 44px;
    font-weight: 400;
    color: #19191C;
    margin-bottom: 40px;
    line-height: 1.3;
}

.privacy-section p {
    margin-bottom: 20px;
}

.privacy-section .data-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin: 15px 0 25px;
    padding-left: 20px;
}

.privacy-section .data-list span {
    position: relative;
    padding-left: 15px;
}

.privacy-section .data-list span::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #19191C;
}

.privacy-section ul {
    list-style: none;
    padding-left: 20px;
    margin: 15px 0 25px;
}

.privacy-section ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
}

.privacy-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #19191C;
}

.privacy-section a {
    color: rgba(25, 25, 28, 0.7);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.privacy-section a:hover {
    border-color: #19191C;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .privacy-section h1 {
        font-size: 32px;
    }
    .privacy-section {
        font-size: 14px;
        padding: 0 20px;
    }
    .privacy-section .data-list {
        flex-direction: column;
        gap: 8px 0;
    }
}
/* ========== 404 PAGE ========== */
.page404 {
    background-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%), url('../images/not-found.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 100px 20px;
}

.page404 h1 {
    color: #fff;
    font-size: 44px;
    font-weight: 400;
    font-family: 'Prata', serif;
    margin-bottom: 25px;
    line-height: 1.3;
}

.page404 a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.page404 a:hover {
    color: #19191C;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .page404 h1 {
        font-size: 32px;
    }
    .page404 a {
        font-size: 13px;
        padding: 10px 25px;
    }
}
/* Filter Button */
        .btn-filter {
            width: 50px;
            height: 50px;
            border: none;
            background: transparent;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            padding: 0;
        }

        .btn-filter:hover {
            background: #f5f5f5;
            border-radius: 10px;
        }

        .btn-filter:hover svg path,
        .btn-filter:hover svg circle {
            stroke: #000;
        }

        .btn-filter svg {
            width: 24px;
            height: 24px;
        }

        /* Modal Overlay */
        .modal-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
           
            display: none;
            justify-content: flex-end;
            z-index: 2000;
            opacity: 0 !important;
            transition: opacity 0.3s ease;
        }

        .modal-backdrop.show {
            display: flex !important;
            opacity: 1 !important;
           --bs-backdrop-bg: rgba(0, 0, 0, 0.582) !important;
            
        }

        /* Filter Modal */
        .panel-filter {
            width: 480px;
            height: 100%;
            background: #fff;
           
            position: relative;
            transform: translateX(100%);
            transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
            overflow-y: auto;
        }

        .modal-backdrop.show .panel-filter {
            transform: translateX(0);
        }

        /* Close Button */
        .btn-close-panel {
            position: absolute;
            top: 112px;
            right: 60px;
            width: 40px;
            height: 40px;
            border: none;
            background: transparent;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .btn-close-panel:hover {
            transform: scale(1.1);
        }

        .btn-close-panel svg {
            width: 24px;
            height: 24px;
            stroke: #19191C;
            stroke-width: 1.5;
            fill: none;
        }

        /* Filter Content */
        .panel-body {
            padding: 200px 40px 40px;
        }

        /* Filter Accordions */
        .filter-group {
          
            border-bottom: 1px solid rgba(25, 25, 28, 0.1);
        }

        .filter-group:first-child {
            border-top: 1px solid rgba(25, 25, 28, 0.1);
        }

        .filter-group:last-child {
            border-bottom: 1px solid rgba(25, 25, 28, 0.1);
        }

        .filter-group-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 25px 0;
            background: transparent;
            border: none;
            font-family: 'Prata', serif;
            font-size: 20px;
            font-weight: 400;
            color: #19191C;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-group-header:hover {
            opacity: 0.7;
        }

        .filter-group-icon {
            width: 24px;
            height: 24px;
            transition: transform 0.4s ease;
        }

        .filter-group-icon svg {
            width: 100%;
            height: 100%;
            stroke: #19191C;
            stroke-width: 1.5;
            fill: none;
        }

        .filter-group-header.open .filter-group-icon {
            transform: rotate(180deg);
        }

        .filter-group-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .filter-group-inner {
            padding: 0 0 25px 0;
        }

        /* Checkbox Items */
        .filter-option {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px 0;
            cursor: pointer;
        }

        .filter-option:hover {
            opacity: 0.7;
        }

        .custom-checkbox {
            width: 20px;
            height: 20px;
            position: relative;
            flex-shrink: 0;
        }

        .custom-checkbox input {
            position: absolute;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
            z-index: 2;
        }

        .custom-checkbox svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 20px;
            height: 20px;
        }

        .checkbox-empty {
            display: block;
        }

        .checkbox-filled {
            display: none;
        }

        .custom-checkbox input:checked + .checkbox-empty {
            display: none;
        }

        .custom-checkbox input:checked ~ .checkbox-filled {
            display: block;
        }

        .filter-option-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 15px;
            font-weight: 400;
            color: #19191C;
        }

        /* Price Inputs */
        .price-range-wrapper {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 0;
        }

        .price-input-group {
            flex: 1;
            position: relative;
        }

        .price-input-group input {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid rgba(228, 228, 228, 1);
            border-radius: 10px;
            font-family: 'Montserrat', sans-serif;
            font-size: 15px;
            font-weight: 400;
            color: #19191C;
            background: #fff;
            transition: border-color 0.3s ease;
        }

        .price-input-group input:focus {
            outline: none;
            border-color: #19191C;
        }

        .price-input-group input::placeholder {
            color: rgba(25, 25, 28, 0.4);
        }

        .price-divider {
            width: 10px;
            height: 1px;
            flex-shrink: 0;
        }

        .price-divider svg {
            width: 100%;
            height: 100%;
        }

        /* View All Link */
        .link-view-all {
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            font-weight: 400;
            color: #19191C;
            text-decoration: none;
            padding: 15px 0;
            display: inline-block;
            transition: opacity 0.3s ease;
        }

        .link-view-all:hover {
            opacity: 0.6;
        }

        /* Filter Actions */
        .filter-footer {
            display: flex;
            gap: 15px;
            padding-top: 30px;
            margin-top: 20px;
        }

        .btn-filter-action {
            flex: 1;
            padding: 16px;
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-filter-clear {
            background: transparent;
            border: 1px solid #19191C;
            border-radius: 100px;
            color: #19191C;
        }

        .btn-filter-clear:hover {
            background: #19191C;
            color: #fff;
        }

        .btn-filter-submit {
            background: #19191C;
            border: 1px solid #19191C;
            border-radius: 100px;
            color: #fff;
        }

        .btn-filter-submit:hover {
            background: #333;
        }

        /* Responsive */
        @media (max-width: 576px) {
            .panel-filter {
                width: 100%;
            }

            .btn-close-panel {
                top: 80px;
                right: 30px;
            }

            .panel-body {
                padding: 160px 30px 30px;
            }
        }
         /* Search Button - No Border */
        .search-trigger-btn {
            width: 50px;
            height: 50px;
            border: none;
            background: transparent;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            padding: 0;
        }

        .search-trigger-btn:hover {
            opacity: 0.6;
        }

        .search-trigger-btn svg {
            width: 24px;
            height: 24px;
            stroke: #19191C;
            stroke-width: 1.5;
            fill: none;
        }

        /* Search Modal Overlay */
        .search-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: none;
            justify-content: flex-end;
            z-index: 3000;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .search-modal-overlay.visible {
            display: flex;
            opacity: 1;
        }

        /* Search Panel - Full Width */
        .search-modal-panel {
            width: 100%;
            height: 100%;
            background: #fff !important;
            position: relative;
            transform: translateX(100%);
            transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
            overflow-y: auto;
        }

        .search-modal-overlay.visible .search-modal-panel {
            transform: translateX(0);
        }

        /* Search Header */
        .search-modal-header {
            position: sticky;
            top: 0;
            background: #fff;
            z-index: 10;
        }

        .search-modal-header-inner {
            display: flex;
            align-items: center;
            padding: 30px 60px;
            gap: 70px;
        }

        .search-modal-close-btn {
            width: 40px;
            height: 40px;
            border: none;
            background: transparent;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            padding: 0;
            flex-shrink: 0;
        }

        .search-modal-close-btn:hover {
            opacity: 0.6;
        }

        .search-modal-close-btn svg {
            width: 24px;
            height: 24px;
            stroke: #19191C;
            stroke-width: 1.5;
            fill: none;
        }

        .search-modal-input-container {
            flex: 1;
            display: flex;
            align-items: center;
            height: 40px;
            border-bottom: 1px solid rgba(228, 228, 228, 1);
        }

        .search-modal-input-field {
            flex: 1;
            border: none;
            font-family: 'Prata', serif;
            font-size: 18px;
            font-weight: 400;
            color: #19191C;
            background: transparent;
            padding: 0;
            height: 100%;
        }

        .search-modal-input-field:focus {
            outline: none;
        }

        .search-modal-input-field::placeholder {
            color: rgba(25, 25, 28, 0.4);
        }

        .search-modal-input-icon {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 15px;
        }

        .search-modal-input-icon svg {
            width: 24px;
            height: 24px;
            stroke: #19191C;
            stroke-width: 1.5;
            fill: none;
        }

        /* Search Body */
        .search-modal-body {
            
            padding: 60px 60px 60px 170px;
            min-height: calc(100vh - 100px);
        }

        .search-modal-content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
        }

        .search-modal-title {
            text-wrap: wrap;
            font-size: 32px;
            font-weight: 400;
            color: #19191C;
            margin-bottom: 15px;
        }

        .search-modal-subtitle {
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            font-weight: 300;
            color: rgba(25, 25, 28, 0.6);
            margin-bottom: 50px;
        }

        .search-modal-btn {
            display: inline-block;
            padding: 16px 40px;
            background: transparent;
            border: 1px solid #19191C;
            border-radius: 100px;
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #19191C;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .search-modal-btn:hover {
            background: #19191C;
            color: #fff;
        }

        /* Product Grid Placeholder */
        .search-modal-product-grid {
            display: none;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .search-modal-product-grid.active {
            display: grid;
        }

        .search-modal-product-card {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .search-modal-product-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 992px) {
            .search-modal-product-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .search-modal-header-inner {
                padding: 20px 30px;
                gap: 30px;
            }

            .search-modal-body {
                padding: 40px 30px;
            }

            .search-modal-title {
                font-size: 26px;
            }

            .search-modal-product-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .search-modal-header-inner {
                padding: 15px 20px;
            }

            .search-modal-body {
                padding: 30px 20px;
            }
        }

        /* Скрываем стандартный контейнер компонента (он нам не нужен визуально) */
#title-search-hidden {
    display: none !important;
}

/* Загрузка */
.search-modal-product-grid.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #19191C;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.menu-slider-item {
    flex: 0 0 auto;
    width: 280px;           /* 🔧 Должно совпадать с cardWidth в JS */
    box-sizing: border-box;
}
.center_menu{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
