:root {
  --wine: #720d0b;
  --wine-dark: #230605;
  --red: #a51913;
  --gold: #e9a62b;
  --cream: #fff4df;
  --paper: #faf4ea;
  --ink: #21120f;
  --muted: #786863;
  --white: #fff;
  --green: #20a84b;
  --shadow: 0 18px 50px rgba(43, 10, 6, .14);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", sans-serif;
}
body.locked { overflow: hidden; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
.loading-screen, .not-found {
  min-height: 100vh; display: grid; place-content: center; gap: 12px; padding: 30px;
  color: white; background: var(--wine-dark); text-align: center;
}
.loading-screen span, .not-found > span { font-size: 4rem; }
.loading-screen p, .not-found p { color: #d7c5be; }
.not-found h1 { margin: 0; font-size: clamp(3rem, 8vw, 6rem); }
.empty-state { padding: 35px; border: 1px dashed #dbcac1; border-radius: 16px; color: var(--muted); text-align: center; }
.wrap { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 86px 0; }

.hero {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, color-mix(in srgb, var(--gold) 18%, transparent), transparent 30%),
    linear-gradient(
      125deg,
      color-mix(in srgb, var(--wine-dark) 72%, black),
      color-mix(in srgb, var(--wine) 45%, var(--wine-dark)) 60%,
      var(--wine-dark)
    );
}
.topbar {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.brand { display: flex; align-items: center; gap: 12px; color: white; text-decoration: none; font-weight: 800; }
.brand img { width: 48px; height: 48px; object-fit: cover; border-radius: 50%; border: 2px solid var(--gold); }
.cart-button, .icon-button {
  border: 0;
  color: white;
  background: rgba(255,255,255,.1);
  border-radius: 14px;
}
.cart-button { display: flex; align-items: center; gap: 9px; padding: 11px 15px; }
.cart-button strong {
  min-width: 24px; height: 24px; display: grid; place-items: center;
  color: var(--wine-dark); background: var(--gold); border-radius: 50%;
}
.hero-content { min-height: 600px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; padding-block: 55px 75px; }
.eyebrow { color: var(--gold); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Bebas Neue", sans-serif; font-weight: 400; letter-spacing: .025em; }
h1 { margin: 13px 0 20px; font-size: clamp(3.6rem, 7vw, 6.6rem); line-height: .88; }
h1 em { color: var(--gold); font-style: normal; }
.hero-copy > p { max-width: 600px; color: #e6d8d3; font-size: 1.05rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.primary-button, .promo-button, .ghost-button, .whatsapp-button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 23px; border: 0; border-radius: 12px;
  text-decoration: none; font-weight: 800; transition: transform .2s, filter .2s;
}
.primary-button { color: #250604; background: linear-gradient(135deg, #ffbd3f, var(--gold)); }
.promo-button { color: var(--gold); border: 1px solid var(--gold); background: rgba(233,166,43,.08); }
.ghost-button { color: white; border: 1px solid rgba(255,255,255,.38); background: rgba(255,255,255,.06); }
.primary-button:hover, .promo-button:hover, .ghost-button:hover, .whatsapp-button:hover { transform: translateY(-2px); filter: brightness(1.06); }
.service-info { display: flex; flex-wrap: wrap; gap: 25px; margin-top: 32px; color: #e8dcd8; font-size: .88rem; font-weight: 600; }
.hero-visual { position: relative; }
.hero-visual::before { content: ""; position: absolute; inset: -10%; border: 1px solid rgba(233,166,43,.35); border-radius: 50%; transform: rotate(-8deg); }
.hero-visual img { position: relative; width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; border: 9px solid rgba(255,255,255,.08); filter: drop-shadow(0 30px 45px rgba(0,0,0,.4)); }
.floating-seal {
  position: absolute; right: -15px; bottom: 8%; width: 118px; aspect-ratio: 1;
  display: grid; place-content: center; text-align: center; color: var(--wine-dark);
  background: var(--gold); border: 6px solid var(--wine); border-radius: 50%; transform: rotate(8deg);
}
.floating-seal strong { font-size: 1.35rem; }
.floating-seal span { font-size: .68rem; font-weight: 700; text-transform: uppercase; }

.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 32px; }
.section-heading h2 { margin: 5px 0 0; font-size: clamp(2.6rem, 5vw, 4.3rem); line-height: 1; }
.section-heading > p { max-width: 360px; margin-bottom: 7px; color: var(--muted); line-height: 1.6; }
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.promo-card {
  min-height: 440px; position: relative; overflow: hidden; display: flex; align-items: end;
  border-radius: 22px; color: white; background: #220b08; box-shadow: var(--shadow);
}
.promo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.promo-card:hover img { transform: scale(1.035); }
.promo-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 25%, rgba(18,4,2,.92)); }
.promo-content { position: relative; z-index: 1; width: 100%; padding: 24px; }
.promo-content h3 { margin-bottom: 7px; font-size: 1.18rem; }
.promo-content p { min-height: 42px; color: #e8dbd5; font-size: .82rem; line-height: 1.55; }
.promo-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.promo-price { color: var(--gold); font-family: "Bebas Neue"; font-size: 2rem; }
.small-add {
  width: 42px; height: 42px; border: 0; border-radius: 50%; color: #280806;
  background: var(--gold); font-size: 1.35rem; font-weight: 800;
}

.menu-section { background: #fff; }
.category-tabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 10px; margin-bottom: 28px; scrollbar-width: none; }
.category-tabs::-webkit-scrollbar { display: none; }
.tab {
  flex: 0 0 auto; padding: 12px 18px; border: 1px solid #e2d7d2; border-radius: 999px;
  color: var(--muted); background: white; font-weight: 700;
}
.tab.active { color: white; border-color: var(--wine); background: var(--wine); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.menu-card {
  overflow: hidden; display: flex; flex-direction: column; border: 1px solid #eee2da;
  border-radius: 20px; background: white; box-shadow: 0 8px 28px rgba(64,20,12,.07);
}
.menu-card-image { position: relative; overflow: hidden; aspect-ratio: 4/3; background: #eadcd2; }
.menu-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.menu-card:hover .menu-card-image img { transform: scale(1.04); }
.menu-badge { position: absolute; top: 12px; left: 12px; padding: 7px 10px; border-radius: 8px; color: white; background: var(--wine); font-size: .67rem; font-weight: 800; text-transform: uppercase; }
.menu-card-body { flex: 1; display: flex; flex-direction: column; padding: 20px; }
.menu-card h3 { margin-bottom: 8px; font-size: 1.08rem; }
.menu-card p { color: var(--muted); font-size: .79rem; line-height: 1.55; }
.menu-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 10px; }
.price-from span { display: block; color: var(--muted); font-size: .65rem; }
.price-from strong { color: var(--wine); font-size: 1.18rem; }
.add-button {
  padding: 10px 14px; border: 0; border-radius: 10px; color: white;
  background: var(--wine); font-size: .78rem; font-weight: 800;
}

.quality { color: white; background: var(--wine-dark); }
.quality-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.quality article { padding: 18px; }
.quality article > span { font-size: 2.1rem; }
.quality h3 { margin: 15px 0 8px; }
.quality p { margin-bottom: 0; color: #cdbbb5; font-size: .86rem; line-height: 1.6; }
footer { padding: 35px 0; color: white; background: #140403; }
.footer-content { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.footer-content strong { color: var(--gold); font-family: "Bebas Neue"; font-size: 1.8rem; letter-spacing: .04em; }
.footer-content p { margin: 2px 0 0; color: #a9958e; font-size: .8rem; }
.footer-contact { display: grid; gap: 7px; color: #cdbbb5; text-align: right; font-size: .78rem; }

.overlay { position: fixed; z-index: 90; inset: 0; background: rgba(15,3,2,.7); backdrop-filter: blur(3px); }
.cart-drawer {
  position: fixed; z-index: 100; top: 0; right: 0; width: min(430px, 100%); height: 100dvh;
  display: block; overflow-y: auto; overscroll-behavior: contain; padding: 0 24px 32px; background: white;
  box-shadow: -20px 0 60px rgba(0,0,0,.2); transform: translateX(105%); transition: transform .3s;
}
.cart-drawer.open { transform: translateX(0); }
.drawer-header {
  position: sticky; z-index: 3; top: 0; display: flex; justify-content: space-between; align-items: start;
  margin-inline: -24px; padding: 24px 24px 16px; border-bottom: 1px solid #eee2da; background: white;
}
.drawer-header h2 { margin: 4px 0 0; font-size: 2.3rem; }
.icon-button { width: 42px; height: 42px; color: var(--ink); background: #f3e9e3; font-size: 1.7rem; }
.cart-items { overflow: visible; padding: 10px 0; }
.cart-item { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 16px 0; border-bottom: 1px solid #eee6e1; }
.cart-item h3 { margin: 0 0 5px; font-size: .9rem; }
.cart-item p { margin: 0 0 3px; color: var(--muted); font-size: .72rem; }
.cart-item strong { color: var(--wine); font-size: .88rem; }
.remove-item { align-self: start; border: 0; color: #a33832; background: transparent; font-size: .72rem; text-decoration: underline; }
.cart-empty { min-height: 280px; display: none; place-content: center; text-align: center; color: var(--muted); }
.cart-empty span { font-size: 3.5rem; }
.text-button { border: 0; color: var(--wine); background: transparent; font-weight: 800; }
.cart-footer { border-top: 1px solid #eee2da; padding: 16px 0 8px; }
.cart-footer label { display: block; margin-bottom: 7px; color: var(--muted); font-size: .74rem; font-weight: 700; }
.cart-footer label:not(:first-child) { margin-top: 13px; }
.cart-footer label strong { color: var(--red); }
.cart-footer textarea, .notes-label input {
  width: 100%; resize: none; padding: 12px; border: 1px solid #ded1cb; border-radius: 10px; outline: none;
}
.cart-footer select { width:100%; padding:12px; border:1px solid #ded1cb; border-radius:10px; background:white; }
.fulfillment-options { display:flex; gap:10px; margin-bottom:12px; }
.fulfillment-options label { flex:1; display:flex; align-items:center; gap:7px; margin:0!important; padding:11px; border:1px solid #ded1cb; border-radius:10px; color:var(--ink); }
.fulfillment-options input { accent-color:var(--wine); }
.fee-row { display:flex; justify-content:space-between; margin-top:16px; color:var(--muted); font-size:.82rem; }
.fee-row strong { color:var(--wine); }
.cart-footer textarea:focus, .notes-label input:focus { border-color: var(--wine); }
.cart-footer textarea.invalid { border-color: #c3211b; box-shadow: 0 0 0 3px rgba(195,33,27,.12); }
.total-row { display: flex; justify-content: space-between; margin: 17px 0; font-size: 1.15rem; }
.total-row strong { color: var(--wine); }
.whatsapp-button { width: 100%; color: white; background: var(--green); }
.cart-footer small { display: block; margin-top: 9px; color: var(--muted); text-align: center; font-size: .65rem; }

.product-modal {
  position: fixed; z-index: 110; top: 50%; left: 50%; width: min(560px, calc(100% - 24px)); max-height: 92dvh;
  overflow-y: auto; border-radius: 22px; background: white; box-shadow: 0 30px 100px rgba(0,0,0,.38);
  transform: translate(-50%, -50%);
}
.product-modal > img { width: 100%; height: 220px; object-fit: cover; }
.modal-close { position: absolute; top: 12px; right: 12px; z-index: 2; }
.modal-content { padding: 23px; }
.modal-content h2 { margin: 4px 0 9px; font-size: 2.3rem; }
.modal-content > p { color: var(--muted); font-size: .8rem; line-height: 1.55; }
fieldset { padding: 0; margin: 20px 0; border: 0; }
legend { width: 100%; padding-bottom: 9px; border-bottom: 1px solid #eee2da; font-size: .78rem; font-weight: 800; }
.option-row { display: flex; justify-content: space-between; gap: 15px; padding: 12px 2px; border-bottom: 1px solid #f2eae5; font-size: .8rem; }
.option-row input { margin-right: 7px; accent-color: var(--wine); }
.option-row strong { color: var(--wine); }
.notes-label { display: block; margin-bottom: 18px; color: var(--muted); font-size: .75rem; font-weight: 700; }
.notes-label input { display: block; margin-top: 8px; font-weight: 400; }
.full-button { width: 100%; }
.floating-cart {
  position: fixed; z-index: 60; left: 50%; bottom: 16px; width: min(520px, calc(100% - 24px));
  display: none; justify-content: space-between; align-items: center; padding: 15px 18px; border: 0;
  border-radius: 14px; color: white; background: var(--wine); box-shadow: 0 12px 35px rgba(65,8,6,.35);
  transform: translateX(-50%); font-size: .82rem;
}
.toast {
  position: fixed; z-index: 130; left: 50%; bottom: 28px; padding: 12px 18px; border-radius: 10px;
  color: white; background: #25110e; box-shadow: var(--shadow); opacity: 0; pointer-events: none;
  transform: translate(-50%, 20px); transition: .25s;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.notification-section {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 34px; padding: 20px 24px;
  border: 1px solid #ead1a0; border-radius: 18px; background: #fff7df; box-shadow: 0 12px 35px rgba(69,31,10,.08);
}
.notification-section > div { display: flex; align-items: center; gap: 15px; }
.notification-icon { display: grid; flex: 0 0 auto; width: 46px; height: 46px; place-items: center; border-radius: 50%; background: #ffe4a2; font-size: 1.3rem; }
.notification-section strong { display: block; color: var(--wine); }
.notification-section p { margin: 5px 0 0; color: var(--muted); font-size: .75rem; line-height: 1.5; }
.notification-button { min-height: 44px; padding: 0 17px; border: 0; border-radius: 10px; color: #250604; background: var(--gold); font-weight: 800; white-space: nowrap; }
.notification-button:disabled { color: #665e5a; background: #ddd4ce; cursor: default; }

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .service-info { justify-content: center; }
  .hero-visual { width: min(530px, 90%); margin: 0 auto; }
  .promo-grid, .menu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .wrap { width: min(100% - 28px, 1160px); }
  .section { padding: 60px 0; }
  .topbar { height: 68px; }
  .brand img { width: 40px; height: 40px; }
  .brand span { font-size: .86rem; }
  .hero-content { gap: 45px; padding: 48px 0 60px; }
  h1 { font-size: 4rem; }
  .hero-copy > p { font-size: .9rem; }
  .hero-actions a { width: 100%; }
  .service-info { gap: 12px; font-size: .75rem; }
  .floating-seal { right: -7px; width: 94px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 12px; font-size: .83rem; }
  .promo-grid, .menu-grid, .quality-grid { grid-template-columns: 1fr; }
  .promo-card { min-height: 390px; }
  .menu-grid { gap: 15px; }
  .menu-card { display: grid; grid-template-columns: 120px 1fr; }
  .menu-card-image { height: 100%; min-height: 165px; aspect-ratio: auto; }
  .menu-card-body { padding: 15px; }
  .menu-card h3 { font-size: .94rem; }
  .menu-card p { font-size: .72rem; }
  .menu-card-footer { align-items: end; }
  .add-button { padding: 9px 10px; }
  .quality-grid { gap: 5px; }
  .quality article { text-align: center; }
  .footer-content { align-items: start; flex-direction: column; }
  .footer-contact { text-align: left; }
  .floating-cart.visible { display: flex; }
  .cart-drawer { padding: 0 20px 30px; }
  .drawer-header { margin-inline: -20px; padding: 20px 20px 15px; }
  .product-modal > img { height: 180px; }
  .notification-section { align-items: stretch; flex-direction: column; margin-top: 22px; }
  .notification-button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
