:root {
      --brown: #4B2C10;
      --gold: #DCBD87;
      --dark: #130904;
      --dark2: #080402;
      --soft: #f3dfb8;
      --border: rgba(220, 189, 135, 0.26);
      --shadow: 0 25px 70px rgba(0, 0, 0, 0.42);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      min-height: 100vh;
      overflow-x: hidden;
      font-family: Georgia, "Times New Roman", Tahoma, serif;
      color: var(--gold);
      background:
        radial-gradient(circle at 12% 10%, rgba(220,189,135,.18), transparent 28%),
        radial-gradient(circle at 84% 8%, rgba(120,72,26,.72), transparent 30%),
        linear-gradient(135deg, #1a0d05, #080402 58%, #2a1608);
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -2;
      opacity: .18;
      background-image:
        radial-gradient(circle, rgba(220,189,135,.28) 1px, transparent 1.5px),
        linear-gradient(45deg, rgba(220,189,135,.15) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(220,189,135,.12) 25%, transparent 25%);
      background-position: 0 0, 0 0, 0 18px;
      background-size: 22px 22px, 44px 44px, 44px 44px;
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(220,189,135,.06), transparent 10%, transparent 90%, rgba(220,189,135,.06)),
        radial-gradient(circle at center, transparent 55%, rgba(0,0,0,.38));
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button, textarea { font-family: inherit; }

    .container { width: min(1180px, calc(100% - 32px)); margin: auto; }

    .btn {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--gold);
      border-radius: 999px;
      padding: 14px 24px;
      cursor: pointer;
      font-weight: 900;
      font-size: 15px;
      color: var(--brown);
      background: linear-gradient(135deg, #f1d7a5, var(--gold), #b88f4f);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 14px 30px rgba(0,0,0,.25);
      transition: .28s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      letter-spacing: .4px;
    }

    .btn::before {
      content: "";
      position: absolute;
      inset: 4px;
      border: 1px solid rgba(75,44,16,.28);
      border-radius: inherit;
      pointer-events: none;
    }

    .btn:hover { transform: translateY(-3px); background: #e9cfa0; }

    .btn.outline {
      color: var(--gold);
      background: rgba(75,44,16,.38);
      backdrop-filter: blur(12px);
    }

    .btn.outline:hover { color: var(--brown); background: var(--gold); }

    .section { padding: 100px 0; }
    .section-title { text-align: center; margin-bottom: 48px; }

    .eyebrow {
      margin-bottom: 12px;
      color: rgba(220,189,135,.72);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 7px;
      text-transform: uppercase;
    }

    h1, h2, h3 { line-height: 1.15; }
    h2 { font-size: clamp(38px, 5vw, 68px); font-weight: 900; }

    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      border-bottom: 3px double rgba(220,189,135,.42);
      background:
        linear-gradient(90deg, rgba(19,9,4,.9), rgba(75,44,16,.84), rgba(19,9,4,.9));
      box-shadow: 0 20px 50px rgba(0,0,0,.45), inset 0 -1px 0 rgba(220,189,135,.18);
      backdrop-filter: blur(16px);
      direction: ltr;
    }

    .nav-inner {
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      direction: ltr;
    }

    .logo {
      width: 62px;
      height: auto;
      max-height: 62px;
      border-radius: 0;
      object-fit: contain;
      border: 0;
      background: transparent;
      filter: drop-shadow(0 8px 16px rgba(55,30,11,.25));
    }

    .brand small {
      display: block;
      margin-top: 3px;
      color: rgba(220,189,135,.72);
      font-weight: 700;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      color: rgba(220,189,135,.86);
      font-weight: 800;
      font-size: 14px;
      direction: ltr;
    }

    .nav-links a { position: relative; padding: 8px 0; }
    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: .25s ease;
    }
    .nav-links a:hover::after { width: 100%; }

    .nav-actions { display: flex; align-items: center; gap: 10px; }
    .cart-btn { position: relative; padding-inline: 20px; }
    .cart-count {
      position: absolute;
      top: -10px;
      right: -8px;
      min-width: 23px;
      height: 23px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      font-size: 12px;
      color: var(--gold);
      background: var(--brown);
      border: 1px solid var(--gold);
    }

    .mobile-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid var(--border);
      color: var(--gold);
      background: transparent;
      cursor: pointer;
      font-size: 22px;
    }

    .mobile-menu {
      display: none;
      border-top: 1px solid var(--border);
      padding: 16px;
      background: rgba(75,44,16,.96);
      direction: ltr;
      text-align: left;
    }

    .mobile-menu a { display: block; padding: 12px 8px; font-weight: 800; }

    .showcase {
      position: relative;
      min-height: auto;
      padding: 138px 0 82px;
    }

    .showcase::before {
      content: "";
      position: absolute;
      top: 96px;
      left: 50%;
      width: min(980px, 88vw);
      height: 520px;
      transform: translateX(-50%);
      border: 1px solid rgba(220,189,135,.14);
      border-radius: 50% 50% 26px 26px / 32% 32% 26px 26px;
      background: linear-gradient(180deg, rgba(220,189,135,.08), transparent 64%);
      pointer-events: none;
    }

    .showcase-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 42px;
      align-items: center;
    }

    .showcase-text {
      animation: rise .8s ease both;
    }

    .showcase-badge {
      display: inline-flex;
      margin-bottom: 22px;
      border: 3px double rgba(220,189,135,.42);
      border-radius: 999px;
      padding: 10px 18px;
      background: rgba(42,22,8,.72);
      backdrop-filter: blur(12px);
      font-weight: 800;
      direction: ltr;
      box-shadow: inset 0 0 18px rgba(220,189,135,.08);
    }

    .showcase h1 {
      font-size: clamp(52px, 8vw, 102px);
      font-weight: 900;
      letter-spacing: 1px;
      text-shadow: 0 18px 55px rgba(0,0,0,.8), 0 0 24px rgba(220,189,135,.14);
    }

    .showcase h1::after {
      content: "✦ ✦ ✦";
      display: block;
      margin-top: 14px;
      color: rgba(220,189,135,.68);
      font-size: clamp(18px, 2vw, 26px);
      letter-spacing: 16px;
    }

    .showcase p {
      max-width: 620px;
      margin: 24px 0 0;
      color: var(--soft);
      font-size: clamp(19px, 2.8vw, 28px);
      line-height: 1.7;
      font-weight: 700;
    }

    .showcase-buttons {
      margin-top: 34px;
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero-photo-wrap {
      position: relative;
      min-height: 560px;
      animation: rise .9s ease both;
    }

    .hero-photo {
      position: absolute;
      inset: 0;
      overflow: hidden;
      border: 4px double rgba(220,189,135,.42);
      border-radius: 220px 220px 42px 42px;
      box-shadow: var(--shadow), inset 0 0 0 10px rgba(75,44,16,.28);
      background: var(--brown);
    }

    .hero-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: sepia(.08) saturate(1.08) contrast(1.05);
    }

    .hero-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(19,9,4,.84), transparent 54%);
    }

    .photo-card {
      position: absolute;
      right: 24px;
      bottom: 12px;
      left: auto;
      width: 320px;
      max-width: 55%;
      z-index: 2;
      border: 3px double rgba(220,189,135,.38);
      border-radius: 28px;
      padding: 14px;
      background: linear-gradient(135deg, rgba(42,22,8,.88), rgba(75,44,16,.72));
      backdrop-filter: blur(14px);
      box-shadow: 0 20px 50px rgba(0,0,0,.35), inset 0 0 24px rgba(220,189,135,.08);
    }

    .photo-card strong {
      display: block;
      margin-bottom: 8px;
      font-size: 20px;
    }

    .photo-card span {
      color: rgba(243,223,184,.86);
      line-height: 1.7;
    }

    .tabs {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 42px;
    }

    .tab {
      border: 3px double rgba(220,189,135,.36);
      border-radius: 999px;
      padding: 13px 24px;
      color: var(--gold);
      background: linear-gradient(135deg, rgba(75,44,16,.45), rgba(19,9,4,.48));
      cursor: pointer;
      font-weight: 900;
      transition: .25s ease;
      box-shadow: inset 0 0 14px rgba(220,189,135,.06);
    }

    .tab.active, .tab:hover { color: var(--brown); background: var(--gold); border-color: var(--gold); }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .menu-card, .review-card {
      position: relative;
      overflow: hidden;
      border: 3px double rgba(220,189,135,.32);
      border-radius: 34px;
      background:
        linear-gradient(135deg, rgba(75,44,16,.54), rgba(24,12,5,.68)),
        radial-gradient(circle at top, rgba(220,189,135,.08), transparent 45%);
      box-shadow: var(--shadow), inset 0 0 0 1px rgba(220,189,135,.06);
      backdrop-filter: blur(14px);
      transition: .32s ease;
    }

    .menu-card::before, .review-card::before {
      content: "✦";
      position: absolute;
      top: 14px;
      left: 18px;
      z-index: 3;
      color: rgba(220,189,135,.62);
      font-size: 18px;
    }

    .menu-card:hover, .review-card:hover { transform: translateY(-9px); border-color: var(--gold); }

    .menu-image { position: relative; height: 250px; overflow: hidden; }
    .menu-image img { width: 100%; height: 100%; object-fit: cover; transition: .7s ease; }
    .menu-card:hover .menu-image img { transform: scale(1.1); }

    .placeholder {
      width: 100%;
      height: 100%;
      display: grid;
      place-items: center;
      text-align: center;
      color: var(--gold);
      background: radial-gradient(circle at top, var(--gold), var(--brown) 45%, #201006);
    }

    .placeholder span { display: block; font-size: 42px; }

    .price-pill {
      position: absolute;
      right: 18px;
      bottom: 18px;
      border: 1px solid rgba(220,189,135,.42);
      border-radius: 999px;
      padding: 9px 14px;
      font-weight: 900;
      background: rgba(19,9,4,.72);
      backdrop-filter: blur(10px);
    }

    .menu-body { padding: 24px; }
    .menu-body h3 { margin-bottom: 10px; font-size: 20px; font-weight: 900; }
    .menu-body p { min-height: 58px; margin-bottom: 20px; color: rgba(243,223,184,.88); line-height: 1.8; }

    .card-actions, .qty-control { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
    .qty-control { overflow: hidden; border: 1px solid rgba(220,189,135,.35); border-radius: 999px; gap: 0; }
    .qty-control button {
      width: 42px;
      height: 42px;
      border: 0;
      color: var(--gold);
      background: transparent;
      cursor: pointer;
      font-size: 20px;
      transition: .2s ease;
    }
    .qty-control button:hover { background: rgba(220,189,135,.12); }
    .qty-control span { min-width: 38px; text-align: center; font-weight: 900; }

    .story {
      position: relative;
      border-block: 4px double rgba(220,189,135,.32);
      background:
        linear-gradient(90deg, rgba(19,9,4,.7), rgba(75,44,16,.4), rgba(19,9,4,.7)),
        radial-gradient(circle at center, rgba(220,189,135,.08), transparent 48%);
      backdrop-filter: blur(12px);
      text-align: center;
    }

    .story::before, .story::after {
      content: "✦ ✦ ✦";
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(220,189,135,.46);
      letter-spacing: 18px;
    }

    .story::before { top: 28px; }
    .story::after { bottom: 28px; }
    .story p { max-width: 850px; margin: 28px auto 0; color: var(--soft); font-size: 22px; line-height: 2; }

    .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .review-card { padding: 32px; }
    .stars { margin-bottom: 18px; color: var(--gold); font-size: 20px; letter-spacing: 2px; }
    .review-card p { margin-bottom: 24px; color: var(--soft); font-size: 21px; line-height: 1.8; }

    .map-section { background: rgba(75,44,16,.28); }
    .map-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; align-items: center; }
    .map-text { direction: ltr; text-align: left; }
    .map-text p { margin: 22px 0 28px; color: var(--soft); font-size: 18px; line-height: 1.9; }
    .map-box { overflow: hidden; border: 1px solid var(--border); border-radius: 34px; box-shadow: var(--shadow); }
    iframe { width: 100%; height: 430px; border: 0; filter: grayscale(.18) sepia(.1); display: block; }

    .footer {
      border-top: 4px double rgba(220,189,135,.32);
      padding: 62px 0 28px;
      background:
        linear-gradient(90deg, #070301, #1a0d05, #070301);
      direction: ltr;
      text-align: left;
      box-shadow: inset 0 18px 50px rgba(0,0,0,.35);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1fr;
      gap: 34px;
    }

    .footer h3, .footer h4 { margin-bottom: 16px; font-weight: 900; }
    .footer p, .footer a { color: rgba(220,189,135,.72); line-height: 1.9; }
    .footer a:hover { color: var(--gold); }
    .footer-links { display: grid; gap: 8px; }

    .socials { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
    .socials a.social-icon {
      width: 48px;
      height: 48px;
      padding: 0;
      display: grid;
      place-items: center;
      border: 1px solid var(--border);
      border-radius: 999px;
      color: var(--gold);
      background: rgba(220,189,135,.06);
      transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
    }
    .socials a.social-icon svg {
      width: 22px;
      height: 22px;
      fill: currentColor;
      display: block;
    }
    .socials a.social-icon:hover {
      color: var(--brown);
      background: var(--gold);
      border-color: var(--gold);
      transform: translateY(-3px);
      box-shadow: 0 14px 28px rgba(0,0,0,.22);
    }
    .maps-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 18px;
      padding: 11px 18px;
      border: 1px solid var(--border);
      border-radius: 999px;
      color: var(--gold) !important;
      background: rgba(220,189,135,.08);
      font-weight: 900;
      line-height: 1.2 !important;
      text-decoration: none;
      transition: transform .25s ease, background .25s ease, color .25s ease;
    }
    .maps-cta:hover {
      color: var(--brown) !important;
      background: var(--gold);
      transform: translateY(-3px);
    }

    .copyright {
      margin-top: 42px;
      padding-top: 24px;
      border-top: 1px solid rgba(220,189,135,.15);
      text-align: center;
      color: rgba(220,189,135,.58);
      font-size: 14px;
    }

    .cart-overlay {
      position: fixed;
      inset: 0;
      z-index: 1800;
      background: rgba(0,0,0,.68);
      backdrop-filter: blur(8px);
      opacity: 0;
      pointer-events: none;
      transition: .25s ease;
    }
    .cart-overlay.show { opacity: 1; pointer-events: auto; }

    .cart-sidebar {
      position: fixed;
      top: 0;
      right: 0;
      z-index: 1900;
      width: min(440px, 100%);
      height: 100vh;
      display: flex;
      flex-direction: column;
      color: var(--gold);
      background: var(--dark);
      border-left: 1px solid var(--border);
      box-shadow: var(--shadow);
      transform: translateX(105%);
      transition: .32s ease;
    }
    .cart-sidebar.show { transform: translateX(0); }

    .cart-head, .cart-foot {
      padding: 14px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .cart-head h3 { font-size: 26px; font-weight: 900; }
    .close-cart {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid var(--border);
      color: var(--gold);
      background: transparent;
      cursor: pointer;
      font-size: 22px;
    }
    .cart-body { flex: 1; overflow-y: auto; padding: 14px; }
    .empty-cart { margin-top: 90px; text-align: center; color: rgba(220,189,135,.68); }
    .cart-item { margin-bottom: 14px; border: 1px solid rgba(220,189,135,.2); border-radius: 26px; padding: 14px; background: rgba(75,44,16,.36); }
    .cart-item-top { display: grid; grid-template-columns: 76px 1fr auto; gap: 12px; align-items: start; }
    .cart-item img, .cart-img-placeholder { width: 76px; height: 76px; border-radius: 18px; object-fit: cover; background: radial-gradient(circle, var(--gold), var(--brown)); }
    .cart-item strong { display: block; margin-bottom: 4px; font-size: 17px; }
    .cart-item small { color: rgba(220,189,135,.7); }
    .remove { border: 0; color: rgba(220,189,135,.74); background: transparent; cursor: pointer; font-size: 20px; }
    .cart-item-bottom { margin-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-weight: 900; }
    .cart-foot { display: block; border-top: 1px solid var(--border); border-bottom: 0; }
    .note {
      width: 100%;
      height: 96px;
      resize: none;
      margin-bottom: 14px;
      padding: 15px;
      border: 1px solid var(--border);
      border-radius: 24px;
      outline: 0;
      color: var(--gold);
      background: rgba(75,44,16,.36);
    }
    .note::placeholder { color: rgba(220,189,135,.48); }
    .total-row { margin-bottom: 15px; display: flex; justify-content: space-between; align-items: center; font-size: 22px; font-weight: 900; }
    .whatsapp-btn { width: 100%; }
    .whatsapp-btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }

    @keyframes rise {
      from { opacity: 0; transform: translateY(38px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .reveal { opacity: 0; transform: translateY(30px); transition: .7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    @media (max-width: 980px) {
      .nav-links { display: none; }
      .mobile-toggle { display: grid; place-items: center; }
      .mobile-menu.show { display: block; }
      .showcase-grid, .menu-grid, .reviews-grid, .map-grid, .footer-grid { grid-template-columns: 1fr; }
      .section { padding: 82px 0; }
      .showcase { padding-top: 112px; }
      .hero-photo-wrap { min-height: 430px; }
    }

    @media (max-width: 560px) {
      .container { width: min(100% - 22px, 1180px); }
      .nav-inner { height: 72px; }
      .brand small { display: none; }
      .logo {
      width: 62px;
      height: auto;
      max-height: 62px;
      border-radius: 0;
      object-fit: contain;
      border: 0;
      background: transparent;
      filter: drop-shadow(0 8px 16px rgba(55,30,11,.25));
    }
      .btn { width: 100%; padding: 14px 18px; }
      .cart-btn { width: auto; }
      .showcase-buttons { width: 100%; }
      .showcase-buttons .btn { width: 100%; }
      .menu-image { height: 220px; }
      .card-actions { align-items: stretch; flex-direction: column; }
      .qty-control { justify-content: center; }
      .footer .btn { width: fit-content; }
    }

/* Large menu update */
.menu-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.variant-select {
  width: 100%;
  margin-bottom: 18px;
  padding: 13px 14px;
  border-radius: 999px;
  border: 1px solid rgba(220,189,135,.35);
  color: var(--gold);
  background: rgba(19,9,4,.55);
  outline: none;
  font-weight: 900;
}

.variant-select option {
  color: #2a1608;
}

.menu-card.combo-card {
  border-color: rgba(220,189,135,.32);
  background:
    linear-gradient(135deg, rgba(75,44,16,.54), rgba(24,12,5,.68)),
    radial-gradient(circle at top, rgba(220,189,135,.08), transparent 45%);
}

.price-pill .price-note {
  display: block;
  font-size: 11px;
  color: rgba(243,223,184,.8);
  margin-top: 2px;
}

/* Old paper story */
.story{
  padding:120px 0;
  background:none;
  border:none;
}

.story::before,
.story::after{
  display:none;
}

.story-paper{
  max-width:950px;
  margin:auto;
  padding:60px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.28), transparent 18%),
    linear-gradient(rgba(247,233,198,.98), rgba(227,206,163,.98));
  color:#3b2412;
  border:8px double #8a6332;
  border-radius:18px;
  box-shadow:
    0 25px 60px rgba(0,0,0,.45),
    inset 0 0 50px rgba(120,80,30,.15);
  position:relative;
}

.story-paper::before,
.story-paper::after{
  content:"✦";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  font-size:28px;
  color:#8a6332;
}

.story-paper::before{ top:15px; }
.story-paper::after{ bottom:15px; }

.story-paper p{
  max-width:none;
  color:#3b2412;
  font-size:20px;
  line-height:2.3;
  text-align:center;
  margin:0 0 22px;
}

.story-paper p:last-child{ margin-bottom:0; }

@media (max-width:560px){
  .story-paper{
    padding:42px 22px;
  }
  .story-paper p{
    font-size:17px;
    line-height:2.1;
  }
}


@media (max-width: 560px) {
  .navbar::after {
    display: none;
  }
}


/* Warm light heritage redesign */
:root {
  --brown: #4B2C10;
  --gold: #B7843E;
  --dark: #fff4df;
  --dark2: #f3dfbd;
  --soft: #5a3514;
  --border: rgba(105, 63, 22, 0.24);
  --shadow: 0 22px 55px rgba(92, 55, 18, 0.16);
  --cream: #fff6e7;
  --paper: #f7e6c4;
  --ink: #3a210d;
  --muted: #7a5427;
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 12%, rgba(183,132,62,.22), transparent 28%),
    radial-gradient(circle at 84% 7%, rgba(75,44,16,.12), transparent 30%),
    linear-gradient(135deg, #fff8ed 0%, #f7e6c4 48%, #ead0a0 100%);
}

body::before {
  opacity: .18;
  background-image:
    linear-gradient(45deg, rgba(75,44,16,.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(75,44,16,.06) 25%, transparent 25%),
    radial-gradient(circle, rgba(75,44,16,.13) 1px, transparent 1.5px);
  background-position: 0 0, 0 22px, 0 0;
  background-size: 44px 44px, 44px 44px, 24px 24px;
}

body::after {
  background:
    linear-gradient(90deg, rgba(75,44,16,.05), transparent 12%, transparent 88%, rgba(75,44,16,.05)),
    radial-gradient(circle at center, transparent 62%, rgba(80,45,14,.12));
}

.navbar {
  border-bottom: 1px solid rgba(75,44,16,.18);
  background: rgba(255, 246, 231, .86);
  color: var(--ink);
  box-shadow: 0 14px 40px rgba(92,55,18,.13);
  backdrop-filter: blur(18px);
}

.navbar::after {
  display: none;
}

.brand small,
.nav-links,
.footer p,
.footer a {
  color: rgba(58,33,13,.70);
}

.nav-links a::after {
  background: var(--brown);
}

.btn {
  color: #fff7e9;
  border: 1px solid #4B2C10;
  background: linear-gradient(135deg, #4B2C10, #7b4a1a);
  box-shadow: 0 12px 28px rgba(75,44,16,.18);
}

.btn:hover {
  background: linear-gradient(135deg, #6b4219, #4B2C10);
}

.btn.outline {
  color: var(--brown);
  border-color: rgba(75,44,16,.35);
  background: rgba(255,246,231,.62);
}

.btn.outline:hover {
  color: #fff7e9;
  background: var(--brown);
}

.cart-count {
  color: #fff7e9;
  background: var(--brown);
  border-color: var(--brown);
}

.mobile-toggle {
  color: var(--brown);
  border-color: rgba(75,44,16,.25);
}

.mobile-menu {
  background: rgba(255,246,231,.97);
  border-color: rgba(75,44,16,.18);
}

.showcase {
  padding-top: 130px;
}

.showcase::before {
  width: min(1120px, 92vw);
  height: 560px;
  border: 1px solid rgba(75,44,16,.13);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.38), rgba(183,132,62,.10)),
    radial-gradient(circle at top, rgba(183,132,62,.16), transparent 54%);
  box-shadow: inset 0 0 80px rgba(75,44,16,.06);
}

.showcase-badge {
  color: var(--brown);
  border: 1px solid rgba(75,44,16,.23);
  background: rgba(255,246,231,.74);
  box-shadow: 0 10px 30px rgba(75,44,16,.10);
}

.showcase h1 {
  color: var(--brown);
  text-shadow: 0 10px 30px rgba(75,44,16,.16);
}

.showcase h1::after {
  color: rgba(75,44,16,.35);
}

.showcase p {
  color: #5a3514;
}

.hero-photo {
  border: 10px solid rgba(255,246,231,.80);
  outline: 1px solid rgba(75,44,16,.18);
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(75,44,16,.22);
  background: #fff4df;
}

.hero-photo::after {
  background: linear-gradient(to top, rgba(75,44,16,.45), transparent 56%);
}

.photo-card {
  color: #fff8ed;
  border: 1px solid rgba(255,246,231,.42);
  background: rgba(75,44,16,.72);
  box-shadow: 0 18px 45px rgba(75,44,16,.22);
}

.photo-card span {
  color: rgba(255,246,231,.88);
}

.section-title h2,
.map-text h2,
.story h2 {
  color: var(--brown);
}

.eyebrow {
  color: rgba(75,44,16,.58);
}

.tabs {
  background: rgba(255,246,231,.52);
  border: 1px solid rgba(75,44,16,.12);
  border-radius: 28px;
  padding: 16px;
  box-shadow: 0 18px 48px rgba(75,44,16,.10);
}

.tabs::before,
.tabs::after {
  content: "";
}

.tab {
  color: var(--brown);
  border: 1px solid rgba(75,44,16,.20);
  background: rgba(255,255,255,.50);
  box-shadow: none;
}

.tab.active,
.tab:hover {
  color: #fff8ed;
  background: var(--brown);
  border-color: var(--brown);
}

.menu-card,
.review-card {
  color: var(--ink);
  border: 1px solid rgba(75,44,16,.14);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,246,231,.86)),
    radial-gradient(circle at top, rgba(183,132,62,.10), transparent 46%);
  box-shadow: 0 20px 45px rgba(75,44,16,.12);
  backdrop-filter: blur(8px);
}

.menu-card::before,
.review-card::before,
.menu-card::after,
.review-card::after {
  display: none;
}

.menu-card:hover,
.review-card:hover {
  transform: translateY(-7px);
  border-color: rgba(75,44,16,.35);
  box-shadow: 0 26px 58px rgba(75,44,16,.18);
}

.menu-image {
  border-bottom: 1px solid rgba(75,44,16,.14);
  background: #ead0a0;
}

.price-pill {
  color: #fff8ed;
  border: 1px solid rgba(255,246,231,.45);
  background: rgba(75,44,16,.82);
}

.menu-body h3 {
  color: var(--brown);
}

.menu-body p,
.review-card p,
.map-text p {
  color: #6a431c;
}

.variant-select,
.note {
  color: var(--brown);
  border: 1px solid rgba(75,44,16,.18);
  background: rgba(255,255,255,.68);
}

.qty-control {
  border: 1px solid rgba(75,44,16,.22);
  background: rgba(255,246,231,.55);
}

.qty-control button {
  color: var(--brown);
}

.qty-control button:hover {
  background: rgba(75,44,16,.08);
}

.story {
  border: 0;
  background:
    linear-gradient(180deg, rgba(255,246,231,.42), rgba(234,208,160,.34));
}

.story-paper {
  background:
    radial-gradient(circle at 18% 8%, rgba(255,255,255,.38), transparent 18%),
    radial-gradient(circle at 88% 92%, rgba(118,74,28,.12), transparent 24%),
    linear-gradient(rgba(255,246,227,.98), rgba(238,215,174,.98));
  color: #3b2412;
  border: 1px solid rgba(75,44,16,.26);
  border-radius: 24px;
  box-shadow: 0 25px 65px rgba(75,44,16,.14);
}

.story-paper::before,
.story-paper::after {
  color: rgba(75,44,16,.42);
}

.story-paper p {
  color: #3b2412;
}

.reviews-grid {
  gap: 26px;
}

.stars {
  color: #b7843e;
}

.map-section {
  background: rgba(255,246,231,.36);
}

.map-box {
  border: 10px solid rgba(255,246,231,.78);
  outline: 1px solid rgba(75,44,16,.15);
  border-radius: 26px;
  box-shadow: 0 25px 60px rgba(75,44,16,.15);
}

.footer {
  color: var(--ink);
  border-top: 1px solid rgba(75,44,16,.18);
  background:
    linear-gradient(180deg, rgba(255,246,231,.88), rgba(236,211,169,.94));
  box-shadow: inset 0 20px 50px rgba(255,255,255,.20);
}

.footer h3,
.footer h4 {
  color: var(--brown);
}

.socials a {
  color: var(--brown);
  border: 1px solid rgba(75,44,16,.18);
  background: rgba(255,255,255,.35);
}

.socials a:hover {
  color: #fff8ed;
  background: var(--brown);
}

.copyright {
  border-top-color: rgba(75,44,16,.14);
  color: rgba(58,33,13,.58);
}

.cart-overlay {
  background: rgba(75,44,16,.26);
}

.cart-sidebar {
  color: var(--ink);
  border-left: 1px solid rgba(75,44,16,.18);
  background: #fff6e7;
}

.cart-head,
.cart-foot {
  border-color: rgba(75,44,16,.16);
}

.close-cart {
  color: var(--brown);
  border-color: rgba(75,44,16,.22);
}

.empty-cart {
  color: rgba(58,33,13,.62);
}

.cart-item {
  color: var(--ink);
  border: 1px solid rgba(75,44,16,.13);
  background: rgba(255,255,255,.50);
}

.cart-item small {
  color: rgba(58,33,13,.65);
}

.remove {
  color: rgba(75,44,16,.65);
}

.total-row {
  color: var(--brown);
}

.logo {
  width: 62px;
  height: auto;
  max-height: 62px;
  border-radius: 0;
  object-fit: contain;
  border: 0;
  background: transparent;
  filter: drop-shadow(0 8px 16px rgba(55,30,11,.25));
}

@media (max-width: 560px) {
  .logo {
    width: 52px;
    height: auto;
    max-height: 52px;
  }

  .tabs {
    padding: 12px;
  }

  .showcase {
    padding-top: 104px;
  }
}

/* Final requested menu + animation polish */
.showcase-text,
.hero-photo-wrap,
.story-paper,
.review-card,
.map-box,
.footer-grid > div {
  animation: softRise .85s ease both;
}

.hero-photo-wrap { animation-delay: .12s; }
.story-paper { animation-delay: .08s; }
.review-card:nth-child(2) { animation-delay: .10s; }
.review-card:nth-child(3) { animation-delay: .18s; }

@keyframes softRise {
  from { opacity: 0; transform: translateY(24px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.showcase-badge,
.price-pill,
.cart-count {
  animation: warmGlow 3.2s ease-in-out infinite;
}

@keyframes warmGlow {
  0%, 100% { box-shadow: 0 10px 26px rgba(148, 86, 28, .14); }
  50% { box-shadow: 0 14px 38px rgba(199, 126, 42, .28); }
}

.menu-card {
  animation: menuCardIn .55s ease both;
}

@keyframes menuCardIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.load-more-btn {
  min-width: 190px;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.load-more-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transition: transform .7s ease;
}

.load-more-btn:hover::after {
  transform: translateX(120%);
}

.brand small { display: none !important; }


/* Requested polish: keep Combo cards and Cart colors consistent with the main menu */
.menu-card.combo-card {
  border-color: rgba(220,189,135,.32) !important;
  background:
    linear-gradient(135deg, rgba(75,44,16,.54), rgba(24,12,5,.68)),
    radial-gradient(circle at top, rgba(220,189,135,.08), transparent 45%) !important;
}

.menu-card.combo-card:hover {
  border-color: var(--gold) !important;
}

.menu-card.combo-card .menu-body h3,
.menu-card.combo-card .menu-body p {
  color: inherit;
}

.cart-sidebar {
  background:
    radial-gradient(circle at top left, rgba(220,189,135,.14), transparent 32%),
    linear-gradient(135deg, rgba(75,44,16,.94), rgba(19,9,4,.98) 58%, rgba(8,4,2,.98)) !important;
  border-left: 3px double rgba(220,189,135,.34) !important;
}

.cart-head,
.cart-foot {
  background: rgba(19,9,4,.34);
  border-color: rgba(220,189,135,.26) !important;
}

.cart-item {
  border: 3px double rgba(220,189,135,.26) !important;
  background:
    linear-gradient(135deg, rgba(75,44,16,.50), rgba(24,12,5,.66)),
    radial-gradient(circle at top, rgba(220,189,135,.08), transparent 45%) !important;
  box-shadow: 0 16px 34px rgba(0,0,0,.25), inset 0 0 0 1px rgba(220,189,135,.06);
}

.cart-item.combo-cart-item {
  border-color: rgba(220,189,135,.26) !important;
  background:
    linear-gradient(135deg, rgba(75,44,16,.50), rgba(24,12,5,.66)),
    radial-gradient(circle at top, rgba(220,189,135,.08), transparent 45%) !important;
}

.cart-item strong,
.cart-item small,
.cart-item-bottom span {
  color: var(--gold);
}

.cart-img-placeholder {
  border: 1px solid rgba(220,189,135,.26);
}

.remove {
  color: rgba(220,189,135,.86) !important;
}

.remove:hover {
  color: var(--soft) !important;
}

.note {
  border: 1px solid rgba(220,189,135,.35) !important;
  color: var(--gold) !important;
  background: rgba(19,9,4,.48) !important;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #f1d7a5, var(--gold), #b88f4f) !important;
  color: var(--brown) !important;
}


/* Hero image reliability fix */
.hero-photo-wrap {
  position: relative;
  min-height: 560px;
}
.hero-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-photo img,
#heroImage {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 430px;
  object-fit: cover !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  z-index: 1;
}
.hero-photo::after {
  pointer-events: none;
  z-index: 2;
}
.photo-card {
  position: absolute;
  z-index: 3;
}

.category-note{
  grid-column:1/-1;
  padding:14px 18px;
  border:1px solid rgba(220,189,135,.45);
  background:rgba(220,189,135,.12);
  color:#DCBD87;
  border-radius:18px;
  font-weight:800;
  line-height:1.8;
  box-shadow:0 14px 30px rgba(0,0,0,.12);
}
.tab{direction:rtl;}
.variant-select{direction:rtl;}



/* Final cart readability update: keep menu cards original, improve checkout cart only */
.cart-sidebar {
  background: linear-gradient(180deg, #fff6e7, #f4dfb8) !important;
  color: #2b1d0e !important;
  border-left: 3px double rgba(75,44,16,.25) !important;
}
.cart-sidebar *,
.cart-head h3,
.cart-item strong,
.cart-item small,
.cart-item-bottom span,
.total-row,
.empty-cart {
  color: #2b1d0e !important;
}
.cart-head,
.cart-foot {
  background: rgba(255,246,231,.92) !important;
  border-color: rgba(75,44,16,.18) !important;
}
.cart-item,
.cart-item.combo-cart-item {
  background: rgba(255,255,255,.52) !important;
  border: 1px solid rgba(75,44,16,.18) !important;
  box-shadow: 0 12px 26px rgba(75,44,16,.12) !important;
}
.cart-input,
.note {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(75,44,16,.25) !important;
  background: #fffaf0 !important;
  color: #2b1d0e !important;
  font: inherit;
  outline: none;
}
.cart-input::placeholder,
.note::placeholder {
  color: rgba(43,29,14,.62) !important;
}
.delivery-fee-note {
  margin: 8px 0 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(220,189,135,.28);
  color: #2b1d0e !important;
  font-weight: 800;
  text-align: center;
  line-height: 1.6;
}
.close-cart,
.remove {
  color: #2b1d0e !important;
  background: rgba(75,44,16,.08) !important;
}
.whatsapp-btn {
  background: linear-gradient(135deg, #4B2C10, #7a4b1c) !important;
  color: #fff6e7 !important;
}

/* Clickable menu option chips */
.variant-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  direction: rtl;
}

.variant-chip {
  border: 1px solid rgba(75,44,16,.18);
  background: rgba(255,255,255,.68);
  color: var(--brown);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 900;
  cursor: pointer;
  transition: .2s ease;
}

.variant-chip span {
  display: block;
  font-size: 11px;
  margin-top: 2px;
  opacity: .78;
}

.variant-chip.active,
.variant-chip:hover {
  color: #fff8ed;
  border-color: rgba(255,246,231,.45);
  background: rgba(75,44,16,.82);
  transform: translateY(-1px);
}


/* Yemeni Mutabbaq one-card image fix: only this card gets larger */
.menu-card.mutabbaq-feature-card {
  grid-column: span 2;
}

.menu-card.mutabbaq-feature-card .menu-image {
  height: 360px;
}

.menu-card.mutabbaq-feature-card .menu-image img {
  object-fit: cover;
  object-position: center;
}

.menu-card.mutabbaq-feature-card .menu-body {
  padding: 28px;
}

.menu-card.mutabbaq-feature-card .variant-chips {
  gap: 10px;
}

.menu-card.mutabbaq-feature-card .variant-chip {
  padding: 12px 14px;
}

@media (max-width: 820px) {
  .menu-card.mutabbaq-feature-card {
    grid-column: span 1;
  }

  .menu-card.mutabbaq-feature-card .menu-image {
    height: 300px;
  }
}

/* Tabliyeh Jalal uses the normal rounded-square menu card size like the rest. */


/* Requested title font styling */
.brand > span:last-child,
.showcase-text h1,
.photo-card strong,
#reviews .section-title h2,
#location .map-text h2,
.menu-body h3 {
  font-family: "Arslan Wessam B", "A Arselan", "A Areselan", Vivaldi, Georgia, "Times New Roman", serif;
  text-transform: none;
}

/* Bigger rounded-square menu images */
.menu-card .menu-image {
  height: 300px;
  border-radius: 28px;
  margin: 16px 16px 0;
  overflow: hidden;
  border: 1px solid rgba(75,44,16,.16);
}

.menu-card .menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
}

@media (max-width: 820px) {
  .menu-card .menu-image { height: 250px; margin: 12px 12px 0; }
}


/* Final requested font targets */
.brand > span:last-child,
.showcase-text h1,
.photo-card strong,
#reviews .section-title h2,
#location .map-text h2,
.menu-body h3,
.menu-title,
.item-title,
.review-card strong {
  font-family: "Arslan Wessam B", "A Arselan", "A Areselan", Vivaldi, Georgia, "Times New Roman", serif !important;
  text-transform: none !important;
}

/* Bigger rounded-square images that fill the card nicely */
.menu-card .menu-image {
  height: 330px !important;
  border-radius: 30px !important;
  margin: 16px 16px 0 !important;
  overflow: hidden !important;
}
.menu-card .menu-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 30px !important;
}
@media (max-width: 820px) {
  .menu-card .menu-image { height: 260px !important; }
}

.arslan-vivaldi{font-family:'Arslan Wessam B A Areslan','Vivaldi',cursive!important;}

/* Tabliyeh normal-size safety override */
.menu-card.tabliyeh-jalal-card {
  grid-column: span 1 !important;
  border-radius: 34px;
}
.menu-card.tabliyeh-jalal-card .menu-image {
  height: 250px !important;
}
.menu-card.tabliyeh-jalal-card .menu-body {
  padding: 22px !important;
}
.menu-card.tabliyeh-jalal-card .menu-body h3 {
  font-size: 22px !important;
}

/* normal-dessert-card-fix */
.menu-card .menu-image{
  border-radius: 24px;
}
.menu-card .menu-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* mobile fixes requested */
@media (max-width:820px){
 .menu-card .menu-image{height:340px !important;}
}
.arslan-vivaldi, .arslan-vivaldi *{font-family:"Arslan Wessam B","A Arselan","A Areselan",Vivaldi,Georgia,serif !important;}

/* Final typography correction - Vivaldi only on the requested big display words */
@font-face {
  font-family: "Jalal Vivaldi";
  src: url("fonts/Vivaldi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root { --display-font: "Jalal Vivaldi", Vivaldi, "Times New Roman", serif; }

/* Keep normal website text readable: no Arslan/Vivaldi on menu items, prices, cart, descriptions, buttons, categories */
body,
button,
textarea,
input,
select,
.btn,
.tab,
.menu-body,
.menu-body h3,
.menu-title,
.item-title,
.menu-body p,
.price,
.card-actions,
.qty-control,
.cart-sidebar,
.cart-sidebar *,
.review-card,
.review-card *,
#location .map-text h2,
#location .map-text p,
.footer-links,
.socials,
.nav-links,
.mobile-menu {
  font-family: Georgia, "Times New Roman", Tahoma, serif !important;
  text-transform: none !important;
}

/* Vivaldi targets only */
.brand > span:last-child,
.showcase-text h1,
.photo-card strong,
#menu .section-title h2,
#menu .section-title h2 *,
#story .section-title .eyebrow,
.footer h3 {
  font-family: var(--display-font) !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  letter-spacing: .5px !important;
}

/* Our Story should stay English title case, not forced uppercase */
#story .section-title .eyebrow {
  font-size: clamp(32px, 4.5vw, 58px) !important;
  color: var(--gold) !important;
  letter-spacing: .5px !important;
  margin-bottom: 12px !important;
}

/* Stronger mobile menu-card photo sizing */
@media (max-width: 820px) {
  .menu-card .menu-image,
  .menu-card.tabliyeh-jalal-card .menu-image,
  .menu-card.mutabbaq-feature-card .menu-image {
    height: clamp(340px, 78vw, 430px) !important;
    margin: 10px 10px 0 !important;
    border-radius: 28px !important;
  }
  .menu-card .menu-image img {
    border-radius: 28px !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  .showcase-text h1 {
    font-size: clamp(58px, 17vw, 92px) !important;
  }
}

@media (max-width: 560px) {
  .menu-card .menu-image,
  .menu-card.tabliyeh-jalal-card .menu-image,
  .menu-card.mutabbaq-feature-card .menu-image {
    height: clamp(360px, 92vw, 455px) !important;
  }
  #menu .section-title h2,
  #story .section-title .eyebrow {
    font-size: clamp(48px, 15vw, 72px) !important;
  }
}

.addon-options {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.addon-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--muted);
}

.addon-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(117, 72, 38, 0.18);
  border-radius: 14px;
  background: rgba(255, 250, 241, 0.72);
  cursor: pointer;
  line-height: 1.25;
}

.addon-option input {
  accent-color: #7a3f1d;
  flex: 0 0 auto;
}

.addon-option span {
  flex: 1;
  font-size: 0.82rem;
  font-weight: 700;
}

.addon-option b {
  font-size: 0.78rem;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .addon-options {
    gap: 10px;
  }
  .addon-option {
    padding: 10px 12px;
  }
  .addon-option span,
  .addon-option b {
    font-size: 0.88rem;
  }
}


/* Final hero performance/reliability fix */
.hero-photo {
  background:
    linear-gradient(135deg, rgba(75,44,16,.82), rgba(19,9,4,.48)),
    radial-gradient(circle at 30% 25%, rgba(220,189,135,.32), transparent 34%),
    #2a1608 !important;
  transform: translateZ(0);
  will-change: auto;
}
.hero-photo img,
#heroImage {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: opacity .25s ease;
}
.hero-photo:not(.hero-ready) #heroImage { opacity: .01; }
.hero-photo.hero-ready #heroImage { opacity: 1 !important; }
.hero-photo.hero-fallback::before {
  content: "Jalal Resto Cafe";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,246,231,.82);
  font-family: VivaldiCustom, serif;
  font-size: clamp(34px, 6vw, 82px);
  letter-spacing: .04em;
  z-index: 1;
  text-align: center;
  padding: 24px;
}
.hero-photo.hero-fallback .photo-card { z-index: 4; }
@media (max-width: 760px) {
  .hero-photo-wrap { min-height: 390px !important; }
  .hero-photo img, #heroImage { min-height: 390px !important; }
}


/* Final shisha card fix: normal category card, bigger natural rounded image */
.menu-card.shisha-card {
  grid-column: span 1 !important;
  max-width: 520px;
  margin-inline: auto;
}
.menu-card.shisha-card .menu-image {
  height: 430px !important;
  border-radius: 30px !important;
  margin: 16px 16px 0 !important;
  background: rgba(19,9,4,.35);
}
.menu-card.shisha-card .menu-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 30px !important;
}
@media (max-width: 820px) {
  .menu-card.shisha-card {
    max-width: 100% !important;
  }
  .menu-card.shisha-card .menu-image {
    height: clamp(390px, 95vw, 520px) !important;
  }
}

/* Final mobile typography fix: requested display headings in Vivaldi */
#reviews .section-title h2,
#location .map-text h2,
.footer .maps-cta {
  font-family: var(--display-font) !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  letter-spacing: .5px !important;
}

@media (max-width: 820px) {
  #reviews .section-title h2,
  #location .map-text h2 {
    font-family: var(--display-font) !important;
    font-size: clamp(44px, 13vw, 70px) !important;
    line-height: 1.02 !important;
  }
  .footer .maps-cta {
    font-family: var(--display-font) !important;
    font-size: clamp(24px, 8vw, 38px) !important;
    line-height: 1.05 !important;
  }
}

/* Final order type checkout step */
.order-type-box {
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid rgba(75,44,16,.18);
  border-radius: 18px;
  background: rgba(255,250,240,.72);
}
.order-type-title {
  margin: 0 0 10px;
  font-weight: 900;
  color: #2b1d0e !important;
  text-align: center;
}
.order-type-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.order-type-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(75,44,16,.22);
  border-radius: 15px;
  background: #fffaf0;
  color: #2b1d0e !important;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.order-type-option input {
  accent-color: #4B2C10;
}
.order-type-option.active {
  background: linear-gradient(135deg, #4B2C10, #7a4b1c);
  border-color: rgba(75,44,16,.55);
  color: #fff6e7 !important;
}
.order-type-option:hover {
  transform: translateY(-1px);
}
.dine-in-only {
  display: none;
}
@media (max-width: 560px) {
  .order-type-options {
    grid-template-columns: 1fr;
  }
}

@media(max-width:768px){.hero-content{padding-top:140px!important;}}

@media (max-width:768px){.photo-card{width:220px;max-width:48%;padding:10px;bottom:10px;right:10px}.photo-card span{display:none}.photo-card strong{font-size:16px}}