/* === ROOT VARIABLES === */
:root {
    --gold: #D4AF37;
    --gold-light: #E8C547;
    --gold-dark: #B8960C;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F4E4A6 50%, #D4AF37 100%);
    
    --black: #0D0D0D;
    --black-light: #1A1A1A;
    --black-lighter: #252525;
    
    --white: #FFFFFF;
    --white-soft: #F8F8F8;
    --gray: #888888;
    --gray-light: #CCCCCC;
    --gray-dark: #444444;
    
    --red: #FF4757;
    --green: #2ED573;
    --orange: #FF6B35;
    --blue: #3742FA;
    
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.2);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    
    --transition: 0.3s ease;
    --transition-fast: 0.15s ease;
}

[data-theme="dark"] {
    --bg: #0D0D0D;
    --bg-secondary: #1A1A1A;
    --bg-tertiary: #252525;
    --text: #FFFFFF;
    --text-secondary: #AAAAAA;
    --text-muted: #666666;
    --border: #333333;
    --card-bg: #1A1A1A;
    --header-bg: rgba(13, 13, 13, 0.95);
    --input-bg: #1A1A1A;
}

[data-theme="light"] {
    --bg: #FFFFFF;
    --bg-secondary: #F8F8F8;
    --bg-tertiary: #EFEFEF;
    --text: #1A1A1A;
    --text-secondary: #666666;
    --text-muted: #999999;
    --border: #E5E5E5;
    --card-bg: #FFFFFF;
    --header-bg: rgba(255, 255, 255, 0.95);
    --input-bg: #F8F8F8;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    transition: background var(--transition), color var(--transition);
}
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, textarea { font-family: inherit; }

/* === UTILITY === */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.section-label {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gold);
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius);
    margin-bottom: 16px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all var(--transition);
    white-space: nowrap;
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: var(--gold);
    color: var(--black);
}
.btn-primary:hover {
    background: var(--gold-light);
}
.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-secondary:hover { 
    background: var(--border); 
}
.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}
.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
}
.btn-white {
    background: white;
    color: #1a1a1a;
    font-weight: 600;
}
.btn-white:hover { 
    background: #f0f0f0; 
}
.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
}
[data-theme="light"] .btn-glass {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text);
}
[data-theme="light"] .btn-glass:hover {
    background: rgba(0, 0, 0, 0.1);
}
.btn-sm { padding: 10px 16px; font-size: 13px; }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-full { width: 100%; }
.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.logo-mark {
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--black);
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
}
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-weight: 700; font-size: 16px; line-height: 1.2; }
.logo-tagline { font-size: 11px; color: var(--text-secondary); }

.nav { display: flex; gap: 8px; }
.nav-link {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.nav-link:hover { color: var(--text); background: var(--bg-tertiary); }

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

.theme-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.theme-btn i {
    position: absolute;
    font-size: 18px;
    transition: all var(--transition);
}
.theme-btn .fa-sun { opacity: 0; transform: rotate(-90deg); color: var(--gold); }
.theme-btn .fa-moon { opacity: 1; transform: rotate(0); color: var(--gold); }
[data-theme="light"] .theme-btn .fa-sun { opacity: 1; transform: rotate(0); }
[data-theme="light"] .theme-btn .fa-moon { opacity: 0; transform: rotate(90deg); }
.theme-btn:hover { background: var(--border); }

.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 16px;
    transition: all var(--transition);
    position: relative;
}
.icon-btn:hover { color: var(--gold); background: var(--border); }
.icon-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    background: var(--gold);
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}
.icon-badge:empty, .icon-badge[data-count="0"] { display: none; }

.header-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: var(--bg-tertiary);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.header-phone:hover { border-color: var(--gold); }
.phone-icon {
    width: 32px;
    height: 32px;
    background: var(--gold);
    color: var(--black);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.phone-info { display: flex; flex-direction: column; }
.phone-label { font-size: 11px; color: var(--text-secondary); }
.phone-number { font-size: 14px; font-weight: 600; }

.cart-trigger {
    position: relative;
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--black);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}
.cart-trigger:hover { 
    background: var(--gold-light); 
}
.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 22px;
    height: 22px;
    background: var(--red);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.85) 100%);
}
[data-theme="light"] .hero-overlay {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.9) 100%);
}
.hero-content {
    max-width: 720px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 32px;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 24px;
}
.hero-title-accent {
    color: var(--gold);
    font-style: italic;
}
.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
}
[data-theme="light"] .btn-glass {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .btn-glass:hover {
    background: rgba(0, 0, 0, 0.1);
}
.hero-stats {
    display: flex;
    gap: 48px;
}
.hero-stat {
    display: flex;
    flex-direction: column;
}
.hero-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.hero-stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
}
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 12px;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* === PROMO SLIDER === */
.promo-slider-section {
    padding: 40px 0;
}
.promo-slider-section .container {
    position: relative;
}
.promo-slider-section .container {
    position: relative;
}
.promo-slider {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 200px;
}
.promo-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}
.promo-slide.active {
    opacity: 1;
    visibility: visible;
}
.promo-slide-content {
    max-width: 60%;
    color: white;
}
.promo-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}
.promo-slide-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    margin-bottom: 8px;
}
.promo-slide-content p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 16px;
}
.promo-slide-img {
    font-size: 80px;
    opacity: 0.9;
}
.promo-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.promo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    transition: all var(--transition);
}
.promo-dot.active {
    background: var(--gold);
    width: 32px;
    border-radius: var(--radius-full);
}
.promo-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 14px;
    transition: all var(--transition);
    z-index: 10;
}
.promo-arrow:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}
.promo-prev { left: -20px; }
.promo-next { right: -20px; }

/* === MENU === */
.menu {
    padding: 60px 0 80px;
}
.menu-search {
    position: relative;
    width: 280px;
}
.menu-search i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 14px;
}
.menu-search input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text);
    font-size: 14px;
    transition: all var(--transition);
}
.menu-search input:focus {
    outline: none;
    border-color: var(--gold);
}
.menu-search input::placeholder { color: var(--text-muted); }

.menu-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}
.menu-nav::-webkit-scrollbar { height: 4px; }
.menu-nav::-webkit-scrollbar-track { background: var(--bg-tertiary); border-radius: 4px; }
.menu-nav::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
.menu-nav-btn {
    padding: 12px 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.menu-nav-btn:hover { color: var(--text); border-color: var(--gold); }
.menu-nav-btn.active {
    background: var(--gold-gradient);
    color: var(--black);
    border-color: transparent;
}
.menu-nav-btn i { font-size: 12px; }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* === PRODUCT CARD === */
.product-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.product-img {
    position: relative;
    padding-top: 70%;
    overflow: hidden;
    cursor: pointer;
}
.product-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-img img {
    transform: scale(1.08);
}
.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    z-index: 2;
}
.badge {
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}
.badge-hit { background: var(--red); color: white; }
.badge-new { background: var(--green); color: white; }
.badge-spicy { background: var(--orange); color: white; }
.badge-18 { background: var(--blue); color: white; }
.badge-popular { background: var(--gold); color: var(--black); }

.product-favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    z-index: 2;
    transition: all var(--transition);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.product-favorite:hover {
    color: var(--red);
    transform: scale(1.1);
}
.product-favorite.active {
    color: var(--red);
    background: #fff;
}

.product-info {
    padding: 16px;
}
.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}
.product-weight {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.product-ingredients {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 12px;
}
.product-ingredient {
    padding: 2px 8px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    font-size: 11px;
    color: var(--text-secondary);
}
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
}
.product-actions {
    display: flex;
    gap: 8px;
}
.add-btn {
    width: 42px;
    height: 42px;
    background: var(--gold);
    color: var(--black);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}
.add-btn:hover { 
    background: var(--gold-light); 
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-tertiary);
    border-radius: var(--radius);
    padding: 4px;
}
.qty-btn {
    width: 36px;
    height: 36px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 12px;
    transition: all var(--transition);
}
.qty-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.qty-num {
    min-width: 28px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
}

/* === ABOUT / MAP === */
.about {
    padding: 80px 0;
    background: var(--bg-secondary);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-images {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
    height: 450px;
}
.about-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-1 {
    grid-row: span 2;
}
.about-img-2 {
    align-self: end;
    height: 60%;
}
.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gold);
    color: var(--black);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
}
.about-badge-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}
.about-badge-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}
.map-container {
    position: relative;
    height: 450px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}
.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    backdrop-filter: blur(10px);
}
.map-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.map-info i {
    font-size: 24px;
    color: var(--gold);
}
.map-info strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}
.map-info span {
    font-size: 13px;
    color: var(--green);
}
.about-content {
    padding: 20px 0;
}
.about-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}
.about-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--black);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.about-feature-text strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}
.about-feature-text span {
    font-size: 13px;
    color: var(--text-secondary);
}
.about-stats {
    display: flex;
    gap: 40px;
}
.stat {
    text-align: center;
}
.stat-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
}

/* === DELIVERY === */
.delivery {
    padding: 80px 0;
}
.delivery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.delivery-content {
    padding: 20px 0;
}
.delivery-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}
.delivery-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.delivery-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}
.delivery-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--black);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.delivery-feature strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}
.delivery-feature span {
    font-size: 13px;
    color: var(--text-secondary);
}
.delivery-map {
    position: relative;
}
.map-container {
    position: relative;
    height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}
.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    backdrop-filter: blur(10px);
}
.map-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.map-info i {
    font-size: 24px;
    color: var(--gold);
}
.map-info strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}
.map-info span {
    font-size: 13px;
    color: var(--green);
}

/* === CONTACTS === */
.contacts {
    padding: 80px 0;
}
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contacts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.contact-item:hover {
    border-color: var(--gold);
}
.contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--black);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.contact-item-label {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 2px;
}
.contact-item strong {
    font-size: 15px;
}
.contacts-social {
    display: flex;
    gap: 12px;
}
.social-btn {
    width: 48px;
    height: 48px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-secondary);
    transition: all var(--transition);
}
.social-btn:hover {
    color: var(--gold);
    border-color: var(--gold);
}
.contacts-form-wrap {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
}
.contacts-form h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}
.form-row {
    margin-bottom: 16px;
}
.form-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.form-input {
    width: 100%;
    padding: 14px 18px;
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 14px;
    transition: all var(--transition);
}
.form-input:focus {
    outline: none;
    border-color: var(--gold);
}
.form-input::placeholder { color: var(--text-muted); }
textarea.form-input { resize: vertical; min-height: 100px; }

/* === FOOTER === */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 24px;
    border-top: 1px solid var(--border);
}
[data-theme="dark"] .footer {
    background: #111;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 280px;
}
.footer-nav h4,
.footer-contact h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gold);
}
.footer-nav a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }
.footer-contact p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-contact i { color: var(--gold); }
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}
.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Footer light theme adjustments */
[data-theme="light"] .footer {
    background: #f5f5f5;
}
[data-theme="light"] .footer-brand p,
[data-theme="light"] .footer-nav a,
[data-theme="light"] .footer-contact p {
    color: #666;
}
[data-theme="light"] .footer-bottom {
    border-color: #ddd;
}
[data-theme="light"] .footer-bottom p {
    color: #888;
}

/* === CART DRAWER === */
.cart-overlay,
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}
.cart-overlay.active,
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100%;
    background: var(--bg);
    z-index: 1101;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition);
}
.cart-drawer.active {
    transform: translateX(0);
}
.cart-step {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.cart-drawer-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
}
.cart-drawer-header h3 i {
    color: var(--gold);
}
.back-btn {
    width: 36px;
    height: 36px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all var(--transition);
}
.back-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.cart-drawer-close {
    width: 36px;
    height: 36px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all var(--transition);
}
.cart-drawer-close:hover {
    color: var(--red);
    border-color: var(--red);
}
.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}
.cart-drawer-footer {
    padding: 16px 24px 24px;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
    flex-shrink: 0;
}

/* Cart Items */
.cart-empty {
    text-align: center;
    padding: 60px 20px;
}
.cart-empty-icon {
    font-size: 64px;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.cart-empty h4 {
    font-size: 18px;
    margin-bottom: 8px;
}
.cart-empty p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}
.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    margin-bottom: 12px;
    position: relative;
}
.cart-item-img {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}
.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-item-info {
    flex: 1;
    min-width: 0;
}
.cart-item-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    padding-right: 24px;
}
.cart-item-extras {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-item-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
}
.cart-item-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
    transition: color var(--transition);
}
.cart-item-remove:hover {
    color: var(--red);
}
.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 6px;
}
.cart-item-qty button {
    width: 28px;
    height: 28px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 10px;
    transition: all var(--transition);
}
.cart-item-qty button:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.cart-item-qty span {
    min-width: 20px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

/* Cart Promo */
.promo-section-cart {
    margin-bottom: 16px;
}
.promo-row {
    display: flex;
    gap: 8px;
}
.promo-row .form-input {
    flex: 1;
    padding: 10px 14px;
}
.promo-applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(46, 213, 115, 0.1);
    border: 1px solid var(--green);
    border-radius: var(--radius);
    color: var(--green);
    font-size: 13px;
}
.promo-applied i {
    margin-right: 6px;
}
.promo-applied button {
    color: var(--green);
    font-size: 14px;
    opacity: 0.7;
    transition: opacity var(--transition);
}
.promo-applied button:hover {
    opacity: 1;
}

/* Min Order Notice */
.min-order-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid var(--red);
    border-radius: var(--radius);
    color: var(--red);
    font-size: 13px;
    margin-bottom: 16px;
}

/* Cart Summary */
.cart-summary {
    margin-bottom: 16px;
}
.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 8px 0;
    color: var(--text-secondary);
}
.cart-summary-row.discount {
    color: var(--green);
}
.cart-summary-row.cart-summary-total {
    font-size: 16px;
    color: var(--text);
    padding-top: 12px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
}
.cart-summary-row.cart-summary-total strong {
    font-size: 20px;
    color: var(--gold);
}

/* Checkout Sections */
.checkout-section {
    margin-bottom: 24px;
}
.checkout-section h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}
.checkout-section h4 i {
    color: var(--gold);
}
.delivery-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.delivery-option {
    cursor: pointer;
}
.delivery-option input {
    display: none;
}
.delivery-option-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.delivery-option input:checked + .delivery-option-content {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}
.delivery-option-content i {
    font-size: 20px;
    color: var(--gold);
}
.delivery-option-content strong {
    display: block;
    font-size: 13px;
    margin-bottom: 2px;
}
.delivery-option-content span {
    font-size: 11px;
    color: var(--text-secondary);
}
.payment-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.payment-option {
    cursor: pointer;
}
.payment-option input {
    display: none;
}
.payment-option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 8px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
    text-align: center;
}
.payment-option input:checked + .payment-option-content {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}
.payment-option-content i {
    font-size: 20px;
    color: var(--gold);
}
.payment-option-content span {
    font-size: 12px;
    font-weight: 500;
}

/* === HISTORY / FAVORITES DRAWER === */
.history-item,
.favorite-item {
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 1px solid var(--border);
}
.history-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.history-item-number {
    font-weight: 600;
    color: var(--gold);
}
.history-item-date {
    font-size: 12px;
    color: var(--text-secondary);
}
.history-item-products {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.5;
}
.history-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.history-item-total {
    font-weight: 700;
    color: var(--gold);
}
.history-item-status {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: rgba(46, 213, 115, 0.1);
    color: var(--green);
}
.history-empty,
.favorites-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}
.history-empty i,
.favorites-empty i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}
.history-repeat-btn {
    padding: 8px 16px;
    background: var(--gold-gradient);
    color: var(--black);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    transition: all var(--transition);
}
.history-repeat-btn:hover {
    transform: scale(1.05);
}

/* === PRODUCT MODAL === */
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 1101;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}
.modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}
.modal-product {
    width: 480px;
    max-width: 95vw;
    max-height: 90vh;
    background: var(--bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.modal-close-float {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 16px;
    z-index: 10;
    transition: all var(--transition);
}
.modal-close-float:hover {
    color: var(--red);
    border-color: var(--red);
}
.modal-product-img {
    height: 280px;
    background: var(--bg-tertiary);
    position: relative;
}
.modal-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal-product-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}
.modal-product-badges {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}
.modal-product-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}
.modal-product-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}
.modal-product-ingredients {
    margin-bottom: 20px;
}
.modal-product-ingredients h5 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-secondary);
}
.ingredients-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.ingredient-tag {
    padding: 4px 10px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    font-size: 12px;
    color: var(--text-secondary);
}
.modal-product-extras {
    margin-bottom: 20px;
}
.modal-product-extras h5 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-secondary);
}
.extras-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.extra-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
}
.extra-item:hover {
    border-color: var(--gold);
}
.extra-item.selected {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}
.extra-check {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 12px;
    transition: all var(--transition);
    flex-shrink: 0;
}
.extra-item.selected .extra-check {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}
.extra-name {
    flex: 1;
    font-size: 14px;
}
.extra-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
}
.modal-product-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}
.modal-product-qty {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    background: var(--bg-tertiary);
    border-radius: var(--radius);
}
.modal-product-qty .qty-btn {
    width: 40px;
    height: 40px;
}
.modal-product-qty .qty-num {
    min-width: 40px;
    font-size: 18px;
}
.modal-product-footer .btn {
    flex: 1;
    justify-content: space-between;
}

/* === SUCCESS MODAL === */
.modal-success {
    width: 400px;
    max-width: 90vw;
    background: var(--bg);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
}
.success-icon {
    width: 80px;
    height: 80px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 24px;
    animation: successPop 0.5s ease;
}
@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
.modal-success h3 {
    font-size: 24px;
    margin-bottom: 8px;
}
.modal-success p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}
.success-order-info {
    background: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 24px;
    text-align: left;
}
.success-order-info p {
    margin: 0;
    padding: 6px 0;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}
.success-order-info strong {
    color: var(--gold);
}

/* === TOAST === */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--black-light);
    color: white;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2000;
    opacity: 0;
    transition: all var(--transition);
    box-shadow: var(--shadow-lg);
}
.toast.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.toast i {
    color: var(--green);
    font-size: 18px;
}

/* === SCROLL TO TOP === */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--black);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    border: none;
    cursor: pointer;
    transform: translateY(20px);
    transition: all var(--transition);
    box-shadow: var(--shadow-gold);
}
.scroll-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover {
    background: var(--gold-light);
}

/* === PROMO TIMER === */
.promo-timer-banner {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: var(--radius-lg);
    padding: 20px 32px;
    margin-bottom: 20px;
}
.promo-timer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.promo-timer-text {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--black);
}
.promo-timer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,0.15);
    padding: 6px 12px;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 600;
}
.promo-timer-text strong {
    font-size: 18px;
    font-weight: 700;
}
.promo-timer-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
}
.countdown-item {
    background: rgba(0,0,0,0.15);
    padding: 10px 16px;
    border-radius: var(--radius);
    text-align: center;
    min-width: 70px;
}
.countdown-item span {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}
.countdown-item small {
    font-size: 11px;
    color: rgba(0,0,0,0.6);
    text-transform: uppercase;
}
.countdown-sep {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
}

/* === REVIEWS === */
.reviews {
    padding: 80px 0;
    background: var(--bg-secondary);
}
.reviews-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}
.reviews-stars {
    color: #FFD700;
    font-size: 18px;
}
.reviews-score {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
}
.reviews-count {
    font-size: 14px;
    color: var(--text-secondary);
}
.reviews-slider {
    position: relative;
    overflow: hidden;
    margin: 0 -12px;
}
.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    padding: 12px;
}
.review-card {
    flex: 0 0 380px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.review-avatar {
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}
.review-author {
    flex: 1;
}
.review-author strong {
    display: block;
    font-size: 15px;
}
.review-author span {
    font-size: 13px;
    color: var(--text-secondary);
}
.review-stars {
    color: #FFD700;
    font-size: 14px;
}
.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}
.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}
.reviews-arrow {
    width: 48px;
    height: 48px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition);
}
.reviews-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* === GALLERY === */
.gallery {
    padding: 80px 0;
}
.section-head-center {
    text-align: center;
    margin-bottom: 40px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-overlay i {
    font-size: 32px;
    color: white;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* === LIGHTBOX === */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}
.lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius);
}
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all var(--transition);
}
.lightbox-close:hover {
    background: var(--gold);
    color: var(--black);
}
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all var(--transition);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    color: var(--black);
}

/* === PARALLAX HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.hero-bg-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    will-change: transform;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.85) 100%);
}
[data-theme="light"] .hero-overlay {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.9) 100%);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .nav { display: none; }
    .header-phone { display: none; }
    .menu-toggle { display: flex; }
    .hero-stats { gap: 32px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-images { height: 350px; }
    .delivery-grid { grid-template-columns: 1fr; gap: 40px; }
    .contacts-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section-head { flex-direction: column; align-items: stretch; }
    .menu-search { width: 100%; }
    .hero { min-height: auto; padding: 100px 0 60px; }
    .hero-title { font-size: clamp(36px, 10vw, 64px); }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    .hero-scroll { display: none; }
    .about-images { grid-template-columns: 1fr; height: auto; }
    .about-img-1 { height: 250px; grid-row: auto; }
    .about-img-2 { display: none; }
    .about-badge { position: static; margin-top: 20px; display: inline-block; }
    .promo-slide { padding: 24px; }
    .promo-slide-content { max-width: 100%; }
    .promo-slide-content h3 { font-size: 18px; }
    .promo-slide-img { display: none; }
    .promo-arrow { display: none; }
    .promo-timer-content { flex-direction: column; text-align: center; }
    .promo-timer-text { flex-direction: column; gap: 8px; }
    .review-card { flex: 0 0 300px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .map-container { height: 300px; }
    .map-overlay { flex-direction: column; text-align: center; }
    .about-stats { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { order: -1; }
    .cart-drawer { width: 100%; }
    .modal-product { max-height: 95vh; }
    .modal-product-img { height: 200px; }
    .icon-btn { display: none; }
    #cartTrigger + .icon-btn,
    .theme-btn { display: flex; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .header-inner { height: 64px; }
    .logo-text { display: none; }
    .menu-grid { grid-template-columns: 1fr; }
    .delivery-options { grid-template-columns: 1fr; }
    .payment-options { grid-template-columns: repeat(3, 1fr); }
    .modal-product-footer { flex-direction: column; }
    .modal-product-footer .btn { width: 100%; }
}
