:root {
            --white: #FFFFFF;
            --black: #000000;
            --brown: #4E342E;
            --light-brown: #8D6E63;
            --gold: #C6A776;
            --transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Arial, sans-serif;
        }
        
        body {
            background: var(--white);
            color: var(--black);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            line-height: 1.6;
        }
        
        section {
            position: relative;
            overflow: hidden;
        }
        
        /* Шапка */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 5%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
            background: transparent;
        }
        
        .header.scrolled {
            background: var(--white);
            padding: 15px 5%;
            box-shadow: 0 5px 30px rgba(0,0,0,0.05);
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .logo {
            height: 60px;
            width: auto;
            transition: var(--transition);
            display: block !important; /* Важное правило для отображения */
            opacity: 1 !important;
        }
        .header.scrolled .logo {
    /* Убедитесь, что логотип остается видимым при прокрутке */
    filter: none; /* Убираем любые фильтры, которые могут скрывать логотип */
}
        .nav-container {
            display: flex;
            align-items: center;
        }
        
        .nav-links {
            display: flex;
            gap: 35px;
            margin-right: 30px;
        }
        
        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1.5px;
            position: relative;
            padding: 5px 0;
            text-transform: uppercase;
        }
        
        .header.scrolled .nav-links a {
            color: var(--black);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--brown);
            transition: var(--transition);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .cart-icon {
            width: 24px;
            height: 24px;
            position: relative;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1001;
        }
        
        .cart-icon svg {
            fill: var(--white);
        }
        
        .header.scrolled .cart-icon svg {
            fill: var(--black);
        }
        
        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--brown);
            color: var(--white);
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 10px;
        }

        /* Мобильное меню */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1001;
            padding: 10px;
            margin-left: 20px;
        }
        
        .mobile-menu-btn svg {
            width: 24px;
            height: 24px;
            fill: var(--white);
        }
        
        .header.scrolled .mobile-menu-btn svg {
            fill: var(--black);
        }
        
        /* Минималистичный герой с логотипом */
        .info-hero-minimal {
            padding: 180px 5% 100px;
            text-align: center;
            position: relative;
            background: var(--white);
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .info-hero-minimal::after {
            content: '';
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 1px;
            background: var(--gold);
        }
        
        .brand-logo-hero {
            width: 300px;
            max-width: 80%;
            height: auto;
            margin-bottom: 30px;
            opacity: 0;
        }
        
        .info-hero-subtitle {
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
            color: var(--light-brown);
            opacity: 0;
        }
        
        /* Секция информации */
        .info-section {
            padding: 0 5% 100px;
            background: var(--white);
            position: relative;
        }
        
        /* Табы информации */
        .info-tabs-container {
            position: relative;
            z-index: 1;
            margin-bottom: 80px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .info-tabs {
            display: flex;
            justify-content: center;
            gap: 10px;
            position: relative;
        }
        
        .info-tab {
            padding: 16px 32px;
            background: transparent;
            border: 1px solid var(--brown);
            color: var(--brown);
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            border-radius: 15px;
        }
        
        .info-tab:hover {
            background: rgba(78, 52, 46, 0.05);
        }
        
        .info-tab.active {
            background: var(--brown);
            color: var(--white);
        }
        
        /* Контент табов */
        .tab-content {
            max-width: 900px;
            margin: 0 auto;
            display: none;
            animation: fadeIn 0.5s ease-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .tab-content.active {
            display: block;
        }
        
        .info-title {
            font-size: 24px;
            font-weight: 400;
            margin-bottom: 30px;
            color: var(--brown);
            position: relative;
            padding-bottom: 15px;
        }
        
        .info-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 1px;
            background: var(--gold);
        }
        
        .info-text {
            margin-bottom: 30px;
            line-height: 1.8;
        }
        
        .info-list {
            margin-bottom: 30px;
            padding-left: 20px;
        }
        
        .info-list li {
            margin-bottom: 15px;
            line-height: 1.8;
            position: relative;
            padding-left: 25px;
        }
        
        .info-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 8px;
            height: 8px;
            background: var(--gold);
            border-radius: 50%;
        }
        
        .info-list strong {
            color: var(--brown);
            font-weight: 500;
        }
        
        /* Подвал */
        .footer {
            padding: 80px 5% 40px;
            background: var(--black);
            color: var(--white);
            position: relative;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 60px;
        }
        
        .footer-logo {
            height: 60px;
            width: auto;
            margin-bottom: 20px;
        }
        
        .footer-text {
            max-width: 300px;
            line-height: 1.8;
            margin-bottom: 30px;
            color: rgba(255,255,255,0.7);
        }
        
        .social-links {
            display: flex;
            gap: 20px;
        }
        
        .social-icon {
            width: 20px;
            height: 20px;
            opacity: 0.7;
            transition: var(--transition);
            filter: invert(1);
        }
        
        .social-icon:hover {
            opacity: 1;
        }
        
        .footer-title {
            font-size: 14px;
            letter-spacing: 2px;
            margin-bottom: 25px;
            text-transform: uppercase;
            color: var(--white);
        }
        
        .footer-links a {
            display: block;
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            margin-bottom: 15px;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--white);
        }
        
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 12px;
            color: rgba(255,255,255,0.5);
            letter-spacing: 1.5px;
        }

        /* Мобильная адаптация */
        @media (max-width: 768px) {
            /* Шапка */
            .header {
                padding: 15px 5%;
            }
            
            .logo {
                height: 50px;
            }
            
            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 30px;
                z-index: 999;
                transform: translateY(-100%);
                transition: transform 0.5s ease;
            }
            
            .nav-links.active {
                display: flex;
                transform: translateY(0);
            }
            
            .nav-links a {
                color: var(--black);
                font-size: 18px;
                padding: 10px 20px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .header.scrolled .nav-links a {
                color: var(--black);
            }
            
            /* Герой-секция */
            .info-hero-minimal {
                padding: 150px 5% 80px;
            }
            
            .brand-logo-hero {
                width: 250px;
            }
            
            .info-hero-subtitle {
                font-size: 16px;
                padding: 0 20px;
            }
            
            /* Табы информации */
            .info-tabs {
                flex-direction: column;
                align-items: center;
            }
            
            .info-tab {
                width: 100%;
                max-width: 300px;
                padding: 12px 24px;
            }
            
            .info-title {
                font-size: 20px;
            }
            
            /* Подвал */
            .footer {
                padding: 50px 5% 30px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-logo {
                height: 50px;
            }
            
            .footer-text {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .info-hero-minimal {
                padding: 130px 5% 60px;
            }
            
            .brand-logo-hero {
                width: 200px;
            }
            
            .info-title {
                font-size: 18px;
            }
            
            .info-text, .info-list li {
                font-size: 15px;
            }
        }