        /* =============================================
           БАЗОВЫЕ СТИЛИ
           ============================================= */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .content, .hero-slider, .about-container, .about-featured-container, .menu-container, .reviews-bg, .gallery-container, .map-container, .page-hero-bg {
            will-change: transform;
        }

        body {
            font-family: 'Comfortaa', 'Montserrat', 'Roboto', sans-serif;
            overflow-x: hidden;
            /* background: #1a1a1a; */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* =============================================
           HEADER / МЕНЮ
           ============================================= */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 12px 0;
            transition: all 0.4s ease;
            background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 100%);
        }

        .header.scrolled {
            background: linear-gradient(135deg, 
                rgba(44, 24, 16, 0.97) 0%,
                rgba(247, 190, 39, 0.08) 50%,
                rgba(44, 24, 16, 0.97) 100%
            );
            
            box-shadow: 0 2px 30px rgba(0,0,0,0.3);
            /*box-shadow: 0px 5px 2px 2px rgba(0, 0, 0, 0.3);*/
            /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(247, 190, 39, 0.08);
        }

        .header-container {
            max-width: 100%;
            padding: 0 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .header-left {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
        }

        .logo {
            display: block;
            flex-shrink: 0;
        }

        .logo img {
            height: 60px;
            width: auto;
            transition: height 0.3s ease;
        }

        .header.scrolled .logo img {
            height: 50px;
        }

        .header-center {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2px;
            list-style: none;
        }

        .nav-menu > li {
            position: relative;
        }

        .nav-menu > li > a {
            display: block;
            padding: 12px 24px;
            color: rgba(255,255,255,0.9);
            font-family: 'Comfortaa', cursive;
            font-size: 20px;
            font-weight: 600;
            text-transform: uppercase;
            text-decoration: none;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            position: relative;
            white-space: nowrap;
        }

        .nav-menu > li > a::after {
            content: '';
            position: absolute;
            bottom: 6px;
            left: 50%;
            width: 0;
            height: 2px;
            background: #f7be27;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-menu > li > a:hover {
            color: #f7be27;
        }

        .nav-menu > li > a:hover::after {
            width: 60%;
        }

        .nav-menu > li.active > a {
            color: #f7be27;
        }

        .nav-menu > li.active > a::after {
            width: 60%;
        }

        .nav-menu .dropdown {
            position: absolute;
            top: calc(100% + 8px);
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            min-width: 240px;
            background: rgba(44, 24, 16, 0.97);
            backdrop-filter: blur(20px);
            border-radius: 12px;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 0 25px 60px rgba(0,0,0,0.6);
            border: 1px solid rgba(247, 190, 39, 0.08);
        }

        .nav-menu > li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .nav-menu > li > .dropdown::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid rgba(44, 24, 16, 0.97);
        }

        .dropdown li {
            list-style: none;
        }

        .dropdown li a {
            display: block;
            padding: 14px 28px;
            color: rgba(255,255,255,0.85);
            font-size: 17px;
            font-weight: 400;
            text-decoration: none;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
            position: relative;
        }

        .dropdown li a::before {
            content: '›';
            position: absolute;
            left: 14px;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
            color: #f7be27;
            font-size: 20px;
        }

        .dropdown li a:hover {
            color: #f7be27;
            background: rgba(247, 190, 39, 0.08);
            border-left-color: #f7be27;
            padding-left: 38px;
        }

        .dropdown li a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        .header-right {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .btn-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            color: rgba(255,255,255,0.8);
            font-size: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.12);
            background: rgba(255,255,255,0.04);
            position: relative;
            cursor: pointer;
        }

        .btn-icon svg {
            display: flex;
            width: 24px;
            height: 24px;
            align-self: center;
            justify-self: center;
        }

        .btn-icon:hover {
            color: #f7be27;
            border-color: rgba(247, 190, 39, 0.3);
            background: rgba(247, 190, 39, 0.08);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(247, 190, 39, 0.15);
        }

        .btn-icon .tooltip,
        .btn-booking-icon .tooltip {
            position: absolute;
            top: calc(100% + 10px);
            left: 50%;
            transform: translateX(-50%) scale(0.8);
            background: rgba(44, 24, 16, 0.95);
            backdrop-filter: blur(10px);
            color: #fff;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 13px;
            font-family: 'Comfortaa', sans-serif;
            font-weight: 400;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
            border: 1px solid rgba(247, 190, 39, 0.1);
            pointer-events: none;
        }

        .btn-icon .tooltip::after,
        .btn-booking-icon .tooltip::after {
            content: '';
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-bottom: 6px solid rgba(44, 24, 16, 0.95);
        }

        .btn-icon:hover .tooltip,
        .btn-booking-icon:hover .tooltip {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) scale(1);
        }

        .btn-booking-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            color: #f7be27;
            font-size: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 50%;
            border: 1px solid rgba(247, 190, 39, 0.2);
            background: rgba(247, 190, 39, 0.08);
            position: relative;
            cursor: pointer;
        }

        .btn-booking-icon:hover {
            color: #fff;
            background: #f7be27;
            border-color: #f7be27;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(247, 190, 39, 0.3);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
            background: none;
            border: none;
            z-index: 1001;
        }

        .burger-menu span {
            display: block;
            width: 28px;
            height: 3px;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .burger-menu.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }

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

        .burger-menu.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

        /* =============================================
           МОБИЛЬНОЕ МЕНЮ
           ============================================= */
        .menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 998;
        }

        .menu-overlay.active {
            display: block;
        }

        .mobile-buttons {
            display: none;
        }

        .dropdown-toggle {
            display: none;
        }

        /* =============================================
           HERO-БЛОК
           ============================================= */
        .hero-section {
            position: relative;
            width: 100%;
            height: 100vh;
            height: 100svh;
            min-height: 600px;
            overflow: hidden;
            background: #2c1810;
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.8s ease-in-out;
            transform: scale(1.05);
            transition: opacity 1.8s ease-in-out, transform 8s ease-in-out;
        }

        .slide.active {
            opacity: 1;
            transform: scale(1);
        }

        

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at 60% 40%, 
                rgba(247, 190, 39, 0.06) 0%,
                rgba(44, 24, 16, 0.35) 50%,
                rgba(44, 24, 16, 0.55) 100%
            );
            z-index: 1;
        }

        .hero-overlay-warm {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at 70% 30%, 
                rgba(247, 190, 39, 0.04) 0%,
                transparent 60%
            );
            animation: warmBreath 12s ease-in-out infinite alternate;
            z-index: 1;
        }

        @keyframes warmBreath {
            0% {
                opacity: 0.3;
                transform: scale(1) translate(0, 0);
            }
            33% {
                opacity: 0.6;
                transform: scale(1.05) translate(20px, -10px);
            }
            66% {
                opacity: 0.4;
                transform: scale(0.95) translate(-10px, 15px);
            }
            100% {
                opacity: 0.5;
                transform: scale(1.02) translate(10px, -5px);
            }
        }

        .hero-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at 50% 80%, 
                rgba(247, 190, 39, 0.05) 0%,
                transparent 50%
            );
            animation: glowPulse 15s ease-in-out infinite alternate;
            z-index: 1;
        }

        @keyframes glowPulse {
            0% { opacity: 0.2; transform: scale(0.8); }
            50% { opacity: 0.5; transform: scale(1.2); }
            100% { opacity: 0.3; transform: scale(0.9); }
        }

        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(247, 190, 39, 0.3);
            border-radius: 50%;
            animation: particleFloat var(--duration) ease-in-out infinite alternate;
        }

        .particle:nth-child(1) { top: 10%; left: 20%; --duration: 8s; animation-delay: 0s; width: 6px; height: 6px; }
        .particle:nth-child(2) { top: 30%; left: 80%; --duration: 10s; animation-delay: 1s; width: 10px; height: 10px; }
        .particle:nth-child(3) { top: 60%; left: 10%; --duration: 9s; animation-delay: 2s; width: 8px; height: 8px; }
        .particle:nth-child(4) { top: 80%; left: 70%; --duration: 11s; animation-delay: 0.5s; width: 12px; height: 12px; }
        .particle:nth-child(5) { top: 20%; left: 50%; --duration: 7s; animation-delay: 1.5s; width: 6px; height: 6px; }
        .particle:nth-child(6) { top: 50%; left: 90%; --duration: 12s; animation-delay: 0.8s; width: 10px; height: 10px; }
        .particle:nth-child(7) { top: 70%; left: 40%; --duration: 9s; animation-delay: 2.5s; width: 8px; height: 8px; }
        .particle:nth-child(8) { top: 15%; left: 70%; --duration: 10s; animation-delay: 1.2s; width: 6px; height: 6px; }
        .particle:nth-child(9) { top: 45%; left: 30%; --duration: 8s; animation-delay: 0.3s; width: 10px; height: 10px; }
        .particle:nth-child(10) { top: 85%; left: 55%; --duration: 11s; animation-delay: 1.8s; width: 8px; height: 8px; }

        @keyframes particleFloat {
            0% {
                transform: translate(0, 0) scale(1);
                opacity: 0.2;
            }
            25% {
                transform: translate(40px, -30px) scale(1.2);
                opacity: 0.6;
            }
            50% {
                transform: translate(-20px, 40px) scale(0.8);
                opacity: 0.3;
            }
            75% {
                transform: translate(30px, 20px) scale(1.1);
                opacity: 0.5;
            }
            100% {
                transform: translate(-30px, -40px) scale(0.9);
                opacity: 0.2;
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            padding: 20px;
        }

        .hero-text {
            text-align: center;
            color: #fff;
            max-width: 900px;
            margin-top: -40px;
        }

        .hero-text .animate-item {
            opacity: 0;
            transform: translateY(40px) scale(0.95);
            transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
                        transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .hero-text .animate-item.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .hero-title {
            font-family: 'Comfortaa', cursive;
            font-size: clamp(2.5rem, 8vw, 7.25rem);
            line-height: 1.1;
            letter-spacing: 3px;
            margin-bottom: 15px;
            text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
            font-weight: 700;
        }

        .hero-title .highlight {
            background: linear-gradient(135deg, #f7be27, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-title .highlight-glow {
            animation: textGlow 3s ease-in-out infinite alternate;
        }

        @keyframes textGlow {
            0% {
                filter: drop-shadow(0 0 10px rgba(247, 190, 39, 0.2));
            }
            100% {
                filter: drop-shadow(0 0 30px rgba(247, 190, 39, 0.5));
            }
        }

        .hero-line {
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #f7be27, transparent);
            margin: 0 auto 20px;
            border-radius: 2px;
            transform: scaleX(0);
            opacity: 0;
            transform-origin: left;
            transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1),
                        opacity 0.6s ease;
        }

        .hero-line.visible {
            transform: scaleX(1);
            opacity: 1;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.75rem);
            font-weight: 400;
            margin-bottom: 8px;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
        }

        .hero-subtitle span {
            color: #f7be27;
            font-weight: 700;
        }

        .hero-description {
            font-size: clamp(0.9rem, 1.2vw, 1.2rem);
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
            opacity: 0.8;
        }

        .slide-counter {
            position: absolute;
            bottom: 40px;
            right: 50px;
            z-index: 3;
            color: rgba(255,255,255,0.3);
            font-family: 'Comfortaa', cursive;
            font-size: 14px;
            letter-spacing: 2px;
        }

        .slide-counter .current {
            color: #f7be27;
            font-size: 20px;
        }

        .slider-controls {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            gap: 14px;
            align-items: center;
        }

        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            padding: 0;
            position: relative;
        }

        .slider-dot::after {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            border-radius: 50%;
            border: 2px solid transparent;
            transition: all 0.4s ease;
        }

        .slider-dot.active {
            background: #f7be27;
            border-color: #f7be27;
            transform: scale(1.3);
        }

        .slider-dot.active::after {
            border-color: rgba(247, 190, 39, 0.3);
            transform: scale(1.2);
        }

        .slider-dot:hover {
            background: rgba(247, 190, 39, 0.3);
            border-color: #f7be27;
            transform: scale(1.2);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            color: rgba(255, 255, 255, 0.4);
            font-size: 24px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            opacity: 0;
            animation: fadeIn 1s ease forwards 2s;
        }

        .scroll-indicator:hover {
            color: rgba(255, 255, 255, 0.7);
            transform: translateX(-50%) translateY(-3px);
        }

        .scroll-indicator .bounce-icon {
            animation: bounceSoft 2.5s ease-in-out infinite;
            display: block;
        }

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

        @keyframes bounceSoft {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(10px); }
        }

        .slide-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 2px;
            background: linear-gradient(90deg, rgba(247, 190, 39, 0.3), rgba(247, 190, 39, 0.8));
            z-index: 3;
            transition: width 0.1s linear;
            width: 0%;
            border-radius: 0 2px 2px 0;
        }

        /* =============================================
           БЛОК "О НАС" (первый блок)
           ============================================= */
        .about-section {
            position: relative;
            padding: 100px 0 80px;
            background: #fcf9f5;
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(247, 190, 39, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(247, 190, 39, 0.02) 0%, transparent 40%),
                radial-gradient(circle at 50% 80%, rgba(247, 190, 39, 0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .about-pattern-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            opacity: 0.06;
        }

        .about-pattern-lines .line {
            position: absolute;
            height: 1px;
            background: #642f21;
            border-radius: 1px;
        }

        .about-pattern-lines .line:nth-child(1) { top: 15%; left: 5%; width: 20%; }
        .about-pattern-lines .line:nth-child(2) { top: 30%; right: 8%; width: 15%; }
        .about-pattern-lines .line:nth-child(3) { bottom: 25%; left: 10%; width: 25%; }
        .about-pattern-lines .line:nth-child(4) { bottom: 40%; right: 5%; width: 18%; }
        .about-pattern-lines .line:nth-child(5) { top: 55%; left: 50%; width: 12%; transform: translateX(-50%); }

        .about-container {
            position: relative;
            z-index: 1;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .about-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .about-title h2 {
            font-family: 'Comfortaa', cursive;
            font-size: clamp(2rem, 4vw, 3.5rem);
            color: #642f21;
            margin-bottom: 15px;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 700;
        }

        .about-title p {
            font-size: 1.1rem;
            color: #888;
            max-width: 600px;
            margin: 0 auto;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .about-card {
            background: #fff;
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(247, 190, 39, 0.06);
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #f7be27, transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .about-card:hover::before {
            opacity: 1;
        }

        .about-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            border-color: rgba(247, 190, 39, 0.15);
        }

        .about-icon {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(247, 190, 39, 0.08), rgba(247, 190, 39, 0.02));
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            font-size: 36px;
            color: #f7be27;
        }

        .about-card:hover .about-icon {
            background: linear-gradient(135deg, #f7be27, #f5a623);
            color: #fff;
            transform: scale(1.1) rotate(-5deg);
            box-shadow: 0 10px 40px rgba(247, 190, 39, 0.3);
        }

        .about-card .about-icon i {
            transition: transform 0.5s ease;
        }

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

        .about-card h3 {
            font-family: 'Comfortaa', cursive;
            font-size: 1.5rem;
            color: #642f21;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
            text-transform: uppercase;
            font-weight: 600;
        }

        .about-card:hover h3 {
            color: #f7be27;
        }

        .about-card p {
            font-size: 1rem;
            color: #777;
            line-height: 1.7;
            margin-bottom: 0;
        }

        .about-card .ingredient {
            position: absolute;
            font-size: 30px;
            opacity: 0.06;
            bottom: -10px;
            right: -10px;
            transform: rotate(15deg);
            transition: all 0.5s ease;
            pointer-events: none;
        }

        .about-card:hover .ingredient {
            opacity: 0.12;
            transform: rotate(0deg) scale(1.2);
        }

        /* =============================================
           ABOUT FEATURED (жёлтая вставка)
           ============================================= */
        .about-featured {
            background: linear-gradient(135deg, #f7be27, #f5a623);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .about-featured::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .about-featured::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .about-featured-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .about-featured-image {
            position: relative;
        }

        .image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .image-wrapper img {
            width: 100%;
            height: auto;
            max-height: 450px;
            object-fit: contain;
            display: block;
            background: rgba(255,255,255,0.1);
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .image-wrapper:hover img {
            transform: scale(1.03);
        }

        .about-featured-content {
            color: #2c1810;
        }

        .about-featured-content h2 {
            font-family: 'Comfortaa', cursive;
            font-size: clamp(2rem, 3.5vw, 3.2rem);
            line-height: 1.2;
            margin-bottom: 20px;
            color: #2c1810;
            text-transform: uppercase;
            font-weight: 700;
        }

        .about-featured-content h2 .highlight {
            color: #fff;
            text-shadow: 0 2px 20px rgba(255,255,255,0.2);
        }

        .about-featured-content p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: rgba(44, 24, 16, 0.75);
            margin-bottom: 30px;
        }

        .featured-stats {
            display: flex;
            gap: 40px;
        }

        .stat {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-family: 'Comfortaa', cursive;
            font-size: 2rem;
            font-weight: 700;
            color: #2c1810;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.85rem;
            color: rgba(44, 24, 16, 0.6);
            margin-top: 4px;
        }

        /* =============================================
           МЕНЮ-6 / ПОПУЛЯРНЫЕ БЛЮДА
           ============================================= */
        .menu-section {
            padding: 80px 0 70px;
            background: #fcf9f5;
        }

        .menu-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .menu-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .menu-subtitle {
            display: inline-block;
            font-size: 14px;
            font-weight: 600;
            color: #f7be27;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: rgba(247, 190, 39, 0.1);
            padding: 6px 20px;
            border-radius: 30px;
            margin-bottom: 10px;
        }

        .menu-title {
            font-family: 'Comfortaa', cursive;
            font-size: clamp(2.2rem, 4vw, 3.5rem);
            color: #642f21;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }

        .menu-title span {
            color: #f7be27;
        }

        .menu-desc {
            font-size: 1.1rem;
            color: #999;
            margin-top: 5px;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-bottom: 40px;
        }

        .menu-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            border: 1px solid rgba(247, 190, 39, 0.06);
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .menu-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            border-color: rgba(247, 190, 39, 0.15);
        }

        .menu-card-image {
            position: relative;
            overflow: hidden;
            background: #f5f0eb;
        }

        .menu-card-image img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .menu-card:hover .menu-card-image img {
            transform: scale(1.08);
        }

        .glare-effect {
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent 0%,
                rgba(255,255,255,0.15) 50%,
                transparent 100%
            );
            transform: skewX(-25deg);
            transition: left 0.8s ease;
            pointer-events: none;
        }

        .menu-card:hover .glare-effect {
            left: 150%;
        }

        .badge-hit,
        .badge-new {
            position: absolute;
            top: 14px;
            right: 14px;
            padding: 6px 16px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: 30px;
            z-index: 2;
            animation: badgePulse 2s ease-in-out infinite;
        }

        .badge-hit {
            background: linear-gradient(135deg, #e3000e, #c6020e);
            color: #fff;
            box-shadow: 0 4px 15px rgba(227, 0, 14, 0.3);
        }

        .badge-new {
            background: linear-gradient(135deg, #f7be27, #f5a623);
            color: #2c1810;
            box-shadow: 0 4px 15px rgba(247, 190, 39, 0.3);
        }

        @keyframes badgePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .menu-img-zoom {
            position: absolute;
            bottom: 14px;
            left: 14px;
            z-index: 2;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s ease;
        }

        .menu-card:hover .menu-img-zoom {
            opacity: 1;
            transform: translateY(0);
        }

        .btn-zoom {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: rgba(44, 24, 16, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            color: #fff;
            font-size: 16px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-zoom:hover {
            background: #f7be27;
            color: #2c1810;
            transform: scale(1.1);
        }

        .menu-card-content {
            padding: 20px 18px 22px;
        }

        .menu-card-content h3 {
            font-family: 'Comfortaa', cursive;
            font-size: 1.3rem;
            color: #642f21;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        .menu-card-content p {
            font-size: 0.95rem;
            color: #888;
            line-height: 1.6;
            margin-bottom: 16px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 48px;
        }

        .menu-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .menu-price {
            font-family: 'Comfortaa', cursive;
            font-size: 1.3rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .menu-weight {
            font-family: 'Comfortaa', cursive;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .price-red { color: #e3000e; }
        .price-yellow { color: #f7be27; }
        .price-green { color: #4CAF50; }
        .price-purple { color: #9C27B0; }
        .price-orange { color: #FF6F00; }
        .price-blue { color: #1A73E8; }

        .menu-all-btn {
            text-align: center;
            margin-top: 10px;
        }

        .btn-menu-all {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 14px 40px;
            background: linear-gradient(135deg, #f7be27, #f5a623);
            color: #2c1810;
            font-family: 'Comfortaa', cursive;
            font-size: 18px;
            font-weight: 600;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 50px;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-menu-all:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(247, 190, 39, 0.3);
            background: linear-gradient(135deg, #f5a623, #f7be27);
        }

        .btn-menu-all i {
            transition: transform 0.3s ease;
        }

        .btn-menu-all:hover i {
            transform: translateX(5px);
        }

        /* =============================================
           МОДАЛЬНОЕ ОКНО ДЛЯ МЕНЮ
           ============================================= */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.85);
            backdrop-filter: blur(10px);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            position: relative;
            max-width: 800px;
            width: 100%;
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0,0,0,0.5);
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .modal-overlay.active .modal-content {
            transform: scale(1);
        }

        .modal-close {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 40px;
            height: 40px;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(10px);
            border: none;
            border-radius: 50%;
            color: #fff;
            font-size: 20px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-close:hover {
            background: #e3000e;
            transform: rotate(90deg);
        }

        .modal-image-wrapper {
            width: 100%;
            max-height: 70vh;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #f5f0eb;
        }

        .modal-image-wrapper img {
            width: 100%;
            height: auto;
            max-height: 70vh;
            object-fit: contain;
            display: block;
        }

        .modal-caption {
            padding: 20px 30px;
            font-family: 'Comfortaa', cursive;
            font-size: 1.4rem;
            color: #642f21;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: #fff;
            font-weight: 600;
        }

        /* =============================================
           ОТЗЫВЫ / REVIEWS
           ============================================= */
        .reviews-section {
            position: relative;
            padding: 80px 0 70px;
            overflow: hidden;
            min-height: 600px;
            display: flex;
            align-items: center;
            background: #2c1810;
        }

        .reviews-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 130%;
            background-image: url('./img/reviews.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: 0;
            transform: scale(1.05);
        }

        .reviews-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(44, 24, 16, 0.78);
            z-index: 1;
        }

        .reviews-container {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        .reviews-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .reviews-title {
            font-family: 'Comfortaa', cursive;
            font-size: clamp(2rem, 3.5vw, 3.2rem);
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }

        .reviews-title span {
            color: #f7be27;
        }

        .reviews-slider-wrapper {
            position: relative;
            overflow: hidden;
        }

        .reviews-slider {
            position: relative;
        }

        .review-slide {
            display: none;
            animation: fadeSlide 0.6s ease forwards;
        }

        .review-slide:first-child {
            display: block;
        }

        @keyframes fadeSlide {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .review-card {
            background: rgba(255,255,255,0.06);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 40px 45px 35px;
            border: 1px solid rgba(255,255,255,0.08);
            text-align: center;
            transition: all 0.4s ease;
        }

        .review-card:hover {
            background: rgba(255,255,255,0.09);
            border-color: rgba(247, 190, 39, 0.15);
        }

        .review-avatar {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid rgba(247, 190, 39, 0.3);
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
        }

        .review-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .review-quote {
            position: relative;
            margin-bottom: 20px;
        }

        .quote-icon {
            position: absolute;
            top: -5px;
            left: -5px;
            font-size: 28px;
            color: rgba(247, 190, 39, 0.15);
            z-index: 0;
        }

        .review-quote blockquote {
            position: relative;
            z-index: 1;
            margin: 0;
        }

        .highlight-text {
            display: block;
            font-family: 'Comfortaa', cursive;
            font-size: 1.6rem;
            line-height: 1.3;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        .full-text {
            display: block;
            font-size: 1rem;
            color: rgba(255,255,255,0.7);
            line-height: 1.7;
        }

        .review-stars {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            margin: 15px 0 12px;
        }

        .review-stars i {
            font-size: 18px;
            color: rgba(255,255,255,0.15);
            transition: all 0.3s ease;
            cursor: default;
        }

        .review-stars i.active {
            color: #f7be27;
            animation: starPop 0.4s ease forwards;
        }

        .review-stars i.active:nth-child(1) { animation-delay: 0.1s; }
        .review-stars i.active:nth-child(2) { animation-delay: 0.25s; }
        .review-stars i.active:nth-child(3) { animation-delay: 0.4s; }
        .review-stars i.active:nth-child(4) { animation-delay: 0.55s; }
        .review-stars i.active:nth-child(5) { animation-delay: 0.7s; }

        @keyframes starPop {
            0% {
                transform: scale(0) rotate(-30deg);
                opacity: 0;
            }
            60% {
                transform: scale(1.3) rotate(10deg);
                opacity: 1;
            }
            100% {
                transform: scale(1) rotate(0deg);
                opacity: 1;
            }
        }

        .rating-text {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.4);
            margin-left: 8px;
            font-weight: 400;
        }

        .review-author {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
        }

        .author-name {
            font-family: 'Comfortaa', cursive;
            font-size: 1.15rem;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        .author-date {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.3);
        }

        .reviews-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            margin-top: 35px;
        }

        .review-nav {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.15);
            background: rgba(255,255,255,0.05);
            color: rgba(255,255,255,0.5);
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .review-nav:hover {
            background: rgba(247, 190, 39, 0.15);
            border-color: rgba(247, 190, 39, 0.3);
            color: #f7be27;
        }

        .review-nav:active {
            transform: scale(0.9);
        }

        .review-dots {
            display: flex;
            gap: 10px;
        }

        .review-dots .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.2);
            background: transparent;
            cursor: pointer;
            transition: all 0.4s ease;
            padding: 0;
        }

        .review-dots .dot:hover {
            border-color: rgba(247, 190, 39, 0.4);
            background: rgba(247, 190, 39, 0.1);
        }

        .review-dots .dot.active {
            background: #f7be27;
            border-color: #f7be27;
            transform: scale(1.2);
        }

        /* =============================================
           ФОТОГАЛЛЕРЕЯ
           ============================================= */
        .gallery-section {
            padding: 80px 0 70px;
            background: #fcf9f5;
        }

        .gallery-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .gallery-title {
            font-family: 'Comfortaa', cursive;
            font-size: clamp(2rem, 3.5vw, 3.2rem);
            color: #642f21;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }

        .gallery-title span {
            color: #f7be27;
        }

        .gallery-desc {
            font-size: 1.05rem;
            color: #999;
            margin-top: 5px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-bottom: 40px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            cursor: pointer;
            aspect-ratio: 1 / 1;
        }

        .gallery-item-inner {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .gallery-item-inner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .gallery-item:hover .gallery-item-inner img {
            transform: scale(1.08);
        }

        .gallery-item-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(44, 24, 16, 0.5);
            backdrop-filter: blur(4px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .gallery-item:hover .gallery-item-overlay {
            opacity: 1;
        }

        .overlay-content {
            text-align: center;
            color: #fff;
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        .gallery-item:hover .overlay-content {
            transform: translateY(0);
        }

        .overlay-icon {
            display: inline-block;
            font-size: 32px;
            color: #f7be27;
            margin-bottom: 8px;
        }

        .overlay-content h4 {
            font-family: 'Comfortaa', cursive;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 2px;
            font-weight: 600;
        }

        .overlay-content p {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .gallery-all-btn {
            text-align: center;
        }

        .btn-gallery-all {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 14px 40px;
            background: linear-gradient(135deg, #f7be27, #f5a623);
            color: #2c1810;
            font-family: 'Comfortaa', cursive;
            font-size: 18px;
            font-weight: 600;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 50px;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-gallery-all:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(247, 190, 39, 0.3);
            background: linear-gradient(135deg, #f5a623, #f7be27);
        }

        .btn-gallery-all i {
            transition: transform 0.3s ease;
        }

        .btn-gallery-all:hover i {
            transform: translateX(5px);
        }

        /* =============================================
           МОДАЛЬНОЕ ОКНО ДЛЯ ГАЛЕРЕИ
           ============================================= */
        .gallery-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.92);
            backdrop-filter: blur(10px);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        .gallery-modal-content {
            position: relative;
            max-width: 900px;
            width: 100%;
            background: transparent;
            border-radius: 16px;
            overflow: hidden;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .gallery-modal-overlay.active .gallery-modal-content {
            transform: scale(1);
        }

        .gallery-modal-close {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 44px;
            height: 44px;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(10px);
            border: none;
            border-radius: 50%;
            color: #fff;
            font-size: 22px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-modal-close:hover {
            background: #e3000e;
            transform: rotate(90deg);
        }

        .gallery-modal-image-wrapper {
            width: 100%;
            max-height: 75vh;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #1a1a1a;
            border-radius: 12px;
        }

        .gallery-modal-image-wrapper img {
            width: 100%;
            height: auto;
            max-height: 75vh;
            object-fit: contain;
            display: block;
        }

        .gallery-modal-caption {
            padding: 16px 30px;
            font-family: 'Comfortaa', cursive;
            font-size: 1.2rem;
            color: #fff;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: transparent;
            font-weight: 600;
        }

        .gallery-modal-nav {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 10px;
            pointer-events: none;
            z-index: 5;
        }

        .gallery-modal-nav-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.15);
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(10px);
            color: rgba(255,255,255,0.6);
            font-size: 18px;
            cursor: pointer;
            pointer-events: all;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-modal-nav-btn:hover {
            background: rgba(247, 190, 39, 0.2);
            border-color: #f7be27;
            color: #f7be27;
        }

        /* =============================================
           КАРТА (на всю ширину)
           ============================================= */
        .map-section {
            padding: 0;
            background: #fcf9f5;
        }

        .map-container {
            max-width: 100%;
            padding: 0;
        }

        .map-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 0 20px;
        }

        .map-title {
            font-family: 'Comfortaa', cursive;
            font-size: clamp(2rem, 3.5vw, 3.2rem);
            color: #642f21;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }

        .map-title span {
            color: #f7be27;
        }

        .map-desc {
            font-size: 1.05rem;
            color: #999;
            margin-top: 5px;
        }

        .map-wrapper {
            position: relative;
            width: 100%;
            border-top: 1px solid rgba(247, 190, 39, 0.1);
            border-bottom: 1px solid rgba(247, 190, 39, 0.1);
        }

        .map-iframe-wrapper {
            width: 100%;
            height: 500px;
            position: relative;
        }

        .map-iframe-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        .map-iframe-wrapper .dg-widget-link {
            display: none;
        }

        .map-iframe-wrapper > div {
            width: 100% !important;
            height: 100% !important;
        }

        /* Информационная карточка на карте */
        .map-info-card {
            position: absolute;
            bottom: 30px;
            right: 30px;
            width: 320px;
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            z-index: 20;
            transform: translateY(20px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            border: 1px solid rgba(247, 190, 39, 0.15);
        }

        .map-info-card.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .info-card-image {
            position: relative;
            height: 120px;
            overflow: hidden;
        }

        .info-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .info-card-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(44, 24, 16, 0.85);
            backdrop-filter: blur(10px);
            color: #f7be27;
            padding: 4px 12px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .info-card-content {
            padding: 16px 20px 20px;
        }

        .info-card-content h3 {
            font-family: 'Comfortaa', cursive;
            font-size: 1.2rem;
            color: #642f21;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        .info-card-content p {
            font-size: 0.9rem;
            color: #777;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .info-card-content p i {
            width: 18px;
            color: #f7be27;
            font-size: 14px;
            text-align: center;
        }

        .info-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 12px;
            padding: 10px 24px;
            background: linear-gradient(135deg, #f7be27, #f5a623);
            color: #2c1810;
            font-family: 'Comfortaa', cursive;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 30px;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            width: 100%;
            justify-content: center;
        }

        .info-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(247, 190, 39, 0.3);
        }

        .info-card-close {
            position: absolute;
            top: 10px;
            left: 10px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(10px);
            border: none;
            color: #fff;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .info-card-close:hover {
            background: #e3000e;
            transform: rotate(90deg);
        }

        /* =============================================
           FOOTER (улучшенный)
           ============================================= */
        .footer {
            background: linear-gradient(135deg, #2c1810, #1a0f0a);
            padding: 60px 0 30px;
            border-top: 3px solid rgba(247, 190, 39, 0.15);
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(247, 190, 39, 0.3), transparent);
        }

        .footer::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(247, 190, 39, 0.03) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .footer-col h4 {
            font-family: 'Comfortaa', cursive;
            font-size: 1.1rem;
            color: #f7be27;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 18px;
            position: relative;
            padding-bottom: 12px;
            font-weight: 600;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, #f7be27, transparent);
        }

        .footer-col p
         {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.7);
            line-height: 1.8;
            text-decoration: none;
            display: block;
            transition: color 0.3s ease;
        }
        .footer-col a
        {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.7);
            line-height: 1.8;
            text-decoration: none;
            display: inline-block;
            transition: color 0.3s ease;
        }

        .footer-col a:hover {
            color: #f7be27;
        }

        .footer-col .footer-icon {
            display: inline-block;
            width: 20px;
            color: #f7be27;
            font-size: 14px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 5px;
            flex-wrap: wrap;
        }

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: rgba(255,255,255,0.06);
            border-radius: 50%;
            color: rgba(255,255,255,0.6);
            font-size: 18px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.06);
        }

        .footer-social a:hover {
            background: #f7be27;
            color: #2c1810;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(247, 190, 39, 0.2);
            border-color: #f7be27;
        }

        .footer-social a i {
            transition: transform 0.3s ease;
        }

        .footer-social a:hover i {
            transform: scale(1.1);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 25px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .footer-bottom p {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.35);
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .footer-bottom-links a {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.35);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #f7be27;
        }

        .footer-bottom-links span {
            color: rgba(255,255,255,0.15);
        }

        /* =============================================
           АДАПТИВНОСТЬ
           ============================================= */
        @media (max-width: 1200px) {
            .header-container {
                padding: 0 30px;
            }

            .nav-menu > li > a {
                padding: 10px 16px;
                font-size: 17px;
            }

            .about-grid {
                gap: 20px;
            }
        }

        @media (max-width: 1024px) {
            .nav-menu > li > a {
                padding: 10px 14px;
                font-size: 15px;
            }

            .btn-icon,
            .btn-booking-icon {
                width: 44px;
                height: 44px;
                font-size: 18px;
            }

            .slide-counter {
                display: none;
            }

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

            .about-featured-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .image-wrapper img {
                max-height: 350px;
            }

            .featured-stats {
                gap: 30px;
            }

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

            .menu-card-image img {
                height: 200px;
            }

            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .reviews-bg {
                background-attachment: scroll;
            }

            .map-iframe-wrapper {
                height: 400px;
            }

            .map-info-card {
                width: 280px;
                bottom: 20px;
                right: 20px;
            }

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

        @media (max-width: 820px) {
            .header-container {
                padding: 0 20px;
                gap: 10px;
            }

            .nav-menu > li > a {
                padding: 8px 12px;
                font-size: 14px;
            }

            .btn-icon,
            .btn-booking-icon {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 12px 0;
            }

            .logo img {
                height: 45px;
            }

            .header.scrolled .logo img {
                height: 40px;
            }

            .burger-menu {
                display: flex;
            }

            .header-center {
                position: fixed;
                top: 0;
                right: -100%;
                width: 85%;
                max-width: 380px;
                height: 100vh;
                height: 100dvh;
                background: rgba(44, 24, 16, 0.98);
                backdrop-filter: blur(20px);
                flex: none;
                justify-content: flex-start;
                align-items: flex-start;
                padding: 80px 30px 30px;
                transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
                overflow-y: auto;
                box-shadow: -10px 0 40px rgba(0,0,0,0.3);
                z-index: 999;
                display: flex;
                flex-direction: column;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
            }

            .header-center.open {
                right: 0;
            }

            .nav-menu {
                flex-direction: column;
                width: 100%;
                gap: 2px;
                align-items: stretch;
                flex: 1 1 auto;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
                padding-bottom: 10px;
            }

            .nav-menu > li {
                position: relative;
                border-bottom: 1px solid rgba(255,255,255,0.05);
                flex-shrink: 0;
            }

            .nav-menu > li > a {
                padding: 16px 20px;
                font-size: 20px;
                border-bottom: none;
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

            .nav-menu > li > a::after {
                display: none;
            }

            .dropdown-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 36px;
                height: 36px;
                color: rgba(255,255,255,0.5);
                font-size: 16px;
                transition: all 0.3s ease;
                cursor: pointer;
                border-radius: 50%;
                background: none;
                border: none;
                padding: 0;
                flex-shrink: 0;
            }

            .dropdown-toggle:hover {
                background: rgba(255,255,255,0.05);
                color: #f7be27;
            }

            .dropdown-toggle.active {
                transform: rotate(180deg);
                color: #f7be27;
            }

            .nav-menu .dropdown {
                position: relative;
                background: rgba(255,255,255,0.05);
                backdrop-filter: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                border: none;
                box-shadow: none;
                border-radius: 0;
                padding: 0;
                max-height: 400px;
                overflow: hidden;
                transition: max-height 0.4s ease;
                min-width: auto;
                /* margin: 0; */
                top: 0;
                max-width: 100%;
                display: none;
                margin: 5px 0;
            }

            .nav-menu .dropdown::before {
                display: none;
            }

            .nav-menu .dropdown.open {
                /* max-height: 400px;
               left: 45%; */
               display: flex;
               flex-direction: column;
            }

            .dropdown li a {
                padding: 14px 20px 14px 35px;
                font-size: 17px;
                border-left: none;
                color: rgba(255,255,255,0.7);
            }

            .dropdown li a::before {
                display: none;
            }

            .dropdown li a:hover {
                border-left: none;
                background: rgba(247, 190, 39, 0.08);
                padding-left: 35px;
                color: #f7be27;
            }

            .mobile-buttons {
                display: flex;
                flex-direction: row;
                gap: 12px;
                margin-top: auto;
                padding-top: 20px;
                /* padding-bottom: 20px; */
                border-top: 1px solid rgba(255,255,255,0.1);
                width: 100%;
                flex-shrink: 0;
                position: sticky;
                bottom: 0;
                background: rgba(44, 24, 16, 0.98);
                backdrop-filter: blur(20px);
                /* padding-bottom: env(safe-area-inset-bottom, 20px); */
                justify-content: space-between;

            }

            .mobile-buttons .btn-icon,
            .mobile-buttons .btn-booking-icon {
                width: 100%;
                border-radius: 30px;
                padding: 14px 20px;
                gap: 12px;
                justify-content: center;
                font-size: 18px;
                border: 1px solid rgba(255,255,255,0.12);
                height: auto;
            }

            .mobile-buttons .btn-icon {
                background: rgba(255,255,255,0.04);
                color: rgba(255,255,255,0.8);
            }

            .mobile-buttons .btn-icon .tooltip,
            .mobile-buttons .btn-booking-icon .tooltip {
                display: none;
            }

            .mobile-buttons .btn-icon .label,
            .mobile-buttons .btn-booking-icon .label {
                display: inline;
                font-family: 'Comfortaa', cursive;
                font-size: 16px;
                font-weight: 500;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }

            .mobile-buttons .btn-booking-icon {
                background: #f7be27;
                color: #2c1810;
                border-color: #f7be27;
            }

            .mobile-buttons .btn-booking-icon:hover {
                background: #f5a623;
                color: #2c1810;
                transform: none;
                box-shadow: none;
            }

            .header-right {
                display: none;
            }

            .hero-section {
                min-height: 500px;
                height: 100vh;
                height: 100svh;
            }

            .slider-controls {
                bottom: 25px;
                gap: 10px;
            }

            .slider-dot {
                width: 8px;
                height: 8px;
                border-width: 1.5px;
            }

            .scroll-indicator {
                bottom: 65px;
                font-size: 20px;
            }

            .hero-line {
                width: 60px;
            }

            .particle {
                display: none;
            }

            .about-section {
                padding: 70px 0 50px;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

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

            .about-pattern-lines {
                display: none;
            }

            .about-featured {
                padding: 50px 0;
            }

            .about-featured-container {
                gap: 30px;
            }

            .image-wrapper img {
                max-height: 280px;
            }

            .featured-stats {
                gap: 20px;
                flex-wrap: wrap;
            }

            .stat-number {
                font-size: 1.5rem;
            }

            .menu-section {
                padding: 60px 0 50px;
            }

            .menu-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .menu-card-image img {
                height: 170px;
            }

            .menu-card-content {
                padding: 16px 14px 18px;
            }

            .menu-card-content h3 {
                font-size: 1.1rem;
            }

            .menu-card-content p {
                font-size: 0.88rem;
                min-height: 40px;
            }

            .menu-price {
                font-size: 1.1rem;
            }

            .badge-hit,
            .badge-new {
                font-size: 10px;
                padding: 4px 12px;
                top: 10px;
                right: 10px;
            }

            .menu-all-btn .btn-menu-all {
                padding: 12px 30px;
                font-size: 15px;
            }

            .modal-content {
                max-width: 95%;
            }

            .modal-caption {
                font-size: 1.1rem;
                padding: 16px 20px;
            }

            .reviews-section {
                padding: 50px 0;
                min-height: 450px;
            }

            .review-card {
                padding: 30px 25px 25px;
            }

            .review-avatar {
                width: 65px;
                height: 65px;
            }

            .highlight-text {
                font-size: 1.3rem;
            }

            .full-text {
                font-size: 0.9rem;
            }

            .quote-icon {
                font-size: 22px;
            }

            .review-stars i {
                font-size: 16px;
            }

            .review-nav {
                width: 38px;
                height: 38px;
                font-size: 15px;
            }

            .review-dots .dot {
                width: 8px;
                height: 8px;
            }

            .author-name {
                font-size: 1rem;
            }

            .reviews-controls {
                gap: 20px;
                margin-top: 25px;
            }

            .gallery-section {
                padding: 60px 0 50px;
            }

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

            .btn-gallery-all {
                padding: 12px 30px;
                font-size: 15px;
            }

            .gallery-modal-nav-btn {
                width: 38px;
                height: 38px;
                font-size: 14px;
            }

            .map-section {
                padding: 0;
            }

            .map-iframe-wrapper {
                height: 350px;
            }

            .map-info-card {
                width: 260px;
                bottom: 15px;
                right: 15px;
            }

            .info-card-image {
                height: 90px;
            }

            .info-card-content {
                padding: 12px 16px 16px;
            }

            .info-card-content h3 {
                font-size: 1rem;
            }

            .info-card-content p {
                font-size: 0.8rem;
            }

            .info-btn {
                font-size: 12px;
                padding: 8px 18px;
            }

            .footer {
                padding: 40px 0 20px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 25px;
            }

            .footer-col h4 {
                font-size: 1rem;
                margin-bottom: 14px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }

            .footer-bottom-links {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .header-container {
                padding: 0 16px;
            }

            .logo img {
                height: 40px;
            }

            .header.scrolled .logo img {
                height: 36px;
            }

            .hero-section {
                min-height: 420px;
                height: 100vh;
                height: 100svh;
            }

            .slider-controls {
                bottom: 18px;
                gap: 8px;
            }

            .scroll-indicator {
                bottom: 50px;
                font-size: 18px;
            }

            .hero-line {
                width: 40px;
                margin: 0 auto 15px;
            }

            .header-center {
                width: 100%;
                max-width: 100%;
                padding: 70px 20px 20px;
                height: 100vh;
                height: 100dvh;
            }

            .nav-menu > li > a {
                font-size: 18px;
                padding: 14px 16px;
            }

            .dropdown li a {
                font-size: 16px;
                padding: 12px 16px 12px 30px;
            }

            .about-section {
                padding: 50px 0 40px;
            }

            .about-card {
                padding: 25px 16px;
            }

            .about-icon {
                width: 64px;
                height: 64px;
                font-size: 28px;
            }

            .about-card h3 {
                font-size: 1.3rem;
            }

            .about-featured {
                padding: 40px 0;
            }

            .image-wrapper img {
                max-height: 200px;
            }

            .featured-stats {
                gap: 15px;
            }

            .stat-number {
                font-size: 1.3rem;
            }

            .stat-label {
                font-size: 0.75rem;
            }

            .menu-grid {
                grid-template-columns: 1fr;
                max-width: 360px;
                margin: 0 auto;
            }

            .menu-card-image img {
                height: 200px;
            }

            .menu-title {
                font-size: 1.8rem;
            }

            .modal-image-wrapper {
                max-height: 50vh;
            }

            .modal-image-wrapper img {
                max-height: 50vh;
            }

            .reviews-section {
                padding: 40px 0;
                min-height: 400px;
            }

            .review-card {
                padding: 25px 18px 20px;
            }

            .review-avatar {
                width: 55px;
                height: 55px;
            }

            .highlight-text {
                font-size: 1.1rem;
            }

            .full-text {
                font-size: 0.85rem;
            }

            .quote-icon {
                font-size: 18px;
                top: -3px;
                left: -3px;
            }

            .review-stars i {
                font-size: 14px;
            }

            .review-nav {
                width: 34px;
                height: 34px;
                font-size: 13px;
            }

            .review-dots .dot {
                width: 7px;
                height: 7px;
            }

            .reviews-controls {
                gap: 15px;
            }

            .gallery-section {
                padding: 40px 0;
            }

            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }

            .overlay-content h4 {
                font-size: 0.8rem;
            }

            .overlay-content p {
                font-size: 0.7rem;
            }

            .overlay-icon {
                font-size: 20px;
            }

            .btn-gallery-all {
                padding: 12px 24px;
                font-size: 14px;
            }

            .gallery-modal-nav-btn {
                width: 32px;
                height: 32px;
                font-size: 12px;
            }

            .gallery-modal-close {
                width: 36px;
                height: 36px;
                font-size: 18px;
                top: 10px;
                right: 10px;
            }

            .map-section {
                padding: 0;
            }

            .map-iframe-wrapper {
                height: 280px;
            }

            .map-info-card {
                width: 220px;
                bottom: 10px;
                right: 10px;
            }

            .info-card-image {
                height: 70px;
            }

            .info-card-content {
                padding: 10px 14px 14px;
            }

            .info-card-content h3 {
                font-size: 0.9rem;
                margin-bottom: 6px;
            }

            .info-card-content p {
                font-size: 0.75rem;
                margin-bottom: 4px;
                gap: 6px;
            }

            .info-card-content p i {
                font-size: 12px;
                width: 14px;
            }

            .info-card-badge {
                font-size: 11px;
                padding: 2px 10px;
            }

            .info-btn {
                font-size: 11px;
                padding: 6px 14px;
                margin-top: 8px;
            }

            .info-card-close {
                width: 26px;
                height: 26px;
                font-size: 12px;
                top: 6px;
                left: 6px;
            }

            .footer {
                padding: 30px 0 15px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-col {
                text-align: center;
            }

            .footer-col h4::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-social {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom-links {
                justify-content: center;
                gap: 12px;
            }

            .footer-bottom-links span {
                display: none;
            }
        }

        .btn-icon .label,
        .btn-booking-icon .label {
            display: none;
        }

        @media (max-width: 768px) {
            .btn-icon .label,
            .btn-booking-icon .label {
                display: inline;
            }
        }


        .ico-80 [class*="flaticon-"]:before, .ico-80 [class*="flaticon-"]:after {
    font-size: 5rem;
        }
        
        /* =============================================
   ПРЕЛОАДЕР
   ============================================= */
   #preloader {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       height: 100dvh;
       background: linear-gradient(135deg, #2c1810, #1a0f0a);
       display: flex;
       align-items: center;
       justify-content: center;
       z-index: 99999;
       transition: opacity 0.6s ease, visibility 0.6s ease;
   }

   #preloader.hidden {
       opacity: 0;
       visibility: hidden;
       pointer-events: none;
   }

   .preloader-inner {
       display: flex;
       flex-direction: column;
       align-items: center;
       gap: 25px;
   }

   /* --- SVG-загрузчик --- */
   .preloader-svg {
       width: 50%;
       height: 50%;
       animation: preloaderPulse 1.5s ease-in-out infinite;
   }

   /* Кольцо с анимацией заполнения */
   .preloader-ring {
       transform-origin: center;
   }

   .preloader-ring-fill {
       animation: ringFill 1.8s ease-in-out infinite;
   }

   @keyframes ringFill {
       0% {
           stroke-dashoffset: 314;
           transform: rotate(0deg);
       }
       50% {
           stroke-dashoffset: 60;
           transform: rotate(180deg);
       }
       100% {
           stroke-dashoffset: 314;
           transform: rotate(360deg);
       }
   }

   /* Пульсация логотипа */
   .preloader-logo {
       /*animation: logoPulse 1.5s ease-in-out infinite;*/
       transform-origin: 10px 80px;
   }

   /*@keyframes logoPulse {*/
   /*    0%, 100% {*/
   /*        transform: scale(1);*/
   /*        opacity: 0.6;*/
   /*    }*/
   /*    50% {*/
   /*        transform: scale(1.08);*/
   /*        opacity: 1;*/
   /*    }*/
   /*}*/

   /* Пульсация всего загрузчика */
   /*@keyframes preloaderPulse {*/
   /*    0%, 100% {*/
   /*        transform: scale(1);*/
   /*    }*/
   /*    50% {*/
   /*        transform: scale(0.97);*/
   /*    }*/
   /*}*/

   /* Текст */
   .preloader-text {
       font-family: 'Comfortaa', cursive;
       font-size: 14px;
       color: rgba(255,255,255,0.4);
       letter-spacing: 3px;
       text-transform: uppercase;
       animation: textPulse 1.8s ease-in-out infinite;
   }

   @keyframes textPulse {
       0%, 100% {
           opacity: 0.3;
       }
       50% {
           opacity: 0.8;
       }
   }

   /* Точки загрузки */
   .preloader-text::after {
       content: '';
       animation: dots 1.8s steps(4) infinite;
   }

   @keyframes dots {
       0% { content: ''; }
       25% { content: '.'; }
       50% { content: '..'; }
       75% { content: '...'; }
       100% { content: ''; }
   }
/* =============================================
   HERO БЛОК СТРАНИЦЫ
   ============================================= */
   .page-hero {
       position: relative;
       width: 100%;
       height: 400px;
       max-height: 400px;
       overflow: hidden;
       display: flex;
       align-items: center;
       justify-content: center;
   }

   /* Фоновое изображение (cover) */
   .page-hero-bg {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100vh;
       background-size: cover;
       background-position: center;
       background-repeat: no-repeat;
       /* transform: scale(1.1); */
       z-index: 0;
       will-change: transform;
       transform: scale(1.05);
   }

   /* Тёмный оверлей для читаемости текста */
   .page-hero-overlay {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: rgba(0, 0, 0, 0.45);
       z-index: 1;
   }

   /* Контент поверх фона */
   .page-hero-content {
       position: relative;
       z-index: 2;
       width: 100%;
       padding: 20px 40px;
   }

   .page-hero-container {
       max-width: 1200px;
       margin: 0 auto;
   }

   /* =============================================
      ХЛЕБНЫЕ КРОШКИ
      ============================================= */
   .breadcrumb-nav {
       margin-bottom: 16px;
   }

   .breadcrumb {
       display: flex;
       flex-wrap: wrap;
       align-items: center;
       padding: 0;
       margin: 0;
       list-style: none;
       background: transparent;
       border-radius: 0;
       text-align: center;
       justify-content: center;
   }

   .breadcrumb-item {
       display: flex;
       align-items: center;
       font-family: 'Comfortaa', 'Montserrat', sans-serif;
       font-size: 14px;
       font-weight: 400;
       color: rgba(255, 255, 255, 0.6);
       letter-spacing: 0.5px;
   }

   .breadcrumb-item a {
       color: rgba(255, 255, 255, 0.8);
       text-decoration: none;
       transition: color 0.3s ease;
   }

   .breadcrumb-item a:hover {
       color: #f7be27;
   }

   .breadcrumb-item + .breadcrumb-item::before {
       content: '/';
       display: inline-block;
       padding: 0 10px;
       color: rgba(255, 255, 255, 0.3);
       font-size: 14px;
   }

   .breadcrumb-item.active {
       color: #f7be27;
       font-weight: 500;
   }

   /* =============================================
      ЗАГОЛОВОК
      ============================================= */
   .page-hero-title {
       font-family: 'Comfortaa', 'Oswald', sans-serif;
       font-size: clamp(2.5rem, 6vw, 4.5rem);
       font-weight: 700;
       color: #ffffff;
       text-transform: uppercase;
       letter-spacing: 2px;
       margin: 0;
       text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
       text-align: center;
       
   }

   /* =============================================
      АДАПТИВНОСТЬ
      ============================================= */
   @media (max-width: 1024px) {
       

       .page-hero-content {
           padding: 20px 30px;
       }
   }

   @media (max-width: 768px) {
       

       .page-hero-content {
           padding: 20px 20px;
           text-align: center;
       }

       .breadcrumb {
           justify-content: center;
       }

       .page-hero-title {
           font-size: clamp(2rem, 8vw, 3rem);
       }

       .breadcrumb-item {
           font-size: 12px;
       }

       .breadcrumb-item + .breadcrumb-item::before {
           padding: 0 8px;
       }
   }

   @media (max-width: 480px) {
       

       .page-hero-content {
           padding: 20px 16px;
       }

       .page-hero-title {
           font-size: clamp(1.6rem, 7vw, 2.2rem);
       }

       .breadcrumb-item {
           font-size: 11px;
       }

       .breadcrumb-item + .breadcrumb-item::before {
           padding: 0 6px;
       }
   }
   @media (max-width: 1024px) {
            .page-hero {
                height: 320px;
                max-height: 320px;
            }
}

        @media (max-width: 768px) {
            .page-hero {
                height: 260px;
                max-height: 260px;
            }
 }

        @media (max-width: 480px) {
            .page-hero {
                height: 200px;
                max-height: 200px;
            }
}

/* =============================================
   МЕГА-МЕНЮ - ФИНАЛЬНАЯ ВЕРСИЯ
   ============================================= */

   /* --- Родительский пункт меню --- */
   .nav-menu > li {
       position: relative;
   }

   /* --- Обёртка мега-меню (как у существующего dropdown) --- */
   .mega-menu-wrapper {
       position: absolute;
       top: calc(100% + 8px);
       left: 50%;
       transform: translateX(-50%) translateY(10px);
       /* width: 85vw; */
       max-width: 1100px;
       /* min-width: 320px; */
       background: rgba(44, 24, 16, 0.97);
       backdrop-filter: blur(20px);
       border-radius: 12px;
       /* padding: 25px 30px 20px; */
       opacity: 0;
       visibility: hidden;
       transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
       box-shadow: 0 25px 60px rgba(0,0,0,0.6);
       border: 1px solid rgba(247, 190, 39, 0.08);
       z-index: 100;
   }

   /* Показываем при наведении */
   .nav-menu > li:hover .mega-menu-wrapper {
       opacity: 1;
       visibility: visible;
       transform: translateX(-50%) translateY(0);
   }

   /* Стрелка сверху (как у dropdown) */
   .mega-menu-wrapper::before {
       content: '';
       position: absolute;
       top: -8px;
       left: 50%;
       transform: translateX(-50%);
       border-left: 8px solid transparent;
       border-right: 8px solid transparent;
       border-bottom: 8px solid rgba(44, 24, 16, 0.97);
   }

   .mega-menu-container {
       width: 100%;
   }

   .mega-menu-row {
       display: grid;
       /* grid-template-columns: repeat(3, 1fr);
       gap: 16px; */
   }

   /* --- Колонка --- */
   .mega-menu-col {
       display: flex;
       flex-direction: column;
       gap: 6px;
   }

   /* --- Элемент мега-меню (как ссылки в dropdown) --- */
   .mega-menu-item {
       display: flex;
       align-items: center;
       /* gap: 14px; */
       /* padding: 10px 14px; */
       border-radius: 8px;
       transition: all 0.3s ease;
       border-left: 3px solid transparent;
       cursor: pointer;
       /* min-height: 64px; */
       width: 100%;
   }

   .mega-menu-item:hover {
       background: rgba(247, 190, 39, 0.08);
       border-left-color: #f7be27;
       transform: translateX(4px);
   }

   /* --- Медиа-блок --- */
   .mega-menu-media {
       display: flex;
       align-items: center;
       gap: 14px;
       width: 100%;
   }

   .mega-menu-media-img {
       flex-shrink: 0;
       width: 70px;
       height: 52px;
   }

   .mega-menu-thumbnail {
       border-radius: 6px;
       overflow: hidden;
       width: 100%;
       height: 100%;
   }

   .mega-menu-thumbnail img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       display: block;
       transition: transform 0.4s ease;
   }

   .mega-menu-item:hover .mega-menu-thumbnail img {
       transform: scale(1.05);
   }

   /* --- Информация (как текст в dropdown) --- */
   .mega-menu-media-info {
       flex: 1;
       min-width: 0;
       display: flex;
       flex-direction: column;
       justify-content: center;
   }

   .mega-menu-heading {
       font-family: 'Comfortaa', 'Oswald', sans-serif;
       font-size: 15px;
       font-weight: 500;
       color: rgba(255, 255, 255, 0.85);
       text-transform: uppercase;
       letter-spacing: 0.5px;
       margin: 0 0 2px 0;
       line-height: 1.2;
       transition: color 0.3s ease;
   }

   .mega-menu-heading a {
       color: rgba(255, 255, 255, 0.85);
       text-decoration: none;
       transition: color 0.3s ease;
   }

   .mega-menu-heading a:hover {
       color: #f7be27;
   }

   .mega-menu-desc {
       font-family: 'Comfortaa', 'Montserrat', sans-serif;
       font-size: 12px;
       color: rgba(255, 255, 255, 0.5);
       line-height: 1.4;
       margin: 0;
   }

   /* =============================================
   МЕГА-МЕНЮ - МОБИЛЬНАЯ ВЕРСИЯ
   ============================================= */
   @media (max-width: 768px) {
       /* Скрываем мега-меню на мобильных */
       .mega-menu-wrapper {
           position: relative;
           width: 100% !important;
           transform: none;
           box-shadow: none;
           border-radius: 0;
           padding: 5px 0 0 !important;
           border: none;
           border-top: none;
           opacity: 1;
           visibility: visible;
           background: transparent;
           backdrop-filter: none;
           display: none;
           top: inherit;
           background: rgba(255, 255, 255, 0.05);
       }

       /* Стрелка сверху - скрываем */
       .mega-menu-wrapper::before {
           display: none;
       }

       /* Показываем при активном классе */
       .nav-menu > li.active .mega-menu-wrapper {
           display: block !important;
       }

       /* Сетка - одна колонка */
       .mega-menu-row {
           grid-template-columns: 1fr !important;
           gap: 2px !important;
       }

       /* Элементы мега-меню */
       .mega-menu-item {
           padding: 8px 12px;
           border-bottom: 1px solid rgba(255, 255, 255, 0.05);
           border-radius: 0;
           border-left: none;
           min-height: 50px;
       }

       .mega-menu-item:hover {
           background: rgba(247, 190, 39, 0.06);
           transform: none;
           border-left: none;
       }

       .mega-menu-media {
           gap: 12px;
       }

       .mega-menu-media-img {
           width: 40px;
           height: 32px;
       }

       .mega-menu-heading {
           font-size: 14px;
           color: rgba(255, 255, 255, 0.8);
       }

       .mega-menu-heading a {
           color: rgba(255, 255, 255, 0.8);
       }

       /* Скрываем описание на мобильных */
       .mega-menu-desc {
           display: none;
       }

       .mega-menu-item:last-child {
           border-bottom: none;
       }
   }