﻿* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
        }

        *, *::before, *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 100px;
            overflow-x: hidden;
            max-width: 100vw;
        }

        body {
            overflow-x: hidden;
            background: #f8f9fa;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            max-width: 100vw;
            position: relative;
        }

        /* Touch improvements */
        * {
            -webkit-tap-highlight-color: transparent;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            touch-action: manipulation;
        }

        /* Allow text selection for content */
        p, h1, h2, h3, h4, h5, h6 {
            -webkit-user-select: text;
            -moz-user-select: text;
            -ms-user-select: text;
            user-select: text;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: linear-gradient(135deg, #2c1810 0%, #4a2f14 45%, #5c3d1e 100%);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 8px 0 4px;
            transition: transform 0.3s;
            box-shadow: 0 4px 16px rgba(44, 24, 16, 0.35);
            border-bottom: 1px solid rgba(198, 134, 12, 0.25);
        }

        header.header-hidden {
            transform: translateY(calc(-1 * var(--header-height, 110px)));
        }

        header.scrolled:not(.header-hidden) {
            box-shadow: 0 6px 22px rgba(44, 24, 16, 0.42);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            position: relative;
            min-height: 0;
        }

        .header-center {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin: 0 20px;
            min-width: 0;
            overflow: visible;
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }

        .company-name {
            margin-bottom: 0;
            animation: fadeInUp 0.8s ease-out 0.2s both;
            position: relative;
            padding-bottom: 2px;
        }

        .company-name::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #c6860c, transparent);
        }

        .company-brand {
            display: block;
            width: 420px;
            height: auto;
            max-height: 68px;
            margin: 0 auto 0;
            object-fit: contain;
            object-position: center;
        }

        .company-name h1 {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            color: #f5e6c8;
            margin: 0;
            font-weight: 700;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }

        @supports (-webkit-background-clip: text) {
            .company-name h1 {
                background: linear-gradient(135deg, #f5e6c8, #e6c07a);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                color: transparent;
            }
        }

        .company-name h1 {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }

        .company-name p {
            font-size: 12px;
            color: #e6c07a;
            margin: 0;
            font-weight: 500;
            font-style: italic;
            transition: color 0.3s ease;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }

        .company-name:hover p {
            color: #8b5a2b;
        }

        .quality-badges {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: center;
            animation: fadeInUp 0.8s ease-out 0.5s both;
            max-width: 100%;
            overflow: hidden;
        }

        .badge {
            background: linear-gradient(135deg, #c6860c, #8b5a2b);
            color: white;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 10px;
            font-weight: 600;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s, box-shadow 0.2s;
            white-space: nowrap;
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .badge:hover::before {
            left: 100%;
        }

        .badge:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .logo {
            display: flex;
            align-items: center;
            animation: fadeInUp 0.8s ease-out 0.1s both;
            flex-shrink: 0;
        }

        .logo img {
            height: 70px;
        }

        .nav-links {
            display: none;
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: flex;
            flex-direction: column;
            justify-content: center;
            cursor: pointer;
            padding: 10px;
            width: 40px;
            height: 40px;
            position: relative;
            animation: fadeInUp 0.8s ease-out 0.6s both;
            flex-shrink: 0;
        }

        .mobile-menu-toggle span {
            width: 30px;
            height: 4px;
            background: #e6c07a;
            margin: 3px 0;
            transition: all 0.3s ease;
            position: absolute;
            left: 5px;
        }

        .mobile-menu-toggle span:nth-child(1) {
            top: 8px;
        }

        .mobile-menu-toggle span:nth-child(2) {
            top: 18px;
        }

        .mobile-menu-toggle span:nth-child(3) {
            top: 28px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg);
            top: 18px;
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg);
            top: 18px;
        }

        .mobile-menu {
            position: fixed;
            top: var(--header-height, 72px);
            left: 0;
            width: 100%;
            height: calc(100vh - var(--header-height, 72px));
            height: calc(100dvh - var(--header-height, 72px));
            background: linear-gradient(180deg, #2c1810 0%, #4a2f14 50%, #5c3d1e 100%);
            backdrop-filter: none;
            display: none;
            flex-direction: column;
            padding: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            z-index: 1001;
            transition: transform 0.3s ease-out, opacity 0.3s ease-out;
            transform: translateY(-100%);
            opacity: 0;
            overflow-y: auto;
        }

        .mobile-menu.active {
            display: flex;
            transform: translateY(0);
            opacity: 1;
        }

        .mobile-menu a {
            padding: 12px 10px;
            text-decoration: none;
            color: #f5e6c8;
            font-weight: 400;
            font-size: 16px;
            border-bottom: 1px solid rgba(198, 134, 12, 0.25);
            transition: color 0.3s, background 0.2s;
            border-radius: 8px;
            margin-bottom: 3px;
            text-align: center;
        }

        .mobile-menu a:hover, .mobile-menu a:active {
            color: #fff;
            background: linear-gradient(135deg, #c6860c 0%, #8b5a2b 100%);
            border-bottom-color: #e6c07a;
        }

        .mobile-menu a:last-child {
            border-bottom: none;
        }

        /* Desktop menu improvements */
        @media (min-width: 769px) {
            nav {
                position: relative;
            }
            
            .header-center {
                margin: 0 30px;
            }

            .company-name h1 {
                font-size: 32px;
            }


            .company-name p {
                font-size: 14px;
            }

            .quality-badges {
                gap: 12px;
            }

            .badge {
                font-size: 11px;
                padding: 4px 10px;
            }

            .badge:nth-child(n+3) {
                display: inline-block;
            }

            .company-name::after {
                width: 60px;
                height: 3px;
            }

            nav {
                min-height: 70px;
            }
            
            .mobile-menu-toggle {
                width: 45px;
                height: 45px;
                padding: 12px;
                position: relative;
                margin-left: 20px;
                flex-shrink: 0;
            }

            .mobile-menu-toggle span {
                width: 32px;
                height: 4px;
            }

            .mobile-menu-toggle span:nth-child(1) {
                top: 12px;
            }

            .mobile-menu-toggle span:nth-child(2) {
                top: 20px;
            }

            .mobile-menu-toggle span:nth-child(3) {
                top: 28px;
            }

            .mobile-menu-toggle.active span:nth-child(1) {
                top: 20px;
            }

            .mobile-menu-toggle.active span:nth-child(3) {
                top: 20px;
            }

            .mobile-menu {
                top: 0;
                width: 400px;
                left: auto;
                right: 0;
                height: 100vh;
                transform: translateX(100%);
                border-radius: 0;
                margin-top: 0;
                transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease-out;
                background: linear-gradient(180deg, #2c1810 0%, #3d2914 45%, #5c3d1e 100%);
                box-shadow: -10px 0 30px rgba(44, 24, 16, 0.45);
                backdrop-filter: none;
                border-left: 1px solid rgba(198, 134, 12, 0.35);
                padding: 50px 0 50px 0;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                overflow-y: auto;
                z-index: 1002;
            }

            .mobile-menu.active {
                transform: translateX(0);
            }

            .mobile-menu a {
                padding: 25px 40px;
                font-size: 22px;
                font-weight: 500;
                color: #f5e6c8;
                text-decoration: none;
                display: block;
                position: relative;
                margin: 8px 30px;
                border-radius: 15px;
                transition: all 0.3s ease;
                border: none;
                background: transparent;
                text-align: left;
            }

            .mobile-menu a:hover {
                background: linear-gradient(135deg, #c6860c 0%, #8b5a2b 100%);
                color: white;
                transform: translateX(10px);
                box-shadow: 0 10px 25px rgba(198, 134, 12, 0.3);
            }

            .mobile-menu a::before {
                content: '';
                position: absolute;
                left: 0;
                top: 50%;
                width: 6px;
                height: 0;
                background: linear-gradient(to bottom, #c6860c, #8b5a2b);
                border-radius: 3px;
                transition: height 0.3s ease;
                transform: translateY(-50%);
            }

            .mobile-menu a:hover::before {
                height: 70%;
            }

            /* Убираем стрелочку для полноэкранного меню */
            .mobile-menu::before {
                display: none;
            }

            .menu-close-btn {
                position: absolute;
                top: 15px;
                right: 25px;
                width: 30px;
                height: 30px;
                cursor: pointer;
                z-index: 1003;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 5px;
                border-radius: 50%;
                transition: background 0.3s ease;
            }

            .menu-close-btn:hover {
                background: rgba(198, 134, 12, 0.25);
            }

            .menu-close-btn span {
                position: absolute;
                width: 20px;
                height: 2px;
                background: #e6c07a;
                transition: all 0.3s ease;
            }

            .menu-close-btn span:nth-child(1) {
                transform: rotate(45deg);
            }

            .menu-close-btn span:nth-child(2) {
                transform: rotate(-45deg);
            }

            .menu-close-btn:hover span {
                background: #c6860c;
            }

            .menu-header {
                padding: 0 40px 25px 40px;
                border-bottom: 1px solid rgba(198, 134, 12, 0.3);
                margin-bottom: 25px;
            }

            .menu-header h3 {
                font-family: 'Playfair Display', serif;
                font-size: 24px;
                color: #f5e6c8;
                margin: 0;
                font-weight: 700;
                text-align: left;
            }

            .mobile-menu-overlay {
                background: transparent;
                backdrop-filter: none;
                top: 0;
                height: 100vh;
            }

            body.mobile-menu-open {
                overflow: hidden;
                height: 100vh;
            }
        }

        .mobile-menu.active {
            display: flex;
            transform: translateY(0);
            opacity: 1;
        }

        .mobile-menu a {
            padding: 12px 10px;
            text-decoration: none;
            color: #f5e6c8;
            font-weight: 400;
            font-size: 16px;
            border-bottom: 1px solid rgba(198, 134, 12, 0.25);
            transition: color 0.3s, background 0.2s;
            border-radius: 8px;
            margin-bottom: 3px;
            text-align: center;
        }

        .mobile-menu a:hover, .mobile-menu a:active {
            color: #fff;
            background: linear-gradient(135deg, #c6860c 0%, #8b5a2b 100%);
            border-bottom-color: #e6c07a;
        }

        .mobile-menu a:last-child {
            border-bottom: none;
        }

        /* Hero Section */
        .hero {
            height: 70vh;
            background: url('../images/zov.jpg') no-repeat center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
            width: 100%;
            max-width: 100vw;
            margin-top: 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            padding: 20px;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 56px;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .hero-content p {
            font-size: 20px;
            margin-bottom: 40px;
            font-weight: 300;
        }

        /* Main content sections */
        .section {
            padding: 100px 20px;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            overflow: hidden;
        }

        .section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            margin-bottom: 60px;
            color: #2c1810;
            text-align: center;
        }

        .section p {
            font-size: 18px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 30px;
            text-align: center;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        /* History section */
        .history {
            background: linear-gradient(160deg, #f5e6c8 0%, #d4a574 45%, #b87d3a 100%);
            max-width: none;
            width: 100%;
        }

        .history-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            width: 100%;
        }

        .history-text,
        .history-image {
            will-change: transform, opacity;
        }

        .history-text {
            text-align: left;
        }

        .history-text h3 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            color: #2c1810;
            margin-bottom: 20px;
        }

        .history-text p {
            text-align: left;
            margin-bottom: 20px;
        }

        .history-image {
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .history-image img {
            width: 100%;
            max-width: 480px;
            max-height: 560px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        /* Values section */
        .values {
            background: linear-gradient(160deg, #2c1810 0%, #4a3020 50%, #6b4428 100%);
            max-width: none;
            width: 100%;
        }

        .values h2,
        .values > p {
            color: #f5e6c8;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            grid-auto-rows: 1fr;
            gap: 40px;
            margin-top: 60px;
            align-items: stretch;
            width: 100%;
        }

        .value-card {
            background: #fff;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
            width: 100%;
            min-height: 280px;
            height: 100%;
            box-sizing: border-box;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .value-icon {
            font-size: 48px;
            margin-bottom: 20px;
            display: block;
        }

        .value-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            color: #2c1810;
            margin-bottom: 15px;
            flex-shrink: 0;
        }

        .value-card p {
            font-size: 16px;
            color: #666;
            text-align: center;
            margin-bottom: 0;
            flex: 1;
            min-height: 4.8em;
            display: -webkit-box;
            line-clamp: 4;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Achievements section */
        .achievements {
            background: linear-gradient(160deg, #f5e6c8 0%, #d4a574 45%, #b87d3a 100%);
            max-width: none;
            width: 100%;
        }

        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 60px;
            width: 100%;
        }

        .achievement-item {
            text-align: center;
            padding: 30px 20px;
        }

        .achievement-number {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 700;
            color: #fff;
            display: block;
            margin-bottom: 10px;
        }

        .achievement-text {
            font-size: 16px;
            color: #fff;
            font-weight: 500;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(160deg, #2c1810 0%, #4a3020 50%, #6b4428 100%);
            color: #fff;
            text-align: center;
            padding: 80px 20px;
        }

        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            margin-bottom: 20px;
            color: #fff;
        }

        .cta-section p {
            font-size: 18px;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.9);
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, #d4a017 0%, #c6860c 50%, #8b5a2b 100%);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 18px;
            transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
            box-shadow: 0 6px 20px rgba(44, 24, 16, 0.35);
            border: 1px solid rgba(245, 230, 200, 0.35);
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 28px rgba(44, 24, 16, 0.45);
            background: linear-gradient(135deg, #c6860c 0%, #6b4428 100%);
        }

        /* Footer / Contacts — единый стиль как на главной */
        footer, #contacts {
            padding: 60px 20px;
            background: #2c1810;
            color: #fff;
            text-align: center;
        }

        footer p, #contacts p {
            font-size: 16px;
            margin-bottom: 10px;
        }

        footer a, #contacts a {
            color: #e6c07a;
            text-decoration: none;
            transition: color 0.3s;
            padding: 5px;
        }

        footer a:hover, #contacts a:hover {
            color: #fff;
        }

        /* Mobile menu overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: transparent;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        @media (max-width: 768px) {
            .mobile-menu-overlay {
                display: none;
            }
        }

        /* Prevent content overlap when mobile menu is open - только для ПК */
        @media (min-width: 769px) {
            body.mobile-menu-open {
                overflow: hidden;
                height: 100vh;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                height: 60vh;
                margin-top: 70px;
            }

            .hero-content h1 {
                font-size: 36px;
            }

            .hero-content p {
                font-size: 16px;
            }

            .section {
                padding: 60px 15px;
            }

            .section h2 {
                font-size: 32px;
                margin-bottom: 40px;
            }

            .section p {
                font-size: 16px;
            }

            .history-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .history-text {
                text-align: center;
            }

            .history-text h3 {
                font-size: 24px;
            }

            .history-text p {
                text-align: center;
            }

            .values-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .value-card {
                padding: 30px 20px;
            }

            .achievements-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .achievement-number {
                font-size: 36px;
            }

            .cta-section {
                padding: 60px 15px;
            }

            .cta-section h2 {
                font-size: 32px;
            }

            /* Header adjustments */
            header {
                padding: 12px 0;
            }

            nav {
                padding: 0 15px;
                min-height: 50px;
            }

            .header-center {
                margin: 0 10px;
            }

            .company-name h1 {
                font-size: 20px;
            }

            .company-name p {
                font-size: 9px;
            }

            .quality-badges {
                gap: 4px;
            }

            .badge {
                font-size: 8px;
                padding: 2px 6px;
            }

            .badge:nth-child(n+3) {
                display: none;
            }

            .logo img {
                height: 50px;
            }

            .menu-header {
                display: none;
            }

            .menu-close-btn {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 28px;
            }

            .section h2 {
                font-size: 26px;
            }

            .history-text h3 {
                font-size: 20px;
            }

            .value-card h3 {
                font-size: 20px;
            }

            .achievements-grid {
                grid-template-columns: 1fr;
            }

            .achievement-number {
                font-size: 32px;
            }

            .cta-section h2 {
                font-size: 26px;
            }

            .logo img {
                height: 40px;
            }
        }
    
        /* Slogan wrap override */
        .company-name p {
            white-space: normal;
            overflow: visible;
            text-overflow: clip;
            overflow-wrap: anywhere;
        }
    
        /* Slogan style unify */
        .company-name p {
            color: #e6c07a !important;
            font-weight: 500 !important;
            font-style: italic !important;
            margin: 2px 0 0 0 !important;
            white-space: normal !important;
            overflow: visible !important;
            text-overflow: clip !important;
            overflow-wrap: anywhere !important;
            word-break: break-word !important;
            max-width: 100% !important;
        }
        /* Light palette override */
        :root {
            --primary-color: #fff4df;
            --secondary-color: #f4bd62;
            --accent-color: #d99222;
            --bg-color: #fff8eb;
            --text-color: #3b2818;
            --border-color: rgba(194, 122, 36, 0.25);
        }

        body {
            background: #fff8eb !important;
            color: #3b2818;
        }

        header {
            background: linear-gradient(135deg, #fff0cf 0%, #f3c87f 50%, #e6ad61 100%) !important;
            border-bottom: 1px solid rgba(194, 122, 36, 0.25) !important;
            box-shadow: 0 4px 18px rgba(139, 90, 43, 0.18) !important;
        }

        .company-name h1 {
            color: #6f431b !important;
            background: linear-gradient(135deg, #6f431b, #b46f22) !important;
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            background-clip: text !important;
            text-shadow: none !important;
        }

        .company-name p,
        .nav-links a {
            color: #7a4b1e !important;
        }

        .badge,
        .cta-button,
        .featured-btn,
        .submit-btn,
        .filter-btn.active {
            background: linear-gradient(135deg, #e9b34f 0%, #d99222 55%, #b86f24 100%) !important;
            color: #fff !important;
            border-color: rgba(255, 244, 223, 0.55) !important;
        }

        .mobile-menu-toggle span,
        .menu-close-btn span {
            background: #7a4b1e !important;
        }

        .mobile-menu {
            background: linear-gradient(180deg, #fff3d6 0%, #f0c987 55%, #e6ad61 100%) !important;
            border-left: 1px solid rgba(194, 122, 36, 0.25) !important;
            box-shadow: -10px 0 30px rgba(139, 90, 43, 0.2) !important;
        }

        .mobile-menu a,
        .menu-header h3 {
            color: #4a2f14 !important;
        }

        .mobile-menu a:hover,
        .mobile-menu a:active {
            background: linear-gradient(135deg, #e9b34f 0%, #c88942 100%) !important;
            color: #fff !important;
        }

        .hero,
        .news-hero,
        .contacts-hero,
        .about-hero {
            background: linear-gradient(135deg, #fff0cf 0%, #f3c87f 55%, #e6ad61 100%) !important;
            background-image: linear-gradient(135deg, rgba(255, 240, 207, 0.92), rgba(230, 173, 97, 0.9)) !important;
        }

        .products,
        .history,
        .achievements,
        .contacts-section,
        .certificates,
        .news-section {
            background: linear-gradient(160deg, #fff8eb 0%, #f3d49a 48%, #e6ad61 100%) !important;
        }

        .about,
        .values,
        .cta-section,
        .featured-news {
            background: linear-gradient(160deg, #fff3d6 0%, #f0c987 50%, #dda45c 100%) !important;
        }

        .hero h1,
        .hero p,
        .news-hero h1,
        .news-hero p,
        .contacts-hero h1,
        .contacts-hero p,
        .about h2,
        .about p,
        .values h2,
        .values > p,
        .cta-section h2,
        .cta-section p,
        .featured-news h2,
        .featured-news p,
        .section h2,
        .section p {
            color: #3b2818 !important;
            text-shadow: none !important;
        }

        .product-item,
        .news-card,
        .value-card,
        .contact-info,
        .contact-form,
        .map-card,
        .certificate-card {
            background: rgba(255, 252, 245, 0.96) !important;
            border-color: rgba(194, 122, 36, 0.22) !important;
            box-shadow: 0 12px 30px rgba(139, 90, 43, 0.14) !important;
        }

        footer,
        #contacts {
            background: linear-gradient(135deg, #fff0cf 0%, #f3c87f 55%, #e6ad61 100%) !important;
            color: #3b2818 !important;
            border-top: 1px solid rgba(194, 122, 36, 0.25) !important;
        }

        footer a,
        #contacts a {
            color: #7a4b1e !important;
        }

        .hero {
            background:
                linear-gradient(rgba(255, 232, 188, 0.32), rgba(124, 78, 31, 0.42)),
                url('../images/zov.jpg') no-repeat center/cover !important;
            color: #fff !important;
        }

        .hero::before {
            background: rgba(44, 24, 16, 0.32) !important;
        }

        .hero h1,
        .hero p {
            color: #fff8eb !important;
            text-shadow: 0 3px 14px rgba(44, 24, 16, 0.45) !important;
        }

        .about {
            background:
                radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.8) 0%, transparent 28%),
                radial-gradient(circle at 88% 12%, rgba(244, 189, 98, 0.45) 0%, transparent 32%),
                linear-gradient(145deg, #fff9ee 0%, #f7deb0 52%, #edbd78 100%) !important;
        }

        .cta-section {
            background:
                radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.75) 0%, transparent 30%),
                radial-gradient(circle at 82% 78%, rgba(255, 201, 132, 0.4) 0%, transparent 34%),
                linear-gradient(135deg, #fff2d8 0%, #f4cb8d 50%, #e5a85f 100%) !important;
        }

        .history,
        .values {
            background:
                radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.75) 0%, transparent 30%),
                radial-gradient(circle at 88% 42%, rgba(244, 203, 141, 0.35) 0%, transparent 34%),
                linear-gradient(180deg, #fff8eb 0%, #f7dfb5 48%, #fff3d6 100%) !important;
        }
