@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================
   Design Tokens — Premium Light Mode
   ============================================ */
:root {
    --gold: #4a203f;
    --gold-light: #ffffff;
    --gold-dim: rgba(107, 45, 91, 0.1);
    --gold-glow: rgba(107, 45, 91, 0.25);
    --purple: #6b2d5b;
    --purple-light: #8a4178;
    --purple-dim: rgba(107, 45, 91, 0.06);
    --bg: #faf9f6;
    --bg-warm: #f5f2ed;
    --bg-card: rgba(255, 255, 255, 0.7);
    --bg-card-hover: rgba(255, 255, 255, 0.9);
    --glass: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(0, 0, 0, 0.06);
    --glass-border-hover: rgba(0, 0, 0, 0.12);
    --text: #1a1118;
    --text-body: #4a3f47;
    --text-dim: rgba(74, 63, 71, 0.7);
    --text-muted: rgba(74, 63, 71, 0.45);
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Inter', sans-serif;
    --ease: cubic-bezier(0.165, 0.84, 0.44, 1);
    --radius: 20px;
    --radius-sm: 12px;
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.04);
    --shadow: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
    --strip-height: 36px;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--body-font);
    color: var(--text-body);
    background: var(--bg);
    min-height: 100vh;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { color: var(--text-body); font-size: 1.02rem; margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; transition: all 0.4s var(--ease); }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-label {
    text-transform: uppercase; letter-spacing: 3px; font-size: 0.75rem;
    color: var(--purple-light); font-weight: 600; text-align: center;
    margin-bottom: 0.5rem; display: block;
}
.section-title {
    text-align: center; margin-bottom: 1rem;
    color: var(--text);
}
.section-title .accent { color: var(--purple); }
.section-title::after {
    content: ''; display: block; width: 60px; height: 3px; margin: 1rem auto 0;
    background: linear-gradient(90deg, var(--gold), var(--purple));
    border-radius: 3px;
}
.section-sub { text-align: center; margin-bottom: 3.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.gradient-text {
    background: linear-gradient(135deg, var(--gold), var(--purple));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================
   Stats Counter Bar
   ============================================ */
.stats-bar {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--purple) 0%, #3a1234 100%);
    position: relative; overflow: hidden;
}
.stats-bar::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201,168,76,0.1), transparent 60%);
    pointer-events: none;
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    text-align: center; max-width: 900px; margin: 0 auto;
}
.stat-item h3 {
    font-size: clamp(2rem, 4vw, 3rem); color: var(--gold-light);
    margin-bottom: 0.3rem; font-family: var(--heading-font);
}
.stat-item p {
    color: rgba(255,255,255,0.7) !important; font-size: 0.88rem;
    text-transform: uppercase; letter-spacing: 1px; margin: 0;
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
    padding: 5rem 0; text-align: center;
    background: linear-gradient(135deg, var(--bg-warm) 0%, #f0ebe3 50%, var(--bg-warm) 100%);
    position: relative;
}
.cta-banner h2 { color: var(--text); margin-bottom: 0.5rem; }
.cta-banner h2::after { display: none; }
.cta-banner p { margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   Animations
   ============================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes statusPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes steam {
    0% { opacity: 0; transform: translateY(0) scaleX(1); }
    20% { opacity: 0.5; }
    50% { opacity: 0.2; transform: translateY(-25px) scaleX(1.8); }
    100% { opacity: 0; transform: translateY(-50px) scaleX(2.5); }
}

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.active { opacity: 1; transform: translateY(0); }
.animate-popup { opacity: 0; transform: translateY(40px) scale(0.96); transition: all 0.8s var(--ease); }
.animate-popup.active { opacity: 1; transform: translateY(0) scale(1); }
.delay-1 { transition-delay: 0.15s !important; }
.delay-2 { transition-delay: 0.3s !important; }
.delay-3 { transition-delay: 0.45s !important; }

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.85rem 2rem; border-radius: 50px; font-weight: 600;
    cursor: pointer; transition: all 0.4s var(--ease); border: none;
    text-transform: uppercase; letter-spacing: 1px; font-size: 0.82rem;
    font-family: var(--body-font); white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--purple));
    color: #fff; box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(201,168,76,0.4); }
.btn-outline {
    background: transparent; color: var(--purple);
    border: 1.5px solid var(--purple);
}
.btn-outline:hover { background: var(--purple-dim); transform: translateY(-2px); }
.btn-glass {
    background: rgba(255,255,255,0.25); color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255,255,255,0.4); transform: translateY(-2px); border-color: rgba(255,255,255,0.5); }

/* ============================================
   Glass Card
   ============================================ */
.glass-card {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius); padding: 2rem;
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s var(--ease); box-shadow: var(--shadow-sm);
}
.glass-card:hover {
    background: var(--bg-card-hover); border-color: var(--glass-border-hover);
    transform: translateY(-6px); box-shadow: var(--shadow);
}

/* ============================================
   Navigation
   ============================================ */
.glass-nav {
    position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
    width: 92%; max-width: 1240px; padding: 0.6rem 1.8rem;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 9999; border-radius: 60px; transition: all 0.5s var(--ease);
    background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.25);
}
.glass-nav.scrolled {
    background: rgba(255, 255, 255, 0.92); border-color: var(--glass-border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.08); top: 8px; padding: 0.5rem 1.8rem;
}
body.has-status-strip .glass-nav { top: calc(16px + var(--strip-height, 36px)); }
body.has-status-strip .glass-nav.scrolled { top: calc(8px + var(--strip-height, 36px)); }

.nav-logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.nav-logo img { height: 36px; width: auto; border-radius: 8px; }

.nav-links { display: flex; gap: 0.8rem; align-items: center; list-style: none; }
.nav-links a {
    font-weight: 500; font-size: 0.88rem; color: rgba(255,255,255,0.9);
    position: relative; padding: 0.3rem 0.5rem; letter-spacing: 0.03em;
}
.glass-nav.scrolled .nav-links a { color: var(--text-body); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -2px; left: 50%; width: 0; height: 2px;
    background: var(--gold); transition: all 0.3s var(--ease); transform: translateX(-50%);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.glass-nav.scrolled .nav-links a:hover, .glass-nav.scrolled .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 60%; }

.hamburger { display: none; cursor: pointer; z-index: 10000; }
.hamburger div { width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: all 0.3s ease; border-radius: 2px; }
.glass-nav.scrolled .hamburger div { background: var(--text); }

/* ============================================
   Hero
   ============================================ */
#hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative; overflow: hidden; padding: 8rem 2rem 6rem;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(26,17,24,0.55) 0%, rgba(26,17,24,0.4) 40%, rgba(26,17,24,0.75) 100%);
}
.hero-content { max-width: 800px; position: relative; z-index: 1; }
.hero-content h1 { color: #fff; margin-bottom: 0.5rem; }
.hero-tagline { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.85); font-weight: 300; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-rating { display: inline-flex; }

/* ============================================
   Features
   ============================================ */
.features-section {
    padding: 7rem 0; position: relative;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 50%, var(--bg) 100%);
}
.features-section::before {
    content: ''; position: absolute; top: 0; right: 0; width: 300px; height: 300px;
    background: radial-gradient(circle, var(--gold-dim), transparent 70%);
    pointer-events: none; opacity: 0.5;
}
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.feature-card { text-align: center; padding: 2.5rem 1.5rem; }
.feature-icon {
    width: 68px; height: 68px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem; font-size: 1.5rem;
    background: linear-gradient(135deg, var(--gold-dim), var(--purple-dim));
    color: var(--purple); border: 1px solid var(--glass-border);
}
.feature-card h4 { color: var(--text); font-size: 1.1rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; margin: 0; color: var(--text-dim); }

/* ============================================
   Gallery
   ============================================ */
.gallery-section { padding: 6rem 0; overflow: hidden; }
.carousel-viewport {
    width: 100%; overflow-x: auto; overflow-y: hidden; padding: 1rem 0 2rem;
    -webkit-overflow-scrolling: touch; scrollbar-width: none; cursor: grab;
}
.carousel-viewport::-webkit-scrollbar { display: none; }
.carousel-viewport:active { cursor: grabbing; }
.carousel-track { display: flex; gap: 1.5rem; width: max-content; }
.carousel-item { width: 320px; flex-shrink: 0; }
.gallery-img {
    width: 100%; height: 240px; border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--glass-border); box-shadow: var(--shadow-sm);
}
.gallery-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.carousel-item:hover .gallery-img img { transform: scale(1.08); }

/* ============================================
   Popular Items
   ============================================ */
.popular-section { padding: 6rem 0; background: var(--bg-warm); }
.items-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.item-card {
    background: #fff; border: 1px solid var(--glass-border);
    border-radius: var(--radius); overflow: hidden;
    transition: all 0.4s var(--ease); display: flex; flex-direction: column;
    box-shadow: var(--shadow-sm);
}
.item-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--glass-border-hover); }
.item-card-img { position: relative; width: 100%; height: 200px; overflow: hidden; }
.item-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.item-card:hover .item-card-img img { transform: scale(1.08); }
.item-card-img .badge {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    background: linear-gradient(135deg, var(--gold), var(--purple));
    color: #fff; padding: 0.25rem 0.8rem; border-radius: 20px;
    font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.steam-effect {
    position: absolute; width: 6px; height: 15px;
    background: rgba(255,255,255,0.4); border-radius: 50%; filter: blur(3px);
    opacity: 0; animation: steam 2.5s infinite ease-out; z-index: 3;
}
.steam-1 { bottom: 30%; left: 35%; }
.steam-2 { bottom: 25%; left: 50%; animation-delay: 0.8s; }
.steam-3 { bottom: 35%; left: 65%; animation-delay: 1.5s; }
.item-card-body { padding: 1.2rem 1.4rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.item-card-body h3 { font-size: 1.05rem; margin-bottom: 0.3rem; color: var(--text); }
.item-card-body p { font-size: 0.85rem; margin-bottom: 0.8rem; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.item-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.item-card-footer .price { font-weight: 700; color: var(--purple); font-size: 1.05rem; font-family: var(--heading-font); }
.item-card-footer .order-link { color: var(--gold); font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; }
.item-card-footer .order-link:hover { color: var(--purple); }

/* ============================================
   Reviews
   ============================================ */
.reviews-section { padding: 6rem 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.review-card { padding: 2rem !important; display: flex; flex-direction: column; background: #fff !important; }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.reviewer-name { font-size: 1rem; color: var(--text); font-weight: 600; margin-bottom: 0.2rem; font-family: var(--heading-font); }
.stars { color: #f59e0b; font-size: 0.95rem; letter-spacing: 2px; }
.source-icon { height: 16px; width: auto; opacity: 0.6; }
.review-text { font-style: italic; color: var(--text-body); line-height: 1.7; flex-grow: 1; margin-bottom: 1rem; font-size: 0.92rem; }
.review-date { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================
   Footer
   ============================================ */
footer {
    padding: 4rem 0 0; margin-top: 4rem;
    background: linear-gradient(135deg, var(--purple) 0%, #3a1234 100%);
    position: relative; overflow: hidden;
}
footer::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(212,168,67,0.08), transparent 50%);
    pointer-events: none;
}
.footer-content {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem 3rem;
}
.footer-col h3 { color: var(--gold-light); font-size: 1.2rem; margin-bottom: 1rem; }
.footer-col h4 { color: var(--gold-light); font-size: 0.95rem; margin-bottom: 1rem; font-family: var(--heading-font); }
.footer-col p, .footer-col a, .footer-col li { color: rgba(255,255,255,0.7) !important; font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold-light) !important; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a:hover { padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.8rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; }
.footer-contact-item i { color: var(--gold-light); font-size: 0.8rem; margin-top: 4px; flex-shrink: 0; }

.footer-logos { display: flex; flex-direction: column; gap: 1.5rem; }
.footer-logo-item { display: flex; flex-direction: column; gap: 0.3rem; }
.footer-logo-item p { font-size: 0.78rem !important; font-weight: 600; color: var(--gold-light) !important; margin: 0; }
.footer-logo-item img { height: 28px; width: auto; max-width: 180px; object-fit: contain; opacity: 0.7; transition: all 0.3s ease; }
.footer-logo-item img:hover { opacity: 1; transform: translateY(-2px); }

.copyright {
    text-align: center; padding: 1.5rem; margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.82rem; color: rgba(255,255,255,0.4);
}

/* ============================================
   Floating Order Button
   ============================================ */
.floating-order-btn {
    position: fixed; bottom: 28px; right: 28px;
    background: linear-gradient(135deg, var(--gold), var(--purple));
    color: #fff !important; padding: 14px 28px; border-radius: 50px;
    font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px;
    box-shadow: 0 6px 25px var(--gold-glow); z-index: 9998;
    transition: all 0.4s var(--ease); text-decoration: none; font-family: var(--body-font);
}
.floating-order-btn:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 10px 35px rgba(201,168,76,0.5); }

/* ============================================
   Status Strip
   ============================================ */
.status-strip {
    position: fixed; top: 0; left: 0; right: 0; z-index: 10001;
    padding: 0.45rem 1rem; font-size: 0.82rem; font-weight: 600;
    text-align: center; transition: all 0.4s ease;
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.status-strip.open { background: rgba(34,197,94,0.08); border-bottom: 1px solid rgba(34,197,94,0.15); color: #16a34a; }
.status-strip.closed { background: rgba(239,68,68,0.06); border-bottom: 1px solid rgba(239,68,68,0.1); color: #dc2626; }
.status-strip.error { background: rgba(245,158,11,0.06); border-bottom: 1px solid rgba(245,158,11,0.1); color: #d97706; }
.status-strip-inner { display: flex; align-items: center; justify-content: center; gap: 0.6rem; }
.status-strip-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; animation: statusPulse 2s infinite; }
.status-strip-text { font-family: var(--body-font); letter-spacing: 0.02em; }

/* ============================================
   Modals
   ============================================ */
.sipo-modal-overlay {
    position: fixed; inset: 0; background: rgba(26,17,24,0.5);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center;
    z-index: 10002; padding: 1rem; opacity: 0; visibility: hidden;
    transition: all 0.4s ease;
}
.sipo-modal-overlay.active { opacity: 1; visibility: visible; }
.sipo-modal {
    background: #fff; border: 1px solid var(--glass-border); border-radius: 24px;
    padding: 2.5rem 2rem; max-width: 420px; width: 100%; text-align: center;
    position: relative; transform: translateY(30px) scale(0.95);
    transition: all 0.4s var(--ease); box-shadow: var(--shadow-lg);
}
.sipo-modal-overlay.active .sipo-modal { transform: translateY(0) scale(1); }
.sipo-modal-close {
    position: absolute; top: 1rem; right: 1rem;
    background: var(--bg-warm); border: 1px solid var(--glass-border);
    color: var(--text-muted); width: 34px; height: 34px; border-radius: 50%;
    font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease; line-height: 1;
}
.sipo-modal-close:hover { background: var(--glass-border); color: var(--text); transform: rotate(90deg); }
.sipo-modal-icon { margin-bottom: 1rem; }
.sipo-modal-title { color: var(--text); font-size: 1.3rem; font-family: var(--heading-font); margin-bottom: 0.6rem; }
.sipo-modal-text { color: var(--text-body) !important; font-size: 0.92rem; line-height: 1.6; margin-bottom: 1.5rem; }
.sipo-modal-btn {
    display: inline-block; padding: 0.8rem 2rem; border-radius: 50px;
    font-weight: 600; cursor: pointer; transition: all 0.3s ease; border: none;
    text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem;
    text-decoration: none; background: linear-gradient(135deg, var(--gold), var(--purple));
    color: #fff !important; width: 100%; font-family: var(--body-font);
}
.sipo-modal-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px var(--gold-glow); }

/* ============================================
   Opening Hours
   ============================================ */
#footer-hours { list-style: none; padding: 0; margin: 0; }
#footer-hours li {
    display: flex; justify-content: space-between; padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
}
#footer-hours li:last-child { border-bottom: none; }
#footer-hours li.today { color: var(--gold-light) !important; font-weight: 700; }
#footer-hours .day { font-weight: 600; min-width: 40px; }
#footer-hours .time { text-align: right; }
#footer-hours .closed-day { opacity: 0.4; font-style: italic; }

.hours-row {
    display: flex; justify-content: space-between; padding: 0.55rem 0;
    border-bottom: 1px solid var(--glass-border); font-size: 0.95rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row.today { color: var(--purple); font-weight: 700; background: var(--purple-dim); border-radius: 8px; padding: 0.55rem 0.8rem; }
.hours-row .day { font-weight: 600; min-width: 100px; }
.hours-row .closed-day { opacity: 0.4; font-style: italic; }

/* ============================================
   Google Rating Badge
   ============================================ */
.google-rating-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.15); padding: 0.6rem 1.2rem;
    border-radius: 50px; border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.3s ease; text-decoration: none;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.google-rating-badge:hover { background: rgba(255,255,255,0.25); transform: translateY(-3px); }
.google-rating-badge .rating-stars { color: #f59e0b; font-size: 0.95rem; }
.google-rating-badge .rating-num { color: #fff; font-weight: 700; font-family: var(--heading-font); }
.google-rating-badge .rating-label { color: rgba(255,255,255,0.8); font-size: 0.78rem; }

/* ============================================
   Menu Page
   ============================================ */
.page-hero {
    padding: 10rem 2rem 4rem; text-align: center; position: relative;
    background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}
#api-menu-tabs {
    display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center;
    margin-bottom: 2.5rem; padding: 0 1rem;
}
.menu-tab {
    padding: 0.55rem 1.4rem; border: 1px solid var(--glass-border); border-radius: 50px;
    background: #fff; color: var(--text-body); font-weight: 600;
    font-family: var(--body-font); cursor: pointer; transition: all 0.3s ease;
    font-size: 0.85rem; box-shadow: var(--shadow-sm);
}
.menu-tab:hover { border-color: var(--gold); color: var(--gold); }
.menu-tab.active { background: linear-gradient(135deg, var(--gold), var(--purple)); color: #fff; border-color: transparent; box-shadow: 0 4px 15px var(--gold-glow); }

#api-menu-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem; max-width: 1200px; margin: 0 auto;
}
.menu-card {
    background: #fff; border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm); overflow: hidden;
    transition: all 0.3s ease; display: flex; flex-direction: column;
    box-shadow: var(--shadow-sm);
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--glass-border-hover); }
.menu-card-img { width: 100%; height: 180px; overflow: hidden; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.06); }
.menu-card-body { padding: 1rem 1.2rem 1.2rem; flex: 1; display: flex; flex-direction: column; }
.menu-card-body h3 { font-size: 0.95rem; margin-bottom: 0.2rem; color: var(--text); }
.menu-card-body p { font-size: 0.82rem; margin-bottom: 0.5rem; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.menu-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 0.5rem; border-top: 1px solid var(--glass-border); }
.menu-card-footer .price { font-weight: 700; color: var(--purple); font-size: 1rem; font-family: var(--heading-font); }
.menu-card-footer .order-link { color: var(--gold); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; }
.menu-card-footer .order-link:hover { color: var(--purple); }
#menu-loading { text-align: center; padding: 3rem; color: var(--text-muted); font-size: 1rem; }

/* ============================================
   About Page
   ============================================ */
.about-content { padding: 4rem 0; }
.about-grid { display: flex; flex-wrap: wrap; gap: 3rem; align-items: center; }
.about-text { flex: 1; min-width: 300px; }
.about-text p { font-size: 1rem; line-height: 1.8; }
.about-image { flex: 1; min-width: 300px; text-align: center; }
.about-image img { border-radius: var(--radius); border: 1px solid var(--glass-border); box-shadow: var(--shadow); max-width: 420px; width: 100%; }
.about-gallery { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 3rem; }
.about-gallery-item {
    flex: 1 1 calc(33% - 1rem); min-width: 180px; max-width: 240px;
    height: 160px; border-radius: var(--radius-sm); overflow: hidden;
    border: 1px solid var(--glass-border); box-shadow: var(--shadow-sm);
}
.about-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.about-gallery-item:hover img { transform: scale(1.08); }
.about-quote {
    font-style: italic; font-size: 1.1rem; color: var(--purple);
    border-left: 3px solid var(--gold); padding-left: 1.5rem; margin-top: 2rem;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding: 4rem 0; }
.contact-info-card { padding: 2.5rem !important; background: #fff !important; }
.contact-info-card h3 { margin-bottom: 1.5rem; }
.contact-detail { margin-bottom: 1.5rem; }
.contact-detail h4 { color: var(--purple); font-size: 0.85rem; margin-bottom: 0.4rem; font-family: var(--body-font); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.contact-detail a:hover { color: var(--gold) !important; }
.map-container { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--glass-border); min-height: 400px; box-shadow: var(--shadow-sm); }
.map-container iframe { width: 100%; height: 100%; min-height: 400px; border: 0; }

/* ============================================
   Ordering disabled
   ============================================ */
body.ordering-disabled [data-order-url],
body.ordering-disabled .order-link,
body.ordering-disabled .nav-order-btn,
body.ordering-disabled .floating-order-btn { opacity: 0.4; pointer-events: none; filter: grayscale(0.5); }

/* ============================================
   Responsive
   ============================================ */
@media screen and (max-width: 1024px) {
    .footer-content { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed; right: -100%; top: 0; height: 100vh;
        flex-direction: column; justify-content: center;
        background: rgba(255,255,255,0.95); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
        width: 85%; max-width: 320px; transition: all 0.5s var(--ease);
        border-left: 1px solid var(--glass-border); z-index: 9999; gap: 0;
    }
    .nav-links.active { right: 0; }
    .nav-links li { margin: 1rem 0; opacity: 0; transform: translateX(20px); transition: all 0.4s ease; }
    .nav-links.active li { opacity: 1; transform: translateX(0); }
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links li a { color: var(--text) !important; font-size: 1.1rem; }
    .nav-links li a.active { color: var(--gold) !important; }

    .hamburger { display: flex !important; flex-direction: column; gap: 5px; }
    .hamburger.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); background: var(--purple) !important; }
    .hamburger.toggle .line2 { opacity: 0; }
    .hamburger.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); background: var(--purple) !important; }

    .features-grid { grid-template-columns: 1fr 1fr; }
    .items-grid { grid-template-columns: 1fr; }
    #api-menu-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-contact-item { justify-content: center; }
    .about-grid { flex-direction: column; }

    .floating-order-btn { bottom: 20px; right: 20px; padding: 12px 22px; font-size: 0.78rem; }
    .status-strip { font-size: 0.75rem; padding: 0.35rem 0.5rem; }
    .sipo-modal { padding: 2rem 1.5rem; margin: 1rem; }
    .carousel-item { width: 260px; }
    #hero { padding: 7rem 1.5rem 4rem; }
}
@media screen and (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
}
