/* ============================================================
   Micheto's Kitchen — Complete Stylesheet
   Dark theme, amber/gold accents — Hostinger PHP/HTML build
   ============================================================ */

/* ─── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── CSS Custom Properties ────────────────────────────────── */
:root {
    --bg-950:      #0a0a0a;
    --bg-900:      #171717;
    --bg-800:      #262626;
    --text-white:  #ffffff;
    --text-300:    #d4d4d4;
    --text-400:    #a3a3a3;
    --text-500:    #737373;
    --amber-400:   #fbbf24;
    --amber-500:   #f59e0b;
    --amber-600:   #d97706;
    --orange-600:  #ea580c;
    --orange-700:  #c2410c;
    --orange-900:  #7c2d12;
    --border:      rgba(255,255,255,0.08);
    --border-hover:rgba(245,158,11,0.35);
    --shadow-amber:0 8px 32px rgba(245,158,11,0.2);
    --radius-sm:   0.75rem;
    --radius-md:   1rem;
    --radius-lg:   1.5rem;
    --radius-xl:   2rem;
    --radius-2xl:  2.5rem;
    --font-display:'Playfair Display', Georgia, serif;
    --font-sans:   'Inter', system-ui, -apple-system, sans-serif;
    --transition:  all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-950);
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-sans); border: none; background: none; }
input, select, textarea { font-family: var(--font-sans); }

::selection { background: rgba(245,158,11,0.3); }

/* ─── Utility ───────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.text-amber { color: var(--amber-500); }
.text-muted { color: var(--text-400); }
.font-display { font-family: var(--font-display); }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.3em; }
.tracking-widest { letter-spacing: 0.4em; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Fade-in scroll animation */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.delay-1 { transition-delay: 0.15s; }
.fade-in.delay-2 { transition-delay: 0.30s; }
.fade-in.delay-3 { transition-delay: 0.45s; }

/* ─── Navbar ────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 2rem 0;
    transition: background 0.5s ease, padding 0.5s ease, box-shadow 0.5s ease;
}
.navbar.scrolled {
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.navbar__logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
    /* Slight drop shadow so logo pops on dark navbar */
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.45));
}
@media (max-width: 480px) {
    .navbar__logo-img { height: 42px; }
}
.navbar__links {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.navbar__links a { transition: color 0.2s; }
.navbar__links a:hover { color: var(--amber-500); }
.navbar__cta {
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(245,158,11,0.5);
    border-radius: 9999px;
    transition: var(--transition);
}
.navbar__cta:hover { background: var(--amber-500); color: #000; }
.navbar__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}
.navbar__mobile-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(0,0,0,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { transition: color 0.2s; }
.mobile-menu a:hover { color: var(--amber-500); }
.mobile-menu__close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    font-size: 2rem;
    color: var(--text-400);
    background: none; border: none; cursor: pointer;
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}
.hero__overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to bottom, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.40) 50%, #0a0a0a 100%);
}
.hero__content {
    position: relative; z-index: 2;
    max-width: 900px;
    padding: 0 1.5rem;
    text-align: center;
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}
.hero__title em { color: var(--amber-500); }
.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-300);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.hero__subtitle strong { color: var(--text-white); font-weight: 500; }
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 9999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
}
.btn:hover { transform: scale(1.04); }
.btn:active { transform: scale(0.97); }
.btn--primary {
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
    color: #000;
    box-shadow: 0 8px 24px rgba(245,158,11,0.25);
}
.btn--primary:hover { box-shadow: 0 12px 32px rgba(245,158,11,0.4); }
.btn--ghost {
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.05);
    color: var(--text-white);
}
.btn--ghost:hover { border-color: rgba(245,158,11,0.5); }
.btn--amber {
    background: var(--amber-500);
    color: #000;
}
.btn--amber:hover { background: var(--amber-400); }
.btn--outline {
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text-white);
}
.btn--outline:hover { background: rgba(255,255,255,0.05); }
.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    z-index: 2;
    animation: fadeInDelay 1.5s ease 1.5s both;
}
.hero__scroll span {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-weight: 500;
}
.hero__scroll-line {
    width: 1px;
    height: 3rem;
    background: linear-gradient(to bottom, var(--amber-500), transparent);
    animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.7); }
}
@keyframes fadeInDelay { from { opacity: 0; } to { opacity: 0.5; } }

/* ─── Notice Banner ─────────────────────────────────────────── */
.notice-banner {
    background: linear-gradient(90deg, var(--orange-900), var(--orange-700));
    padding: 1rem 0;
    overflow: hidden;
}
.notice-banner__track {
    display: flex;
    white-space: nowrap;
    animation: marquee 18s linear infinite;
}
.notice-banner__track:hover { animation-play-state: paused; }
.notice-banner__item {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #fff;
    padding-right: 3rem;
    flex-shrink: 0;
}
.notice-banner__dot {
    width: 8px; height: 8px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    flex-shrink: 0;
}
.notice-banner__icon { color: var(--amber-300, #fcd34d); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── Section Headers ───────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 1.5rem; }
.section-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--amber-500);
    margin-bottom: 0.75rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
}
.section-divider {
    width: 6rem;
    height: 1px;
    background: var(--amber-500);
    margin: 1.5rem auto 0;
}

/* ─── Services ──────────────────────────────────────────────── */
.services { padding: 3rem 0; }
.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.service-card {
    position: relative;
    height: 360px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
    transition: border-color 0.4s ease, transform 0.4s ease;
}
.service-card:hover { border-color: rgba(245,158,11,0.3); transform: translateY(-4px); }
.service-card__img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.service-card:hover .service-card__img { transform: scale(1.1); }
.service-card__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.45) 50%, transparent 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.service-card__icon {
    display: inline-flex;
    padding: 0.75rem;
    background: rgba(245,158,11,0.1);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    width: fit-content;
    transition: background 0.4s ease, color 0.4s ease;
}
.service-card:hover .service-card__icon { background: var(--amber-500); color: #000; }
.service-card__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.service-card__desc {
    font-size: 0.85rem;
    color: var(--text-300);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}
.service-card:hover .service-card__desc { max-height: 6rem; opacity: 1; }
.service-card__cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-500);
    transition: gap 0.3s ease;
}
.service-card:hover .service-card__cta { gap: 0.75rem; }

/* ─── Menu Section ──────────────────────────────────────────── */
.menu-section {
    padding: 3rem 0;
    background: var(--bg-900);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.menu-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) {
    .menu-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    padding: 0.25rem;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border);
    border-radius: 9999px;
    width: fit-content;
}
.menu-tab {
    padding: 0.6rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-400);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.menu-tab:hover { color: var(--text-white); }
.menu-tab.active {
    background: var(--amber-500);
    color: #000;
    box-shadow: var(--shadow-amber);
}
.menu-search {
    position: relative;
    max-width: 380px;
    margin-bottom: 3rem;
}
.menu-search__icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-400);
    pointer-events: none;
}
.menu-search__input {
    width: 100%;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem 1rem 1rem 3rem;
    font-size: 0.875rem;
    color: var(--text-white);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}
.menu-search__input::placeholder { color: var(--text-500); }
.menu-search__input:focus { border-color: rgba(245,158,11,0.5); background: rgba(0,0,0,0.7); }
.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: 300px;
}
.menu-card {
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.4s, transform 0.3s;
}
.menu-card:hover { border-color: rgba(245,158,11,0.3); transform: translateY(-8px); }
.menu-card__img-wrap {
    position: relative;
    height: 12rem;
    overflow: hidden;
}
.menu-card__img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.menu-card:hover .menu-card__img { transform: scale(1.1); }
.menu-card__img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.menu-card__badge {
    position: absolute;
    bottom: 0.75rem; left: 0.75rem;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--amber-500);
    background: rgba(245,158,11,0.1);
    backdrop-filter: blur(8px);
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
}
.menu-card__body { padding: 1.5rem; }
.menu-card__name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}
.menu-card:hover .menu-card__name { color: var(--amber-500); }
.menu-card__desc {
    font-size: 0.75rem;
    color: var(--text-400);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
    transition: color 0.2s;
}
.menu-card:hover .menu-card__desc { color: var(--text-300); }
.menu-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu-card__hint {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--text-500);
}
.menu-card__arrow {
    width: 2rem; height: 2rem;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    font-size: 0.75rem;
    color: var(--text-400);
}
.menu-card:hover .menu-card__arrow { background: var(--amber-500); border-color: var(--amber-500); color: #000; }
.menu-no-results {
    grid-column: 1/-1;
    text-align: center;
    padding: 2rem 0;
    color: var(--text-500);
    font-style: italic;
}

/* ─── Testimonials ──────────────────────────────────────────── */
.testimonials { padding: 3rem 0; }
.testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.testimonial-card {
    position: relative;
    padding: 2.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: background 0.4s, border-color 0.4s;
}
.testimonial-card:hover {
    background: rgba(245,158,11,0.04);
    border-color: rgba(245,158,11,0.2);
}
.testimonial-card__quote {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    font-size: 3rem;
    line-height: 1;
    color: rgba(245,158,11,0.15);
    font-family: Georgia, serif;
    transition: color 0.4s;
    user-select: none;
}
.testimonial-card:hover .testimonial-card__quote { color: rgba(245,158,11,0.35); }
.testimonial-card__stars { display: flex; gap: 0.2rem; margin-bottom: 1.5rem; }
.star { color: var(--amber-500); font-size: 0.875rem; }
.testimonial-card__text {
    font-size: 0.9rem;
    color: var(--text-300);
    line-height: 1.75;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 2rem;
}
.testimonial-card__name {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-white);
    margin-bottom: 0.2rem;
}
.testimonial-card__location {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    color: rgba(245,158,11,0.7);
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
    background: #000;
    padding: 3rem 0 2rem;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}
@media (min-width: 600px)  { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (min-width: 720px)  { .footer__grid { grid-template-columns: 0.9fr 1.2fr 2fr; gap: 2rem; } }
.footer__col-title {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber-500);
    margin-bottom: 1.25rem;
}
.footer__links-col { }
.footer__nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer__nav li a {
    font-size: 0.875rem;
    color: var(--text-400);
    transition: color 0.2s;
}
.footer__nav li a:hover { color: var(--amber-500); }
.footer__logo {
    margin-bottom: 1.5rem;
}
.footer__logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.footer__about {
    color: var(--text-400);
    max-width: 380px;
    line-height: 1.75;
    margin-bottom: 2rem;
}
.footer__contact { display: flex; flex-direction: column; gap: 1.5rem; }
.footer__contact-item { display: flex; align-items: center; gap: 1rem; }
.footer__contact-icon {
    width: 3rem; height: 3rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--amber-500);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.footer__contact-item--wa .footer__contact-icon {
    background: var(--amber-500);
    color: #000;
    box-shadow: var(--shadow-amber);
    transition: transform 0.3s;
}
.footer__contact-item--wa:hover .footer__contact-icon { transform: scale(1.1); }
.footer__contact-label {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: var(--text-500);
    margin-bottom: 0.15rem;
}
.footer__contact-value {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
}
.footer__right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.footer__qr {
    width: 11rem; height: 11rem;
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #000;
}
.footer__qr-icon { font-size: 3rem; opacity: 0.7; }
.footer__qr-label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    line-height: 1.4;
}
.footer__socials { display: flex; gap: 1rem; align-items: center; }
.social-link {
    display: flex; align-items: center; justify-content: center;
    width: 3rem; height: 3rem;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    font-size: 1.1rem;
    transition: var(--transition);
}
.social-link:hover { border-color: rgba(245,158,11,0.5); color: var(--amber-500); }
.footer__bottom {
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}
@media (min-width: 768px) {
    .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer__copy {
    font-size: 0.65rem;
    color: var(--text-500);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}
.footer__legal { display: flex; gap: 2rem; }
.footer__legal a {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-500);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.2s;
}
.footer__legal a:hover { color: var(--amber-500); }

/* ─── Modals ────────────────────────────────────────────────── */
.modal-overlay {
    display: none;
    position: fixed; inset: 0;
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.modal-overlay.open { display: flex; }
.modal {
    position: relative;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--bg-900);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
    animation: modalIn 0.3s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.92) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal--wide { max-width: 900px; padding: 0; flex-direction: column; }
@media (min-width: 768px) { .modal--wide { flex-direction: row; } }
.modal__close {
    position: absolute;
    top: 1rem; right: 1rem;
    width: 2.25rem; height: 2.25rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    color: var(--text-400);
    font-size: 1.1rem;
    border: 1px solid var(--border);
    transition: var(--transition);
    z-index: 1;
}
.modal__close:hover { background: rgba(255,255,255,0.12); color: var(--text-white); }
.modal__title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

/* Menu Item Modal */
.item-modal .modal--wide { display: flex; }
.item-modal__img-col {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}
@media (min-width: 768px) {
    .item-modal__img-col { width: 45%; height: auto; border-radius: var(--radius-2xl) 0 0 var(--radius-2xl); }
}
.item-modal__img { width: 100%; height: 100%; object-fit: cover; }
.item-modal__close-img {
    position: absolute; top: 1rem; left: 1rem;
    width: 2.25rem; height: 2.25rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    color: var(--text-white);
    font-size: 1.1rem;
    transition: var(--transition);
    cursor: pointer;
}
.item-modal__close-img:hover { background: rgba(0,0,0,0.7); }
.item-modal__body { padding: 2.5rem; flex: 1; display: flex; flex-direction: column; }
.item-modal__label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--amber-500);
    margin-bottom: 0.5rem;
}
.item-modal__name {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.item-modal__desc {
    font-size: 0.9rem;
    color: var(--text-400);
    line-height: 1.75;
    margin-bottom: 2rem;
}
.item-modal__ingredients-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-500);
    margin-bottom: 0.75rem;
}
.item-modal__ingredients { display: flex; flex-wrap: gap; gap: 0.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.ingredient-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 9999px;
    font-size: 0.7rem;
    color: var(--text-300);
}
.item-modal__actions { display: flex; gap: 1rem; margin-top: auto; flex-wrap: wrap; }
.item-modal__actions .btn { flex: 1; min-width: 120px; }

/* Inquiry Form Modal */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 520px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group--full { grid-column: 1/-1; }
.form-label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-500);
}
.form-control {
    width: 100%;
    background: #000;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.85rem 1rem;
    font-size: 0.875rem;
    color: var(--text-white);
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
}
.form-control::placeholder { color: var(--text-500); }
.form-control:focus { border-color: var(--amber-500); }
.form-control--textarea {
    min-height: 100px;
    resize: vertical;
}
.form-error {
    font-size: 0.7rem;
    color: #f87171;
    display: none;
    margin-top: 0.25rem;
}
.form-error.visible { display: block; }
.form-submit { width: 100%; margin-top: 0.75rem; }

/* ─── Chatbot Widget ─────────────────────────────────────────── */
.chatbot-toggle {
    position: fixed;
    bottom: 1.5rem; left: 1.5rem;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 1rem;
    background: #000;
    border: 1px solid rgba(245,158,11,0.5);
    color: var(--amber-500);
    border-radius: 9999px;
    box-shadow: 0 8px 32px rgba(245,158,11,0.2);
    transition: var(--transition);
    overflow: hidden;
    max-width: 3.5rem;
}
.chatbot-toggle:hover {
    max-width: 220px;
    gap: 0.75rem;
}
.chatbot-toggle__label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    white-space: nowrap;
    overflow: hidden;
    max-width: 0;
    opacity: 0;
    transition: max-width 0.5s ease, opacity 0.5s ease;
}
.chatbot-toggle:hover .chatbot-toggle__label { max-width: 200px; opacity: 1; }
.chatbot-toggle__icon { font-size: 1.25rem; flex-shrink: 0; line-height: 1; }

.chatbot-window {
    position: fixed;
    bottom: 6rem; left: 1.5rem;
    width: min(400px, calc(100vw - 3rem));
    height: 500px;
    z-index: 101;
    background: var(--bg-950);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: chatIn 0.3s ease;
}
.chatbot-window.open { display: flex; }
@keyframes chatIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.chatbot-header {
    padding: 1rem 1.25rem;
    background: var(--bg-900);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.chatbot-header__info { display: flex; align-items: center; gap: 0.75rem; }
.chatbot-header__avatar {
    width: 2.25rem; height: 2.25rem;
    border-radius: 50%;
    background: rgba(245,158,11,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--amber-500);
    font-size: 1rem;
    flex-shrink: 0;
}
.chatbot-header__name {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.chatbot-header__status { display: flex; align-items: center; gap: 0.35rem; }
.chatbot-status-dot {
    width: 6px; height: 6px;
    background: var(--amber-500);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
.chatbot-header__status-text {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-500);
}
.chatbot-header__close {
    width: 2rem; height: 2rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: none;
    color: var(--text-500);
    font-size: 1rem;
    transition: var(--transition);
}
.chatbot-header__close:hover { background: rgba(255,255,255,0.07); color: var(--text-white); }

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    scroll-behavior: smooth;
}
.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-track { background: transparent; }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.message { display: flex; }
.message--user { justify-content: flex-end; }
.message--bot  { justify-content: flex-start; }
.message__bubble {
    max-width: 85%;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    line-height: 1.55;
}
.message--user .message__bubble {
    background: var(--amber-500);
    color: #000;
    font-weight: 500;
    border-bottom-right-radius: 0.25rem;
}
.message--bot .message__bubble {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text-300);
    border-bottom-left-radius: 0.25rem;
}
.message--typing .message__bubble {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.85rem 1rem;
}
.typing-dot {
    width: 6px; height: 6px;
    background: var(--amber-500);
    border-radius: 50%;
    animation: typingBounce 0.8s ease infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.15s; }
.typing-dot:nth-child(3) { animation-delay: 0.30s; }
@keyframes typingBounce {
    0%,100%{transform:translateY(0);opacity:0.4;}
    50%{transform:translateY(-4px);opacity:1;}
}

.chatbot-input-area {
    padding: 0.75rem 1rem;
    background: var(--bg-900);
    border-top: 1px solid var(--border);
}
.chatbot-form { display: flex; align-items: center; gap: 0.5rem; }
.chatbot-input {
    flex: 1;
    background: #000;
    border: 1px solid var(--border);
    border-radius: 9999px;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    color: var(--text-white);
    outline: none;
    transition: border-color 0.2s;
}
.chatbot-input::placeholder { color: var(--text-500); }
.chatbot-input:focus { border-color: rgba(245,158,11,0.5); }
.chatbot-send {
    width: 2.5rem; height: 2.5rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--amber-500);
    color: #000;
    font-size: 0.9rem;
    transition: transform 0.2s, opacity 0.2s;
    flex-shrink: 0;
}
.chatbot-send:hover { transform: scale(1.1); }
.chatbot-send:disabled { opacity: 0.4; transform: none; }
.chatbot-limit-warning {
    font-size: 0.65rem;
    text-align: center;
    color: var(--text-500);
    padding: 0.25rem 0;
    display: none;
}
.chatbot-limit-warning.visible { display: block; }

/* ─── Floating WhatsApp Button ──────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem; right: 1.5rem;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 1rem;
    background: var(--amber-500);
    color: #000;
    border-radius: 9999px;
    box-shadow: 0 8px 32px rgba(245,158,11,0.4);
    overflow: hidden;
    max-width: 3.5rem;
    transition: max-width 0.5s ease, gap 0.5s ease;
}
.whatsapp-float:hover { max-width: 220px; gap: 0.75rem; }
.whatsapp-float__icon { font-size: 1.25rem; flex-shrink: 0; line-height: 1; position: relative; }
.whatsapp-float__pulse {
    position: absolute; inset: -4px;
    background: var(--amber-500);
    border-radius: 50%;
    z-index: -1;
    animation: floatPulse 2s ease infinite;
}
@keyframes floatPulse { 0%,100%{transform:scale(1);opacity:0.5;} 50%{transform:scale(1.6);opacity:0;} }
.whatsapp-float__label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-width 0.5s ease, opacity 0.5s ease;
}
.whatsapp-float:hover .whatsapp-float__label { max-width: 200px; opacity: 1; }

/* ─── Legal Pages ────────────────────────────────────────────── */
.legal-page { padding: 10rem 0 6rem; }
.legal-page__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.legal-page__date { font-size: 0.8rem; color: var(--text-400); margin-bottom: 3rem; }
.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--amber-500);
    margin: 2.5rem 0 1rem;
}
.legal-content p, .legal-content li {
    font-size: 0.95rem;
    color: var(--text-300);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}
.legal-content ul { padding-left: 1.5rem; }
.legal-content a { color: var(--amber-500); text-decoration: underline; }

/* ─── Reviews Section ───────────────────────────────────────── */
.reviews-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.reviews-subline {
    font-size: 0.8rem;
    color: var(--text-400);
}
.reviews-write-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: transparent;
    border: 1px solid var(--amber-500);
    color: var(--amber-500);
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
}
.reviews-write-btn:hover {
    background: var(--amber-500);
    color: #000;
}

/* ─── Star Rating Widget ─────────────────────────────────────── */
.star-rating {
    display: flex;
    gap: 0.35rem;
    justify-content: center;
    margin: 0.5rem 0 1.25rem;
}
.star-rating__btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.75rem;
    color: var(--text-500);
    transition: color 0.15s, transform 0.15s;
    padding: 0.15rem;
    line-height: 1;
}
.star-rating__btn:hover,
.star-rating__btn.active {
    color: var(--amber-500);
}
.star-rating__btn:hover { transform: scale(1.2); }
.star--empty { color: var(--text-500); }

/* ─── Review Form Modal ──────────────────────────────────────── */
.review-modal .modal { max-width: 560px; }
.review-modal__title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0.5rem;
}
.review-modal__sub {
    font-size: 0.8rem;
    color: var(--text-400);
    text-align: center;
    margin-bottom: 1.75rem;
}
.review-char-count {
    font-size: 0.65rem;
    color: var(--text-500);
    text-align: right;
    margin-top: 0.25rem;
}
.review-char-count.near-limit { color: var(--amber-500); }
.review-success {
    text-align: center;
    padding: 2rem 1rem;
}
.review-success__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.review-success__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.review-success__sub {
    font-size: 0.85rem;
    color: var(--text-400);
}

/* ─── QR Footer Link ─────────────────────────────────────────── */
.footer__qr-link {
    display: inline-block;
    transition: opacity 0.3s, transform 0.3s;
}
.footer__qr-link:hover { opacity: 0.85; transform: scale(1.03); }
.footer__qr-caption {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-500);
    text-align: center;
    margin-top: 0.75rem;
}


/* ─── Form char hint ────────────────────────────────────── */
.form-char-hint {
    display: block;
    font-size: 0.7rem;
    color: var(--text-500);
    margin-top: 0.35rem;
    text-align: right;
}
/* ─── Responsive ────────────────────────────────────────────── */
/* sm: ≥640px — menu 2 cols */
@media (min-width: 640px) {
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
}
/* md: ≥768px — services 3 cols, testimonials 3 cols */
@media (min-width: 768px) {
    .services__grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
}
/* lg: ≥1024px — menu 3 cols */
@media (min-width: 1024px) {
    .menu-grid { grid-template-columns: repeat(3, 1fr); }
}
/* xl: ≥1280px — menu 4 cols */
@media (min-width: 1280px) {
    .menu-grid { grid-template-columns: repeat(4, 1fr); }
}
/* md+: push floats to 2.5rem, matching React md:bottom-10 md:left/right-10 */
@media (min-width: 768px) {
    .chatbot-toggle { bottom: 2.5rem; left: 2.5rem; }
    .chatbot-window { bottom: 6.5rem; left: 2.5rem; }
    .whatsapp-float { bottom: 2.5rem; right: 2.5rem; }
}
/* Mobile-only overrides */
@media (max-width: 767px) {
    .navbar__links { display: none; }
    .navbar__mobile-toggle { display: flex; }
    .hero__title { font-size: clamp(2rem, 10vw, 3.5rem); }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; }
    .menu-grid { grid-template-columns: 1fr; }
}

