/* ═══════════════════════════════════════
   MENU — Hero, Tabs, Items, Order Banner
═══════════════════════════════════════ */

/* Menu hero */
.menu-hero{background:linear-gradient(160deg,#0e0c08,#1e1508 60%,#0d3018);padding:100px 80px 72px;text-align:center;border-bottom:2px solid rgba(240,180,41,0.2)}
.menu-hero h1{font-family:'Playfair Display',serif;font-size:clamp(48px,6vw,80px);font-weight:900;color:var(--cream)}
.menu-hero h1 em{color:var(--gold)}
.menu-hero p{margin-top:16px;font-size:14px;letter-spacing:3px;color:var(--muted);font-family:'Cinzel',serif;text-transform:uppercase}

/* Tabs */
.menu-content-wrapper{position:relative}
.menu-tabs{display:flex;justify-content:center;background:var(--black);border-bottom:2px solid rgba(240,180,41,0.2);position:sticky;top:76px;z-index:100}
.menu-tab{font-family:'Cinzel',serif;font-size:11px;letter-spacing:3px;text-transform:uppercase;padding:20px 40px;cursor:pointer;color:var(--muted);border-bottom:3px solid transparent;transition:all .2s;background:transparent;border-top:none;border-left:none;border-right:none}
.menu-tab:hover{color:var(--gold)}
.menu-tab.active{color:var(--gold);border-bottom-color:var(--gold)}

/* Menu sections and items */
.menu-section{display:none;padding:80px;background:var(--dark-wood)}
.menu-section.active{display:block}
.menu-section-title{font-family:'Playfair Display',serif;font-size:clamp(28px,3vw,44px);font-weight:900;color:var(--cream);margin-bottom:8px}
.menu-section-title em{color:var(--gold)}
.menu-section-desc{font-size:14px;color:var(--muted);margin-bottom:48px;max-width:560px;line-height:1.8}
.menu-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2px}
.menu-item{background:#231a0a;padding:0;display:flex;align-items:stretch;border-left:3px solid transparent;transition:border-color .25s;overflow:hidden}
.menu-item:hover{border-left-color:var(--gold)}
.menu-item-img{width:130px;min-width:130px;flex-shrink:0;overflow:hidden;background-color:#1a1208;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='40' viewBox='0 0 48 40'%3E%3Crect x='4' y='10' width='40' height='28' rx='4' fill='none' stroke='%233d2209' stroke-width='2.5'/%3E%3Ccircle cx='24' cy='24' r='9' fill='none' stroke='%233d2209' stroke-width='2.5'/%3E%3Cpath d='M18 10 l3-6 h6 l3 6' fill='none' stroke='%233d2209' stroke-width='2.5' stroke-linejoin='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:center;background-size:48px}
.menu-item-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s}
.menu-item:hover .menu-item-img img{transform:scale(1.06)}
.menu-item-body{flex:1;padding:28px 32px;display:flex;justify-content:space-between;align-items:flex-start;gap:24px}
.menu-item-info h4{font-family:'Playfair Display',serif;font-size:20px;font-weight:700;color:var(--cream);margin-bottom:8px}
.menu-item-info p{font-size:13px;line-height:1.7;color:var(--muted);max-width:340px}
.menu-item-price{font-family:'Playfair Display',serif;font-size:24px;font-weight:700;color:var(--gold);white-space:nowrap;flex-shrink:0}

/* Order banner */
.order-banner{background:var(--green-dark);border-top:2px solid var(--gold);padding:56px 80px;display:flex;align-items:center;justify-content:space-between;gap:40px}
.order-banner h3{font-family:'Playfair Display',serif;font-size:32px;font-weight:900;color:var(--gold)}
.order-banner p{font-size:14px;color:rgba(245,234,214,0.65);margin-top:6px}
.order-options{display:flex;gap:16px;align-items:center}

/* ── Responsive ── */
@media(max-width:1024px){
  .menu-hero{padding:80px 48px 56px}
  .menu-section{padding:56px 48px}
  .menu-grid{grid-template-columns:1fr}
}

@media(max-width:768px){
  .menu-tabs{top:64px}
  .menu-hero{padding:72px 24px 48px}
  .menu-tab{padding:16px 18px;font-size:10px;letter-spacing:1.5px}
  .menu-section{padding:44px 24px}
  .menu-grid{grid-template-columns:1fr;gap:2px}
  .menu-item{flex-direction:column}
  .menu-item-img{width:100%;min-width:unset;height:180px}
  .menu-item-body{padding:20px 20px;gap:16px}
  .menu-item-price{font-size:20px}
  .order-banner{padding:40px 24px;flex-direction:column;align-items:flex-start;gap:20px}
  .order-options{flex-wrap:wrap}
}

@media(max-width:480px){
  .menu-tab{padding:14px 12px;font-size:9px;letter-spacing:1px}
  .menu-item-img{height:150px}
  .menu-item-body{padding:16px 16px}
  .menu-section-title{font-size:clamp(24px,8vw,36px)}
}
