:root {
  --ink: #06140f;
  --deep: #08231a;
  --green: #0f5d3f;
  --mint: #bdf4cf;
  --soft: #edfdf1;
  --gold: #bdf4cf;
  --white: #ffffff;
  --muted: rgba(237, 253, 241, 0.72);
  --glass: rgba(255, 255, 255, 0.095);
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 10%, rgba(189, 244, 207, 0.17), transparent 30rem),
    radial-gradient(circle at 90% 0%, rgba(217, 183, 101, 0.16), transparent 28rem),
    linear-gradient(135deg, #06140f 0%, #09281d 46%, #04100d 100%);
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.cart-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(189, 244, 207, 0.17), rgba(217, 183, 101, 0.07), transparent 68%);
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 180ms ease;
  z-index: 1;
  mix-blend-mode: screen;
}

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

.orb {
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.34;
  animation: floatOrb 12s ease-in-out infinite alternate;
}

.orb-one {
  left: -4rem;
  top: 14rem;
  background: #1fed91;
}

.orb-two {
  right: -6rem;
  top: 28rem;
  background: #7ee6a8;
  animation-delay: -5s;
}

.orb-three {
  left: 44%;
  bottom: -8rem;
  background: #62b883;
  animation-delay: -9s;
}

@keyframes floatOrb {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(2rem, -3rem, 0) scale(1.16); }
}

.top-bars,
.site-header,
main,
.site-footer,
.cart-drawer,
.toast {
  position: relative;
  z-index: 2;
}

.top-bars {
  position: relative;
  display: block;
  gap: clamp(0.75rem, 4vw, 4rem);
  min-height: 2.7rem;
  padding: 0;
  border-bottom: 1px solid rgba(189, 244, 207, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), transparent 45%),
    linear-gradient(90deg, #0c3d17, #155b20 42%, #0c3d17);
  color: #f3ead2;
  font-size: clamp(0.68rem, 1.2vw, 0.92rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13), inset 0 -10px 20px rgba(0, 0, 0, 0.15);
}

.top-bars::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0 35%, rgba(255, 255, 255, 0.16), transparent 60% 100%);
  transform: translateX(-100%);
  animation: topShine 5s ease-in-out infinite;
  pointer-events: none;
}

.top-marquee {
  display: flex;
  width: max-content;
  min-height: inherit;
  transform-style: preserve-3d;
  animation: topMarquee 24s linear infinite;
}

.top-track {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 4vw, 4rem);
  padding-right: clamp(0.75rem, 4vw, 4rem);
  white-space: nowrap;
}

@keyframes topMarquee {
  from { transform: translate3d(0, 0, 0) rotateX(0deg); }
  to { transform: translate3d(-50%, 0, 0) rotateX(0deg); }
}

@keyframes topShine {
  45%, 100% { transform: translateX(100%); }
}

.top-strip {
  padding: 0.55rem 0;
  text-align: center;
  background: transparent;
  color: inherit;
  white-space: nowrap;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.22), 0 0 14px rgba(189, 244, 207, 0.08);
}

.top-strip-gold {
  background: transparent;
  color: #f3ead2;
}

.top-dot {
  width: 0.42rem;
  height: 0.42rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #e2ad37;
  box-shadow: 0 0 16px rgba(226, 173, 55, 0.42);
}

.site-header {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(15rem, 1fr) auto;
  gap: clamp(0.55rem, 1.8vw, 1rem);
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0.48rem max(0.8rem, calc((100vw - 1180px) / 2));
  border: 0;
  border-bottom: 1px solid rgba(189, 244, 207, 0.14);
  border-radius: 0;
  background: rgba(2, 8, 6, 0.95);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: max-content;
}

.brand-thumb {
  display: grid;
  place-items: center;
  width: 6.3rem;
  height: 2.55rem;
  padding: 0;
  border: 1px solid rgba(189, 244, 207, 0.32);
  border-radius: 0.22rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22), 0 0 16px rgba(189, 244, 207, 0.08);
  overflow: hidden;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.08;
}

.brand strong {
  color: var(--white);
  font-size: clamp(0.95rem, 1.45vw, 1.16rem);
  font-weight: 900;
  text-shadow: 0 0 18px rgba(189, 244, 207, 0.12);
}

.brand small {
  margin-top: 0.16rem;
  color: rgba(189, 244, 207, 0.72);
  font-size: 0.68rem;
  font-weight: 700;
}

.search-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: end;
  width: min(20rem, 100%);
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(189, 244, 207, 0.18);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.055);
}

.search-wrap span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.search-wrap input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
}

.search-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.phone,
.cart-toggle,
.menu-toggle,
.primary-btn,
.ghost-btn,
.icon-btn {
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.phone {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  padding: 0;
  color: #f3ead2;
  font-weight: 800;
  background: #155b20;
}

.phone span {
  font-size: 1rem;
}

.cart-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  width: 2.55rem;
  height: 2.55rem;
  padding: 0;
  border-radius: 50%;
  color: #f3ead2;
  background: transparent;
  border-color: rgba(189, 244, 207, 0.3);
}

.cart-icon {
  font-size: 1.08rem;
}

.cart-toggle strong {
  display: grid;
  place-items: center;
  width: 1.1rem;
  height: 1.1rem;
  margin-left: -0.22rem;
  margin-top: -1.05rem;
  border-radius: 50%;
  background: #ffffff;
  color: var(--ink);
  font-size: 0.66rem;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.24rem;
  width: 2.55rem;
  height: 2.55rem;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  border-color: rgba(189, 244, 207, 0.3);
}

.menu-toggle span {
  display: block;
  width: 1rem;
  height: 0.12rem;
  border-radius: 999px;
  background: #f3ead2;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(0.36rem) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-0.36rem) rotate(-45deg);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.62rem;
}

.quick-menu {
  position: fixed;
  top: 6.8rem;
  left: 50%;
  z-index: 19;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  width: min(1180px, calc(100% - 2rem));
  max-height: 0;
  margin: 0;
  padding: 0 0.75rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 0 0 1.25rem 1.25rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(189, 244, 207, 0.12), transparent 20rem),
    rgba(2, 8, 6, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translate(-50%, -0.7rem);
  transition: max-height 260ms ease, padding 260ms ease, opacity 180ms ease, transform 260ms ease, border-color 180ms ease;
}

.menu-open .quick-menu {
  max-height: 16rem;
  padding: 0.75rem;
  border-color: rgba(189, 244, 207, 0.16);
  opacity: 1;
  transform: translate(-50%, 0);
}

.quick-menu a {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem;
  border: 1px solid rgba(189, 244, 207, 0.14);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--soft);
  font-weight: 950;
}

.quick-menu a span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.cart-toggle.pulse strong {
  animation: cartPulse 420ms ease;
}

@keyframes cartPulse {
  50% { transform: scale(1.22); box-shadow: 0 0 0 8px rgba(217, 183, 101, 0.16); }
}

main {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 8rem);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(20rem, 0.78fr);
  gap: 2rem;
  align-items: center;
  padding: 4rem 0 3rem;
  perspective: 1200px;
  isolation: isolate;
  --hero-x: 0;
  --hero-y: 0;
}

.hero-copy {
  transform: translate3d(calc(var(--hero-x) * -0.45px), calc(var(--hero-y) * -0.35px), 0);
  transition: transform 160ms ease-out;
  will-change: transform;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 1rem -5vw 0;
  border-radius: 2rem;
  background:
    radial-gradient(circle at 18% 24%, rgba(189, 244, 207, 0.18), transparent 22rem),
    radial-gradient(circle at 72% 34%, rgba(217, 183, 101, 0.15), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 40px 120px rgba(0, 0, 0, 0.22);
  z-index: -2;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0 -8vw;
  background:
    conic-gradient(from 90deg at 55% 45%, transparent 0 34%, rgba(189, 244, 207, 0.13), transparent 50% 100%);
  filter: blur(10px);
  opacity: 0.8;
  animation: heroAura 12s linear infinite;
  z-index: -3;
}

.hero-grid-lines {
  position: absolute;
  inset: 8rem -8vw 2rem;
  z-index: -1;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(189, 244, 207, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(189, 244, 207, 0.14) 1px, transparent 1px);
  background-size: 4.6rem 4.6rem;
  mask-image: radial-gradient(circle at 54% 45%, black, transparent 72%);
  transform: rotateX(62deg) translate3d(calc(var(--hero-x) * 0.18px), calc(6rem + (var(--hero-y) * 0.16px)), 0);
  transform-origin: center;
  animation: gridDrift 14s linear infinite;
}

@keyframes heroAura {
  to { transform: rotate(360deg); }
}

@keyframes gridDrift {
  to { background-position: 0 4.6rem, 4.6rem 0; }
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: inline-flex;
  width: max-content;
  padding: 0.52rem 0.72rem;
  border: 1px solid rgba(217, 183, 101, 0.28);
  border-radius: 999px;
  background: rgba(217, 183, 101, 0.09);
  box-shadow: 0 0 34px rgba(217, 183, 101, 0.1);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.4rem, 8.5vw, 8.35rem);
  line-height: 0.84;
  letter-spacing: 0;
  background: linear-gradient(110deg, #ffffff, #bdf4cf 38%, #7ee6a8 66%, #ffffff);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(189, 244, 207, 0.26));
  animation: glowText 5s ease-in-out infinite;
}

h1 span {
  display: block;
  text-shadow: 0 0 36px rgba(189, 244, 207, 0.18);
}

@keyframes glowText {
  50% { background-position: 100% center; filter: drop-shadow(0 0 38px rgba(217, 183, 101, 0.28)); }
}

.typing-line {
  min-height: 2.1rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  max-width: 44rem;
  text-wrap: balance;
}

.typing-caret {
  display: inline-block;
  width: 0.6rem;
  height: 1.1rem;
  margin-left: 0.2rem;
  border-right: 2px solid var(--mint);
  transform: translateY(0.18rem);
  animation: blink 680ms steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 9rem));
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.hero-stats div {
  position: relative;
  min-height: 5.4rem;
  padding: 0.85rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.045));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 16px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.hero-stats div::after {
  content: "";
  position: absolute;
  inset: auto -10% -50% -10%;
  height: 80%;
  background: radial-gradient(circle, rgba(189, 244, 207, 0.24), transparent 62%);
}

.hero-stats strong,
.hero-stats span {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-stats strong {
  font-size: 1.6rem;
  color: var(--gold);
}

.hero-stats span {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3.15rem;
  padding: 0.9rem 1.2rem;
  font-weight: 900;
}

.primary-btn:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.primary-btn.loading {
  box-shadow: 0 0 32px rgba(189, 244, 207, 0.22);
}

.primary-btn {
  border-color: rgba(217, 183, 101, 0.52);
  background: linear-gradient(135deg, #ffffff, #bdf4cf 56%, #7ee6a8);
  color: #06140f;
  box-shadow: 0 12px 32px rgba(217, 183, 101, 0.22), 0 0 30px rgba(189, 244, 207, 0.1);
}

.ghost-btn {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero-visual,
.summary-panel,
.product-card,
.category-card {
  transform-style: preserve-3d;
}

.hero-visual {
  position: relative;
  min-height: 31rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.045)),
    url("images/hero-halal-counter.svg") center/cover;
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.42),
    0 0 70px rgba(189, 244, 207, 0.12),
    inset 0 0 70px rgba(189, 244, 207, 0.11);
  overflow: visible;
  animation: heroFloat 7s ease-in-out infinite;
  translate: calc(var(--hero-x) * 0.24px) calc(var(--hero-y) * 0.2px);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.32), transparent 30%, rgba(217, 183, 101, 0.26), transparent 72%);
  opacity: 0.75;
  pointer-events: none;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, 0.18), transparent 42%);
  transform: translateX(-120%);
  animation: heroScan 4.8s ease-in-out infinite;
  pointer-events: none;
  overflow: hidden;
}

@keyframes heroFloat {
  50% { transform: translateY(-10px) rotateX(1deg) rotateY(-1deg); }
}

@keyframes heroScan {
  52%, 100% { transform: translateX(120%); }
}

.hero-glass {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: space-between;
  height: 100%;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(6, 20, 15, 0.08), rgba(6, 20, 15, 0.72));
  border-radius: inherit;
  overflow: hidden;
}

.holo-ring {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(189, 244, 207, 0.32);
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(189, 244, 207, 0.12), inset 0 0 26px rgba(217, 183, 101, 0.08);
  transform: rotateX(67deg) rotateZ(0deg);
  z-index: 1;
}

.ring-one {
  width: 115%;
  height: 58%;
  left: -7%;
  top: 18%;
  animation: ringSpin 10s linear infinite;
}

.ring-two {
  width: 88%;
  height: 42%;
  right: -8%;
  bottom: 12%;
  border-color: rgba(217, 183, 101, 0.32);
  animation: ringSpin 13s linear infinite reverse;
}

@keyframes ringSpin {
  to { transform: rotateX(67deg) rotateZ(360deg); }
}

.hero-orbit {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 4.8rem;
  height: 4.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(6, 20, 15, 0.66);
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24), inset 0 0 24px rgba(189, 244, 207, 0.1);
  backdrop-filter: blur(14px);
  animation: orbitBob 5s ease-in-out infinite;
}

.hero-orbit-one {
  left: -1.4rem;
  top: 22%;
}

.hero-orbit-two {
  right: -1rem;
  top: 48%;
  color: var(--gold);
  animation-delay: -1.5s;
}

.hero-orbit-three {
  left: 16%;
  bottom: -1.2rem;
  animation-delay: -3s;
}

@keyframes orbitBob {
  50% { transform: translateY(-12px) scale(1.04); }
}

.halal-badge,
.hero-meter,
.cut-stack span {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(6, 20, 15, 0.54);
  backdrop-filter: blur(14px);
}

.halal-badge {
  width: max-content;
  padding: 0.65rem 0.9rem;
  color: var(--mint);
  font-weight: 900;
  box-shadow: 0 0 28px rgba(189, 244, 207, 0.11);
}

.cut-stack {
  display: grid;
  gap: 0.7rem;
  width: min(22rem, 100%);
  margin: auto 0 1.4rem auto;
}

.cut-stack span {
  display: block;
  padding: 0.9rem 1rem;
  color: var(--soft);
  font-weight: 800;
  transform: translateZ(28px);
}

.hero-meter {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  width: 2rem;
  height: 3.2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  transform: translateX(-50%);
  opacity: 0.72;
}

.hero-scroll-cue span {
  position: absolute;
  left: 50%;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
  70%, 100% { top: 2rem; opacity: 0; }
}

.hero-meter small {
  color: var(--muted);
}

.hero-meter strong {
  color: var(--gold);
}

.section,
.checkout-section,
.store-info {
  padding: 2.5rem 0;
}

.section-heading h2,
.store-info h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1;
  letter-spacing: 0;
}

.split {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
}

.section-note {
  max-width: 28rem;
  color: var(--muted);
  line-height: 1.6;
}

.pickup-steps {
  position: relative;
  padding-top: 2rem;
}

.pickup-steps::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 1.1rem;
  width: min(42rem, 70vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 183, 101, 0.52), transparent);
  transform: translateX(-50%);
}

.pickup-steps-heading {
  align-items: start;
}

.pickup-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.pickup-step-card {
  position: relative;
  min-height: 17rem;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgba(189, 244, 207, 0.18);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 18% 16%, rgba(35, 134, 84, 0.28), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.pickup-step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(189, 244, 207, 0.34), rgba(217, 183, 101, 0.28), transparent) border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.pickup-step-card::after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -5rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: rgba(217, 183, 101, 0.12);
  filter: blur(2px);
}

.step-number {
  display: inline-grid;
  width: 6.4rem;
  height: 5rem;
  place-items: center;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(189, 244, 207, 0.18);
  border-radius: 1rem;
  background: linear-gradient(150deg, rgba(16, 91, 38, 0.92), rgba(12, 68, 39, 0.72));
  color: #fff7d6;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 18px 42px rgba(0, 0, 0, 0.18);
}

.step-icon {
  position: absolute;
  top: 1.45rem;
  right: 1.5rem;
  color: rgba(217, 183, 101, 0.78);
  font-size: 2.3rem;
  line-height: 1;
  text-shadow: 0 0 22px rgba(217, 183, 101, 0.22);
}

.pickup-step-card h3 {
  margin-bottom: 0.75rem;
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2.7vw, 2.2rem);
  line-height: 1.02;
}

.pickup-step-card p {
  max-width: 42rem;
  color: rgba(238, 248, 238, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.48rem;
  margin-top: 0.7rem;
}

.category-card {
  position: relative;
  display: grid;
  align-content: center;
  min-height: auto;
  aspect-ratio: 1.58 / 1;
  padding: 0.45rem;
  overflow: hidden;
  border: 1px solid rgba(189, 244, 207, 0.18);
  border-radius: 0.52rem;
  background:
    linear-gradient(90deg, rgba(3, 18, 13, 0.9) 0%, rgba(5, 35, 22, 0.76) 34%, rgba(5, 35, 22, 0.2) 64%),
    var(--category-image) right center / cover no-repeat,
    radial-gradient(circle at 80% 35%, rgba(189, 244, 207, 0.18), transparent 16rem),
    rgba(255, 255, 255, 0.08);
  color: var(--white);
  text-align: left;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  isolation: isolate;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.08), transparent 9rem),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.24));
  opacity: 0.9;
  pointer-events: none;
}

.category-card::after,
.product-card::after {
  content: "";
  position: absolute;
  inset: -50% auto auto -40%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(18deg);
  transition: left 560ms ease;
}

.category-card:hover::after,
.product-card:hover::after {
  left: 120%;
}

.category-card:hover {
  border-color: rgba(189, 244, 207, 0.38);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25), 0 0 20px rgba(189, 244, 207, 0.1);
  filter: saturate(1.08);
}

.category-card.active {
  border-color: rgba(217, 183, 101, 0.72);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.26),
    inset 0 0 0 1px rgba(217, 183, 101, 0.18),
    0 0 18px rgba(217, 183, 101, 0.12);
}

.category-icon {
  display: block;
  width: fit-content;
  margin-bottom: 2.1rem;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  line-height: 1;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.38));
}

.category-card strong,
.category-card small {
  display: block;
  max-width: 12rem;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.36);
}

.category-card strong {
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  line-height: 1;
}

.category-card small {
  margin-top: 0.7rem;
  color: rgba(238, 248, 238, 0.78);
  font-size: clamp(0.74rem, 1.2vw, 0.92rem);
  line-height: 1.35;
}

.category-card-full {
  align-content: end;
  background:
    linear-gradient(90deg, rgba(3, 18, 13, 0.18), rgba(3, 18, 13, 0.05)),
    var(--category-image) center / cover no-repeat,
    rgba(255, 255, 255, 0.08);
}

.category-card-full .category-icon,
.category-card-full strong,
.category-card-full small {
  opacity: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

#products {
  scroll-margin-top: 8rem;
}

.product-card {
  position: relative;
  display: grid;
  gap: 0.7rem;
  min-height: 100%;
  padding: 0.7rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.085);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
  will-change: transform, box-shadow;
}

.product-card {
  cursor: pointer;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--tap-x, 50%) var(--tap-y, 50%), rgba(189, 244, 207, 0.32), transparent 12rem),
    linear-gradient(135deg, rgba(217, 183, 101, 0.16), transparent 42%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.product-media {
  position: relative;
  min-height: 8.6rem;
  aspect-ratio: 1.25 / 1;
  border-radius: 0.75rem;
  background-color: rgba(6, 20, 15, 0.62);
  background-image:
    linear-gradient(145deg, rgba(189, 244, 207, 0.18), rgba(217, 183, 101, 0.12)),
    var(--image);
  background-position: center, center;
  background-size: cover, contain;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: transform 260ms ease, filter 260ms ease;
  will-change: transform;
}

.product-card.touch-active,
.category-card.touch-active {
  border-color: rgba(189, 244, 207, 0.58);
  background: linear-gradient(145deg, rgba(189, 244, 207, 0.14), rgba(217, 183, 101, 0.1));
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.26),
    0 0 38px rgba(189, 244, 207, 0.24),
    inset 0 0 24px rgba(189, 244, 207, 0.08);
  transform: perspective(720px) translateY(2px) scale(0.985) rotateX(1.4deg);
}

.product-card.touch-active .product-media {
  transform: scale(1.035) translateY(-2px);
  filter: saturate(1.08) brightness(1.06);
}

.view-item-btn.touch-active,
.add-btn.touch-active {
  transform: scale(0.97);
  box-shadow: 0 0 24px rgba(189, 244, 207, 0.28);
}

.tag-row {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  right: 0.7rem;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: start;
}

.pill {
  padding: 0.38rem 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(6, 20, 15, 0.66);
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.popular {
  background: linear-gradient(135deg, var(--gold), var(--mint));
  color: var(--ink);
}

.product-title {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: start;
}

.product-title h3 {
  margin: 0;
  font-size: 1.18rem;
}

.view-item-btn {
  display: none;
  width: 100%;
  min-height: 2.35rem;
  border: 1px solid rgba(189, 244, 207, 0.18);
  border-radius: 0.75rem;
  background: rgba(189, 244, 207, 0.12);
  color: var(--soft);
  font-weight: 900;
}

.price {
  min-width: max-content;
  color: var(--gold);
  font-weight: 900;
}

.price small {
  color: var(--muted);
  font-size: 0.75rem;
}

.desc,
.minimum {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.92rem;
}

.minimum {
  color: var(--mint);
  font-weight: 800;
}

.control-shell {
  display: grid;
  gap: 0.72rem;
  margin-top: auto;
}

.mode-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(0, 0, 0, 0.12);
}

.mode-toggle button {
  min-height: 2.3rem;
  border: 0;
  border-radius: 0.7rem;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
}

.mode-toggle button.active {
  background: rgba(189, 244, 207, 0.16);
  color: var(--white);
}

.amount-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
}

.amount-row label {
  position: relative;
  display: block;
}

.amount-row input {
  width: 100%;
  height: 2.85rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  outline: 0;
  padding: 0 0.8rem;
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.add-btn {
  min-width: 8.2rem;
  border: 1px solid rgba(217, 183, 101, 0.52);
  border-radius: 0.85rem;
  background: linear-gradient(135deg, rgba(217, 183, 101, 0.92), rgba(189, 244, 207, 0.9));
  color: var(--ink);
  font-weight: 900;
}

.checkout-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.42fr);
  gap: 0.8rem;
  align-items: start;
}

.checkout-panel,
.summary-panel,
.store-info {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.checkout-panel,
.summary-panel {
  padding: 0.9rem;
}

.pickup-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.pickup-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.pickup-form input,
.pickup-form select,
.pickup-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.72rem;
  outline: 0;
  padding: 0.68rem;
  background: rgba(6, 20, 15, 0.66);
  color: var(--white);
}

.pickup-form textarea {
  resize: vertical;
}

.deposit-confirm {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin-top: 0.8rem;
  padding: 0.8rem;
  border: 1px solid rgba(189, 244, 207, 0.2);
  border-radius: 0.9rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(189, 244, 207, 0.12), transparent 18rem),
    rgba(6, 20, 15, 0.34);
}

.deposit-confirm > div,
.deposit-confirm .payment-check,
.pickup-agreement {
  grid-column: 1 / -1;
}

.deposit-confirm strong,
.deposit-confirm span {
  display: block;
}

.deposit-confirm span {
  margin-top: 0.28rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.payment-check {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(189, 244, 207, 0.16);
  border-radius: 0.85rem;
  background: rgba(0, 0, 0, 0.16);
}

.payment-check input {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
}

.deposit-confirm select {
  width: 100%;
  min-height: 3.15rem;
  margin-top: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  outline: 0;
  padding: 0.85rem;
  background: rgba(6, 20, 15, 0.72);
  color: var(--white);
  font-weight: 800;
}

.deposit-confirm select:focus {
  border-color: rgba(189, 244, 207, 0.45);
  box-shadow: 0 0 0 3px rgba(189, 244, 207, 0.1);
}

.deposit-confirm option {
  background: #08231a;
  color: var(--white);
}

.payment-check input {
  accent-color: var(--green);
}

.pickup-agreement {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.2rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(189, 244, 207, 0.16);
}

.pickup-agreement > strong {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pickup-agreement .payment-check {
  margin: 0;
}

.deposit-simple {
  gap: 0.35rem;
}

.deposit-simple strong {
  color: var(--white);
}

.deposit-simple span {
  max-width: 30rem;
}

.deposit-confirm:not(.deposit-simple),
.stripe-btn,
.stripe-note,
.payment-divider,
.summary-panel > .payment-links {
  display: none;
}

.wide {
  grid-column: 1 / -1;
}

.summary-panel {
  position: sticky;
  top: 7rem;
}

.summary-panel h3 {
  font-size: 1.8rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.summary-line strong {
  color: var(--white);
}

.deposit-card {
  margin: 1rem 0;
  padding: 0 1rem;
  border: 1px solid rgba(217, 183, 101, 0.28);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(189, 244, 207, 0.13), transparent 12rem),
    rgba(217, 183, 101, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.deposit-total strong {
  color: var(--gold);
  font-size: 1.35rem;
}

.stripe-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  min-height: 3.35rem;
  border: 1px solid rgba(217, 183, 101, 0.65);
  border-radius: 0.95rem;
  background: linear-gradient(135deg, #ffffff, #bdf4cf 55%, #7ee6a8);
  color: var(--ink);
  font-weight: 950;
  box-shadow: 0 18px 46px rgba(217, 183, 101, 0.2), 0 0 34px rgba(189, 244, 207, 0.11);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.stripe-btn:disabled {
  cursor: not-allowed;
  opacity: 0.52;
  box-shadow: none;
}

.stripe-btn.loading .stripe-btn-text {
  opacity: 0.72;
}

.stripe-spinner {
  display: none;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(6, 20, 15, 0.25);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: spin 780ms linear infinite;
}

.stripe-btn.loading .stripe-spinner {
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.payment-status,
.stripe-note {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.payment-status.success {
  color: var(--mint);
}

.payment-status.error {
  color: #ffd9d9;
}

.stripe-note {
  color: rgba(237, 253, 241, 0.58);
}

.payment-divider {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 1.2rem 0 0.75rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-divider::before,
.payment-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.payment-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.payment-links a {
  padding: 0.8rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.8rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045));
  text-align: center;
  font-weight: 900;
  color: var(--soft);
}

.store-info {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(24rem, 1.18fr);
  gap: 0.8rem;
  align-items: stretch;
  margin: 2rem 0 4rem;
  padding: 0;
}

.visit-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 25rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(189, 244, 207, 0.18), transparent 22rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.visit-copy p:not(.eyebrow) {
  max-width: 34rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.visit-board {
  position: relative;
  display: grid;
  gap: 0.7rem;
  padding: 0.8rem;
  overflow: hidden;
  border: 1px solid rgba(189, 244, 207, 0.18);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 183, 101, 0.12), transparent 22rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.visit-board::before {
  content: "";
  position: absolute;
  inset: -40% -15% auto auto;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(189, 244, 207, 0.12);
  filter: blur(18px);
}

.live-status-card,
.visit-detail,
.hours-card,
.pickup-rules div {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  background: rgba(6, 20, 15, 0.46);
}

.live-status-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1rem;
  align-items: start;
}

.live-status-card h3 {
  margin-top: 0.25rem;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1;
}

.live-status-card p:last-child {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.status-dot {
  display: inline-block;
  width: 0.72rem;
  height: 0.72rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: #7ee6a8;
  box-shadow: 0 0 18px rgba(126, 230, 168, 0.72);
}

.status-dot.closed {
  background: #ffb4a8;
  box-shadow: 0 0 18px rgba(255, 180, 168, 0.45);
}

.status-dot.warning {
  background: #f4d06f;
  box-shadow: 0 0 18px rgba(244, 208, 111, 0.52);
}

.live-clock {
  min-width: 7.2rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(217, 183, 101, 0.28);
  border-radius: 0.9rem;
  background: rgba(217, 183, 101, 0.1);
  color: var(--gold);
  text-align: center;
  font-weight: 950;
}

.visit-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.visit-detail {
  padding: 0.95rem;
}

.visit-detail span,
.hours-head span,
.pickup-rules small {
  color: var(--muted);
}

.visit-detail strong,
.visit-detail small {
  display: block;
}

.visit-detail strong {
  margin: 0.25rem 0;
  font-size: 1.18rem;
}

.hours-card {
  padding: 0.95rem;
}

.hours-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.hours-list {
  display: grid;
  gap: 0.15rem;
  margin-top: 0.55rem;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.54rem 0;
  color: var(--muted);
}

.hours-list div.today {
  margin-inline: -0.45rem;
  padding-inline: 0.45rem;
  border-radius: 0.65rem;
  background: rgba(189, 244, 207, 0.1);
  color: var(--white);
}

.hours-list div.today strong {
  color: var(--gold);
}

.pickup-rules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.pickup-rules div {
  padding: 0.95rem;
}

.pickup-rules span,
.pickup-rules strong,
.pickup-rules small {
  display: block;
}

.pickup-rules span {
  color: var(--gold);
  font-weight: 950;
}

.pickup-rules strong {
  margin: 0.28rem 0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 3rem max(1rem, calc((100vw - 1180px) / 2)) 0;
  border-top: 1px solid rgba(189, 244, 207, 0.22);
  background:
    radial-gradient(circle at 10% 10%, rgba(189, 244, 207, 0.18), transparent 24rem),
    radial-gradient(circle at 86% 20%, rgba(217, 183, 101, 0.11), transparent 22rem),
    linear-gradient(135deg, rgba(238, 255, 246, 0.96), rgba(210, 252, 227, 0.86));
  color: #073326;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 42, 30, 0.14) 1px, transparent 1px),
    linear-gradient(rgba(5, 42, 30, 0.08) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
  opacity: 0.32;
}

.footer-main,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.7fr 0.85fr;
  gap: clamp(1.2rem, 4vw, 3.2rem);
  align-items: start;
}

.site-footer p {
  max-width: 28rem;
  color: rgba(7, 51, 38, 0.82);
  line-height: 1.7;
}

.footer-brand-card {
  display: grid;
  gap: 1.1rem;
}

.footer-pay {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(10, 94, 54, 0.16);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.45);
  font-weight: 750;
}

.footer-logo {
  display: block;
  width: min(12rem, 100%);
  height: auto;
  min-height: 3rem;
  object-fit: contain;
  border-radius: 0.42rem;
  background: #fff;
  box-shadow: 0 16px 38px rgba(5, 42, 30, 0.12);
}

.thank-you-page {
  min-height: 100vh;
}

.thank-you-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
}

.thank-you-card {
  position: relative;
  width: min(56rem, 100%);
  padding: clamp(1.2rem, 4vw, 2rem);
  overflow: hidden;
  border: 1px solid rgba(189, 244, 207, 0.2);
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 95% 5%, rgba(189, 244, 207, 0.16), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.thank-logo {
  display: block;
  width: min(17rem, 70vw);
  margin-bottom: 1rem;
  border: 1px solid rgba(189, 244, 207, 0.28);
  border-radius: 0.35rem;
  background: #fff;
}

.thank-you-card h1 {
  max-width: 10ch;
  margin: 0.15rem 0 0;
  font-size: clamp(3rem, 9vw, 6.8rem);
  line-height: 0.88;
}

.thank-lead {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.thank-status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 1.2rem 0;
}

.thank-status-grid div,
.thank-payment,
.thank-next {
  border: 1px solid rgba(189, 244, 207, 0.16);
  border-radius: 0.9rem;
  background: rgba(6, 20, 15, 0.42);
}

.thank-status-grid div {
  padding: 0.85rem;
}

.thank-status-grid span,
.thank-next span,
.thank-note {
  color: var(--muted);
}

.thank-status-grid span,
.thank-status-grid strong {
  display: block;
}

.thank-status-grid strong {
  margin-top: 0.25rem;
  color: var(--gold);
}

.thank-next {
  padding: 1rem;
}

.thank-payment {
  margin: 1rem 0;
  padding: 1rem;
  border-color: rgba(217, 183, 101, 0.32);
  background:
    radial-gradient(circle at 100% 0%, rgba(189, 244, 207, 0.14), transparent 16rem),
    rgba(217, 183, 101, 0.08);
}

.thank-payment h2 {
  margin: 0.2rem 0 0.35rem;
  font-size: clamp(1.45rem, 4vw, 2.25rem);
}

.thank-payment p:not(.eyebrow) {
  margin: 0 0 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.thank-payment-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.thank-next h2 {
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
}

.thank-next ol {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding-left: 1.2rem;
}

.thank-next li strong,
.thank-next li span {
  display: block;
}

.thank-next li span {
  margin-top: 0.15rem;
  line-height: 1.5;
}

.thank-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.thank-note {
  margin: 1rem 0 0;
  line-height: 1.5;
}

.site-footer nav,
.footer-location {
  display: grid;
  align-content: start;
  gap: 0.68rem;
}

.site-footer h3 {
  color: #062c20;
  font-size: 1.12rem;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span,
.footer-location strong {
  color: rgba(7, 51, 38, 0.86);
}

.site-footer a {
  width: fit-content;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer a:hover {
  color: #0a5e36;
  transform: translateX(3px);
}

.footer-location strong {
  margin-top: 0.6rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  align-items: center;
  margin-top: 2.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(10, 94, 54, 0.16);
  color: rgba(7, 51, 38, 0.86);
  font-size: 0.92rem;
  font-weight: 750;
}

.site-credit {
  margin-left: auto;
  color: #073326;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 220ms ease;
}

.cart-open .cart-overlay {
  pointer-events: auto;
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(29rem, 100%);
  height: 100vh;
  padding: 1rem;
  border-left: 1px solid var(--line);
  background: rgba(6, 20, 15, 0.92);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  transform: translateX(105%);
  transition: transform 260ms ease;
}

.cart-open .cart-drawer {
  transform: translateX(0);
}

.detail-overlay {
  position: fixed;
  inset: 0;
  z-index: 39;
  background:
    radial-gradient(circle at 50% 35%, rgba(189, 244, 207, 0.16), transparent 34rem),
    rgba(0, 0, 0, 0.56);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(0);
  transition: opacity 260ms ease, backdrop-filter 260ms ease;
}

.detail-open .detail-overlay {
  opacity: 1;
  pointer-events: auto;
  backdrop-filter: blur(6px);
}

.product-detail {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(34rem, 100%);
  height: 100vh;
  padding: 1rem;
  border-left: 1px solid var(--line);
  background: rgba(5, 19, 14, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(105%) scale(0.96);
  transform-origin: right center;
  transition: transform 340ms cubic-bezier(0.16, 1, 0.3, 1), opacity 260ms ease;
  overflow: auto;
}

.detail-open .product-detail {
  opacity: 1;
  transform: translateX(0);
}

.detail-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  padding-bottom: 1rem;
}

.detail-media {
  position: relative;
  min-height: 18rem;
  aspect-ratio: 1.25 / 1;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background-color: rgba(6, 20, 15, 0.62);
  background-image:
    linear-gradient(145deg, rgba(189, 244, 207, 0.12), rgba(217, 183, 101, 0.08)),
    var(--image);
  background-position: center, center;
  background-size: cover, contain;
  background-repeat: no-repeat;
  overflow: hidden;
  transform-origin: center;
}

.detail-open .detail-media {
  animation: detailImageZoom 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.detail-media .pill {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
}

.detail-body {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.detail-open .detail-body {
  animation: detailContentRise 480ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.cart-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.cart-head h2 {
  margin-bottom: 0.6rem;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.4rem;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  overflow: auto;
  padding-right: 0.2rem;
}

.empty-cart {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
}

.cart-item {
  display: grid;
  gap: 0.65rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.075);
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.cart-item h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-controls button,
.remove-btn {
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.qty-controls button {
  width: 2rem;
  height: 2rem;
}

.remove-btn {
  padding: 0.5rem 0.7rem;
  color: #ffd9d9;
}

.cart-foot {
  padding-top: 1rem;
}

.cart-foot .primary-btn {
  width: 100%;
  margin-top: 1rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 20, 15, 0.86);
  color: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 1rem);
  transition: opacity 220ms ease, transform 220ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.ripple {
  position: relative;
  overflow: hidden;
}

.ripple-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 620ms ease-out;
}

@keyframes ripple {
  to { opacity: 0; transform: translate(-50%, -50%) scale(10); }
}

.spark {
  position: fixed;
  z-index: 60;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  pointer-events: none;
  background: var(--gold);
  box-shadow: 0 0 14px var(--gold);
  animation: spark 620ms ease-out forwards;
}

@keyframes spark {
  to {
    opacity: 0;
    transform: translate(var(--dx), var(--dy)) scale(0.2);
  }
}

@keyframes detailImageZoom {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(18px);
    filter: blur(10px) saturate(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0) saturate(1);
  }
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

#products.reveal,
#categories.reveal {
  opacity: 1;
  transform: none;
}

.magnetic:hover,
.phone:hover,
.cart-toggle:hover,
.primary-btn:hover,
.ghost-btn:hover,
.payment-links a:hover {
  border-color: rgba(217, 183, 101, 0.62);
  box-shadow: 0 0 30px rgba(189, 244, 207, 0.12);
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }

  .search-wrap {
    grid-column: 1 / -1;
    order: 3;
    justify-self: stretch;
    width: 100%;
  }

  .brand-text small {
    display: none;
  }

  .hero,
  .checkout-section,
  .store-info {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-visual {
    min-height: 24rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pickup-step-grid,
  .visit-details,
  .pickup-rules,
  .product-grid,
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .summary-panel {
    position: static;
  }
}

@media (max-width: 620px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  main,
  .site-header {
    width: 100%;
    max-width: 100%;
  }

  main {
    width: min(100% - 1rem, 1180px);
  }

  .top-bars {
    min-height: 2.25rem;
    padding: 0 0.8rem;
    overflow: hidden;
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }

  .top-marquee {
    animation-duration: 18s;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    margin-top: 0;
    padding: 0.42rem 0.55rem;
    border-radius: 0;
  }

  .quick-menu {
    top: 8.9rem;
    grid-template-columns: 1fr;
    width: calc(100% - 1rem);
  }

  .menu-open .quick-menu {
    max-height: 24rem;
  }

  .brand {
    min-width: 0;
  }

  .brand-thumb {
    width: 4.7rem;
    height: 1.95rem;
    border-radius: 0.18rem;
    padding: 0;
  }

  .brand strong {
    max-width: 10.5rem;
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand small,
  .phone {
    display: none;
  }

  .header-actions {
    min-width: 0;
    gap: 0.42rem;
  }

  .cart-toggle,
  .menu-toggle {
    width: 2.2rem;
    height: 2.2rem;
  }

  .cart-icon {
    font-size: 1rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 13.5vw, 4.1rem);
    overflow-wrap: anywhere;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0.85rem 2.4rem;
  }

  .hero-stage::before {
    inset: 0;
    border-radius: 1.4rem;
  }

  .hero-visual {
    min-height: 19rem;
    animation: mobileFloat 4.8s ease-in-out infinite;
  }

  .hero-glass {
    animation: mobileGlassGlow 3.8s ease-in-out infinite alternate;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: auto;
  }

  .hero-orbit,
  .holo-ring,
  .hero-scroll-cue {
    display: none;
  }

  .split {
    display: block;
  }

  .pickup-step-grid,
  .visit-details,
  .pickup-rules,
  .product-grid,
  .pickup-form,
  .deposit-confirm,
  .footer-main,
  .payment-links {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .category-card {
    align-content: end;
    aspect-ratio: 1.55 / 1;
    border-radius: 0.48rem;
    padding: 0.42rem;
    background:
      linear-gradient(180deg, rgba(2, 9, 7, 0.18) 0%, rgba(2, 9, 7, 0.84) 100%),
      var(--category-image) center / cover no-repeat,
      rgba(255, 255, 255, 0.08);
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.18);
  }

  .category-card-full .category-icon,
  .category-card-full strong {
    opacity: 1;
  }

  .category-card-full .category-icon {
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
  }

  .category-card-full strong {
    max-width: 100%;
    color: #f9fff9;
    font-size: clamp(0.78rem, 3.6vw, 1rem);
    line-height: 1;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9);
  }

  .category-card-full small {
    display: none;
  }

  .thank-you-shell {
    padding: 1rem;
  }

  .thank-status-grid {
    grid-template-columns: 1fr 1fr;
  }

  .thank-actions {
    display: grid;
  }

  .section,
  .checkout-section,
  .store-info {
    padding: 1.6rem 0;
  }

  .section-heading h2,
  .store-info h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
    overflow-wrap: anywhere;
  }

  .section-note,
  .pickup-step-card p,
  .desc,
  .minimum {
    overflow-wrap: anywhere;
  }

  .pickup-step-card {
    min-height: auto;
    animation: mobileCardBreathe 4.8s ease-in-out infinite alternate;
  }

  .step-number {
    width: 5.3rem;
    height: 4.2rem;
  }

  .amount-row {
    grid-template-columns: 1fr;
  }

  .product-card,
  .category-card,
  .pickup-step-card,
  .checkout-card,
  .summary-panel {
    max-width: 100%;
  }

  .product-card {
    animation: mobileCardBreathe 4.6s ease-in-out infinite alternate;
    gap: 0.55rem;
    padding: 0.45rem;
    border-radius: 0.75rem;
    transform: translateY(var(--scroll-lift, 0));
    box-shadow:
      0 16px 42px rgba(0, 0, 0, 0.18),
      0 0 calc(26px * var(--scroll-glow, 0)) rgba(189, 244, 207, 0.12);
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .product-media {
    min-height: 0;
    border-radius: 0.72rem;
    aspect-ratio: 1 / 0.82;
    animation: productImageFloat 4.8s ease-in-out infinite;
    transform: translateY(calc(var(--scroll-lift, 0) * -0.55)) scale(1.01);
  }

  .product-card .tag-row {
    display: none;
  }

  .product-card .desc,
  .product-card .minimum,
  .product-card .control-shell {
    display: none;
  }

  .product-card .product-title {
    display: grid;
    gap: 0.35rem;
  }

  .product-card .product-title h3 {
    font-size: 0.96rem;
    line-height: 1.12;
  }

  .product-card .price {
    font-size: 1.02rem;
  }

  .view-item-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .product-card::after,
  .category-card::after {
    animation: mobileShine 3.6s ease-in-out infinite;
  }

  .product-card.touch-active {
    animation-play-state: paused;
    transform: perspective(720px) translateY(calc(var(--scroll-lift, 0) + 3px)) scale(0.97) rotateX(2deg);
  }

  .product-card.touch-active::before {
    opacity: 1;
  }

  .product-title {
    min-width: 0;
  }

  .product-title h3 {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .price {
    min-width: auto;
    white-space: nowrap;
    font-size: clamp(1.05rem, 6vw, 1.55rem);
  }

  .product-detail {
    width: 100%;
    top: auto;
    bottom: 0;
    height: min(94vh, 48rem);
    border-top: 1px solid var(--line);
    border-left: 0;
    border-radius: 1.35rem 1.35rem 0 0;
    transform: translateY(105%) scale(0.92);
    transform-origin: bottom center;
  }

  .detail-open .product-detail {
    transform: translateY(0) scale(1);
  }

  .detail-media {
    min-height: 14rem;
  }

  .mode-toggle {
    max-width: 100%;
  }

  .pickup-form input,
  .pickup-form select,
  .pickup-form textarea,
  .amount-row input {
    min-width: 0;
    width: 100%;
  }

  .add-btn {
    min-height: 2.9rem;
    animation: mobileButtonGlow 2.6s ease-in-out infinite alternate;
  }

  .store-info h2 {
    font-size: 2rem;
  }
}

@keyframes mobileFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.01); }
}

@keyframes mobileGlassGlow {
  from { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 42px rgba(0, 0, 0, 0.18); }
  to { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 0 42px rgba(189, 244, 207, 0.14); }
}

@keyframes mobileCardBreathe {
  from { box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18); }
  to { box-shadow: 0 24px 58px rgba(189, 244, 207, 0.09); }
}

@keyframes productImageFloat {
  0%, 100% { transform: translateY(calc(var(--scroll-lift, 0) * -0.55)) scale(1.01); }
  50% { transform: translateY(calc((var(--scroll-lift, 0) * -0.55) - 5px)) scale(1.025); }
}

@keyframes mobileShine {
  0%, 55% { left: -45%; }
  100% { left: 125%; }
}

@keyframes mobileButtonGlow {
  from { box-shadow: 0 12px 28px rgba(217, 183, 101, 0.12); }
  to { box-shadow: 0 0 34px rgba(189, 244, 207, 0.26); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-copy,
  .hero-visual {
    transform: none !important;
    translate: none !important;
  }
}
