/* Shared Banging Burgers styles */

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-animation { animation: float 3s ease-in-out infinite; }

.burger-glow {
  box-shadow: 0 0 100px rgba(245, 168, 0, 0.3);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes paintIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-backdrop {
  animation: fadeIn 0.2s ease;
}
.modal-panel {
  animation: slideUp 0.28s ease;
}

.reveal {
  animation: paintIn 0.6s ease both;
}

/* EST. LONDON section */
.est-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
}
.est-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.est-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 13, 0.55) 0%,
    rgba(13, 13, 13, 0.25) 40%,
    rgba(13, 13, 13, 0.7) 100%
  );
  pointer-events: none;
}
.est-caption {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 48px 24px;
}
.est-caption .eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: #F5A800;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.est-caption h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 8vw, 80px);
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 0.95;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}
.est-caption p {
  font-family: 'DM Sans', sans-serif;
  color: rgba(255, 255, 255, 0.75);
  max-width: 420px;
  margin: 16px auto 0;
  font-size: 15px;
  line-height: 1.6;
}

/* Order Now pulse */
@keyframes orderPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(204, 31, 31, 0.55); }
  50% { box-shadow: 0 0 0 12px rgba(204, 31, 31, 0); }
}
.btn-order {
  background: #CC1F1F;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s, filter 0.2s;
  animation: orderPulse 2.2s ease-in-out infinite;
}
.btn-order:hover { transform: scale(1.04); filter: brightness(1.08); }
.btn-order:active { transform: scale(0.98); }

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: 24px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
@media (min-width: 768px) {
  .wa-float { right: 24px; bottom: 28px; width: 60px; height: 60px; }
}
body.has-sticky-order .wa-float { bottom: 88px; }
body.modal-open .wa-float { opacity: 0; pointer-events: none; }

/* Mobile sticky Order Now (landing) */
.sticky-order {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 55;
  display: none;
}
@media (max-width: 767px) {
  .sticky-order { display: block; }
  body.has-sticky-order { padding-bottom: 88px; }
}

/* Price chip on product image */
.price-chip {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(13, 13, 13, 0.88);
  border: 1px solid rgba(245, 168, 0, 0.35);
  color: #F5A800;
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 8px;
  backdrop-filter: blur(6px);
}

/* Why Banging */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
.why-item {
  border-top: 2px solid #F5A800;
  padding-top: 18px;
}
.why-item h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.why-item p {
  color: #9A9A9A;
  font-size: 14px;
  line-height: 1.55;
}

/* Contact strip */
.contact-strip {
  background: linear-gradient(90deg, #181818 0%, #1f1510 50%, #181818 100%);
  border-block: 1px solid rgba(245, 168, 0, 0.18);
}

/* Product modal meal toggle */
.meal-toggle {
  border: 1px solid rgba(245, 168, 0, 0.18);
  background: #181818;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.meal-toggle:hover,
.meal-toggle.active {
  border-color: #F5A800;
  background: rgba(245, 168, 0, 0.06);
}
.meal-toggle input { accent-color: #F5A800; margin-top: 3px; }

/* Cart drawer */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  visibility: hidden;
}
.cart-drawer.open {
  pointer-events: auto;
  visibility: visible;
}
.cart-drawer .backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  transition: opacity 0.25s;
}
.cart-drawer.open .backdrop { opacity: 1; }
.cart-drawer .panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 100%);
  background: #0D0D0D;
  border-left: 1px solid rgba(245, 168, 0, 0.18);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open .panel { transform: translateX(0); }

.variant-chip {
  border: 1px solid rgba(245, 168, 0, 0.18);
  background: #181818;
  color: #9A9A9A;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.2s;
}
.variant-chip.active {
  border-color: #F5A800;
  color: #0D0D0D;
  background: #F5A800;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.modal-open { overflow: hidden; }

.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #F5A800;
  color: #0D0D0D;
  font-weight: 700;
  font-size: 13px;
  padding: 12px 20px;
  border-radius: 999px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.cat-link.active {
  color: #F5A800 !important;
  border-bottom-color: #F5A800 !important;
}
