/* ============================================================
   Seoul Dak — Street Feed Menu
   Light-mode, carousel-driven, GenZ-friendly.
   ============================================================ */

/* ==========================================================
   HERO — Premium Neon Storefront
   ========================================================== */
.sd-menu-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #e8c8cc 0%, #f3dfe1 35%, #f3dfe1 65%, #edd5d8 100%);
}

/* ---------- Vignette overlay — cinematic edge darkening ---------- */
.sd-menu-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(180,100,110,0.15) 100%);
  z-index: 0;
  pointer-events: none;
}

/* ---------- Animated gradient mesh ---------- */
.sd-hero-mesh {
  position: absolute;
  inset: -25%;
  z-index: 0;
  background:
    radial-gradient(ellipse 700px 500px at 25% 35%, rgba(214,41,41,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 600px 400px at 75% 50%, rgba(255,140,80,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 500px 400px at 50% 85%, rgba(214,41,41,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 400px 400px at 60% 10%, rgba(255,200,210,0.14) 0%, transparent 55%);
  animation: sd-mesh-drift 20s ease-in-out infinite alternate;
  will-change: transform;
}

/* Subtle noise texture for premium feel */
.sd-hero-mesh::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.4;
  mix-blend-mode: overlay;
  pointer-events: none;
}

@keyframes sd-mesh-drift {
  0%   { transform: translate(0, 0) scale(1) rotate(0deg); }
  33%  { transform: translate(-2%, 1.5%) scale(1.03) rotate(0.3deg); }
  66%  { transform: translate(1.5%, -1%) scale(0.98) rotate(-0.2deg); }
  100% { transform: translate(-1%, 2%) scale(1.01) rotate(0.1deg); }
}

/* ---------- Parallax depth layers ---------- */
.sd-hero-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 0.15s ease-out;
}

.sd-hero-layer--content {
  position: relative;
  z-index: 4;
}

/* ---------- Neon wall — structured grid ---------- */
.sd-neon-wall {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  padding: 1.5rem 4rem;
  pointer-events: none;
  z-index: 2;
}

/* ==========================================================
   NEON SIGNS — Large, vivid, with strong glow halos
   ========================================================== */
.sd-neon-sign {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.sd-neon-sign--1 { justify-self: start; align-self: start; width: 160px; height: 160px; }
.sd-neon-sign--2 { justify-self: end;   align-self: start; width: 170px; height: 135px; }
.sd-neon-sign--3 { justify-self: start; align-self: end;   width: 140px; height: 140px; }
.sd-neon-sign--4 { justify-self: end;   align-self: end;   width: 130px; height: 130px; }

/* Strong backlit glow halo behind each sign */
.sd-neon-sign::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(
    ellipse at center,
    rgba(214, 41, 41, 0.12) 0%,
    rgba(214, 41, 41, 0.04) 35%,
    transparent 65%
  );
  border-radius: 50%;
  z-index: -1;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.sd-neon-sign img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.65;
  filter: var(--sd-neon-glow);
  transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
}

/* Breathing animation with glow pulse */
@keyframes sd-neon-breathe {
  0%, 100% { opacity: 0.55; filter: var(--sd-neon-glow-dim); }
  50%      { opacity: 0.8;  filter: var(--sd-neon-glow); }
}

.sd-neon-sign--1 img { animation: sd-neon-breathe 8s ease-in-out infinite; }
.sd-neon-sign--2 img { animation: sd-neon-breathe 10s ease-in-out infinite; animation-delay: -3s; }
.sd-neon-sign--3 img { animation: sd-neon-breathe 9s ease-in-out infinite; animation-delay: -6s; }
.sd-neon-sign--4 img { animation: sd-neon-breathe 7s ease-in-out infinite; animation-delay: -1.5s; }

/* ---------- Centered neon hero wordmark ---------- */
.sd-neon-hero {
  position: relative;
  width: 440px;
  height: 110px;
  margin: 0 auto 0.75rem;
  animation: sd-neon-hero-glow 4s ease-in-out infinite;
}

.sd-neon-hero::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    ellipse at center,
    rgba(214, 41, 41, 0.10) 0%,
    rgba(214, 41, 41, 0.03) 40%,
    transparent 65%
  );
  border-radius: 50%;
  z-index: -1;
}

.sd-neon-hero img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes sd-neon-hero-glow {
  0%, 100% { opacity: 0.85; filter: var(--sd-neon-glow-dim); }
  40%      { opacity: 1;    filter: var(--sd-neon-glow); }
  50%      { opacity: 0.75; filter: var(--sd-neon-glow-dim); }
  55%      { opacity: 1;    filter: var(--sd-neon-glow); }
  80%      { opacity: 0.9;  filter: var(--sd-neon-glow-dim); }
}

/* ---------- Korean mark decorations ---------- */
.sd-hero-mark {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  opacity: 0.18;
  animation: sd-neon-breathe 12s ease-in-out infinite;
}

.sd-hero-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: var(--sd-neon-glow-dim);
}

.sd-hero-mark--left {
  top: 28%;
  left: 18%;
  width: 80px;
  height: 80px;
  transform: rotate(-18deg);
  animation-delay: -3s;
}

.sd-hero-mark--right {
  top: 22%;
  right: 16%;
  width: 70px;
  height: 70px;
  transform: rotate(14deg);
  animation-delay: -8s;
}

/* ---------- Cityscape silhouette at bottom ---------- */
.sd-hero-cityscape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  pointer-events: none;
  line-height: 0;
  opacity: 0.10;
}

.sd-hero-cityscape img {
  width: 100%;
  display: block;
  filter: sepia(1) hue-rotate(320deg) saturate(1.5) brightness(0.5);
}

/* ---------- Mouse spotlight — warm light pool ---------- */
.sd-hero-glow-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255,220,200,0.14) 0%,
    rgba(214,41,41,0.06) 30%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease;
  will-change: transform;
  mix-blend-mode: screen;
}

.sd-menu-hero:hover .sd-hero-glow-orb {
  opacity: 1;
}

/* ---------- Floating particles container ---------- */
.sd-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.sd-hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(214,41,41,0.25);
  animation: sd-particle-rise linear infinite;
  opacity: 0;
}

.sd-hero-particle:nth-child(odd) {
  background: rgba(255,180,180,0.35);
  width: 2px;
  height: 2px;
}

@keyframes sd-particle-rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-400px) translateX(30px); opacity: 0; }
}

/* ---------- Entrance animations ---------- */
@keyframes sd-hero-fade-up {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes sd-hero-scale-in {
  0%   { opacity: 0; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}

.sd-menu-hero .sd-neon-hero {
  animation: sd-hero-scale-in 0.8s ease-out both, sd-neon-hero-glow 4s ease-in-out 0.8s infinite;
}

.sd-menu-hero .sd-menu-hero__title {
  animation: sd-hero-fade-up 0.7s ease-out 0.2s both;
}

.sd-menu-hero .sd-menu-hero__subtitle {
  animation: sd-hero-fade-up 0.7s ease-out 0.35s both;
}

.sd-menu-hero .sd-menu-vibes {
  animation: sd-hero-fade-up 0.7s ease-out 0.5s both;
}

.sd-menu-hero .sd-hero-actions {
  animation: sd-hero-fade-up 0.7s ease-out 0.65s both;
}

.sd-neon-sign--1 { animation: sd-hero-scale-in 0.6s ease-out 0.1s both; }
.sd-neon-sign--2 { animation: sd-hero-scale-in 0.6s ease-out 0.25s both; }
.sd-neon-sign--3 { animation: sd-hero-scale-in 0.6s ease-out 0.4s both; }
.sd-neon-sign--4 { animation: sd-hero-scale-in 0.6s ease-out 0.55s both; }

.sd-menu-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 5rem 2rem 3.5rem;
}

.sd-menu-hero__tag {
  display: inline-block;
  font-family: var(--sd-font-body, "Inter", sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #D62929;
  background: rgba(214, 41, 41, 0.12);
  border: 1px solid rgba(214, 41, 41, 0.25);
  padding: 0.4rem 1.2rem;
  border-radius: 24px;
  margin-bottom: 1.25rem;
}

.sd-menu-hero__title {
  font-family: var(--sd-font-title, "Gasoek One", sans-serif);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 400;
  color: #ffffff;
  -webkit-text-stroke: 2.5px #d62929;
  paint-order: stroke fill;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 0 0 0.75rem;
  transition: transform 0.4s ease, text-shadow 0.4s ease;
  cursor: default;
}

.sd-menu-hero__title:hover {
  transform: scale(1.02);
  text-shadow: 0 4px 24px rgba(214, 41, 41, 0.2);
}

.sd-menu-hero__subtitle {
  font-family: var(--sd-font-body, "Inter", sans-serif);
  font-size: 1.15rem;
  color: rgba(0, 0, 0, 0.6);
  margin: 0 0 2.5rem;
  font-weight: 500;
}

/* ==========================================================
   VIBE PILLS (mood filter in hero)
   ========================================================== */
/* ==========================================================
   FILTER ROW — Horizontal pills under the category nav
   ========================================================== */
.sd-menu-vibes {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.3rem;
  padding: 0.45rem 1.5rem;
  max-width: 1200px;
  margin: 0.5rem auto 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.sd-menu-vibes::-webkit-scrollbar { display: none; }

.sd-menu-vibes::before {
  content: 'Filter';
  font-family: var(--sd-font-body, "Inter", sans-serif);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(0, 0, 0, 0.3);
  margin-right: 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.sd-vibe {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.7rem;
  font-family: var(--sd-font-body, "Inter", sans-serif);
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.55);
  background: transparent;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.sd-vibe:hover {
  background: rgba(214, 41, 41, 0.04);
  color: #1A1A1A;
  border-color: rgba(214, 41, 41, 0.2);
}

.sd-vibe--active {
  background: #D62929;
  color: #fff;
  border-color: #D62929;
  box-shadow: 0 2px 10px rgba(214, 41, 41, 0.25);
}

.sd-vibe--active:hover {
  background: #c02020;
  border-color: #c02020;
  color: #fff;
}

.sd-vibe__emoji { font-size: 0.8rem; line-height: 1; }
.sd-vibe__label { line-height: 1; }

/* ==========================================================
   HERO ACTION BUTTONS
   ========================================================== */
.sd-hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.sd-menu-surprise {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--sd-font-display, "Poppins", sans-serif);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  background: #D62929;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

/* Subtle idle pulse ring */
.sd-menu-surprise::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 32px;
  border: 2px solid rgba(214, 41, 41, 0.3);
  animation: sd-cta-ring 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sd-cta-ring {
  0%, 100% { opacity: 0; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.04); }
}

.sd-menu-surprise:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(214, 41, 41, 0.25);
}

.sd-menu-surprise__dice {
  font-size: 1.2rem;
  display: inline-block;
  animation: sdm-dice 3s ease-in-out infinite;
}

@keyframes sdm-dice {
  0%, 80%, 100% { transform: rotate(0deg); }
  85% { transform: rotate(15deg); }
  90% { transform: rotate(-15deg); }
  95% { transform: rotate(10deg); }
}

.sd-menu-mood-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--sd-font-display, "Poppins", sans-serif);
  font-size: 1.05rem;
  font-weight: 800;
  color: #1A1A1A;
  background: #FFFFFF;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 32px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}

.sd-menu-mood-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.2);
}

.sd-menu-mood-btn__icon {
  font-size: 1.2rem;
  display: inline-block;
  animation: sdm-mood-icon 3s ease-in-out infinite;
}

@keyframes sdm-mood-icon {
  0%, 80%, 100% { transform: scale(1); }
  85% { transform: scale(1.2); }
  90% { transform: scale(0.9); }
  95% { transform: scale(1.1); }
}

/* ==========================================================
   MARQUEE TICKER
   ========================================================== */
.sd-marquee {
  overflow: hidden;
  background: #f3dfe1;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.65rem 0;
  white-space: nowrap;
}

.sd-marquee--mid {
  background: rgba(214, 41, 41, 0.06);
  border-color: rgba(214, 41, 41, 0.1);
}

.sd-marquee__track {
  display: flex;
  animation: sdm-marquee 30s linear infinite;
  will-change: transform;
}

.sd-marquee__track--reverse {
  animation-direction: reverse;
  animation-duration: 35s;
}

.sd-marquee__track span {
  flex-shrink: 0;
  font-family: var(--sd-font-display, "Poppins", sans-serif);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(0, 0, 0, 0.35);
  padding-right: 1rem;
}

.sd-marquee--mid .sd-marquee__track span {
  color: rgba(214, 41, 41, 0.5);
}

@keyframes sdm-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================
   PROMOS & EVENTS
   ========================================================== */
.sd-promos {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

@media (max-width: 768px) {
  .sd-promos {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.sd-promos:empty {
  display: none;
}

.sd-promo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  padding: 1rem 2.75rem 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(0,0,0,0.02), rgba(0,0,0,0.01));
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-left: 3px solid var(--promo-clr, #D62929);
  border-radius: 12px;
  overflow: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.5s ease;
}

.sd-promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 50%, color-mix(in srgb, var(--promo-clr, #D62929) 8%, transparent), transparent 60%);
  pointer-events: none;
}

.sd-promo__icon {
  flex-shrink: 0;
  font-size: 1.75rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.sd-promo__content {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.sd-promo__tag {
  display: inline-block;
  font-family: var(--sd-font-body, "Inter", sans-serif);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--promo-clr, #D62929);
  background: color-mix(in srgb, var(--promo-clr, #D62929) 12%, transparent);
  padding: 0.15rem 0.55rem;
  border-radius: 20px;
  margin-bottom: 0.3rem;
}

.sd-promo__title {
  font-family: var(--sd-font-display, "Poppins", sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 0.2rem;
  line-height: 1.3;
}

.sd-promo__desc {
  font-size: 0.78rem;
  color: rgba(0, 0, 0, 0.4);
  margin: 0;
  line-height: 1.4;
}

.sd-promo__link {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--promo-clr, #D62929);
  text-decoration: none;
  transition: color 0.2s ease;
}

.sd-promo__link:hover {
  color: #1A1A1A;
}

/* ==========================================================
   HERO PICKS — Must Try
   ========================================================== */
.sd-picks {
  background: #f3dfe1;
  padding: 2.5rem 0 1rem;
}

.sd-picks__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  margin-bottom: 1.25rem;
}

.sd-picks__titles {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.sd-picks__title {
  font-family: var(--sd-font-title, "Gasoek One", sans-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: #d62929;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0;
}

.sd-picks__title span {
  font-size: 0.8em;
}

.sd-picks__sub {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.35);
  font-weight: 500;
}

.sd-picks__arrows {
  display: flex;
  gap: 0.4rem;
}

/* Pick Card */
.sd-pick {
  flex-shrink: 0;
  width: 260px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.35s ease;
  position: relative;
}

.sd-pick:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 4px 8px rgba(255, 107, 53, 0.08),
    0 12px 24px rgba(255, 107, 53, 0.12),
    0 24px 48px rgba(255, 107, 53, 0.08),
    0 0 0 1.5px rgba(255, 167, 38, 0.25);
  border-color: rgba(255, 167, 38, 0.35);
}

.sd-pick__img {
  position: relative;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sd-pick__emoji {
  font-size: 3.5rem;
  opacity: 0.25;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  filter: saturate(0.8);
}

.sd-pick:hover .sd-pick__emoji {
  transform: scale(1.3) rotate(-10deg);
  opacity: 0.5;
}

.sd-pick__star {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  font-size: 0.9rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
  z-index: 2;
}

.sd-pick__price {
  position: absolute;
  bottom: 0.5rem;
  right: 0.6rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--sd-font-display, "Poppins", sans-serif);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  z-index: 2;
}

.sd-pick__body {
  padding: 0.9rem 1rem 0.85rem;
}

.sd-pick__cat {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #D62929;
  margin-bottom: 0.25rem;
}

.sd-pick__name {
  font-family: var(--sd-font-display, "Poppins", sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.25;
  transition: color 0.3s ease;
  margin: 0 0 0.3rem;
}

.sd-pick:hover .sd-pick__name {
  color: #D62929;
}

.sd-pick__desc {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.4);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Picks carousel */
.sd-picks__carousel .sd-carousel__track {
  gap: 1rem;
}

/* ==========================================================
   STICKY CATEGORY NAV
   ========================================================== */
.sd-menu-nav {
  position: sticky;
  top: var(--sd-header-h, 60px);
  z-index: 900;
  background: rgba(255, 249, 244, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.65rem 0;
  transition: box-shadow 0.3s ease;
}

.sd-menu-nav--stuck {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.sd-menu-nav__track {
  display: flex;
  gap: 0.45rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.sd-menu-nav__track::-webkit-scrollbar { display: none; }

.sd-mnav__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  font-family: var(--sd-font-title, "Gasoek One", sans-serif);
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  background: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.03);
}

.sd-mnav__pill:hover {
  color: #1A1A1A;
  border-color: rgba(214, 41, 41, 0.2);
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
}

.sd-mnav__pill--active {
  background: #D62929;
  color: #fff;
  border-color: #D62929;
  box-shadow: 0 3px 12px rgba(214, 41, 41, 0.35), 0 6px 20px rgba(214, 41, 41, 0.15);
}

.sd-mnav__pill-emoji { font-size: 0.95rem; line-height: 1; }
.sd-mnav__pill-label { line-height: 1; }

/* ==========================================================
   FEED (main area)
   ========================================================== */
.sd-menu-feed {
  background: #f3dfe1;
  min-height: 60vh;
  padding-bottom: 2rem;
}

/* ==========================================================
   FEED SECTION (one category)
   ========================================================== */
.sd-feed-section {
  padding: 0.5rem 0 1rem;
}

.sd-feed-section:first-child {
  padding-top: 0.25rem;
}

.sd-feed-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  margin-bottom: 0.6rem;
}

.sd-feed-section__titles {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.sd-feed-section__title {
  font-family: var(--sd-font-title, "Gasoek One", sans-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: #d62929;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0;
}

.sd-feed-section__kr {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.2);
  font-weight: 500;
}

.sd-feed-section__note {
  margin: 0.3rem 0 0;
  font-family: var(--sd-font-body, "Inter", sans-serif);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.sd-feed-section__count {
  display: none;
}

/* Arrows */
.sd-feed-section__arrows {
  display: flex;
  gap: 0.4rem;
}

.sd-arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  color: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: all 0.2s ease, transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sd-arrow svg {
  width: 18px;
  height: 18px;
}

.sd-arrow:hover {
  background: #D62929;
  color: #fff;
  border-color: #D62929;
  box-shadow: 0 4px 16px rgba(214, 41, 41, 0.25);
  transform: scale(1.08);
}

.sd-arrow:active {
  transform: scale(0.92);
  box-shadow: 0 1px 4px rgba(214, 41, 41, 0.15);
}

/* Pulse hint — signals more items to scroll */
@keyframes sd-arrow-pulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); border-color: rgba(0, 0, 0, 0.08); }
  50% { box-shadow: 0 0 0 6px rgba(214, 41, 41, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04); border-color: rgba(214, 41, 41, 0.35); }
}

.sd-arrow--hint {
  animation: sd-arrow-pulse 1.6s ease-in-out infinite;
  color: #D62929;
}

/* --- Section highlight/dim states (nav pill selection) --- */
/* Non-selected sections stay normal — no dimming */
.sd-feed-section--dimmed {
  /* intentionally empty — sections remain unchanged */
}

.sd-feed-section--highlighted {
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: relative;
}

/* Warm glow backdrop behind highlighted section */
.sd-feed-section--highlighted::before {
  content: '';
  position: absolute;
  inset: -10px -20px;
  background: radial-gradient(ellipse at center, rgba(214,41,41,0.04) 0%, transparent 70%);
  border-radius: 24px;
  z-index: -1;
  pointer-events: none;
}

.sd-feed-section--highlighted .sd-card {
  border-color: #D62929;
  background: linear-gradient(165deg, #D62929 0%, #b91c1c 100%);
  box-shadow:
    0 6px 20px rgba(214, 41, 41, 0.35),
    0 16px 48px rgba(214, 41, 41, 0.25),
    0 0 0 3px rgba(214, 41, 41, 0.3);
  transform: scale(1.02);
}

.sd-feed-section--highlighted .sd-card::after {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent) !important;
}

.sd-feed-section--highlighted .sd-feed-section__title {
  text-shadow: 0 4px 20px rgba(214, 41, 41, 0.3);
}

.sd-feed-section--highlighted .sd-card__name {
  color: #fff;
  font-weight: 800;
}

.sd-feed-section--highlighted .sd-card__desc {
  color: rgba(255,255,255,0.85);
}

.sd-feed-section--highlighted .sd-card__img {
  background: rgba(255,255,255,0.95);
}

.sd-feed-section--highlighted .sd-card__foot {
  border-top-color: rgba(255,255,255,0.2);
}

/* --- Individual card highlight (vibe-based filtering) — bold red === */
.sd-card--highlight {
  border-color: #D62929 !important;
  background: linear-gradient(165deg, #D62929 0%, #b91c1c 100%) !important;
  box-shadow:
    0 6px 20px rgba(214, 41, 41, 0.35),
    0 16px 48px rgba(214, 41, 41, 0.25),
    0 0 0 3px rgba(214, 41, 41, 0.3) !important;
  transform: scale(1.03);
}

.sd-card--highlight .sd-card__name {
  color: #fff !important;
  font-weight: 800 !important;
}

.sd-card--highlight .sd-card__desc {
  color: rgba(255,255,255,0.85) !important;
}

.sd-card--highlight .sd-card__body {
  background: transparent !important;
}

.sd-card--highlight .sd-card__img {
  background: rgba(255,255,255,0.95) !important;
}

.sd-card--highlight::after {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent) !important;
}

.sd-card--highlight .sd-card__foot {
  border-top-color: rgba(255,255,255,0.2) !important;
}

.sd-card--highlight .sd-rx {
  background: rgba(255,255,255,0.15) !important;
  border-color: rgba(255,255,255,0.3) !important;
}

.sd-card--highlight .sd-rx__n {
  color: rgba(255,255,255,0.85) !important;
}

/* Non-matching cards stay normal — no dimming */
.sd-card--dim-card {
  /* intentionally empty — cards remain unchanged */
}

/* ==========================================================
   CAROUSEL
   ========================================================== */
.sd-carousel {
  position: relative;
}

/* Fade edges */
.sd-carousel::before,
.sd-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}

.sd-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #f3dfe1, transparent);
}

.sd-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #f3dfe1, transparent);
}

.sd-carousel__track {
  display: flex;
  gap: 1rem;
  padding: 0.5rem 1.5rem 1rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.sd-carousel__track::-webkit-scrollbar { display: none; }

/* ==========================================================
   KOREAN FRIED CHICKEN — Bigger cards (featured section)
   ========================================================== */
#cat-korean-fried-chicken .sd-card {
  width: 300px;
}

#cat-korean-fried-chicken .sd-card__img {
  height: 230px;
}

#cat-korean-fried-chicken .sd-card__photo {
  padding: 0;
}

#cat-korean-fried-chicken .sd-card__body {
  padding: 1.1rem 1.25rem 1rem;
}

#cat-korean-fried-chicken .sd-card__name {
  font-size: 1.05rem;
}

#cat-korean-fried-chicken .sd-card__desc {
  font-size: 0.8rem;
}

/* ==========================================================
   DISH CARD — Premium Glassmorphism Design
   ========================================================== */
.sd-card {
  flex-shrink: 0;
  width: 250px;
  background: linear-gradient(165deg, rgba(255,255,255,0.95) 0%, rgba(255,248,248,0.9) 100%);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease;
  position: relative;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 4px 12px rgba(0,0,0,0.03),
    inset 0 1px 0 rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Glossy top highlight */
.sd-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, transparent 100%);
  z-index: 0;
  pointer-events: none;
  border-radius: 22px 22px 0 0;
}

/* Warm accent line at bottom */
.sd-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15%;
  right: 15%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(214,41,41,0.0), transparent);
  border-radius: 3px;
  z-index: 3;
  pointer-events: none;
  transition: background 0.4s ease;
}

.sd-card:hover::after {
  background: linear-gradient(90deg, transparent, rgba(214,41,41,0.5), transparent);
}

.sd-card:hover {
  transform: translateY(-12px) scale(1.03);
  border-color: rgba(214, 41, 41, 0.18);
  box-shadow:
    0 8px 16px rgba(214, 41, 41, 0.06),
    0 20px 50px rgba(214, 41, 41, 0.12),
    0 40px 80px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

/* Dimmed state (vibe filter) */
.sd-card--dim {
  opacity: 0.25;
  transform: scale(0.95);
  filter: grayscale(0.6);
  pointer-events: none;
}

/* No-photo cards */
.sd-card--no-photo .sd-card__img {
  height: 120px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sd-card--no-photo .sd-card__emoji {
  font-size: 3rem;
  opacity: 0.55;
  filter: none;
}

.sd-card--no-photo .sd-card__name {
  font-size: 0.88rem;
}

.sd-card--no-photo .sd-card__desc {
  font-size: 0.72rem;
  -webkit-line-clamp: 2;
}

.sd-card--no-photo .sd-card__price-tag,
.sd-card--no-photo .sd-card__badge,
.sd-card--no-photo .sd-card__spice {
  display: none;
}

/* --- Image area --- */
.sd-card__img {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
}

/* Bottom gradient fade into body */
.sd-card__img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to top, rgba(255,255,255,0.9), transparent);
  z-index: 2;
  pointer-events: none;
}

.sd-card__emoji {
  font-size: 3.5rem;
  opacity: 0.2;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  filter: saturate(0.8);
}

.sd-card:hover .sd-card__emoji {
  transform: scale(1.15) rotate(-6deg);
  opacity: 0.35;
}

/* Real photos — fill the frame */
.sd-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  z-index: 1;
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Most Ordered picks — primary photo contained, hover photo fills frame */
.sd-pick .sd-card__photo {
  object-fit: contain;
  padding: 8px;
}

.sd-pick .sd-card__photo--hover {
  object-fit: cover;
  padding: 0;
}

/* Lifestyle/hover photos */
.sd-card__photo--hover {
  opacity: 0;
  z-index: 1;
  object-fit: cover;
  padding: 0;
}

@media (hover: hover) {
  .sd-card:hover .sd-card__photo--hover,
  .sd-pick:hover .sd-card__photo--hover {
    opacity: 1;
  }
  .sd-card:hover .sd-card__photo:first-child:not(:only-of-type),
  .sd-pick:hover .sd-card__photo:first-child:not(:only-of-type) {
    opacity: 0;
  }
  .sd-card:hover .sd-card__photo:only-of-type,
  .sd-pick:hover .sd-card__photo:only-of-type {
    transform: scale(1.06);
  }
}

/* Badges */
.sd-card__badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.22rem 0.6rem;
  font-family: var(--sd-font-body, "Inter", sans-serif);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 20px;
  z-index: 3;
}

.sd-card__badge--hot {
  background: rgba(214, 41, 41, 0.9);
  color: #fff;
  box-shadow: 0 2px 8px rgba(214,41,41,0.3);
}

.sd-card__badge--veg {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255,255,255,0.92);
  color: #16a34a;
  border: 1.5px solid rgba(22,163,74,0.4);
  border-radius: 8px;
  padding: 0.22rem 0.55rem;
  left: auto;
  right: 0.7rem;
  font-weight: 800;
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 8px rgba(22,163,74,0.1);
}

.sd-veg-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a34a;
}

.sd-card__spice {
  position: absolute;
  bottom: 0.6rem;
  left: 0.7rem;
  font-size: 0.8rem;
  z-index: 3;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

.sd-card__price-tag {
  position: absolute;
  bottom: 0.6rem;
  right: 0.7rem;
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(12px);
  color: #fff;
  font-family: var(--sd-font-display, "Poppins", sans-serif);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.22rem 0.65rem;
  border-radius: 20px;
  z-index: 3;
}

/* --- Body --- */
.sd-card__body {
  padding: 1rem 1.15rem 1rem;
  position: relative;
  z-index: 1;
}

.sd-card__name {
  font-family: var(--sd-font-display, "Poppins", sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.3;
  margin: 0 0 0.4rem;
  transition: color 0.3s ease;
}

.sd-card:hover .sd-card__name {
  color: #D62929;
}

.sd-card__desc {
  font-size: 0.76rem;
  color: rgba(0, 0, 0, 0.42);
  line-height: 1.6;
  margin: 0 0 0.7rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- Footer: reactions --- */
.sd-card__foot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(214,41,41,0.06);
}

.sd-card__price {
  font-family: var(--sd-font-display, "Poppins", sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: #D62929;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.sd-card:hover .sd-card__price {
  transform: scale(1.08);
}

.sd-card__rx {
  display: flex;
  gap: 0.2rem;
}

/* ==========================================================
   EMOJI REACTIONS
   ========================================================== */
.sd-rx {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0.3rem 0.4rem;
  background: rgba(214,41,41,0.04);
  border: 1px solid rgba(214,41,41,0.06);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.sd-rx:hover {
  background: rgba(214, 41, 41, 0.08);
  border-color: rgba(214,41,41,0.15);
  box-shadow: 0 2px 8px rgba(214,41,41,0.1);
  transform: scale(1.1);
}

.sd-rx__em {
  font-size: 0.85rem;
  line-height: 1;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sd-rx:hover .sd-rx__em {
  transform: scale(1.3);
}

.sd-rx__n {
  font-size: 0.55rem;
  color: rgba(214, 41, 41, 0.45);
  font-weight: 700;
  line-height: 1;
}

/* Pop animation */
.sd-rx--pop .sd-rx__em {
  animation: sdm-rxpop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes sdm-rxpop {
  0% { transform: scale(1); }
  50% { transform: scale(1.6); }
  100% { transform: scale(1); }
}

/* Float +1 */
.sd-rx__float {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  font-weight: 700;
  color: #D62929;
  animation: sdm-float 0.7s ease-out forwards;
  pointer-events: none;
}

@keyframes sdm-float {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(-20px); }
}

/* ==========================================================
   PICK YOUR SAUCE — Sauce Showcase
   ========================================================== */
.sd-feast {
  max-width: 1200px;
  margin: 2rem auto 0;
  background: linear-gradient(135deg, #f3dfe1, #edd5d8);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.sd-feast__head {
  position: relative;
  text-align: center;
  margin-bottom: 2rem;
}

.sd-feast__title {
  font-family: var(--sd-font-title, "Gasoek One", sans-serif);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 400;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.4rem;
}

.sd-feast__title span { font-size: 1.3em; }

.sd-feast__sub {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.4);
  margin: 0;
}

/* Sauce showcase grid */
.sd-feast__showcase {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

/* Individual sauce card */
.sd-feast__scard {
  flex: 0 0 auto;
  width: 180px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

@keyframes sd-sauce-bounce {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-14px); }
  50%  { transform: translateY(-4px); }
  70%  { transform: translateY(-10px); }
  100% { transform: translateY(-8px); }
}

.sd-feast__scard:hover {
  animation: sd-sauce-bounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.sd-feast__scard-img {
  width: 160px;
  height: 180px;
  margin: 0 auto 0.75rem;
  position: relative;
}

.sd-feast__scard-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

.sd-feast__scard:hover .sd-feast__scard-img img {
  transform: scale(1.08) rotate(-3deg);
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.25));
}

.sd-feast__scard-name {
  font-family: var(--sd-font-display, "Poppins", sans-serif);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #B91C1C;
  margin: 0 0 0.4rem;
}

/* Heat label badge */
.sd-feast__scard-heat {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.65rem;
  border: 1.5px solid var(--sc, #D62929);
  border-radius: 20px;
  margin-bottom: 0.5rem;
}

.sd-feast__scard-heat-label {
  font-family: var(--sd-font-body, "Inter", sans-serif);
  font-size: 0.62rem;
  font-weight: 700;
  font-style: italic;
  color: var(--sc, #D62929);
}

.sd-feast__scard-heat-dots {
  display: flex;
  gap: 1px;
}

.sd-feast__hdot {
  font-size: 0.6rem;
  opacity: 0.2;
}

.sd-feast__hdot--lit {
  opacity: 1;
}

.sd-feast__scard-desc {
  font-family: var(--sd-font-body, "Inter", sans-serif);
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.5;
  margin: 0;
  padding: 0 0.25rem;
}

/* Add-on */
.sd-feast__addon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px dashed rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.5);
}

.sd-feast__addon-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(214, 41, 41, 0.2);
  color: #D62929;
  font-weight: 700;
  font-size: 0.9rem;
}

.sd-feast__addon-price {
  font-family: var(--sd-font-display, "Poppins", sans-serif);
  font-weight: 700;
  color: #D62929;
}

/* ==========================================================
   SURPRISE ME — 3-Reel Combo Picker
   ========================================================== */
.sd-surprise-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  overflow-y: auto;
  padding: 2rem 1rem;
}

.sd-surprise--open {
  opacity: 1;
  visibility: visible;
}

.sd-surprise__inner {
  text-align: center;
  max-width: 720px;
  width: 100%;
}

.sd-surprise__heading {
  font-family: var(--sd-font-title, "Gasoek One", sans-serif);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 400;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.25rem;
}

.sd-surprise__subheading {
  font-size: 0.88rem;
  color: rgba(0, 0, 0, 0.4);
  margin: 0 0 0.75rem;
}

/* --- Combo name reveal --- */
.sd-surprise__combo-name {
  font-family: var(--sd-font-display, "Poppins", sans-serif);
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  margin: 0 0 2rem;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sd-surprise__combo-name--show {
  opacity: 1;
  transform: scale(1);
}

/* --- Larger reel images --- */
/* --large is defined with higher specificity below (.sd-surprise__reel-img.sd-surprise__reel-img--large) */
.sd-surprise__reel-img--large .sd-surprise__reel-name {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 0.25rem;
  line-height: 1.2;
}

/* --- Reels row --- */
.sd-surprise__reels {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}

.sd-surprise__plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  align-self: center;
  font-family: var(--sd-font-display, "Poppins", sans-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

/* --- Single reel card --- */
.sd-surprise__reel {
  flex: 1;
  max-width: 200px;
  min-width: 0;
  padding: 1.25rem 0.75rem;
  background: rgba(0, 0, 0, 0.02);
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.sd-surprise__reel--spinning {
  border-color: rgba(214, 41, 41, 0.15);
}

/* Lock-in state: glow + bounce */
.sd-surprise__reel--locked {
  border-color: rgba(214, 41, 41, 0.5);
  background: rgba(214, 41, 41, 0.06);
  box-shadow: 0 0 30px rgba(214, 41, 41, 0.15), 0 0 60px rgba(214, 41, 41, 0.05);
  animation: sdm-reel-lock 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes sdm-reel-lock {
  0% { transform: scale(1); }
  40% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

.sd-surprise__reel-icon {
  font-size: 2rem;
  margin-bottom: 0.35rem;
  transition: transform 0.3s ease;
}

.sd-surprise__reel--spinning .sd-surprise__reel-icon {
  animation: sdm-reel-bounce 0.4s ease-in-out infinite;
}

@keyframes sdm-reel-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.sd-surprise__reel--locked .sd-surprise__reel-icon {
  animation: none;
  transform: scale(1.15);
}

.sd-surprise__reel-label {
  display: block;
  font-family: var(--sd-font-body, "Inter", sans-serif);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(0, 0, 0, 0.25);
  margin-bottom: 0.75rem;
}

.sd-surprise__reel--locked .sd-surprise__reel-label {
  color: #D62929;
}

/* Reel window — the spinning text area */
.sd-surprise__reel-window {
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Top/bottom fade mask on reel window */
.sd-surprise__reel--spinning .sd-surprise__reel-window::before,
.sd-surprise__reel--spinning .sd-surprise__reel-window::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 12px;
  z-index: 2;
  pointer-events: none;
}

.sd-surprise__reel--spinning .sd-surprise__reel-window::before {
  top: 0;
  background: linear-gradient(180deg, rgba(255, 249, 244, 0.8), transparent);
}

.sd-surprise__reel--spinning .sd-surprise__reel-window::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(255, 249, 244, 0.8), transparent);
}

.sd-surprise__reel-text {
  font-family: var(--sd-font-display, "Poppins", sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: #1A1A1A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: block;
  transition: transform 0.06s ease;
}

.sd-surprise__reel--spinning .sd-surprise__reel-text {
  color: rgba(0, 0, 0, 0.5);
}

.sd-surprise__reel-text--flash {
  transform: translateY(-2px);
  color: rgba(214, 41, 41, 0.7) !important;
}

.sd-surprise__reel--locked .sd-surprise__reel-text {
  color: #1A1A1A;
  font-size: 1rem;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  line-height: 1.3;
}

/* Detail area — slides in after lock */
.sd-surprise__reel-detail {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.4s ease 0.1s;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.sd-surprise__reel-detail--show {
  max-height: 220px;
  opacity: 1;
}

.sd-surprise__reel-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.75rem auto 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.sd-surprise__reel-img.sd-surprise__reel-img--large {
  width: 100%;
  max-width: 220px;
  height: 200px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sd-surprise__reel-img span {
  font-size: 1.5rem;
  opacity: 0.4;
}

.sd-surprise__reel-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 12px;
  z-index: 1;
  border-radius: 18px;
}

.sd-surprise__reel-desc {
  font-size: 0.68rem;
  color: rgba(0, 0, 0, 0.4);
  line-height: 1.5;
  margin: 0 0 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sd-surprise__reel-price {
  display: inline-block;
  font-family: var(--sd-font-display, "Poppins", sans-serif);
  font-size: 1.05rem;
  font-weight: 800;
  color: #D62929;
  margin-top: auto;
}

/* --- Total --- */
.sd-surprise__total {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  margin-top: 1.5rem;
}

.sd-surprise__total--show {
  opacity: 1;
  transform: translateY(0);
}

.sd-surprise__total-line {
  width: 80px;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 0 auto 1rem;
}

.sd-surprise__total-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
}

.sd-surprise__total-label {
  font-family: var(--sd-font-body, "Inter", sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.35);
}

.sd-surprise__total-price {
  font-family: var(--sd-font-display, "Poppins", sans-serif);
  font-size: 2rem;
  font-weight: 800;
  color: #D62929;
  animation: sdm-price-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes sdm-price-pop {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

/* --- Buttons --- */
.sd-surprise__btns {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.sd-surprise__again,
.sd-surprise__close {
  padding: 0.65rem 1.5rem;
  font-family: var(--sd-font-body, "Inter", sans-serif);
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.sd-surprise__again {
  background: #D62929;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.sd-surprise__again:hover {
  background: #c02020;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214, 41, 41, 0.3);
}

.sd-surprise__again-dice {
  display: inline-block;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.sd-surprise__again:hover .sd-surprise__again-dice {
  animation: sdm-dice-shake 0.4s ease;
}

@keyframes sdm-dice-shake {
  0% { transform: rotate(0); }
  25% { transform: rotate(20deg); }
  50% { transform: rotate(-15deg); }
  75% { transform: rotate(10deg); }
  100% { transform: rotate(0); }
}

.sd-surprise__close {
  background: rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.5);
}

.sd-surprise__close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #1A1A1A;
}

/* --- Countdown --- */
.sd-surprise__countdown {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.sd-surprise__countdown-num {
  font-family: var(--sd-font-display, "Poppins", sans-serif);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  animation: sdm-countdown 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.sd-surprise__countdown-num--go {
  color: #D62929;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
}

@keyframes sdm-countdown {
  0% { transform: scale(0.5); opacity: 0; }
  40% { transform: scale(1.15); opacity: 1; }
  80% { transform: scale(1); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0; }
}

/* --- Shake --- */
.sd-surprise__inner--shake {
  animation: sdm-shake 0.3s ease;
}

@keyframes sdm-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-3px); }
  40% { transform: translateX(3px); }
  60% { transform: translateX(-2px); }
  80% { transform: translateX(2px); }
}

/* --- Pulse ring on lock --- */
.sd-surprise__reel--locked::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 2px solid rgba(214, 41, 41, 0.4);
  animation: sdm-pulse-ring 0.8s ease-out forwards;
  pointer-events: none;
}

@keyframes sdm-pulse-ring {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* --- Confetti --- */
.sd-surprise__confetti {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 0;
  height: 0;
  z-index: 20;
  pointer-events: none;
}

.sd-surprise__confetti-piece {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  animation: sdm-confetti 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.sd-surprise__confetti-piece:nth-child(1)  { background: #D62929; --cx: -80px; --cy: -120px; animation-delay: 0s; }
.sd-surprise__confetti-piece:nth-child(2)  { background: #FF6B35; --cx: 60px; --cy: -140px; animation-delay: 0.05s; border-radius: 50%; }
.sd-surprise__confetti-piece:nth-child(3)  { background: #FBBF24; --cx: -40px; --cy: -100px; animation-delay: 0.1s; }
.sd-surprise__confetti-piece:nth-child(4)  { background: #7C4DFF; --cx: 90px; --cy: -110px; animation-delay: 0.08s; border-radius: 50%; }
.sd-surprise__confetti-piece:nth-child(5)  { background: #16A34A; --cx: -100px; --cy: -80px; animation-delay: 0.12s; }
.sd-surprise__confetti-piece:nth-child(6)  { background: #E040FB; --cx: 30px; --cy: -150px; animation-delay: 0.03s; border-radius: 50%; }
.sd-surprise__confetti-piece:nth-child(7)  { background: #06B6D4; --cx: -60px; --cy: -130px; animation-delay: 0.15s; }
.sd-surprise__confetti-piece:nth-child(8)  { background: #D62929; --cx: 110px; --cy: -90px; animation-delay: 0.07s; border-radius: 50%; }
.sd-surprise__confetti-piece:nth-child(9)  { background: #FBBF24; --cx: -120px; --cy: -100px; animation-delay: 0.11s; }
.sd-surprise__confetti-piece:nth-child(10) { background: #FF6B35; --cx: 70px; --cy: -160px; animation-delay: 0.04s; border-radius: 50%; }
.sd-surprise__confetti-piece:nth-child(11) { background: #7C4DFF; --cx: -30px; --cy: -140px; animation-delay: 0.09s; }
.sd-surprise__confetti-piece:nth-child(12) { background: #16A34A; --cx: 50px; --cy: -100px; animation-delay: 0.13s; border-radius: 50%; }

@keyframes sdm-confetti {
  0% { transform: translate(0, 0) rotate(0deg); opacity: 1; }
  25% { opacity: 1; }
  100% { transform: translate(var(--cx), var(--cy)) rotate(720deg); opacity: 0; }
}

/* --- Emoji rain --- */
.sd-surprise__emoji-rain {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100vh;
  pointer-events: none;
  z-index: 10001;
  overflow: hidden;
}

.sd-surprise__emoji-drop {
  position: absolute;
  bottom: -40px;
  font-size: 1.5rem;
  animation: sdm-emoji-up 2.5s ease-out forwards;
}

@keyframes sdm-emoji-up {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
  50% { opacity: 1; }
  100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}

/* --- Sparkles around total --- */
.sd-surprise__sparkles {
  position: relative;
  display: inline-block;
}

.sd-surprise__sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #D62929;
  border-radius: 50%;
  animation: sdm-sparkle 0.8s ease-out forwards;
}

.sd-surprise__sparkle:nth-child(1) { top: -8px; left: -8px; animation-delay: 0s; }
.sd-surprise__sparkle:nth-child(2) { top: -12px; right: -8px; animation-delay: 0.1s; }
.sd-surprise__sparkle:nth-child(3) { bottom: -8px; left: 30%; animation-delay: 0.2s; }
.sd-surprise__sparkle:nth-child(4) { top: 50%; right: -12px; animation-delay: 0.15s; }
.sd-surprise__sparkle:nth-child(5) { top: -6px; left: 50%; animation-delay: 0.25s; background: #FBBF24; }
.sd-surprise__sparkle:nth-child(6) { bottom: -10px; right: 20%; animation-delay: 0.3s; background: #FF6B35; }

@keyframes sdm-sparkle {
  0% { transform: scale(0); opacity: 1; }
  50% { transform: scale(1.5); opacity: 1; }
  100% { transform: scale(0); opacity: 0; }
}

/* --- Glow pulse on Spin Again --- */
.sd-surprise__again--glow {
  animation: sdm-btn-glow 1.5s ease-in-out infinite;
}

@keyframes sdm-btn-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(214, 41, 41, 0); }
  50% { box-shadow: 0 0 24px rgba(214, 41, 41, 0.4); }
}

/* --- Share text --- */
.sd-surprise__share {
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.35);
  margin-top: 0.75rem;
  animation: sdm-fade-in 0.6s ease forwards;
}

@keyframes sdm-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================
   QUICK PEEK LIGHTBOX
   ========================================================== */
.sd-peek {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sd-peek--open {
  opacity: 1;
  visibility: visible;
}

.sd-peek__bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.sd-peek__sheet {
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  overflow: hidden;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sd-peek--open .sd-peek__sheet {
  transform: scale(1) translateY(0);
}

.sd-peek__x {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.sd-peek__x:hover { background: rgba(0, 0, 0, 0.7); }

.sd-peek__img {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sd-peek__img span {
  font-size: 4rem;
  opacity: 0.3;
}

.sd-peek__body {
  padding: 1.5rem;
}

.sd-peek__cat {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #D62929;
  margin-bottom: 0.4rem;
}

.sd-peek__name {
  font-family: var(--sd-font-display, "Poppins", sans-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

.sd-peek__desc {
  font-size: 0.88rem;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  margin: 0 0 0.75rem;
}

.sd-peek__spice {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.sd-peek__spice span {
  color: rgba(0, 0, 0, 0.4);
  font-size: 0.75rem;
  margin-left: 0.25rem;
}

.sd-peek__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.sd-peek__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.22rem 0.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.sd-peek__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sd-peek__price {
  font-family: var(--sd-font-display, "Poppins", sans-serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: #D62929;
}

.sd-peek__cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: #D62929;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sd-peek__cta:hover { color: #ff4444; }

/* ==========================================================
   MOOD SELECTOR OVERLAY
   ========================================================== */
.sd-mood-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 249, 244, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  overflow-y: auto;
  padding: 2rem 1rem;
}

.sd-mood--open {
  opacity: 1;
  visibility: visible;
}

.sd-mood__inner {
  text-align: center;
  max-width: 800px;
  width: 100%;
  position: relative;
}

.sd-mood__close {
  position: absolute;
  top: -0.5rem;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 50%;
  color: rgba(0, 0, 0, 0.4);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.sd-mood__close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #1A1A1A;
}

.sd-mood__head {
  margin-bottom: 2rem;
}

.sd-mood__title {
  font-family: var(--sd-font-title, "Gasoek One", sans-serif);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 400;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem;
}

.sd-mood__kr {
  font-size: 0.6em;
  color: rgba(0, 0, 0, 0.2);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.sd-mood__subtitle {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.4);
  margin: 0;
}

.sd-mood__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.sd-mood__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1.75rem 1rem;
  border: none;
  border-radius: 16px;
  color: #fff;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease;
  overflow: hidden;
}

/* Shimmer sweep on hover */
.sd-mood__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 70%
  );
  transition: left 0.6s ease;
  border-radius: 16px;
  z-index: 1;
}

.sd-mood__card:hover::before {
  left: 100%;
}

/* Lift + glow on hover */
.sd-mood__card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22),
              0 0 20px rgba(255, 255, 255, 0.1) inset;
}

/* Active state — ring pulse */
.sd-mood__card--active {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25), 0 0 0 3px rgba(255, 255, 255, 0.8);
  animation: sd-mood-ring 1.5s ease-in-out infinite;
}

@keyframes sd-mood-ring {
  0%, 100% { box-shadow: 0 8px 28px rgba(0,0,0,0.25), 0 0 0 3px rgba(255,255,255,0.8); }
  50%      { box-shadow: 0 8px 28px rgba(0,0,0,0.25), 0 0 0 6px rgba(255,255,255,0.4); }
}

/* --- Emoji base --- */
.sd-mood__card-emoji {
  font-size: 2.25rem;
  line-height: 1;
  position: relative;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Per-mood emoji hover animations --- */

/* 🔥 Adventurous — flame flicker */
@keyframes sd-emoji-flame {
  0%, 100% { transform: scale(1) rotate(0deg); }
  20% { transform: scale(1.15) rotate(-5deg); }
  40% { transform: scale(0.95) rotate(3deg); }
  60% { transform: scale(1.2) rotate(-3deg); }
  80% { transform: scale(1.05) rotate(2deg); }
}
.sd-mood__card[data-mood="adventurous"]:hover .sd-mood__card-emoji {
  animation: sd-emoji-flame 0.6s ease-in-out infinite;
}

/* 🤗 Comfort — cozy wobble */
@keyframes sd-emoji-wobble {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-10deg) scale(1.1); }
  75% { transform: rotate(10deg) scale(1.1); }
}
.sd-mood__card[data-mood="comfort"]:hover .sd-mood__card-emoji {
  animation: sd-emoji-wobble 0.8s ease-in-out infinite;
}

/* 🎉 Party — bounce */
@keyframes sd-emoji-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  30% { transform: translateY(-12px) scale(1.15); }
  50% { transform: translateY(0) scale(0.95); }
  70% { transform: translateY(-6px) scale(1.08); }
}
.sd-mood__card[data-mood="party"]:hover .sd-mood__card-emoji {
  animation: sd-emoji-bounce 0.7s ease-in-out infinite;
}

/* 💚 Light — gentle pulse */
@keyframes sd-emoji-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}
.sd-mood__card[data-mood="light"]:hover .sd-mood__card-emoji {
  animation: sd-emoji-pulse 0.9s ease-in-out infinite;
}

/* 🧊 Cool — shiver */
@keyframes sd-emoji-shiver {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-3px) rotate(-4deg); }
  40% { transform: translateX(3px) rotate(4deg); }
  60% { transform: translateX(-2px) rotate(-2deg); }
  80% { transform: translateX(2px) rotate(2deg); }
}
.sd-mood__card[data-mood="cool"]:hover .sd-mood__card-emoji {
  animation: sd-emoji-shiver 0.5s ease-in-out infinite;
}

/* 💰 Budget — coin flip */
@keyframes sd-emoji-flip {
  0% { transform: rotateY(0deg) scale(1); }
  50% { transform: rotateY(180deg) scale(1.15); }
  100% { transform: rotateY(360deg) scale(1); }
}
.sd-mood__card[data-mood="budget"]:hover .sd-mood__card-emoji {
  animation: sd-emoji-flip 0.8s ease-in-out infinite;
}

.sd-mood__card-label {
  font-family: var(--sd-font-display, "Poppins", sans-serif);
  font-size: 0.88rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  transition: letter-spacing 0.3s ease;
}

.sd-mood__card:hover .sd-mood__card-label {
  letter-spacing: 0.04em;
}

.sd-mood__card-tagline {
  font-size: 0.72rem;
  opacity: 0.7;
  position: relative;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.sd-mood__card:hover .sd-mood__card-tagline {
  opacity: 1;
}

/* --- Results area --- */
.sd-mood__results {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.4s ease;
}

.sd-mood__results--show {
  max-height: 600px;
  opacity: 1;
}

.sd-mood__results-head {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.sd-mood__results-title {
  font-family: var(--sd-font-body, "Inter", sans-serif);
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.5);
  margin: 0;
}

.sd-mood__results-title strong {
  color: #1A1A1A;
}

.sd-mood__no-match {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.4);
  padding: 2rem 0;
}

.sd-mood__recs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 0.5rem;
}

.sd-mood__rec {
  flex-shrink: 0;
  width: 170px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s ease;
  animation: sdm-rec-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes sdm-rec-in {
  from { opacity: 0; transform: translateY(16px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.sd-mood__rec:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.sd-mood__rec-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.sd-mood__rec-img span {
  font-size: 2.25rem;
  opacity: 0.3;
}

.sd-mood__rec-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  z-index: 1;
  border-radius: 12px;
}

.sd-mood__rec-price-tag {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--sd-font-display, "Poppins", sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
}

.sd-mood__rec-body {
  padding: 0.65rem 0.8rem;
}

.sd-mood__rec-cat {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #D62929;
  margin-bottom: 0.15rem;
}

.sd-mood__rec-name {
  font-family: var(--sd-font-display, "Poppins", sans-serif);
  font-size: 0.82rem;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 0.15rem;
  line-height: 1.25;
}

.sd-mood__rec-price {
  font-family: var(--sd-font-display, "Poppins", sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  color: #D62929;
}

.sd-mood__rec-reason {
  font-size: 0.68rem;
  color: rgba(0, 0, 0, 0.35);
  font-style: italic;
  margin: 0.15rem 0 0;
}

/* ==========================================================
   CTA BAND
   ========================================================== */
.sd-menu-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f3dfe1, #edd5d8);
  text-align: center;
}

.sd-menu-cta__heading {
  font-family: var(--sd-font-title, "Gasoek One", sans-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
}

.sd-menu-cta__sub {
  font-size: 1.05rem;
  color: rgba(0, 0, 0, 0.4);
  margin: 0 0 2rem;
}

.sd-menu-cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* ==========================================================
   SCROLL REVEAL
   ========================================================== */
.sd-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.sd-reveal--vis {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   REDUCED MOTION
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  .sd-neon-sign img, .sd-neon-hero { animation: none !important; opacity: 0.85 !important; filter: var(--sd-neon-glow) !important; }
  .sd-hero-mesh { animation: none !important; }
  .sd-hero-glow-orb, .sd-hero-particles { display: none; }
  .sd-hero-layer { will-change: auto; }
  .sd-menu-hero .sd-menu-hero__title,
  .sd-menu-hero .sd-menu-hero__subtitle,
  .sd-menu-hero .sd-menu-vibes,
  .sd-menu-hero .sd-hero-actions,
  .sd-neon-sign--1, .sd-neon-sign--2, .sd-neon-sign--3, .sd-neon-sign--4 {
    animation: none !important; opacity: 1 !important;
  }
  .sd-reveal { opacity: 1; transform: none; transition: none; }
  .sd-card { transition-duration: 0.01ms !important; }
  .sd-card__emoji { transition: none !important; }
  .sd-marquee__track { animation: none; }
  .sd-menu-surprise__dice { animation: none; }
  .sd-surprise__reel--locked { animation: none; }
  .sd-surprise__reel--spinning .sd-surprise__reel-icon { animation: none; }
  .sd-surprise__reel-detail { transition: none !important; }
  .sd-surprise__total { transition: none !important; }
  .sd-surprise__total-price { animation: none; }
  .sd-surprise__again:hover .sd-surprise__again-dice { animation: none; }
  .sd-pick { transition-duration: 0.01ms !important; }
  .sd-pick__emoji { transition: none !important; }
  .sd-promo { transition: none !important; }
  .sd-surprise__countdown-num { animation: none; }
  .sd-surprise__inner--shake { animation: none; }
  .sd-surprise__reel--locked::after { animation: none; display: none; }
  .sd-surprise__confetti-piece { animation: none; display: none; }
  .sd-surprise__emoji-drop { animation: none; display: none; }
  .sd-surprise__sparkle { animation: none; display: none; }
  .sd-surprise__again--glow { animation: none; }
  .sd-surprise__share { animation: none; opacity: 1; }
  .sd-mood__rec { animation: none; opacity: 1; transform: none; }
  .sd-mood__card { transition-duration: 0.01ms !important; }
  .sd-mood__results { transition: none !important; }
  .sd-mood-overlay { transition: none !important; }
  .sd-menu-mood-btn__icon { animation: none; }
  .sd-feed-section--active { animation: none !important; }
  .sd-swipe-hint__arrow { animation: none; }
  .sd-peek__sheet { transition: none !important; }
  .sd-peek { transition-duration: 0.01ms !important; }
  .sd-rx__em { transition: none !important; }
  .sd-rx--pop .sd-rx__em { animation: none !important; }
  .sd-rx__float { animation: none; display: none; }
  .sd-feast__scard { animation: none !important; transition: none !important; }
  .sd-feast__scard-img img { transition: none !important; }
  .sd-arrow--hint { animation: none; }
  .sd-menu-hero__title { transition: none !important; }
  .sd-menu-surprise::after { animation: none; display: none; }
  .sd-menu-hero__bg::after { animation: none; }
  .sd-vibe { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 768px) {
  /* === HERO === */
  .sd-menu-hero { min-height: 360px; }
  .sd-menu-hero__content { padding: 3.5rem 1.25rem 2rem; }
  .sd-neon-sign--3, .sd-neon-sign--4 { display: none; }
  .sd-neon-sign--1 { width: 60px; height: 60px; justify-self: start; align-self: start; margin-top: 0; margin-left: 0; }
  .sd-neon-sign--2 { width: 55px; height: 44px; justify-self: end; align-self: start; margin-top: 0; margin-right: 0; }
  .sd-neon-wall { padding: 0.75rem 0.5rem; }
  .sd-neon-hero { width: 280px; height: 70px; max-width: 85%; }
  .sd-hero-layer { will-change: auto; }
  .sd-hero-glow-orb { display: none; }
  .sd-hero-particles { display: none; }
  .sd-hero-cityscape { opacity: 0.06; }
  .sd-hero-mesh { animation-duration: 40s; }
  .sd-hero-mark { width: 40px; height: 40px; opacity: 0.13; }
  .sd-hero-mark--left { top: 65%; left: 8%; transform: rotate(-15deg); }
  .sd-hero-mark--right { top: 12%; right: 30%; transform: rotate(12deg); }
  .sd-menu-hero__title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .sd-menu-hero__subtitle { font-size: 0.9rem; margin-bottom: 1.25rem; }

  /* Entrance animations — faster on mobile */
  .sd-menu-hero .sd-menu-hero__title,
  .sd-menu-hero .sd-menu-hero__subtitle,
  .sd-menu-hero .sd-hero-actions,
  .sd-neon-sign--1, .sd-neon-sign--2 {
    animation-duration: 0.4s !important;
  }

  /* === VIBE PILLS — hidden on mobile === */
  .sd-menu-vibes { display: none; }

  /* === BUTTONS — equal height side by side === */
  .sd-hero-actions { gap: 0.5rem; flex-wrap: nowrap; width: 100%; max-width: 320px; margin: 0 auto; align-items: stretch; }
  .sd-menu-surprise { padding: 0 1rem; font-size: 0.82rem; flex: 1; justify-content: center; border-radius: 28px; height: 44px; display: inline-flex; align-items: center; }
  .sd-menu-surprise::after { display: none; }
  .sd-menu-mood-btn { padding: 0 1rem; font-size: 0.82rem; flex: 1; justify-content: center; border-radius: 28px; height: 44px; display: inline-flex; align-items: center; }

  /* === CARD PERFORMANCE — simplify glassmorphism === */
  .sd-card { backdrop-filter: none; -webkit-backdrop-filter: none; background: #fff; border-radius: 18px; border-color: rgba(0,0,0,0.06); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
  .sd-card::before, .sd-card::after { display: none; }
  .sd-card__img { border-radius: 18px 18px 0 0; }
  .sd-card__img::after { height: 30px; }

  /* KFC bigger cards — mobile grid */
  #cat-korean-fried-chicken .sd-card { width: 100%; }
  #cat-korean-fried-chicken .sd-card__img { height: 160px; }
  #cat-korean-fried-chicken .sd-card__name { font-size: 0.88rem; }
  #cat-korean-fried-chicken .sd-card__desc { font-size: 0.68rem; }

  /* === NAV PILLS === */
  .sd-menu-nav { padding: 0.5rem 0; }
  .sd-menu-nav__track { padding: 0 0.75rem; gap: 0.35rem; }
  .sd-mnav__pill { padding: 0.45rem 0.85rem; font-size: 0.7rem; min-height: 40px; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }

  /* === FEED SECTIONS === */
  .sd-feed-section { padding: 0.75rem 0 0.5rem; scroll-margin-top: 120px; }
  .sd-feed-section:first-child { padding-top: 0.25rem; }
  .sd-feed-section__head { padding: 0 1rem; margin-bottom: 0.6rem; }
  .sd-feed-section__title { font-size: 1.1rem; }
  .sd-feed-section__kr { font-size: 0.68rem; }
  .sd-feed-section__note { font-size: 0.65rem; margin-top: 0.15rem; }

  /* === MOOD OVERLAY === */
  .sd-mood-overlay { padding: 0.75rem; padding-top: 3.5rem; align-items: flex-start; }
  .sd-mood__inner { padding: 0 0.25rem; }
  .sd-mood__close { position: fixed; top: 0.75rem; right: 0.75rem; z-index: 10001; width: 44px; height: 44px; font-size: 1.1rem; background: rgba(0,0,0,0.08); }
  .sd-mood__title { font-size: 1.3rem; }
  .sd-mood__subtitle { font-size: 0.82rem; }
  .sd-mood__grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; margin-bottom: 1rem; }
  .sd-mood__card { padding: 1.1rem 0.75rem; border-radius: 16px; }
  .sd-mood__card-emoji { font-size: 1.6rem; }
  .sd-mood__card-label { font-size: 0.8rem; }
  .sd-mood__card-tagline { font-size: 0.65rem; }
  .sd-mood__rec { width: 48%; }
  .sd-mood__recs { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
  .sd-mood__rec-img { height: 110px; border-radius: 14px 14px 0 0; }
  .sd-mood__rec-name { font-size: 0.8rem; }

  /* === PROMOS === */
  .sd-promos { padding: 0.75rem 1rem 0; gap: 0.5rem; }
  .sd-promo { padding: 0.85rem 1.5rem 0.85rem 1rem; gap: 0.75rem; border-radius: 14px; }
  .sd-promo__icon { width: 40px; height: 40px; font-size: 1.3rem; }
  .sd-promo__title { font-size: 0.85rem; }
  .sd-promo__desc { font-size: 0.72rem; }
  .sd-promo__tag { font-size: 0.55rem; }

  /* === HERO PICKS === */
  .sd-picks { padding: 1.25rem 0 0.75rem; }
  .sd-picks__head { padding: 0 1rem; margin-bottom: 0.75rem; }
  .sd-picks__title { font-size: 1.1rem; }
  .sd-picks__sub { font-size: 0.72rem; }
  .sd-picks__arrows { display: none; }
  .sd-pick { width: 200px; border-radius: 16px; }
  .sd-pick__img { height: 110px; }
  .sd-pick__emoji { font-size: 2.25rem; }
  .sd-pick__body { padding: 0.6rem 0.75rem; }
  .sd-pick__name { font-size: 0.82rem; }
  .sd-pick__desc { display: none; }

  /* ---- TAB-BASED CATEGORY VIEW ---- */

  /* Hide all feed sections by default; show only active */
  .sd-feed-section {
    display: none !important;
  }

  .sd-feed-section--active {
    display: block !important;
  }

  .sd-feed-section--active.sd-reveal {
    opacity: 1;
    transform: none;
  }

  /* Slide-in animation when switching tabs */
  @keyframes sdm-tab-in {
    from { opacity: 0; transform: translateX(24px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  .sd-feed-section--active {
    animation: sdm-tab-in 0.25s ease-out;
  }

  /* Hide mid-feed marquee on mobile (no sense between tabs) */
  .sd-marquee--mid {
    display: none !important;
  }

  /* Hide arrows on mobile */
  .sd-feed-section__arrows {
    display: none;
  }

  /* --- Dot indicator --- */
  .sd-feed-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem 0 0.25rem;
  }

  .sd-feed-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .sd-feed-dot--active {
    width: 22px;
    border-radius: 4px;
    background: #D62929;
  }

  /* --- Swipe hint --- */
  .sd-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0 0.75rem;
    color: rgba(0, 0, 0, 0.25);
    font-family: var(--sd-font-body, "Inter", sans-serif);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: opacity 0.5s ease;
  }

  .sd-swipe-hint--hidden {
    opacity: 0;
    pointer-events: none;
  }

  .sd-swipe-hint__arrow {
    display: inline-block;
    animation: sdm-swipe-nudge 1.8s ease-in-out infinite;
  }

  .sd-swipe-hint__arrow--left {
    animation-direction: reverse;
  }

  @keyframes sdm-swipe-nudge {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50%      { transform: translateX(5px); opacity: 1; }
  }

  /* Item count badge — visible on mobile */
  .sd-feed-section__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    min-width: 1.4em;
    padding: 0.15em 0.4em;
    background: rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.35);
    border-radius: 10px;
    vertical-align: middle;
    margin-left: 0.2rem;
    text-transform: none;
    letter-spacing: 0;
  }

  /* ---- GRID LAYOUT: 2-column grid on mobile ---- */
  .sd-feed-section .sd-carousel::before,
  .sd-feed-section .sd-carousel::after { display: none; }

  .sd-feed-section .sd-carousel__track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    padding: 0 0.75rem 0.75rem;
    overflow-x: visible;
    scroll-snap-type: none;
    cursor: auto;
  }

  /* Cards fill grid — premium mobile look */
  .sd-card {
    width: 100%;
    scroll-snap-align: none;
    border-radius: 16px;
  }

  .sd-card__img {
    height: 130px;
    border-radius: 16px 16px 0 0;
  }

  .sd-card__img::after { height: 25px; }
  .sd-card__emoji { font-size: 2.2rem; }
  .sd-card__photo { padding: 6px; }

  .sd-card__body {
    padding: 0.6rem 0.7rem 0.55rem;
  }

  .sd-card__name {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
    line-height: 1.25;
  }

  /* Show description on mobile — 2 lines */
  .sd-card__desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    font-size: 0.65rem;
    color: rgba(0,0,0,0.4);
    line-height: 1.45;
  }

  .sd-card__foot { padding-top: 0.4rem; border-top: 1px solid rgba(0,0,0,0.04); }
  .sd-card__price { font-size: 0.82rem; }

  /* Show reactions on mobile — smaller */
  .sd-card__rx { display: flex; gap: 0.15rem; }
  .sd-rx { padding: 0.2rem 0.3rem; border-radius: 8px; }
  .sd-rx__em { font-size: 0.72rem; }
  .sd-rx__n { font-size: 0.5rem; }

  /* No-photo cards — keep vertical on mobile */
  .sd-card--no-photo { width: 100%; }
  .sd-card--no-photo .sd-card__img { width: 100%; height: 80px; }
  .sd-card--no-photo .sd-card__emoji { font-size: 2rem; }
  .sd-card--no-photo .sd-card__name { font-size: 0.78rem; }

  /* Badges — sized for mobile */
  .sd-card__badge { font-size: 0.5rem; padding: 0.15rem 0.4rem; top: 0.4rem; left: 0.4rem; }
  .sd-card__badge--veg { right: 0.4rem; left: auto; font-size: 0.5rem; padding: 0.15rem 0.4rem; }
  .sd-card__spice { font-size: 0.65rem; bottom: 0.35rem; left: 0.4rem; }
  .sd-card__price-tag { font-size: 0.65rem; padding: 0.15rem 0.45rem; bottom: 0.35rem; right: 0.4rem; }

  /* Filter states — dim cards hidden on mobile grid, dim-card stays visible */
  .sd-card--dim { display: none; }
  .sd-card--dim-card { /* stays visible */ }
  .sd-feed-section--empty { display: none !important; }

  /* Touch feedback — no hover, use active */
  .sd-card:hover { transform: none; box-shadow: 0 2px 8px rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.06); }
  .sd-card:hover .sd-card__name { color: #1A1A1A; }
  .sd-card:hover .sd-card__price { transform: none; }
  .sd-card:active { transform: scale(0.97); transition-duration: 0.1s; }

  .sd-pick:hover { transform: none; box-shadow: none; }
  .sd-pick:hover .sd-pick__name { color: #1A1A1A; }
  .sd-pick:active { transform: scale(0.97); transition-duration: 0.1s; }

  /* Feast */
  .sd-feast {
    margin: 1.25rem 1rem 0;
    padding: 1.5rem 1rem;
    border-radius: 16px;
  }

  .sd-feast__title { font-size: 1.2rem; }
  .sd-feast__sub { font-size: 0.8rem; }

  .sd-feast__showcase {
    gap: 0.75rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 0.5rem 0.5rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .sd-feast__showcase::-webkit-scrollbar { display: none; }

  .sd-feast__scard {
    width: 140px;
    flex-shrink: 0;
  }

  .sd-feast__scard-img {
    width: 120px;
    height: 140px;
  }

  .sd-feast__scard-name {
    font-size: 0.8rem;
  }

  .sd-feast__scard-desc {
    font-size: 0.65rem;
  }

  .sd-feast__addon {
    font-size: 0.8rem;
    padding: 0.6rem 0.8rem;
  }

  /* === SURPRISE / FEED ME overlay === */
  .sd-surprise-overlay {
    padding: 1rem 0.75rem;
    align-items: flex-start;
    padding-top: 2.5rem;
  }

  .sd-surprise__countdown {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .sd-surprise__heading { font-size: 1.4rem; margin-bottom: 0.15rem; }
  .sd-surprise__subheading { font-size: 0.78rem; margin-bottom: 0.5rem; }
  .sd-surprise__combo-name { font-size: 1.15rem; margin-bottom: 1rem; }

  .sd-surprise__reel-img--large {
    width: 100%;
    max-width: 140px;
    height: 130px;
    margin: 0.5rem auto 0.35rem;
  }

  .sd-surprise__reels {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .sd-surprise__reel {
    max-width: 100%;
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
    flex-direction: row;
  }

  .sd-surprise__reel-icon {
    font-size: 1.5rem;
    margin-bottom: 0;
  }

  .sd-surprise__reel-label {
    margin-bottom: 0;
    font-size: 0.55rem;
  }

  .sd-surprise__reel-window {
    flex: 1;
    min-height: auto;
    justify-content: flex-start;
  }

  .sd-surprise__reel-text { font-size: 0.88rem; }

  .sd-surprise__reel-detail {
    width: 100%;
  }

  .sd-surprise__reel-detail--show {
    max-height: 160px;
  }

  .sd-surprise__reel-img {
    width: 44px;
    height: 44px;
    margin: 0.5rem auto 0.35rem;
  }

  .sd-surprise__reel-img.sd-surprise__reel-img--large {
    width: 100%;
    max-width: 140px;
    height: 130px;
    border-radius: 16px;
  }

  .sd-surprise__reel-img span { font-size: 1.2rem; }
  .sd-surprise__reel-desc { font-size: 0.65rem; }
  .sd-surprise__reel-price { font-size: 0.95rem; }

  .sd-surprise__plus {
    margin: 0.25rem 0;
    font-size: 1rem;
    width: 28px;
    height: 28px;
  }

  .sd-surprise__total-price { font-size: 1.5rem; }

  .sd-surprise__btns {
    margin-top: 1.5rem;
  }

  .sd-surprise__again,
  .sd-surprise__close {
    padding: 0.55rem 1.2rem;
    font-size: 0.8rem;
  }

  /* Peek: bottom sheet */
  .sd-peek {
    padding: 0;
    align-items: flex-end;
  }

  .sd-peek__sheet {
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    max-height: 85vh;
    overflow-y: auto;
  }

  .sd-peek__body { padding: 1.25rem; }
  .sd-peek__name { font-size: 1.15rem; }
  .sd-peek__desc { font-size: 0.82rem; }
  .sd-peek__price { font-size: 1.25rem; }

  /* CTA */
  .sd-menu-cta { padding: 3rem 0; }
  .sd-menu-cta__heading { font-size: 1.75rem; }
  .sd-menu-cta__sub { font-size: 0.9rem; }
}

/* ==========================================================
   RESPONSIVE — MID-RANGE PHONES (375–480px)
   ========================================================== */
@media (max-width: 480px) {
  /* Hero */
  .sd-menu-hero { min-height: 360px; }
  .sd-menu-hero__content { padding: 3.5rem 1.25rem 2rem; }
  .sd-menu-hero__title { font-size: clamp(2.5rem, 12vw, 3.5rem); }

  /* Neon: hide bottom signs, keep top 2 for subtle ambience */
  .sd-neon-sign--3,
  .sd-neon-sign--4 { display: none; }
  .sd-hero-cityscape { display: none; }

  /* Hero actions stack vertically */
  .sd-hero-actions { flex-direction: row; width: 100%; max-width: 280px; }
  .sd-menu-surprise { padding: 0 0.8rem; font-size: 0.78rem; height: 40px; }
  .sd-menu-mood-btn { padding: 0 0.8rem; font-size: 0.78rem; height: 40px; }
  .sd-menu-surprise,
  .sd-menu-mood-btn { width: 100%; justify-content: center; }

  /* Category nav pills — ensure touch target */
  .sd-mnav__pill { padding: 0.4rem 0.75rem; min-height: 36px; }

  /* Peek bottom sheet */
  .sd-peek__sheet { max-height: 90vh; }

  /* Mood grid */
  .sd-mood__grid { gap: 0.5rem; }
  .sd-mood__card { padding: 0.9rem 0.6rem; }

  /* Surprise overlay */
  .sd-surprise-overlay { padding: 0.75rem 0.5rem; padding-top: 2.5rem; }
  .sd-surprise__reel { padding: 0.75rem; }

  /* CTA */
  .sd-menu-cta { padding: 2.5rem 1rem; }
  .sd-menu-cta__heading { font-size: 1.5rem; }

  /* Feed sections */
  .sd-feed-section__title { font-size: 1.1rem; }
}

@media (max-width: 380px) {
  /* Hide ALL neon signs on very small screens */
  .sd-neon-sign { display: none; }
  .sd-neon-hero { width: 220px; height: 55px; }

  .sd-menu-hero { min-height: 340px; }
  .sd-menu-hero__content { padding: 3rem 1rem 1.75rem; }
  .sd-menu-hero__title { font-size: 2.5rem; }

  .sd-card__img { height: 72px; }
  .sd-card--no-photo .sd-card__img { width: 100%; height: 72px; }
  .sd-card__emoji { font-size: 1.6rem; }
  .sd-card--no-photo .sd-card__emoji { font-size: 1.8rem; }
  .sd-card__name { font-size: 0.72rem; }
  .sd-card__price { font-size: 0.75rem; }

  .sd-feed-section .sd-carousel__track {
    gap: 0.45rem;
    padding: 0 0.75rem 0.5rem;
  }

  .sd-vibe {
    padding: 0.35rem 0.6rem;
    font-size: 0.7rem;
  }

  .sd-feast__scard {
    width: 120px;
  }

  .sd-feast {
    margin: 1rem 0.75rem 0;
    padding: 1.25rem 0.75rem;
  }

  .sd-pick {
    width: 190px;
  }

  .sd-pick__img { height: 100px; }
  .sd-pick__name { font-size: 0.78rem; }

  .sd-promo {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  /* Mood rec cards */
  .sd-mood__rec { width: 130px; }
  .sd-mood__rec-img { height: 90px; }
}

/* Dot indicator + swipe hint: mobile only */
.sd-feed-dots,
.sd-swipe-hint {
  display: none;
}

/* ==========================================================
   CONTAINER FALLBACK
   ========================================================== */
.sd-container {
  max-width: var(--sd-max-width, 1200px);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}
