/* ============================================
   ZAIKA FAST FOOD - Premium Design System
   ============================================ */

/* --- CSS Variables --- */
:root {
    --bg-primary: #0A0A0A;
    --bg-secondary: #111111;
    --bg-surface: #161616;
    --bg-surface-hover: #1E1E1E;
    --bg-elevated: #1A1A1A;

    --gold: #C9A96E;
    --gold-light: #D4B97A;
    --gold-dark: #B8944F;
    --gold-glow: rgba(201, 169, 110, 0.15);

    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --text-muted: #6B6B6B;

    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 24px rgba(201, 169, 110, 0.2);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    --nav-height: 80px;
    --container-width: 1280px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    touch-action: manipulation;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

::selection {
    background: var(--gold);
    color: var(--bg-primary);
}

/* Autofill fix for dark theme */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group textarea:-webkit-autofill,
.form-group textarea:-webkit-autofill:hover,
.form-group textarea:-webkit-autofill:focus,
.order-form input:-webkit-autofill,
.order-form input:-webkit-autofill:hover,
.order-form input:-webkit-autofill:focus,
.order-form textarea:-webkit-autofill,
.order-form textarea:-webkit-autofill:hover,
.order-form textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--text-primary);
    -webkit-box-shadow: 0 0 0 1000px var(--bg-elevated) inset;
    transition: background-color 5000s ease-in-out 0s;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
}

.text-gold {
    color: var(--gold);
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.preloader-logo {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 24px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-logo-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 30px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
    border: 3px solid rgba(201, 169, 110, 0.4);
}

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

.preloader-tagline {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0.9;
}

.preloader-loading {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
    letter-spacing: 1px;
    animation: fadeInOut 1.5s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--border-light);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-fill {
    width: 0;
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    animation: preloaderFill 1.5s ease-in-out forwards;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.5; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes preloaderFill {
    0% { width: 0; }
    100% { width: 100%; }
}

/* --- Navigation --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: transparent;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(201, 169, 110, 0.08) inset;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
    text-decoration: none;
    order: 1;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.02);
}

.logo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(201, 169, 110, 0.3);
}

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

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.nav-logo:hover .logo-icon {
    box-shadow: 0 4px 28px rgba(201, 169, 110, 0.5);
    transform: rotate(-3deg);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 4px;
    order: 2;
}

.nav-links a {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
    transition: color 0.3s ease, background 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
    background: rgba(201, 169, 110, 0.08);
}

.nav-links a.active {
    color: var(--gold);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    order: 3;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--bg-primary);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    padding: 9px 18px;
    border: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 12px rgba(201, 169, 110, 0.25);
}

.nav-phone:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4);
}

.nav-phone svg {
    width: 14px;
    height: 14px;
}

.nav-map {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 14px;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-map:hover {
    background: rgba(201, 169, 110, 0.1);
    color: var(--gold);
    border-color: rgba(201, 169, 110, 0.4);
}

.nav-map svg {
    width: 14px;
    height: 14px;
}

/* Nav Cart Button */
.nav-cart {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 14px;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    cursor: pointer;
    background: none;
    position: relative;
}

.nav-cart:hover {
    background: rgba(201, 169, 110, 0.1);
    color: var(--gold);
    border-color: rgba(201, 169, 110, 0.4);
}

.nav-cart svg {
    width: 16px;
    height: 16px;
}

.nav-cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    background: var(--gold);
    color: var(--bg-primary);
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-cart-count.visible {
    opacity: 1;
    transform: scale(1);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 6px 0;
    z-index: 1001;
    cursor: pointer;
    order: 4;
}

.mobile-toggle span {
    width: 100%;
    height: 1.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center;
}

.mobile-toggle.active span {
    background: var(--gold);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(10, 10, 10, 0.98) 100%);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(30px);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    text-align: center;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 48px;
}

.mobile-nav-links a {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease, transform 0.3s ease, opacity 0.4s ease;
    padding: 10px 32px;
    border-radius: var(--radius-sm);
    display: inline-block;
    opacity: 0;
    transform: translateY(16px);
}

.mobile-menu.active .mobile-nav-links a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-nav-links li:nth-child(1) a { transition-delay: 0.05s; }
.mobile-menu.active .mobile-nav-links li:nth-child(2) a { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-links li:nth-child(3) a { transition-delay: 0.15s; }
.mobile-menu.active .mobile-nav-links li:nth-child(4) a { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-links li:nth-child(5) a { transition-delay: 0.25s; }

.mobile-nav-links a:hover {
    color: var(--gold);
}

.mobile-phone {
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
    border: 1px solid rgba(201, 169, 110, 0.4);
    padding: 12px 32px;
    border-radius: 24px;
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: 0.8px;
    opacity: 0;
    transform: translateY(12px);
}

.mobile-menu.active .mobile-phone {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.mobile-phone:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 169, 110, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-location {
    width: 100%;
    padding: 14px 20px;
    background: var(--bg-surface);
    border: 1px dashed var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-location:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-glow);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background: 
        url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920&q=80') center/cover no-repeat;
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.92) 0%,
        rgba(10, 10, 10, 0.8) 50%,
        rgba(10, 10, 10, 0.7) 100%
    );
}

@keyframes heroZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.2); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    padding-top: var(--nav-height);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--nav-height));
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--gold-glow);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 32px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 8vw, 96px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-title span {
    display: block;
}

.hero-title-accent {
    color: var(--gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 64px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

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

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 1; height: 60px; }
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto;
}

/* Typing Animation */
.typing-cursor::after {
    content: '|';
    color: var(--gold);
    animation: blink 0.8s infinite;
    font-weight: 300;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* --- Featured Section --- */
.featured {
    background: var(--bg-secondary);
}

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

.featured-card {
    position: relative;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition-smooth);
    cursor: pointer;
}

.featured-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 110, 0.3);
    box-shadow: var(--shadow-lg);
}

.featured-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

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

.featured-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--gold);
    color: var(--bg-primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
}

.featured-card-body {
    padding: 24px;
}

.featured-card-category {
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.featured-card-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.featured-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.featured-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.featured-card-price {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
}

.featured-card-price span {
    font-size: 16px;
    font-weight: 400;
}

.btn-add {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-add:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

/* --- Categories Section --- */
.categories {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.categories::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(201, 169, 110, 0.03) 0%, transparent 50%);
    animation: categoriesGlow 15s ease-in-out infinite;
}

@keyframes categoriesGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5%, 5%); }
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.category-card {
    position: relative;
    background: linear-gradient(145deg, var(--bg-surface) 0%, rgba(22, 22, 22, 0.8) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid var(--border);
    height: 220px;
}

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

.category-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(201, 169, 110, 0.4);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(201, 169, 110, 0.15);
}

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

.category-card:active {
    transform: translateY(-6px) scale(0.98);
}

.category-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.category-card:hover .category-image img {
    transform: scale(1.15);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.85) 100%);
    transition: background 0.4s ease;
}

.category-card:hover .category-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
}

.category-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.category-card:hover .category-name {
    color: var(--gold);
    transform: translateX(4px);
}

.category-count {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.category-card:hover .category-count {
    color: var(--text-secondary);
}

/* Category Card Decorative Elements */
.category-card .category-decor {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.1);
    top: -20px;
    right: -20px;
    transition: all 0.5s ease;
    z-index: 1;
    opacity: 0;
}

.category-card:hover .category-decor {
    transform: scale(2);
    opacity: 1;
    background: rgba(201, 169, 110, 0.08);
}

/* --- Menu Section --- */
.menu {
    background: var(--bg-secondary);
}

.menu-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 48px;
    justify-content: center;
}

.filter-btn {
    padding: 8px 18px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-primary);
}

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

.menu-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition-smooth);
    cursor: pointer;
}

.menu-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 169, 110, 0.2);
    box-shadow: var(--shadow-md);
}

.menu-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

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

.menu-card-veg {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.menu-card-veg.veg {
    background: #1a472a;
    border: 2px solid #2d8a4e;
    color: #2d8a4e;
}

.menu-card-veg.non-veg {
    background: #4a1a1a;
    border: 2px solid #c0392b;
    color: #c0392b;
}

.menu-card-body {
    padding: 20px;
}

.menu-card-category {
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.menu-card-name {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.menu-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.menu-card-price {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
}

.menu-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--text-muted);
}

.menu-card-rating svg {
    color: var(--gold);
}

.menu-card-add {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.menu-card-add button {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.menu-card-add button:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

.menu-card-add span {
    width: 36px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.menu-card-add .add-btn {
    background: var(--gold);
    color: var(--bg-primary);
}

.menu-empty {
    text-align: center;
    padding: 80px 24px;
    color: var(--text-muted);
}

.menu-empty svg {
    margin-bottom: 16px;
    opacity: 0.3;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--gold-glow);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.about-feature h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 14px;
    color: var(--text-muted);
}

.about-visual {
    position: relative;
}

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

.about-image {
    width: 100%;
    height: 500px;
    background: 
        url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=800&q=80') center/cover no-repeat;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    opacity: 0.3;
    z-index: 1;
}

/* --- Contact Section --- */
.contact {
    background: var(--bg-secondary);
}

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

.contact-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 169, 110, 0.3);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--gold-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-card a {
    color: var(--gold);
}

.contact-card a:hover {
    text-decoration: underline;
}

.map-wrapper {
    margin-top: 48px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 400px;
}

/* --- Mobile Categories (Horizontal Scroll) --- */
.mobile-categories {
    display: none;
}



/* --- Footer --- */
.footer {
    padding: 80px 0 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-newsletter h4 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-newsletter p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- Floating Cart --- */
.cart-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    z-index: 900;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.cart-float-text {
    display: none;
}

.cart-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(201, 169, 110, 0.4);
}

.cart-float-count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    background: #c0392b;
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition-spring);
}

.cart-float-count.visible {
    opacity: 1;
    transform: scale(1);
}

/* --- Cart Drawer --- */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 950;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100vh;
    background: var(--bg-surface);
    z-index: 960;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--border);
}

.cart-header h3 {
    font-family: var(--font-display);
    font-size: 24px;
}

.cart-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-primary);
    transition: background var(--transition-fast);
    cursor: pointer;
    flex-shrink: 0;
}

.cart-close:hover {
    background: var(--bg-elevated);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 8px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    overflow: hidden;
    width: fit-content;
}

.cart-item-controls button {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.cart-item-controls button:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

.cart-item-controls span {
    width: 36px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.cart-item-remove {
    align-self: flex-start;
    padding: 4px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.cart-item-remove:hover {
    color: #c0392b;
}

.cart-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-muted);
    padding: 40px;
}

.cart-empty svg {
    opacity: 0.2;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--border);
}

.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
}

.cart-total span:last-child {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gold);
}

/* --- Checkout Modal --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    transition: transform var(--transition-smooth);
}

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

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--border);
}

.modal-header h3 {
    font-family: var(--font-display);
    font-size: 24px;
}

.modal-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-primary);
    transition: background var(--transition-fast);
    cursor: pointer;
    flex-shrink: 0;
}

.modal-close:hover {
    background: var(--bg-elevated);
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    max-height: calc(90vh - 80px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-primary);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    resize: vertical;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
    background: var(--bg-surface);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Validation states */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-group input:valid:not(:placeholder-shown) {
    border-color: #22c55e;
}

/* Focus-visible for keyboard navigation */
.form-group input:focus-visible,
.form-group textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Order form (dish page) - inherits .form-group styles, adds button row */
.order-form .form-group {
    margin-bottom: 16px;
}

.order-form textarea {
    min-height: 70px;
}

.location-text {
    font-size: 13px;
    color: var(--gold);
    text-align: center;
}

.checkout-summary {
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
}

.checkout-summary h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.checkout-item span:last-child {
    color: var(--text-primary);
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid var(--border);
    font-weight: 700;
    font-size: 16px;
}

.checkout-total span:last-child {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 20px;
}

/* --- Dish Detail Modal --- */
.dish-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
}

.dish-overlay.active {
    opacity: 1;
    visibility: visible;
}

.dish-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 480px;
    max-height: 90vh;
    background: var(--bg-surface);
    border-radius: 24px;
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.dish-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

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

.dish-close:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: rotate(90deg);
}

.dish-modal-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.dish-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dish-modal-body {
    padding: 28px;
    max-height: calc(90vh - 280px);
    overflow-y: auto;
}

.dish-modal-category {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 8px;
}

.dish-modal-name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.dish-modal-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.dish-modal-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.dish-modal-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
}

.dish-modal-veg {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.dish-modal-veg.veg {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.dish-modal-veg.non-veg {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.dish-modal-price {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 24px;
}

.dish-modal-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.dish-qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.dish-qty-btn {
    width: 44px;
    height: 48px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dish-qty-btn:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

.dish-qty-num {
    width: 40px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.dish-add-btn {
    flex: 1;
}

.btn-whatsapp {
    width: 100%;
    background: #25D366;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* --- Toast --- */
.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--bg-surface);
    border: 1px solid var(--gold);
    color: var(--text-primary);
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.toast.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.toast svg {
    color: var(--gold);
}

/* --- Animations --- */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: var(--delay, 0s);
}

.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* --- Responsive --- */



/* --- Utility --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ============================================
   PREMIUM UI/UX EFFECTS & ANIMATIONS
   ============================================ */

/* --- Smooth Scroll Snap --- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* --- Parallax Hero --- */
.hero {
    perspective: 1000px;
}

.hero-bg-image {
    will-change: transform;
}

/* --- Text Reveal Animation --- */
@keyframes textReveal {
    0% {
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }
    100% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.hero-title span {
    animation: textReveal 1s ease-out forwards;
    opacity: 0;
}

.hero-title span:nth-child(1) { animation-delay: 0.3s; }
.hero-title span:nth-child(2) { animation-delay: 0.5s; }

/* --- Floating Animation --- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-badge {
    animation: float 3s ease-in-out infinite;
}

/* --- Pulse Glow Effect --- */
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(201, 169, 110, 0.3); }
    50% { box-shadow: 0 0 40px rgba(201, 169, 110, 0.6); }
}

.cart-float {
    animation: pulseGlow 2s ease-in-out infinite;
    position: relative;
}

.cart-float:hover {
    animation: none;
}

/* --- Card Hover Effects --- */
.featured-card,
.menu-card,
.category-card,
.contact-card {
    position: relative;
    overflow: hidden;
}

.featured-card::before,
.menu-card::before,
.category-card::before,
.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(201, 169, 110, 0.1),
        transparent
    );
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.featured-card:hover::before,
.menu-card:hover::before,
.category-card:hover::before,
.contact-card:hover::before {
    left: 100%;
}

/* --- Image Zoom on Hover --- */
.featured-card-image,
.menu-card-image {
    overflow: hidden;
}

.featured-card-image img,
.menu-card-image img {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.featured-card:hover .featured-card-image img,
.menu-card:hover .menu-card-image img {
    transform: scale(1.1) rotate(1deg);
}

/* --- Button Ripple Effect --- */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

/* --- Magnetic Button Effect --- */
.btn-primary {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

/* --- Card Tilt Effect --- */
.featured-card {
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.featured-card:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
}

/* --- Category Card Hover --- */
.category-card {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.category-card:active {
    transform: translateY(-4px) scale(0.98);
}

/* --- Contact Card Hover --- */
.contact-card {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
}

/* --- Menu Card Add Button --- */
.menu-card-add .add-btn {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-card-add .add-btn:hover {
    transform: scale(1.1);
}

/* --- Cart Float Animation --- */
@keyframes cartBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cart-float-count.visible {
    animation: cartBounce 0.4s ease;
}

/* --- Toast Animation --- */
@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

.toast.visible {
    animation: toastSlideIn 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- Hero Parallax Lines --- */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 49.5%, rgba(201, 169, 110, 0.03) 49.5%, rgba(201, 169, 110, 0.03) 50.5%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, rgba(201, 169, 110, 0.03) 49.5%, rgba(201, 169, 110, 0.03) 50.5%, transparent 50.5%);
    background-size: 60px 60px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

/* --- Section Divider --- */
.section {
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* --- Nav Link Hover Effect --- */
.nav-links a {
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-links a:hover::before {
    transform: translateX(0);
}

/* --- Cart Drawer Slide --- */
.cart-drawer {
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.cart-drawer.active {
    animation: cartSlideIn 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes cartSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* --- Modal Animation --- */
.modal {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.modal-overlay.active .modal {
    animation: modalBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalBounce {
    0% {
        transform: translateY(50px) scale(0.9);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* --- Feature Icon Hover --- */
.about-feature-icon {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-feature:hover .about-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gold);
    color: var(--bg-primary);
}

/* --- Footer Link Hover --- */
.footer-links a {
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* --- Loading Shimmer --- */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.loading-shimmer {
    background: linear-gradient(
        90deg,
        var(--bg-surface) 25%,
        var(--bg-elevated) 50%,
        var(--bg-surface) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    z-index: 10001;
    transition: width 0.1s;
}

/* --- Cursor Follow Effect (Desktop Only) --- */

/* --- Menu Card Badge Animation --- */
.menu-card-veg {
    transition: all 0.3s ease;
}

.menu-card:hover .menu-card-veg {
    transform: scale(1.1);
}

/* --- Quantity Controls --- */
.menu-card-add button,
.cart-item-controls button {
    transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-card-add button:active,
.cart-item-controls button:active {
    transform: scale(0.9);
}

/* --- Hero Stats Counter --- */
.hero-stat-number {
    transition: all 0.3s ease;
}

.hero-stat:hover .hero-stat-number {
    transform: scale(1.1);
    color: var(--gold-light);
}

/* --- Featured Card Badge --- */
.featured-card-badge {
    transition: all 0.3s ease;
}

.featured-card:hover .featured-card-badge {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(201, 169, 110, 0.4);
}

/* --- Filter Button Active State --- */
.filter-btn {
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(201, 169, 110, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.filter-btn:active::before {
    width: 200px;
    height: 200px;
}

/* --- Image Lazy Load Fade --- */
img[loading="lazy"] {
    opacity: 1;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* --- Smooth Section Transitions --- */
.section-header {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.section-header.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Featured Card Stagger --- */
.featured-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.featured-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.featured-card:nth-child(1) { transition-delay: 0.1s; }
.featured-card:nth-child(2) { transition-delay: 0.2s; }
.featured-card:nth-child(3) { transition-delay: 0.3s; }
.featured-card:nth-child(4) { transition-delay: 0.4s; }
.featured-card:nth-child(5) { transition-delay: 0.5s; }
.featured-card:nth-child(6) { transition-delay: 0.6s; }

/* --- Category Card Stagger --- */
.category-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.category-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.category-card:nth-child(1) { transition-delay: 0.05s; }
.category-card:nth-child(2) { transition-delay: 0.1s; }
.category-card:nth-child(3) { transition-delay: 0.15s; }
.category-card:nth-child(4) { transition-delay: 0.2s; }
.category-card:nth-child(5) { transition-delay: 0.25s; }
.category-card:nth-child(6) { transition-delay: 0.3s; }
.category-card:nth-child(7) { transition-delay: 0.35s; }
.category-card:nth-child(8) { transition-delay: 0.4s; }
.category-card:nth-child(9) { transition-delay: 0.45s; }

/* --- Contact Card Stagger --- */
.contact-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.contact-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.contact-card:nth-child(1) { transition-delay: 0.1s; }
.contact-card:nth-child(2) { transition-delay: 0.2s; }
.contact-card:nth-child(3) { transition-delay: 0.3s; }

/* --- About Section Reveal --- */
.about-content,
.about-visual {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-content {
    transform: translateX(-50px);
}

.about-visual {
    transform: translateX(50px);
}

.about-content.revealed,
.about-visual.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* --- Bottom Mobile Nav (YouTube-style) --- */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    height: 60px;
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    z-index: 999;
    padding: 0 4px;
    justify-content: space-around;
    align-items: center;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-sizing: border-box;
    overflow: hidden;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 6px 8px;
    border-radius: 12px;
    transition: all 0.25s ease;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    flex: 1;
    min-width: 0;
    max-width: 64px;
}

.bottom-nav-item svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.8;
    transition: transform 0.25s ease;
}

.bottom-nav-item.active {
    color: var(--gold);
}

.bottom-nav-item.active svg {
    transform: scale(1.1);
}

.bottom-nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: var(--gold);
    border-radius: 0 0 4px 4px;
    box-shadow: 0 0 8px rgba(201, 169, 110, 0.4);
}

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

/* Hide floating cart on mobile, bottom nav takes over */

/* --- Hero Scroll Indicator --- */
.hero-scroll {
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* --- Menu Filter Active Indicator --- */
.filter-btn.active {
    position: relative;
}

.filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--bg-primary);
    border-radius: 2px;
}

/* ==========================================================================
   ULTRA-PREMIUM $100K CUSTOM UI UPGRADES (HTML5, CSS3, JS)
   ========================================================================== */

/* --- Custom Luxury Cursor --- */
.custom-cursor {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 99999;
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), height 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease, background-color 0.3s ease;
    mix-blend-mode: difference;
    opacity: 0;
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.1s ease, background-color 0.3s ease;
    opacity: 0;
}

/* Cursor States on Hover */
body.cursor-hover .custom-cursor {
    width: 65px;
    height: 65px;
    background-color: rgba(201, 169, 110, 0.08);
    border-color: var(--gold-light);
}

body.cursor-hover .custom-cursor-dot {
    background-color: var(--text-primary);
    transform: translate(-50%, -50%) scale(1.5);
}

/* Hide on mobile devices */

/* --- Animated Background Glow Blobs --- */
.glow-blob {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
    mix-blend-mode: screen;
    animation: floatBlobs 25s ease-in-out infinite alternate;
}

.glow-blob-1 {
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 65%);
}

.glow-blob-2 {
    bottom: 10%;
    right: -10%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.04) 0%, transparent 65%);
    animation-delay: -5s;
    animation-duration: 30s;
}

.glow-blob-3 {
    top: 40%;
    left: 30%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.05) 0%, transparent 70%);
    animation-delay: -10s;
    animation-duration: 35s;
}

@keyframes floatBlobs {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(50px, -70px) scale(1.1) rotate(120deg);
    }
    66% {
        transform: translate(-80px, 40px) scale(0.9) rotate(240deg);
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(360deg);
    }
}

/* --- Premium Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--gold) 50%, var(--bg-surface) 100%);
    border-radius: 100px;
    border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* --- Interactive Card Physics (Tilting Support) --- */
.category-card,
.menu-card,
.featured-card {
    will-change: transform;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

/* --- Flying Added to Cart Element --- */
.flying-food-element {
    position: fixed;
    width: 15px;
    height: 15px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    box-shadow: 0 0 15px var(--gold), 0 0 30px var(--gold);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s ease;
}

/* --- Subtle Glassmorphism tweaks for luxury touch --- */
.menu-card {
    background: rgba(22, 22, 22, 0.6) !important;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.menu-card:hover {
    border-color: rgba(201, 169, 110, 0.35) !important;
}

.nav-phone, .nav-map {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}