:root {
  --brown: #2a120d;
  --brown-2: #3b1a12;
  --brown-3: #5b2d1c;
  --gold: #d99a35;
  --gold-2: #f2bd58;
  --cream: #fff1d3;
  --muted: #bda684;
  --white: #fffaf1;
  --danger: #e04d2f;
  --shadow: 0 28px 80px rgba(0,0,0,.38);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cairo",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background: radial-gradient(circle at 15% 5%,rgba(242,189,88,.22),transparent 28%), radial-gradient(circle at 85% 15%,rgba(217,154,53,.16),transparent 30%), linear-gradient(135deg,#160805 0%,#32160f 46%,#170806 100%);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,input,textarea,select {
  font-family: inherit;
}

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.embers {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.ember {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-2);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--gold-2);
  animation: floatUp linear infinite;
  opacity: .6;
}

@keyframes floatUp {
  from {
    transform: translateY(110vh) scale(.6);
    opacity: 0;
  }
  15% {
    opacity: .6;
  }
  to {
    transform: translateY(-10vh) scale(1.4);
    opacity: 0;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 6vw;
  background: rgba(31,12,8,.68);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(242,189,88,.14);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--gold-2);
}

.brand img {
  width: 72px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.35));
}

.brand span {
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #f5dfb9;
  font-weight: 800;
  transition: .25s;
}

.main-nav a:hover {
  border-color: rgba(242,189,88,.25);
  background: rgba(255,255,255,.05);
  color: var(--gold-2);
}

.header-call {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg,var(--gold),var(--gold-2));
  color: #281008;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(217,154,53,.22);
}

.section-pad {
  position: relative;
  z-index: 2;
  padding: 92px 6vw;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 85px);
  overflow: hidden;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: .7;
}

.orb-one {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle,rgba(217,154,53,.22),transparent 65%);
  right: -120px;
  top: 90px;
}

.orb-two {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle,rgba(224,77,47,.15),transparent 67%);
  left: 2%;
  bottom: 8%;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: .4px;
}

.hero h1,.section-head h2,.hours-card h2,.contact-card h2 {
  margin: 0;
  color: var(--white);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.8px;
}

.hero h1 {
  font-size: clamp(38px,6vw,82px);
  max-width: 900px;
  text-shadow: 0 18px 50px rgba(0,0,0,.4);
}

.hero-text {
  font-size: clamp(18px,2vw,25px);
  color: #f1dcb7;
  line-height: 1.9;
  max-width: 680px;
}

.hero-actions,.contact-actions,.card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: .28s;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg,var(--gold),var(--gold-2));
  color: #2b120b;
  box-shadow: 0 18px 45px rgba(217,154,53,.28);
}

.btn-secondary {
  background: rgba(255,255,255,.06);
  color: var(--cream);
  border-color: rgba(242,189,88,.28);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,.18);
  color: var(--cream);
}

.btn:hover {
  transform: translateY(-4px);
}

.hero-meta {
  display: grid;
  gap: 8px;
  margin-top: 30px;
  color: #d8c09d;
  font-weight: 700;
}

.hero-meta span {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-meta span:before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--gold);
}

.hero-card {
  position: relative;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(242,189,88,.22);
  transform: rotate(-2deg);
  background: #190906;
}

.hero-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,transparent 35%,rgba(0,0,0,.45));
}

.hero-card img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  background: rgba(42,18,13,.88);
  border: 1px solid rgba(242,189,88,.34);
  backdrop-filter: blur(14px);
  color: var(--gold-2);
  font-weight: 900;
  border-radius: 999px;
  padding: 14px 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.32);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(30px,4vw,58px);
}

.section-head p {
  color: #d7c0a2;
  font-size: 18px;
  line-height: 1.8;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 22px;
}

.offer-card {
  background: linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.035));
  border: 1px solid rgba(242,189,88,.16);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,.24);
  transition: .3s;
  transform-style: preserve-3d;
}

.offer-card:hover {
  border-color: rgba(242,189,88,.38);
  box-shadow: 0 32px 90px rgba(0,0,0,.38);
}

.offer-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #210d08;
}

.offer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s;
}

.offer-card:hover .offer-img img {
  transform: scale(1.06);
}

.offer-body {
  padding: 20px;
}

.offer-kicker {
  display: block;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.7;
}

.offer-body h3 {
  margin: 8px 0 8px;
  font-size: 25px;
  color: var(--gold-2);
}

.offer-body p {
  color: #e9d5b3;
  line-height: 1.8;
  margin: 0 0 14px;
}

.price-row {
  display: flex;
  align-items: end;
  gap: 12px;
  margin: 12px 0 16px;
}

.price-row del {
  color: #a78d6d;
  font-size: 18px;
}

.price-row strong {
  font-size: 38px;
  color: var(--white);
  line-height: 1;
}

.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.12);
}

.mini-btn.whatsapp {
  background: #24c263;
  color: #081c10;
}

.mini-btn.call {
  background: rgba(255,255,255,.06);
  color: var(--cream);
}

.menu-toolbar {
  position: sticky;
  top: 85px;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(31,12,8,.7);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(242,189,88,.16);
}

.filters {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 10px;
  overflow: visible;
  padding-bottom: 0;
}

.filters::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  border: 1px solid rgba(242,189,88,.18);
  background: rgba(255,255,255,.05);
  color: #f3dfbd;
  font-weight: 900;
  border-radius: 999px;
  padding: 10px 16px;
  white-space: nowrap;
  cursor: pointer;
  transition: .25s;
}

.filter-btn.active,.filter-btn:hover {
  background: linear-gradient(135deg,var(--gold),var(--gold-2));
  color: #2b120b;
  border-color: transparent;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 16px;
}

.menu-item {
  position: relative;
  padding: 20px;
  border-radius: 24px;
  min-height: 160px;
  background: linear-gradient(145deg,rgba(255,255,255,.085),rgba(255,255,255,.035));
  border: 1px solid rgba(242,189,88,.13);
  box-shadow: 0 18px 50px rgba(0,0,0,.16);
  overflow: hidden;
  transition: .28s;
}

.menu-item:before {
  content: "";
  position: absolute;
  inset: auto -20% -60% -20%;
  height: 120px;
  background: radial-gradient(circle,rgba(217,154,53,.18),transparent 70%);
  transition: .4s;
}

.menu-item:hover {
  transform: translateY(-7px);
  border-color: rgba(242,189,88,.34);
}

.menu-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.menu-topline span {
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
}

.menu-topline strong {
  background: var(--gold);
  color: #2b120b;
  border-radius: 16px;
  padding: 7px 12px;
  font-weight: 900;
  white-space: nowrap;
}

.menu-item h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 22px;
  line-height: 1.35;
}

.menu-item p {
  margin: 0;
  color: #d9c5a8;
  line-height: 1.7;
  font-size: 14px;
}

.menu-item.hidden {
  display: none;
}

.hours-card {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg,rgba(217,154,53,.16),rgba(255,255,255,.04));
  border: 1px solid rgba(242,189,88,.19);
  border-radius: 36px;
  padding: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hours-card h2 {
  font-size: clamp(25px,3vw,44px);
}

.hours-card p {
  color: #d8c09d;
}

.hours-card img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(0,0,0,.34);
}

.contact-card {
  text-align: center;
  max-width: 820px;
  margin: auto;
  padding: 48px;
  border: 1px solid rgba(242,189,88,.22);
  border-radius: 40px;
  background: radial-gradient(circle at top,rgba(217,154,53,.2),rgba(255,255,255,.045) 55%);
  box-shadow: var(--shadow);
}

.contact-card img {
  width: 140px;
  margin: 0 auto 18px;
}

.contact-card h2 {
  font-size: 44px;
}

.contact-card p {
  color: #dbc3a1;
  font-size: 20px;
}

.contact-actions {
  justify-content: center;
}

.float-whatsapp,.float-call {
  position: fixed;
  z-index: 30;
  left: 22px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
}

.float-whatsapp {
  bottom: 24px;
  background: #24c263;
  color: #06170d;
  padding: 15px 20px;
}

.float-call {
  bottom: 84px;
  background: var(--gold);
  color: #2b120b;
  padding: 13px 18px;
}

.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 6vw;
  color: #bfa986;
  border-top: 1px solid rgba(242,189,88,.14);
  background: rgba(0,0,0,.18);
}

.site-footer a {
  color: var(--gold-2);
  font-weight: 800;
}

.setup-alert {
  background: rgba(224,77,47,.08);
  border-block: 1px solid rgba(224,77,47,.18);
  text-align: center;
}

.setup-alert h2 {
  margin: 0 0 10px;
  color: var(--gold-2);
}

.setup-alert small {
  display: block;
  color: #ffc7b8;
  direction: ltr;
  margin-top: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .16s;
}

@media (max-width:1150px) {
  .offers-grid,.menu-grid {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-card img {
    height: 500px;
  }
  .main-nav {
    display: none;
  }
}

@media (max-width:780px) {
  .site-header {
    padding: 12px 18px;
  }
  .brand span,.header-call {
    display: none;
  }
  .brand img {
    width: 64px;
  }
  .section-pad {
    padding: 62px 18px;
  }
  .hero {
    min-height: auto;
    padding-top: 70px;
  }
  .hero h1 {
    font-size: 39px;
  }
  .hero-card {
    transform: none;
  }
  .hero-card img {
    height: 390px;
  }
  .offers-grid,.menu-grid {
    grid-template-columns: 1fr;
  }
  .menu-toolbar {
    top: 74px;
    display: block;
  }
  .filters {
    margin-bottom: 14px;
  }
  .menu-whatsapp {
    width: 100%;
  }
  .hours-card {
    grid-template-columns: 1fr;
  }
  .contact-card {
    padding: 30px 18px;
  }
  .site-footer {
    display: block;
    text-align: center;
  }
  .float-whatsapp {
    left: 14px;
    bottom: 14px;
  }
  .float-call {
    left: 14px;
    bottom: 74px;
  }
}

/* Menu order cart system */

.menu-toolbar {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  overflow: visible !important;
  padding: 18px 20px !important;
  margin-bottom: 24px !important;
}

.filters {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  width: 100% !important;
  overflow: visible !important;
  padding: 0 !important;
  scrollbar-width: none !important;
}

.filters::-webkit-scrollbar {
  display: none !important;
}

.filter-btn {
  white-space: nowrap !important;
  flex: 0 0 auto !important;
}

.cart-toggle {
  gap: 10px;
  border: 0;
  font-family: inherit;
}

.cart-toggle span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: #2b120b;
  color: var(--gold-2);
  font-weight: 900;
}

.order-cart {
  display: none;
  margin: 0 auto 38px;
  border: 1px solid rgba(242,189,88,.22);
  border-radius: 30px;
  background: linear-gradient(145deg,rgba(255,255,255,.09),rgba(255,255,255,.035));
  box-shadow: 0 22px 70px rgba(0,0,0,.25);
  overflow: hidden;
}

.order-cart.show {
  display: block;
  animation: cartPop .32s ease both;
}

@keyframes cartPop {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cart-head,.cart-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 22px;
  background: rgba(31,12,8,.48);
}

.cart-head h3 {
  margin: 0;
  color: var(--white);
  font-size: 26px;
  font-weight: 900;
}

.cart-clear {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: #f4dec0;
  font-family: inherit;
  font-weight: 900;
  border-radius: 999px;
  padding: 10px 15px;
  cursor: pointer;
}

.cart-items {
  padding: 16px 22px;
  display: grid;
  gap: 10px;
}

.cart-empty {
  margin: 0;
  color: #d9c5a8;
  line-height: 1.8;
  text-align: center;
  padding: 12px;
}

.cart-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(242,189,88,.12);
  border-radius: 20px;
  background: rgba(0,0,0,.14);
}

.cart-row-title {
  display: grid;
  gap: 4px;
  color: var(--white);
  font-weight: 900;
}

.cart-row-title small {
  color: var(--muted);
  font-weight: 800;
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.qty-btn,.remove-cart-item {
  border: 0;
  font-family: inherit;
  font-weight: 900;
  cursor: pointer;
  border-radius: 999px;
}

.qty-btn {
  width: 34px;
  height: 34px;
  background: var(--gold);
  color: #2b120b;
}

.cart-controls strong {
  min-width: 26px;
  text-align: center;
  color: var(--white);
}

.remove-cart-item {
  padding: 8px 12px;
  background: rgba(224,77,47,.16);
  color: #ffb6a8;
  border: 1px solid rgba(224,77,47,.28);
}

.cart-total {
  display: grid;
  gap: 3px;
  color: #d9c5a8;
  font-weight: 800;
}

.cart-total strong {
  color: var(--gold-2);
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.cart-whatsapp.disabled {
  pointer-events: none;
  opacity: .45;
  filter: grayscale(1);
}

.menu-cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  position: relative;
  z-index: 2;
}

.add-to-cart {
  border: 1px solid rgba(242,189,88,.24);
  background: rgba(217,154,53,.12);
  color: var(--gold-2);
  font-family: inherit;
  font-weight: 900;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  transition: .25s;
}

.add-to-cart:hover {
  background: linear-gradient(135deg,var(--gold),var(--gold-2));
  color: #2b120b;
  transform: translateY(-2px);
}

.item-qty {
  display: none;
  min-width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold);
  color: #2b120b;
  font-weight: 900;
}

.menu-item.selected {
  border-color: rgba(242,189,88,.55);
  box-shadow: 0 24px 70px rgba(217,154,53,.12);
}

.menu-item.selected .item-qty {
  display: inline-flex;
}

@media (max-width:780px) {
  .cart-row {
    grid-template-columns: 1fr;
  }
  .cart-controls {
    justify-content: flex-start;
  }
  .cart-footer {
    align-items: stretch;
  }
  .cart-whatsapp {
    width: 100%;
  }
}

/* Final spacing fix between filters/cart and menu cards */

.menu-toolbar {
  margin-bottom: 28px !important;
}

.order-cart {
  max-width: 1100px !important;
  margin-bottom: 38px !important;
}

.menu-grid {
  margin-top: 18px !important;
}

/* =========================================================
FINAL HERO FIX + PREMIUM HERO IMAGE ANIMATION
- Removes the big empty space at the top of the home screen
- Keeps the hero as Grid, not Flex
- Adds a floating / mouse-reactive hero image style
========================================================= */

.hero.section-pad {
  position: relative !important;
  isolation: isolate !important;
  display: grid !important;
  grid-template-columns: minmax(0,1.05fr) minmax(340px,.95fr) !important;
  gap: clamp(24px,4vw,54px) !important;
  align-items: center !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: clamp(28px,4vw,48px) 6vw clamp(52px,6vw,82px) !important;
  overflow: hidden !important;
}

.hero-content {
  position: relative !important;
  z-index: 4 !important;
  margin: 0 !important;
  max-width: 900px !important;
}

.hero-content.reveal, .hero-card.reveal {
  will-change: opacity, transform !important;
}

.hero-card.reveal {
  transition: opacity .7s ease !important;
}

.hero-card {
  position: relative !important;
  z-index: 4 !important;
  width: 100% !important;
  max-width: 700px !important;
  justify-self: center !important;
  margin: 0 !important;
  border-radius: 38px !important;
  overflow: hidden !important;
  transform-style: preserve-3d !important;
  will-change: transform !important;
  box-shadow: 0 32px 90px rgba(0,0,0,.42), 0 0 0 1px rgba(242,189,88,.18) !important;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -45%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(242,189,88,.24) 48%, transparent 58%);
  transform: translateX(-42%) rotate(8deg);
  animation: heroCardShine 6s ease-in-out infinite;
  mix-blend-mode: screen;
  opacity: .65;
}

.hero-card::after {
  z-index: 1 !important;
}

.hero-card img {
  width: 100% !important;
  height: clamp(440px,58vh,610px) !important;
  object-fit: cover !important;
  display: block !important;
  transform: scale(1.02);
  transition: transform .5s ease !important;
}

.hero-card:hover img {
  transform: scale(1.065);
}

.floating-badge {
  z-index: 5 !important;
}

@keyframes heroCardShine {
  0%, 56% {
    transform: translateX(-58%) rotate(8deg);
    opacity: 0;
  }
  66% {
    opacity: .65;
  }
  78%, 100% {
    transform: translateX(58%) rotate(8deg);
    opacity: 0;
  }
}

.hero-mouse-layer {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

.hero-glow, .hero-smoke, .hero-spark {
  position: absolute;
  display: block;
  pointer-events: none;
  will-change: transform;
}

.hero-glow {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,189,88,.22), rgba(242,189,88,.055) 48%, transparent 72%);
  filter: blur(8px);
}

.hero-glow.g1 {
  right: 6%;
  top: 9%;
}

.hero-glow.g2 {
  left: 7%;
  bottom: 8%;
  width: 230px;
  height: 230px;
  opacity: .7;
}

.hero-smoke {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,241,211,.085), rgba(255,241,211,.025) 48%, transparent 72%);
  filter: blur(25px);
  opacity: .55;
}

.hero-smoke.s1 {
  left: 2%;
  top: 18%;
}

.hero-smoke.s2 {
  right: 23%;
  bottom: -16%;
  width: 360px;
  height: 360px;
}

.hero-spark {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 20px rgba(242,189,88,.9);
  opacity: .58;
  animation: heroSparkFloat 5.5s ease-in-out infinite;
}

.hero-spark.p1 {
  left: 18%;
  top: 25%;
  animation-delay: .1s;
}

.hero-spark.p2 {
  right: 18%;
  top: 33%;
  animation-delay: 1.1s;
}

.hero-spark.p3 {
  left: 42%;
  bottom: 22%;
  animation-delay: 2.2s;
}

.hero-spark.p4 {
  right: 8%;
  bottom: 30%;
  animation-delay: 3.1s;
}

@keyframes heroSparkFloat {
  0%,100% {
    transform: translateY(0) scale(1);
    opacity: .32;
  }
  50% {
    transform: translateY(-18px) scale(1.35);
    opacity: .9;
  }
}

@media (max-width:1150px) {
  .hero.section-pad {
    grid-template-columns: 1fr !important;
    padding: 32px 6vw 60px !important;
  }
  .hero-card {
    max-width: 760px !important;
  }
  .hero-card img {
    height: clamp(360px,50vh,500px) !important;
  }
}

@media (max-width:780px) {
  .hero.section-pad {
    padding: 24px 18px 46px !important;
    gap: 24px !important;
  }
  .hero h1 {
    font-size: 39px !important;
  }
  .hero-card {
    border-radius: 28px !important;
  }
  .hero-card img {
    height: 360px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-card::before, .hero-spark {
    animation: none !important;
  }
}

/* Mobile menu filters fix */

.mobile-filter-toggle {
  display: none;
}

@media (max-width: 768px) {
  .menu-toolbar {
    position: relative !important;
    top: auto !important;
    z-index: 5 !important;
    display: block !important;
    width: calc(100% - 28px) !important;
    margin: 0 auto 26px !important;
    padding: 16px 14px !important;
    border-radius: 24px !important;
    overflow: hidden !important;
  }
  .mobile-filter-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(226, 171, 55, .45);
    border-radius: 999px;
    background: linear-gradient(135deg, #e2ab37, #f3c45a);
    color: #24100b;
    font-family: inherit;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    margin-bottom: 12px;
  }
  .filters {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    max-height: 62px !important;
    overflow: hidden !important;
    padding: 0 !important;
    transition: max-height .35s ease;
  }
  .menu-toolbar.filters-open .filters {
    max-height: 520px !important;
  }
  .filter-btn {
    min-height: 46px !important;
    padding: 0 18px !important;
    font-size: 15px !important;
    border-radius: 999px !important;
    white-space: nowrap !important;
  }
  .cart-toggle, .order-cart-toggle, .cart-pill {
    width: 100% !important;
    margin-bottom: 12px !important;
    justify-content: center !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
  }
}

/* Pizza Medium / Large selector - professional button style */

.size-selector, .size-selector-buttons {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px;
  margin-top: 16px;
  direction: ltr;
}

.size-option-btn {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  justify-items: center;
  gap: 3px;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid rgba(242,189,88,.26);
  border-radius: 18px;
  background: linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
  color: #f7dfb8;
  font-family: inherit;
  text-align: center;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08),0 10px 24px rgba(0,0,0,.16);
  transition: transform .18s ease,border-color .18s ease,background .18s ease,box-shadow .18s ease,color .18s ease;
}

.size-option-btn::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: .18s ease;
  z-index: -1;
}

.size-option-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(242,189,88,.52);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10),0 14px 30px rgba(0,0,0,.22);
}

.size-option-btn span {
  color: inherit;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .2px;
}

.size-option-btn strong {
  color: var(--gold-2);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

.size-option-btn.active {
  transform: translateY(-2px);
  border-color: rgba(242,189,88,.82);
  background: linear-gradient(135deg,var(--gold),var(--gold-2));
  color: #2b120b;
  box-shadow: 0 16px 34px rgba(217,154,53,.24),inset 0 1px 0 rgba(255,255,255,.28);
}

.size-option-btn.active::before {
  border-color: rgba(43,18,11,.22);
}

.size-option-btn.active strong {
  color: #2b120b;
}

@media (max-width:780px) {
  .size-selector, .size-selector-buttons {
    gap: 8px;
    margin-top: 14px;
  }
  .size-option-btn {
    min-height: 54px;
    padding: 9px 10px;
    border-radius: 16px;
  }
  .size-option-btn span {
    font-size: 12px;
  }
  .size-option-btn strong {
    font-size: 15px;
  }
}

/* Customer details floating order modal */

.order-modal-open {
  overflow: hidden;
}

.order-details-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease,visibility .24s ease;
}

.order-details-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.order-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12,4,2,.72);
  backdrop-filter: blur(13px);
}

.order-modal-card {
  position: relative;
  width: min(540px,100%);
  max-height: min(92dvh,760px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior: contain;
  padding: 30px;
  border-radius: 32px;
  background: radial-gradient(circle at 85% 0%,rgba(242,189,88,.19),transparent 34%), linear-gradient(145deg,rgba(44,18,12,.98),rgba(22,8,5,.98));
  border: 1px solid rgba(242,189,88,.28);
  box-shadow: 0 35px 100px rgba(0,0,0,.55),inset 0 1px 0 rgba(255,255,255,.08);
  transform: translateY(18px) scale(.97);
  transition: transform .24s ease;
}

.order-details-modal.open .order-modal-card {
  transform: translateY(0) scale(1);
}

.order-modal-card::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.order-modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(242,189,88,.22);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--cream);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: .2s ease;
}

.order-modal-close:hover {
  background: rgba(224,77,47,.18);
  color: #fff;
  transform: rotate(90deg);
}

.order-modal-logo {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin: 0 auto 14px;
  border-radius: 30px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(242,189,88,.24);
  box-shadow: 0 16px 45px rgba(0,0,0,.28);
}

.order-modal-logo img {
  width: 86px;
  max-height: 86px;
  object-fit: contain;
}

.order-modal-head {
  text-align: center;
  margin-bottom: 20px;
}

.order-modal-head h3 {
  margin: 5px 0 8px;
  color: var(--white);
  font-size: 32px;
  font-weight: 900;
}

.order-modal-head p:not(.eyebrow) {
  margin: 0;
  color: #d9c5a8;
  line-height: 1.8;
  font-weight: 700;
}

.order-details-form {
  display: grid;
  gap: 14px;
}

.order-details-form label {
  display: grid;
  gap: 8px;
  color: #f3dfbd;
  font-weight: 900;
}

.order-details-form label span b {
  color: var(--gold-2);
  font-weight: 900;
}

.order-details-form input, .order-details-form textarea {
  width: 100%;
  border: 1px solid rgba(242,189,88,.20);
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  color: var(--white);
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  outline: none;
  padding: 14px 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  transition: border-color .2s ease,box-shadow .2s ease,background .2s ease;
}

.order-details-form textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.7;
}

.order-details-form input::placeholder, .order-details-form textarea::placeholder {
  color: #a88f6d;
  font-weight: 700;
}

.order-details-form input:focus, .order-details-form textarea:focus {
  border-color: rgba(242,189,88,.72);
  background: rgba(255,255,255,.095);
  box-shadow: 0 0 0 4px rgba(217,154,53,.12),inset 0 1px 0 rgba(255,255,255,.08);
}

.order-form-error {
  min-height: 24px;
  margin: 0;
  color: #ffb6a8;
  font-weight: 900;
  text-align: center;
}

.order-send-btn {
  width: 100%;
  border: 0;
  font-family: inherit;
  font-size: 18px;
  margin-top: 2px;
}

@media (max-width:780px) {
  .order-details-modal {
    padding: 12px;
    align-items: end;
  }
  .order-modal-card {
    padding: 24px 18px 18px;
    border-radius: 28px 28px 0 0;
    max-height: 92dvh;
    width: 100%;
  }
  .order-modal-logo {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    margin-bottom: 10px;
  }
  .order-modal-logo img {
    width: 70px;
    max-height: 70px;
  }
  .order-modal-head h3 {
    font-size: 27px;
  }
  .order-modal-head p:not(.eyebrow) {
    font-size: 14px;
  }
  .order-details-form input, .order-details-form textarea {
    font-size: 15px;
    border-radius: 16px;
    padding: 12px 14px;
  }
}

/* Show all menu filter button */

.filter-all-btn {
  border-color: rgba(242,189,88,.42) !important;
  background: rgba(242,189,88,.10) !important;
  color: var(--gold-2) !important;
}

.filter-all-btn.active, .filter-all-btn:hover {
  background: linear-gradient(135deg,var(--gold),var(--gold-2)) !important;
  color: #2b120b !important;
  border-color: transparent !important;
}

/* Mobile filters polish - fixed category layout and visible Show All button */

@media (max-width: 768px) {
  .menu-toolbar {
    width: calc(100% - 24px) !important;
    max-width: 620px !important;
    margin: 0 auto 28px !important;
    padding: 14px !important;
    border-radius: 28px !important;
    overflow: visible !important;
  }
  .mobile-filter-toggle {
    min-height: 58px !important;
    margin-bottom: 14px !important;
    font-size: 18px !important;
    box-shadow: 0 16px 34px rgba(217,154,53,.18) !important;
  }
  .filters {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    justify-content: stretch !important;
    align-items: stretch !important;
    gap: 10px !important;
    width: 100% !important;
    overflow: hidden !important;
    max-height: 64px !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .menu-toolbar.filters-open .filters {
    max-height: 1400px !important;
    margin-bottom: 14px !important;
  }
  .filter-btn {
    width: 100% !important;
    min-height: 52px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 12px !important;
    font-size: 15px !important;
    line-height: 1.25 !important;
    text-align: center !important;
    white-space: normal !important;
    flex: initial !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04) !important;
  }
  .filter-all-btn {
    grid-column: 1 / -1 !important;
    order: 999 !important;
    min-height: 58px !important;
    margin-top: 4px !important;
    font-size: 17px !important;
    background: linear-gradient(135deg, rgba(217,154,53,.18), rgba(242,189,88,.08)) !important;
    box-shadow: 0 14px 28px rgba(0,0,0,.15), inset 0 1px 0 rgba(255,255,255,.06) !important;
  }
  .filter-all-btn.active, .filter-all-btn:hover {
    background: linear-gradient(135deg,var(--gold),var(--gold-2)) !important;
    color: #2b120b !important;
  }
  .cart-toggle {
    width: 100% !important;
    min-height: 58px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    position: relative !important;
    z-index: 1 !important;
    justify-content: center !important;
    box-shadow: 0 18px 38px rgba(217,154,53,.2) !important;
  }
  .menu-toolbar.filters-open .cart-toggle {
    margin-top: 2px !important;
  }
}

/* =========================================================
Footer centered content fix
- Centers all footer content on desktop and mobile
- Put at the end of the CSS file so it overrides older rules
========================================================= */

.site-footer {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  text-align: center !important;
}

.site-footer > *, .site-footer p, .site-footer span, .site-footer a, .site-footer div {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.site-footer a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.site-footer ul, .site-footer .footer-links, .site-footer .social-links {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  padding: 0 !important;
  margin: 0 auto !important;
  list-style: none !important;
}


/* Contact location button */
.contact-location-wrap {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.location-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: min(100%, 370px);
  padding: 14px 18px;
  border-radius: 24px;
  border: 1px solid rgba(242,189,88,.24);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow: 0 18px 40px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.location-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(242,189,88,.48);
  box-shadow: 0 22px 48px rgba(0,0,0,.24), 0 0 0 1px rgba(242,189,88,.08);
  background: linear-gradient(145deg, rgba(242,189,88,.14), rgba(255,255,255,.05));
}

.location-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #2b120b;
  box-shadow: 0 12px 28px rgba(217,154,53,.24);
}

.location-btn-icon svg {
  width: 24px;
  height: 24px;
}

.location-btn-text {
  display: grid;
  gap: 3px;
  text-align: right;
}

.location-btn-text strong {
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
}

.location-btn-text small {
  color: #d8c09d;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width:780px) {
  .contact-location-wrap {
    margin-top: 16px;
  }

  .location-btn {
    width: 100%;
    min-width: 0;
    padding: 13px 14px;
    border-radius: 20px;
    gap: 12px;
  }

  .location-btn-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 16px;
  }

  .location-btn-text strong {
    font-size: 16px;
  }

  .location-btn-text small {
    font-size: 12px;
  }
}
