/* ══════════════════════════════════════════════════════════════════
   MenuTemplateV2 – Dark Luxury Theme
   All classes prefixed with v2- to avoid conflicts
══════════════════════════════════════════════════════════════════ */

/* ── Reset & tokens ────────────────────────────────────────────── */
.v2-section, .v2-topbar, .v2-nav, .v2-hero, .v2-marquee,
.v2-catbar, .v2-specials, .v2-gallery, .v2-chefs, .v2-reservation,
.v2-contact, .v2-footer {
    font-family: 'Inter', 'Poppins', sans-serif;
    box-sizing: border-box;
}

:root {
    --v2-primary: #ff3a3a;
    --v2-secondary: #ffb800;
    --v2-accent: #a855f7;
    --v2-dark: #0a0a0f;
    --v2-dark2: #111118;
    --v2-dark3: #1a1a2e;
    --v2-glass: rgba(255,255,255,.05);
    --v2-glass-border: rgba(255,255,255,.1);
    --v2-text: #e8e8f0;
    --v2-muted: rgba(232,232,240,.55);
    --v2-radius: 16px;
    --v2-radius-sm: 10px;
}

/* ── Container ──────────────────────────────────────────────────── */
.v2-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Top bar ────────────────────────────────────────────────────── */
.v2-topbar {
    background: var(--v2-dark);
    border-bottom: 1px solid rgba(255,58,58,.15);
    padding: 7px 0;
    position: relative;
    z-index: 1001;
}
.v2-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.v2-topbar-contact {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.v2-topbar-contact a {
    color: var(--v2-muted);
    font-size: .78rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .2s;
}
.v2-topbar-contact a i { color: var(--v2-primary); font-size: .72rem; }
.v2-topbar-contact a:hover { color: #fff; }
.v2-topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}
.v2-promo-tag {
    background: linear-gradient(90deg, var(--v2-primary), #ff6b35);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: .3px;
    animation: v2PulseTag 2s infinite;
}
@keyframes v2PulseTag { 0%,100%{opacity:1} 50%{opacity:.75} }
.v2-topbar-soc { display: flex; gap: 8px; }
.v2-topbar-soc a {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--v2-glass);
    border: 1px solid var(--v2-glass-border);
    color: var(--v2-muted);
    display: flex; align-items: center; justify-content: center;
    font-size: .65rem;
    text-decoration: none;
    transition: all .2s;
}
.v2-topbar-soc a:hover { background: var(--v2-primary); color: #fff; border-color: transparent; }

/* ── Navbar ─────────────────────────────────────────────────────── */
.v2-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all .35s;
    background: transparent;
}
.v2-nav.v2-nav-scrolled {
    background: rgba(10,10,15,.96);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,58,58,.15);
    box-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.v2-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.v2-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}
.v2-brand-icon {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--v2-primary);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1rem;
}
.v2-brand-logo { height: 40px; object-fit: contain; border-radius: 8px; }
.v2-brand-name { color: #fff; font-size: 1.1rem; font-weight: 800; line-height: 1.1; }
.v2-brand-sub { color: var(--v2-muted); font-size: .68rem; letter-spacing: .5px; }
.v2-nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}
.v2-nav-list {
    list-style: none;
    display: flex;
    gap: 2px;
    margin: 0; padding: 0;
}
.v2-nav-link {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 8px;
    transition: all .2s;
    display: block;
}
.v2-nav-link:hover, .v2-nav-link.active {
    color: #fff;
    background: rgba(255,58,58,.12);
}
.v2-nav-cta { margin-left: 12px; }
.v2-toggler {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none; border: none; cursor: pointer; padding: 6px;
}
.v2-toggler span {
    display: block;
    width: 24px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s;
}
.v2-toggler.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.v2-toggler.open span:nth-child(2) { opacity: 0; }
.v2-toggler.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Buttons ────────────────────────────────────────────────────── */
.v2-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--v2-primary) 0%, #ff6b35 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 13px 28px;
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 4px 20px rgba(255,58,58,.35);
    letter-spacing: .3px;
}
.v2-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,58,58,.5);
    color: #fff;
    text-decoration: none;
}
.v2-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.3);
    border-radius: 50px;
    padding: 12px 28px;
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all .3s;
}
.v2-btn-ghost:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.6);
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}
.v2-btn-block { width: 100%; justify-content: center; border-radius: 12px; }

/* ── Hero ───────────────────────────────────────────────────────── */
.v2-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--v2-dark);
    padding-top: 90px;
}
.v2-hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .12;
    filter: blur(4px);
}
.v2-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,10,15,.98) 0%, rgba(26,26,46,.85) 60%, rgba(168,85,247,.08) 100%);
}
.v2-hero-particles {
    position: absolute; inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.v2-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--v2-primary);
    animation: v2Float linear infinite;
}
@keyframes v2Float {
    0%   { transform: translateY(0) scale(1); opacity: .4; }
    50%  { transform: translateY(-30px) scale(1.2); opacity: .8; }
    100% { transform: translateY(0) scale(1); opacity: .4; }
}
.v2-hero-content {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 24px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}
.v2-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,184,0,.12);
    border: 1px solid rgba(255,184,0,.3);
    color: var(--v2-secondary);
    font-size: .78rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 22px;
    letter-spacing: .4px;
}
.v2-hero-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
    line-height: 1.05;
}
.v2-line1 { color: var(--v2-text); font-size: clamp(2rem,4vw,3rem); font-weight: 800; }
.v2-line2 { font-size: clamp(2.5rem,5vw,4rem); font-weight: 900; letter-spacing: -1px; }
.v2-line3 { color: var(--v2-muted); font-size: clamp(1.3rem,2.5vw,2rem); font-weight: 600; }
.v2-glow {
    background: linear-gradient(90deg, var(--v2-primary), var(--v2-secondary), var(--v2-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255,58,58,.4));
}
.v2-hero-desc {
    color: var(--v2-muted);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}
.v2-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.v2-hero-stats {
    display: flex;
    gap: 0;
    align-items: center;
    flex-wrap: wrap;
}
.v2-hstat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 22px;
}
.v2-hstat:first-child { padding-left: 0; }
.v2-snum { color: #fff; font-size: 1.8rem; font-weight: 900; line-height: 1; }
.v2-sunit { color: var(--v2-primary); font-size: 1.2rem; font-weight: 900; }
.v2-hstat small { color: var(--v2-muted); font-size: .72rem; margin-top: 3px; }
.v2-hsep { width: 1px; height: 36px; background: rgba(255,255,255,.12); margin: 0 6px; }

/* Hero right visual */
.v2-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.v2-orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: v2Spin linear infinite;
}
.v2-ring1 {
    width: 420px; height: 420px;
    border-color: rgba(255,58,58,.12);
    animation-duration: 20s;
}
.v2-ring2 {
    width: 330px; height: 330px;
    border-color: rgba(168,85,247,.15);
    border-style: dashed;
    animation-duration: 14s;
    animation-direction: reverse;
}
@keyframes v2Spin { to { transform: rotate(360deg); } }
.v2-hero-img-wrap {
    width: 280px; height: 280px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255,58,58,.4);
    box-shadow: 0 0 60px rgba(255,58,58,.25), 0 0 120px rgba(168,85,247,.1);
    position: relative; z-index: 2;
}
.v2-hero-img { width: 100%; height: 100%; object-fit: cover; }
.v2-float-chip {
    position: absolute;
    background: rgba(15,15,25,.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: v2ChipFloat ease-in-out infinite;
}
.v2-float-chip i { font-size: 1.1rem; }
.v2-float-chip div { display: flex; flex-direction: column; }
.v2-float-chip b { color: #fff; font-size: .82rem; font-weight: 700; line-height: 1.1; }
.v2-float-chip small { color: var(--v2-muted); font-size: .68rem; }
.v2-chip1 { top: 10%; left: -8%; animation-duration: 3s; animation-delay: 0s; }
.v2-chip1 i { color: var(--v2-primary); }
.v2-chip2 { top: 5%; right: -4%; animation-duration: 3.5s; animation-delay: .5s; }
.v2-chip2 i { color: var(--v2-secondary); }
.v2-chip3 { bottom: 10%; left: -6%; animation-duration: 4s; animation-delay: 1s; }
.v2-chip3 i { color: #22c55e; }
@keyframes v2ChipFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
.v2-hero-scroll {
    position: absolute;
    bottom: 28px; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.v2-hero-scroll a {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.5);
    text-decoration: none;
    animation: v2ScrollBounce 2s infinite;
    transition: all .3s;
}
.v2-hero-scroll a:hover { border-color: var(--v2-primary); color: var(--v2-primary); }
@keyframes v2ScrollBounce {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
}

/* ── Marquee ────────────────────────────────────────────────────── */
.v2-marquee {
    background: var(--v2-primary);
    padding: 13px 0;
    overflow: hidden;
    white-space: nowrap;
}
.v2-mqtrack {
    display: inline-flex;
    animation: v2Marquee 30s linear infinite;
    white-space: nowrap;
}
.v2-mqitem {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 0 24px;
    text-transform: uppercase;
}
.v2-mqitem i { font-size: .45rem; opacity: .7; }
@keyframes v2Marquee { to { transform: translateX(-50%); } }

/* ── Section helpers ────────────────────────────────────────────── */
.v2-section { padding: 90px 0; background: var(--v2-dark2); }
.v2-section:nth-child(even), .v2-about, .v2-chefs { background: var(--v2-dark); }
.v2-section-head { margin-bottom: 52px; }
.v2-slbl {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--v2-primary);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.v2-slbl::before, .v2-slbl::after {
    content: '';
    display: inline-block;
    width: 20px; height: 1.5px;
    background: var(--v2-primary);
}
.v2-title {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    margin: 6px 0;
    line-height: 1.2;
}
.v2-title span {
    background: linear-gradient(90deg, var(--v2-primary), var(--v2-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.v2-sline {
    width: 50px; height: 3px;
    background: linear-gradient(90deg, var(--v2-primary), var(--v2-secondary));
    border-radius: 2px;
    margin: 14px auto;
}
.v2-desc { color: var(--v2-muted); font-size: .9rem; line-height: 1.75; }

/* ── About ──────────────────────────────────────────────────────── */
.v2-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.v2-about-imgs { position: relative; }
.v2-aimg-main {
    border-radius: var(--v2-radius);
    overflow: hidden;
    aspect-ratio: 4/5;
    max-width: 340px;
}
.v2-aimg-main img { width: 100%; height: 100%; object-fit: cover; }
.v2-aimg-sm {
    position: absolute;
    bottom: -24px; right: -24px;
    width: 160px; height: 160px;
    border-radius: var(--v2-radius);
    overflow: hidden;
    border: 4px solid var(--v2-dark);
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.v2-aimg-sm img { width: 100%; height: 100%; object-fit: cover; }
.v2-aexp-badge {
    position: absolute;
    top: 24px; right: -12px;
    background: linear-gradient(135deg, var(--v2-primary), #ff6b35);
    color: #fff;
    padding: 16px 18px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(255,58,58,.4);
}
.v2-aexp-num { display: block; font-size: 1.8rem; font-weight: 900; line-height: 1; }
.v2-aexp-num sup { font-size: 1rem; }
.v2-aexp-badge span { font-size: .7rem; font-weight: 600; opacity: .9; line-height: 1.3; }
.v2-about-text { padding: 20px 0; }
.v2-feat-list { margin: 24px 0; display: flex; flex-direction: column; gap: 18px; }
.v2-feat-item { display: flex; gap: 14px; align-items: flex-start; }
.v2-feat-ico {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
}
.v2-ico-r { background: rgba(255,58,58,.15); color: var(--v2-primary); }
.v2-ico-y { background: rgba(255,184,0,.15); color: var(--v2-secondary); }
.v2-ico-g { background: rgba(34,197,94,.15); color: #22c55e; }
.v2-feat-item h6 { color: #fff; margin: 0 0 4px; font-size: .88rem; font-weight: 700; }
.v2-feat-item p { color: var(--v2-muted); font-size: .8rem; margin: 0; line-height: 1.55; }

/* ── Category pills ─────────────────────────────────────────────── */
.v2-catbar {
    background: var(--v2-dark3);
    padding: 18px 0;
    position: sticky;
    top: 62px;
    z-index: 100;
    border-bottom: 1px solid var(--v2-glass-border);
}
.v2-catbar-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}
.v2-catbar-track::-webkit-scrollbar { display: none; }
.v2-catpill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1.5px solid var(--v2-glass-border);
    background: var(--v2-glass);
    color: var(--v2-muted);
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all .25s;
    flex-shrink: 0;
}
.v2-catpill:hover { border-color: var(--v2-primary); color: #fff; }
.v2-catpill.active {
    background: linear-gradient(135deg, var(--v2-primary), #ff6b35);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 16px rgba(255,58,58,.35);
}
.v2-catpill-ico {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    font-size: .72rem;
}
.v2-catpill-img { overflow: hidden; }
.v2-catpill-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

/* ── Menu grid ──────────────────────────────────────────────────── */
.v2-menu { background: var(--v2-dark2); }
.v2-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.v2-mcard {
    background: var(--v2-dark3);
    border: 1px solid var(--v2-glass-border);
    border-radius: var(--v2-radius);
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    cursor: pointer;
}
.v2-mcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
    border-color: rgba(255,58,58,.25);
}
.v2-mimg { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.v2-mimg img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.v2-mcard:hover .v2-mimg img { transform: scale(1.07); }
.v2-mbdg {
    position: absolute; top: 12px; left: 12px;
    display: flex; align-items: center; gap: 4px;
    font-size: .68rem; font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}
.v2-hot { background: linear-gradient(135deg, var(--v2-primary), #ff6b35); color: #fff; }
.v2-best { background: linear-gradient(135deg, var(--v2-secondary), #ff9500); color: #000; }
.v2-mdisc {
    position: absolute; top: 12px; right: 12px;
    background: rgba(34,197,94,.9);
    color: #fff;
    font-size: .7rem; font-weight: 800;
    padding: 3px 9px;
    border-radius: 6px;
}
.v2-mhover {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.45);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}
.v2-mcard:hover .v2-mhover { opacity: 1; }
.v2-mview {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255,255,255,.3);
    color: #fff;
    font-size: .9rem;
    cursor: pointer;
    transition: all .2s;
}
.v2-mview:hover { background: var(--v2-primary); border-color: transparent; }
.v2-mbody { padding: 16px 18px; }
.v2-mcat { color: var(--v2-primary); font-size: .7rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; margin-bottom: 5px; }
.v2-mtit { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.v2-mdesc { color: var(--v2-muted); font-size: .78rem; line-height: 1.5; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.v2-mfoot { display: flex; align-items: center; justify-content: space-between; }
.v2-mpricewrap { display: flex; align-items: baseline; gap: 7px; }
.v2-mprice { color: var(--v2-primary); font-size: 1.1rem; font-weight: 800; }
.v2-mold { color: rgba(255,255,255,.3); font-size: .78rem; text-decoration: line-through; }
.v2-madd {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--v2-primary), #ff6b35);
    border: none;
    color: #fff;
    font-size: .85rem;
    cursor: pointer;
    transition: all .25s;
    display: flex; align-items: center; justify-content: center;
}
.v2-madd:hover { transform: rotate(90deg) scale(1.1); }

/* ── Popup ──────────────────────────────────────────────────────── */
.v2-popup {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.v2-popup.open { display: flex; animation: v2FadeIn .3s ease; }
@keyframes v2FadeIn { from { opacity: 0; } to { opacity: 1; } }
.v2-popbox {
    background: var(--v2-dark3);
    border: 1px solid var(--v2-glass-border);
    border-radius: 20px;
    max-width: 720px; width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    position: relative;
    animation: v2SlideUp .3s ease;
    max-height: 90vh;
    overflow-y: auto;
}
@keyframes v2SlideUp { from { transform: translateY(30px); opacity: 0; } to { transform: none; opacity: 1; } }
.v2-popclose {
    position: absolute; top: 14px; right: 14px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    font-size: .85rem;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
.v2-popclose:hover { background: var(--v2-primary); }
.v2-popimg { aspect-ratio: 3/4; overflow: hidden; }
.v2-popimg img { width: 100%; height: 100%; object-fit: cover; }
.v2-popbody { padding: 28px 24px; display: flex; flex-direction: column; gap: 10px; }
.v2-popcatrow { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.v2-popcatrow span:first-child { color: var(--v2-primary); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; }
.v2-pop-tag { background: rgba(255,58,58,.12); color: var(--v2-primary); border: 1px solid rgba(255,58,58,.2); border-radius: 20px; font-size: .65rem; font-weight: 600; padding: 2px 9px; }
.v2-poptit { color: #fff; font-size: 1.3rem; font-weight: 800; line-height: 1.25; }
.v2-popdesc { color: var(--v2-muted); font-size: .83rem; line-height: 1.65; }
.v2-popprice .v2-pop-price { color: var(--v2-primary); font-size: 1.5rem; font-weight: 900; }
.v2-popprice .v2-pop-old { color: rgba(255,255,255,.3); font-size: .9rem; text-decoration: line-through; margin-left: 8px; }
.v2-popmeta { color: var(--v2-muted); font-size: .78rem; display: flex; align-items: center; gap: 6px; }
.v2-popmeta i { color: var(--v2-primary); }
.v2-popqty { display: flex; align-items: center; gap: 14px; margin-top: 4px; }
.v2-qbtn {
    width: 34px; height: 34px;
    border-radius: 10px;
    border: 1.5px solid var(--v2-glass-border);
    background: var(--v2-glass);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all .2s;
    display: flex; align-items: center; justify-content: center;
}
.v2-qbtn:hover { background: var(--v2-primary); border-color: transparent; }
.v2-qnum { color: #fff; font-size: 1rem; font-weight: 700; min-width: 24px; text-align: center; }
.v2-pop-order { margin-top: 6px; }

/* ── Specials ───────────────────────────────────────────────────── */
.v2-specials {
    background: linear-gradient(135deg, var(--v2-dark) 0%, var(--v2-dark3) 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.v2-specials-glow {
    position: absolute;
    top: 50%; left: 30%;
    transform: translate(-50%,-50%);
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,58,58,.08) 0%, transparent 70%);
    pointer-events: none;
}
.v2-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.v2-spec-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,184,0,.12);
    border: 1px solid rgba(255,184,0,.3);
    color: var(--v2-secondary);
    font-size: .75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 30px;
    letter-spacing: .4px;
    margin-bottom: 16px;
}
.v2-spec-title {
    color: #fff;
    font-size: clamp(2rem,3.5vw,3.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
}
.v2-spec-title span { color: var(--v2-primary); }
.v2-spec-desc { color: var(--v2-muted); font-size: .88rem; line-height: 1.7; margin-bottom: 28px; }
.v2-countdown { display: flex; align-items: center; gap: 6px; margin-bottom: 30px; }
.v2-cditem { text-align: center; }
.v2-cdnum {
    display: block;
    background: var(--v2-dark3);
    border: 1.5px solid rgba(255,58,58,.25);
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    padding: 10px 18px;
    border-radius: 12px;
    min-width: 64px;
    line-height: 1;
    font-family: 'Courier New', monospace;
}
.v2-cdlbl { color: var(--v2-muted); font-size: .68rem; font-weight: 600; letter-spacing: .5px; margin-top: 5px; display: block; text-transform: uppercase; }
.v2-cdsep { color: var(--v2-primary); font-size: 1.8rem; font-weight: 900; padding: 0 2px; line-height: 1; align-self: flex-start; margin-top: 8px; }

.v2-spec-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.v2-spec-glow-circle {
    position: absolute;
    width: 340px; height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,58,58,.18) 0%, transparent 70%);
}
.v2-spec-price-tag {
    position: absolute;
    top: 12px; right: 0;
    background: var(--v2-dark3);
    border: 1.5px solid rgba(255,58,58,.3);
    border-radius: 14px;
    padding: 10px 16px;
    text-align: center;
    z-index: 2;
}
.v2-spec-old { display: block; color: rgba(255,255,255,.35); text-decoration: line-through; font-size: .78rem; }
.v2-spec-new { display: block; color: var(--v2-primary); font-size: 1.3rem; font-weight: 900; }
.v2-spec-img img { max-width: 360px; width: 100%; border-radius: 20px; position: relative; z-index: 1; filter: drop-shadow(0 20px 40px rgba(255,58,58,.25)); }

/* ── Gallery ────────────────────────────────────────────────────── */
.v2-gallery { background: var(--v2-dark); }
.v2-gal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 12px;
}
.v2-g-tall { grid-row: span 2; }
.v2-g-wide { grid-column: span 2; }
.v2-gitem {
    position: relative;
    border-radius: var(--v2-radius);
    overflow: hidden;
    cursor: pointer;
}
.v2-gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.v2-gitem:hover img { transform: scale(1.08); }
.v2-gover {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 18px;
    opacity: 0;
    transition: opacity .35s;
}
.v2-gitem:hover .v2-gover { opacity: 1; }
.v2-gover i { color: var(--v2-primary); margin-right: 6px; }
.v2-gover span { color: #fff; font-size: .85rem; font-weight: 700; }

.v2-galpop {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.88);
    backdrop-filter: blur(12px);
    z-index: 2100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.v2-galpop.open { display: flex; }
.v2-galpbox {
    max-width: 820px; width: 100%;
    background: var(--v2-dark3);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--v2-glass-border);
    position: relative;
}
.v2-galclose {
    position: absolute; top: 14px; right: 14px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: none; color: #fff; cursor: pointer;
    font-size: .85rem;
    display: flex; align-items: center; justify-content: center;
    z-index: 10;
}
.v2-galclose:hover { background: var(--v2-primary); }
.v2-galpbox img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.v2-galcap { padding: 16px 20px; }
.v2-galcap h5 { color: #fff; margin: 0 0 5px; font-size: 1rem; }
.v2-galcap p { color: var(--v2-muted); font-size: .82rem; margin: 0; }
.v2-galnav { display: flex; gap: 10px; padding: 10px 20px 16px; }
.v2-galnav button {
    padding: 7px 18px;
    border-radius: 8px;
    background: var(--v2-glass);
    border: 1px solid var(--v2-glass-border);
    color: #fff;
    font-size: .8rem;
    cursor: pointer;
    transition: all .2s;
}
.v2-galnav button:hover { background: var(--v2-primary); border-color: transparent; }

/* ── Chefs ──────────────────────────────────────────────────────── */
.v2-chefs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.v2-chcard {
    background: var(--v2-dark3);
    border: 1px solid var(--v2-glass-border);
    border-radius: var(--v2-radius);
    overflow: hidden;
    transition: transform .3s, border-color .3s;
}
.v2-chcard:hover { transform: translateY(-6px); border-color: rgba(255,58,58,.3); }
.v2-chimg { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.v2-chimg img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.v2-chcard:hover .v2-chimg img { transform: scale(1.07); }
.v2-ch-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,15,.95) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    opacity: 0;
    transition: opacity .35s;
}
.v2-chcard:hover .v2-ch-overlay { opacity: 1; }
.v2-ch-bio { color: rgba(255,255,255,.8); font-size: .75rem; line-height: 1.5; margin-bottom: 10px; }
.v2-ch-soc { display: flex; gap: 8px; }
.v2-ch-soc a {
    width: 30px; height: 30px;
    border-radius: 8px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff; font-size: .7rem;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: all .2s;
}
.v2-ch-soc a:hover { background: var(--v2-primary); border-color: transparent; }
.v2-chbody { padding: 16px; border-top: 1px solid var(--v2-glass-border); }
.v2-chnm { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 3px; }
.v2-chrole { color: var(--v2-primary); font-size: .73rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 4px; }
.v2-chexp { color: var(--v2-muted); font-size: .72rem; display: flex; align-items: center; gap: 5px; }
.v2-chexp i { font-size: .65rem; }

/* ── Reservation ────────────────────────────────────────────────── */
.v2-reservation {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
}
.v2-reservation-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--v2-dark) 0%, #0d0d1a 100%);
}
.v2-res-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}
.v2-res-info {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--v2-glass-border);
    border-radius: var(--v2-radius);
    padding: 30px 24px;
}
.v2-res-info h4 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.v2-res-info p { color: var(--v2-muted); font-size: .8rem; margin-bottom: 22px; }
.v2-res-info-list { display: flex; flex-direction: column; gap: 16px; }
.v2-rinfo-item { display: flex; gap: 12px; align-items: flex-start; }
.v2-rinfo-ico {
    width: 36px; height: 36px; flex-shrink: 0;
    border-radius: 9px;
    background: rgba(255,58,58,.12);
    color: var(--v2-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem;
}
.v2-rinfo-item strong { display: block; color: rgba(255,255,255,.6); font-size: .7rem; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 2px; }
.v2-rinfo-item span { color: #fff; font-size: .83rem; }

/* ── Glass cards ────────────────────────────────────────────────── */
.v2-glass {
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(20px);
    border: 1px solid var(--v2-glass-border);
    border-radius: var(--v2-radius);
    padding: 32px;
}
.v2-glass-dark {
    background: rgba(0,0,0,.4);
    backdrop-filter: blur(20px);
    border: 1px solid var(--v2-glass-border);
    border-radius: var(--v2-radius);
    padding: 32px;
}

/* ── Form controls ──────────────────────────────────────────────── */
.v2-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.v2-fg { display: flex; flex-direction: column; gap: 5px; }
.v2-fg-full { grid-column: span 2; }
.v2-flbl { color: rgba(255,255,255,.6); font-size: .75rem; font-weight: 600; letter-spacing: .4px; text-transform: uppercase; }
.v2-fctrl {
    background: rgba(255,255,255,.06);
    border: 1.5px solid rgba(255,255,255,.1);
    border-radius: 10px;
    color: #fff;
    padding: 11px 14px;
    font-size: .87rem;
    outline: none;
    transition: border-color .2s, background .2s;
    width: 100%;
}
.v2-fctrl::placeholder { color: rgba(255,255,255,.25); }
.v2-fctrl:focus { border-color: rgba(255,58,58,.5); background: rgba(255,255,255,.08); }
.v2-fctrl option { background: #1a1a2e; color: #fff; }
.v2-sucmsg {
    display: none;
    align-items: center;
    gap: 12px;
    background: rgba(34,197,94,.1);
    border: 1px solid rgba(34,197,94,.3);
    border-radius: 12px;
    padding: 14px 18px;
    margin-top: 16px;
}
.v2-sucmsg i { color: #22c55e; font-size: 1.2rem; }
.v2-sucmsg p { color: #22c55e; font-size: .87rem; margin: 0; font-weight: 600; }

/* ── Contact ────────────────────────────────────────────────────── */
.v2-contact { background: var(--v2-dark2); }
.v2-contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: start;
}
.v2-ctinfo h4 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.v2-ctinfo p { color: var(--v2-muted); font-size: .8rem; margin-bottom: 24px; }
.v2-ct-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
.v2-ctitem { display: flex; gap: 12px; align-items: flex-start; }
.v2-cticon {
    width: 36px; height: 36px; flex-shrink: 0;
    border-radius: 9px;
    background: rgba(255,58,58,.12);
    color: var(--v2-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem;
}
.v2-ctitem strong { display: block; color: rgba(255,255,255,.5); font-size: .68rem; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 2px; }
.v2-ctitem span { color: #fff; font-size: .82rem; }
.v2-ctsoc { display: flex; gap: 9px; }
.v2-ctsoc a {
    width: 34px; height: 34px;
    border-radius: 9px;
    background: var(--v2-glass);
    border: 1px solid var(--v2-glass-border);
    color: var(--v2-muted);
    display: flex; align-items: center; justify-content: center;
    font-size: .72rem;
    text-decoration: none;
    transition: all .2s;
}
.v2-ctsoc a:hover { background: var(--v2-primary); color: #fff; border-color: transparent; }

/* ── Footer ─────────────────────────────────────────────────────── */
.v2-footer {
    background: var(--v2-dark);
    padding: 70px 0 0;
    position: relative;
    border-top: 1px solid rgba(255,58,58,.1);
}
.v2-footer-glow {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 800px; height: 200px;
    background: radial-gradient(ellipse, rgba(255,58,58,.05) 0%, transparent 70%);
    pointer-events: none;
}
.v2-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
}
.v2-fnm { font-size: 1.8rem; font-weight: 900; color: #fff; margin-bottom: 12px; }
.v2-fnm span { color: var(--v2-primary); }
.v2-fdesc { color: var(--v2-muted); font-size: .83rem; line-height: 1.65; margin-bottom: 18px; }
.v2-fsoc { display: flex; gap: 9px; }
.v2-fsoc a {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--v2-glass);
    border: 1px solid var(--v2-glass-border);
    color: var(--v2-muted);
    display: flex; align-items: center; justify-content: center;
    font-size: .72rem;
    text-decoration: none;
    transition: all .2s;
}
.v2-fsoc a:hover { background: var(--v2-primary); color: #fff; border-color: transparent; }
.v2-ftit { color: #fff; font-size: .88rem; font-weight: 700; letter-spacing: .5px; margin-bottom: 16px; text-transform: uppercase; }
.v2-flinks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.v2-flinks a { color: var(--v2-muted); text-decoration: none; font-size: .83rem; display: flex; align-items: center; gap: 7px; transition: color .2s; }
.v2-flinks a i { font-size: .55rem; color: var(--v2-primary); }
.v2-flinks a:hover { color: #fff; }
.v2-nl-wrap { display: flex; gap: 8px; margin-bottom: 8px; }
.v2-nl-input {
    flex: 1;
    background: var(--v2-glass);
    border: 1.5px solid var(--v2-glass-border);
    border-radius: 10px;
    color: #fff;
    padding: 10px 14px;
    font-size: .82rem;
    outline: none;
}
.v2-nl-input::placeholder { color: rgba(255,255,255,.25); }
.v2-nl-input:focus { border-color: rgba(255,58,58,.4); }
.v2-nl-btn {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--v2-primary);
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: .82rem;
    transition: all .2s;
    display: flex; align-items: center; justify-content: center;
}
.v2-nl-btn:hover { transform: scale(1.08); }
.v2-nl-note { color: rgba(255,255,255,.3); font-size: .68rem; display: flex; align-items: center; gap: 5px; }
.v2-fbot {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 18px 0;
}
.v2-fbot .v2-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.v2-fbot p { color: rgba(255,255,255,.35); font-size: .78rem; margin: 0; }
.v2-fbot span { color: var(--v2-primary); }
.v2-fbot-links { display: flex; gap: 16px; }
.v2-fbot-links a { color: rgba(255,255,255,.35); font-size: .75rem; text-decoration: none; transition: color .2s; }
.v2-fbot-links a:hover { color: #fff; }

/* ── Back to top ────────────────────────────────────────────────── */
.v2-btt {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--v2-primary), #ff6b35);
    border: none;
    color: #fff;
    font-size: .85rem;
    cursor: pointer;
    z-index: 900;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transform: translateY(12px);
    transition: all .3s;
    box-shadow: 0 4px 20px rgba(255,58,58,.4);
}
.v2-btt.show { opacity: 1; transform: none; }
.v2-btt:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(255,58,58,.55); }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .v2-menu-grid { grid-template-columns: repeat(2, 1fr); }
    .v2-chefs-grid { grid-template-columns: repeat(2, 1fr); }
    .v2-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .v2-toggler { display: flex; }
    .v2-nav-menu {
        position: fixed;
        top: 62px; left: 0; right: 0;
        background: rgba(10,10,15,.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid var(--v2-glass-border);
        transform: translateY(-110%);
        transition: transform .35s cubic-bezier(.4,0,.2,1);
        pointer-events: none;
    }
    .v2-nav-menu.open { transform: translateY(0); pointer-events: all; }
    .v2-nav-list { flex-direction: column; width: 100%; }
    .v2-nav-link { padding: 12px 0; border-radius: 0; border-bottom: 1px solid var(--v2-glass-border); width: 100%; }
    .v2-nav-cta { margin: 16px 0 0; align-self: flex-start; }
    .v2-hero-content { grid-template-columns: 1fr; gap: 40px; padding: 30px 24px 50px; }
    .v2-hero-right { display: none; }
    .v2-about-grid { grid-template-columns: 1fr; }
    .v2-spec-grid { grid-template-columns: 1fr; }
    .v2-spec-img { display: none; }
    .v2-res-grid { grid-template-columns: 1fr; }
    .v2-contact-grid { grid-template-columns: 1fr; }
    .v2-gal-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .v2-g-tall { grid-row: span 1; }
    .v2-g-wide { grid-column: span 2; }
    .v2-popbox { grid-template-columns: 1fr; }
    .v2-popimg { aspect-ratio: 16/9; }
    .v2-menu-grid { grid-template-columns: 1fr; }
    .v2-form-grid { grid-template-columns: 1fr; }
    .v2-fg-full { grid-column: span 1; }
    .v2-footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 480px) {
    .v2-gal-grid { grid-template-columns: 1fr; }
    .v2-g-wide { grid-column: span 1; }
    .v2-chefs-grid { grid-template-columns: 1fr 1fr; }
    .v2-topbar-contact { display: none; }
}
