/* BHK Shop Wizard — premium segment (neutral base, restrained accent) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600&display=swap');

:root {
  /* Premium neutrals */
  --bhk-ink: #1a1f1c;
  --bhk-ink-soft: #2d3530;
  --bhk-muted: #6b7570;
  --bhk-muted-light: #9aa39e;
  --bhk-border: #e8ece9;
  --bhk-border-strong: #d4dbd6;
  --bhk-surface: #ffffff;
  --bhk-surface-alt: #f7f8f7;
  --bhk-surface-warm: #fafaf9;
  --bhk-gold: #b8935a;
  --bhk-gold-soft: rgba(184, 147, 90, 0.14);
  /* Brand accent — use sparingly (progress, CTA, selection) */
  --bhk-accent: #7fb82d;
  --bhk-accent-hover: #6ba324;
  --bhk-accent-muted: rgba(127, 184, 45, 0.1);
  --bhk-accent-ring: rgba(127, 184, 45, 0.16);
  --bhk-shadow: 0 22px 56px rgba(26, 31, 28, 0.07), 0 2px 10px rgba(0, 0, 0, 0.04);
  --bhk-shadow-lg: 0 28px 72px rgba(26, 31, 28, 0.1);
  --bhk-radius: 16px;
  --bhk-radius-sm: 12px;
  --bhk-gap: 1.35rem;
  /* Legacy aliases (steps 2–10 unchanged structurally) */
  --bhk-green: var(--bhk-accent);
  --bhk-green-hover: var(--bhk-accent-hover);
  --bhk-green-soft: #9dce5c;
  --bhk-green-pale: var(--bhk-border);
  --bhk-green-mist: var(--bhk-surface-alt);
  --bhk-green-tint: var(--bhk-surface-alt);
  --bhk-green-ring: var(--bhk-accent-ring);
  --bhk-green-text: var(--bhk-ink-soft);
  --bhk-green-deep: var(--bhk-ink);
  --bhk-text: var(--bhk-ink);
}

/* ── Page backdrop ── */
.shop-wrap {
  position: relative;
  background: var(--bhk-surface-warm);
  padding: 2.5rem 0 4rem;
  min-height: 55vh;
  overflow: hidden;
}

.shop-wrap::before,
.shop-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.35;
}

.shop-wrap::before {
  width: 480px;
  height: 480px;
  top: -140px;
  right: -100px;
  background: radial-gradient(circle, rgba(184, 147, 90, 0.12) 0%, transparent 70%);
}

.shop-wrap::after {
  width: 400px;
  height: 400px;
  bottom: 8%;
  left: -120px;
  background: radial-gradient(circle, rgba(26, 31, 28, 0.04) 0%, transparent 70%);
}

.shop-wrap .formcontainer {
  position: relative;
  z-index: 1;
  font-family: 'Outfit', 'DM Sans', system-ui, sans-serif;
  background: var(--bhk-surface);
  max-width: 780px;
  margin: 88px auto 0;
  padding: 0;
  border-radius: 24px;
  border: 1px solid var(--bhk-border);
  box-shadow: var(--bhk-shadow);
  overflow: hidden;
}

/* ── Header ── */
.shop-wrap .shop-wizard-head {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 8px;
  padding: 1.25rem 1.35rem 1.1rem;
  background: var(--bhk-surface);
  border-bottom: 1px solid var(--bhk-border);
}

.shop-wrap .shop-head-brand {
  text-align: center;
}

.shop-wrap .shop-brand-eyebrow {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bhk-gold);
  margin-bottom: 0.25rem;
}

.shop-wrap .shop-wizard-head h2 {
  margin: 0;
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--bhk-ink);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.shop-wrap .shop-head-spacer {
  width: 44px;
}

.shop-wrap .shop-wizard-head .bi-arrow-left {
  font-size: 1.05rem !important;
  color: var(--bhk-ink-soft) !important;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--bhk-surface-alt);
  border: 1px solid var(--bhk-border);
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: none;
}

.shop-wrap .shop-wizard-head .bi-arrow-left:hover {
  background: var(--bhk-surface);
  border-color: var(--bhk-border-strong);
  color: var(--bhk-ink) !important;
  transform: translateX(-2px);
  box-shadow: 0 4px 12px rgba(26, 31, 28, 0.06);
}

/* ── Progress panel (single bar — no dot row) ── */
.shop-wrap .shop-progress-panel {
  padding: 1rem 1.25rem 1.15rem;
  background: #fff;
  border-bottom: 1px solid var(--bhk-border);
}

.shop-wrap .shop-step-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.shop-wrap #shop-step-percent::after {
  content: " complete";
  font-weight: 500;
  color: var(--bhk-muted-light);
}

.shop-wrap #shop-step-counter {
  color: var(--bhk-ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.shop-wrap #shop-step-percent {
  color: var(--bhk-muted);
  font-weight: 600;
  font-size: 0.72rem;
  background: var(--bhk-surface-alt);
  border: 1px solid var(--bhk-border);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
}

.shop-wrap .shop-progress-track {
  height: 4px;
  margin: 0;
  background: var(--bhk-border);
  border-radius: 100px;
  overflow: hidden;
  border: none;
  box-shadow: none;
}

.shop-wrap .shop-progress-track .progress-bar {
  height: 100%;
  background: var(--bhk-accent) !important;
  border-radius: 100px;
  transition: width 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: none;
}

/* ── Step body ── */
.shop-wrap .shop-step-body {
  padding: 1.6rem 1.35rem 1.85rem;
  background: var(--bhk-surface);
}

.shop-wrap .step {
  display: none;
}

.shop-wrap .step.active {
  display: block;
  animation: shopReveal 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes shopReveal {
  from { opacity: 0; transform: translateY(14px) scale(0.992); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.shop-wrap .shop-step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--bhk-ink);
  margin: 0 0 var(--bhk-gap);
  padding: 0.75rem 0;
  background: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--bhk-border);
  line-height: 1.35;
  position: relative;
  overflow: visible;
}

.shop-wrap .shop-step-title::before {
  content: none;
}

/* ── Intro ── */
.shop-wrap .shop-intro {
  text-align: center;
  margin-bottom: var(--bhk-gap);
  padding: 0 0 1.15rem;
  background: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--bhk-border);
  position: relative;
  box-shadow: none;
}

.shop-wrap .shop-intro--after-goals {
  margin-top: clamp(2.25rem, 5.5vw, 3rem);
  padding-top: 0.35rem;
}

.shop-wrap .shop-intro--after-goals .shop-section-title--goals {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.shop-wrap .shop-intro::after {
  content: none;
}

.shop-wrap .shop-intro-title {
  font-weight: 600;
  color: var(--bhk-ink);
  font-size: 1.02rem;
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}

.shop-wrap .shop-intro-sub {
  color: var(--bhk-muted);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.55;
  max-width: 28em;
  margin-inline: auto;
  font-weight: 400;
}

.shop-wrap .shop-section-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--bhk-muted-light);
  margin: 1.65rem 0 0.85rem;
  text-align: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shop-wrap .shop-section-title--goals {
  margin: clamp(1.75rem, 4vw, 2.25rem) 0 clamp(1rem, 2.5vw, 1.25rem);
  font-family: "Outfit", "DM Sans", sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bhk-ink);
  line-height: 1.2;
  position: relative;
  padding-bottom: 0.65rem;
}

.shop-wrap .shop-section-title--goals::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 4px;
  margin: 0.55rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bhk-accent), var(--bhk-gold));
}

.shop-wrap .shop-stack > * + * {
  margin-top: var(--bhk-gap);
}

/* ── Photo cards (step 1 perks & goals) ── */
.shop-wrap .shop-visual-card {
  overflow: hidden;
  padding: 0;
  border: none;
  background: #fff;
  box-shadow: 0 2px 16px rgba(26, 31, 28, 0.06);
}

.shop-wrap .shop-visual-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bhk-surface-alt);
}

.shop-wrap .shop-visual-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(22, 26, 24, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.shop-wrap .shop-visual-card:hover .shop-visual-card__media::after,
.shop-wrap .shop-goal-card.shop-visual-card:focus-visible .shop-visual-card__media::after {
  opacity: 1;
}

.shop-wrap .shop-visual-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.shop-wrap .shop-visual-card:hover .shop-visual-card__media img,
.shop-wrap .shop-goal-card.shop-visual-card:focus-visible .shop-visual-card__media img {
  transform: scale(1.06);
}

/* ── Option tiles (goals + what we offer) ── */
.shop-wrap .shop-option-tile {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  padding: 1.35rem 1rem 1.2rem;
  margin: 0;
  border: 1px solid var(--bhk-border);
  border-radius: var(--bhk-radius);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfb 100%);
  box-shadow: 0 8px 24px rgba(26, 31, 28, 0.05);
  text-align: center;
  cursor: pointer;
  appearance: none;
  font: inherit;
  color: inherit;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  animation: shopCardUp 0.5s ease backwards;
}

.shop-wrap .shop-option-tile--perk {
  cursor: default;
  padding: 1.15rem 0.75rem 1.05rem;
  min-height: 11.5rem;
}

.shop-wrap .shop-option-tile:hover,
.shop-wrap .shop-option-tile:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(127, 184, 45, 0.45);
  box-shadow: 0 16px 34px rgba(26, 31, 28, 0.1);
  outline: none;
}

.shop-wrap .shop-option-tile--perk:hover {
  transform: translateY(-2px);
}

.shop-wrap .shop-option-tile__badge {
  width: 4.35rem;
  height: 4.35rem;
  border-radius: 1.15rem;
  display: grid;
  place-items: center;
  position: relative;
  color: #fff;
  background: linear-gradient(145deg, var(--bhk-accent) 0%, #5f9a1f 100%);
  box-shadow:
    0 10px 22px rgba(127, 184, 45, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.shop-wrap .shop-option-tile__badge::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 1.35rem;
  border: 1px solid rgba(127, 184, 45, 0.22);
  background: linear-gradient(145deg, rgba(127, 184, 45, 0.12), rgba(184, 147, 90, 0.08));
  z-index: -1;
}

.shop-wrap .shop-option-tile__badge i {
  font-size: 1.55rem;
  line-height: 1;
}

.shop-wrap .shop-option-tile--perk .shop-option-tile__badge {
  width: 3.65rem;
  height: 3.65rem;
  border-radius: 1rem;
}

.shop-wrap .shop-option-tile--perk .shop-option-tile__badge i {
  font-size: 1.3rem;
}

.shop-wrap .shop-option-tile__badge--fire {
  background: linear-gradient(145deg, #8fc73a 0%, #6aa61f 100%);
}
.shop-wrap .shop-option-tile__badge--power {
  background: linear-gradient(145deg, #7fb82d 0%, #4f8618 100%);
}
.shop-wrap .shop-option-tile__badge--life {
  background: linear-gradient(145deg, #9dce5c 0%, #6ba324 55%, #b8935a 125%);
}
.shop-wrap .shop-option-tile__badge--menu {
  background: linear-gradient(145deg, #8ec63f 0%, #679d22 100%);
}
.shop-wrap .shop-option-tile__badge--care {
  background: linear-gradient(145deg, #7fb82d 0%, #b8935a 120%);
}
.shop-wrap .shop-option-tile__badge--tailor {
  background: linear-gradient(145deg, #6ba324 0%, #7fb82d 60%, #a8d45a 140%);
}
.shop-wrap .shop-option-tile__badge--delivery {
  background: linear-gradient(145deg, #7fb82d 0%, #567f1d 100%);
}

.shop-wrap .shop-option-tile__title {
  display: block;
  font-family: "Outfit", "DM Sans", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--bhk-ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.shop-wrap .shop-option-tile--perk .shop-option-tile__title {
  font-size: 0.88rem;
  font-weight: 600;
}

.shop-wrap .shop-option-tile__hint {
  display: block;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--bhk-muted);
  max-width: 14em;
}

.shop-wrap .shop-goals-grid > div:nth-child(1) .shop-option-tile { animation-delay: 0.05s; }
.shop-wrap .shop-goals-grid > div:nth-child(2) .shop-option-tile { animation-delay: 0.1s; }
.shop-wrap .shop-goals-grid > div:nth-child(3) .shop-option-tile { animation-delay: 0.15s; }
.shop-wrap .shop-perks-grid > div:nth-child(1) .shop-option-tile { animation-delay: 0.08s; }
.shop-wrap .shop-perks-grid > div:nth-child(2) .shop-option-tile { animation-delay: 0.12s; }
.shop-wrap .shop-perks-grid > div:nth-child(3) .shop-option-tile { animation-delay: 0.16s; }
.shop-wrap .shop-perks-grid > div:nth-child(4) .shop-option-tile { animation-delay: 0.2s; }

/* ── Perk cards ── */
.shop-wrap .shop-perk-card {
  height: 100%;
  min-height: 0;
  border: 1px solid var(--bhk-border);
  border-radius: var(--bhk-radius-sm);
  background: #fff;
  box-shadow: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s;
  animation: shopCardUp 0.5s ease backwards;
}

.shop-wrap .shop-perk-card.shop-visual-card {
  border: 1px solid var(--bhk-border);
}

.shop-wrap .shop-perks-grid > div:nth-child(1) .shop-perk-card { animation-delay: 0.05s; }
.shop-wrap .shop-perks-grid > div:nth-child(2) .shop-perk-card { animation-delay: 0.1s; }
.shop-wrap .shop-perks-grid > div:nth-child(3) .shop-perk-card { animation-delay: 0.15s; }
.shop-wrap .shop-perks-grid > div:nth-child(4) .shop-perk-card { animation-delay: 0.2s; }

@keyframes shopCardUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.shop-wrap .shop-perk-card:hover {
  transform: translateY(-4px);
  border-color: var(--bhk-border-strong);
  box-shadow: 0 12px 28px rgba(26, 31, 28, 0.08);
}

.shop-wrap .shop-perk-card .card-body,
.shop-wrap .shop-goal-card.shop-visual-card .card-body {
  padding: 0.7rem 0.5rem 0.8rem;
  background: var(--bhk-surface);
  border-top: 1px solid var(--bhk-border);
}

.shop-wrap .shop-perk-card .card-title {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--bhk-ink-soft);
  line-height: 1.35;
  margin: 0;
  letter-spacing: 0.01em;
}

/* ── Goal cards ── */
.shop-wrap .shop-goal-card {
  min-height: 0;
  height: 100%;
  border: 1.5px solid var(--bhk-border);
  border-radius: var(--bhk-radius);
  background: #fff !important;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.28s cubic-bezier(0.34, 1.2, 0.64, 1);
  animation: shopCardUp 0.5s ease backwards;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.shop-wrap .shop-goal-card.shop-visual-card:focus-visible {
  outline: 2px solid var(--bhk-ink-soft);
  outline-offset: 2px;
}

.shop-wrap .shop-goal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(26, 31, 28, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.28s;
}

.shop-wrap .shop-goals-grid > div:nth-child(1) .shop-goal-card { animation-delay: 0.08s; }
.shop-wrap .shop-goals-grid > div:nth-child(2) .shop-goal-card { animation-delay: 0.13s; }
.shop-wrap .shop-goals-grid > div:nth-child(3) .shop-goal-card { animation-delay: 0.18s; }
.shop-wrap .shop-goals-grid > div:nth-child(4) .shop-goal-card { animation-delay: 0.23s; }

.shop-wrap .shop-goal-card:hover {
  transform: translateY(-4px);
  border-color: var(--bhk-border-strong);
  box-shadow: 0 14px 32px rgba(26, 31, 28, 0.09);
}

.shop-wrap .shop-goal-card:hover::before {
  opacity: 1;
}

.shop-wrap .shop-goal-card:active {
  transform: scale(0.98);
}

.shop-wrap .shop-goal-card p {
  color: var(--bhk-ink) !important;
  text-align: center;
  font-weight: 600;
  font-size: 0.82rem;
  margin: 0;
  position: relative;
  z-index: 1;
  letter-spacing: 0.02em;
}

/* ── Gender ── */
.shop-wrap .shop-gender-card {
  min-height: 58px;
  border: 1.5px solid var(--bhk-border);
  border-radius: var(--bhk-radius);
  background: #fff !important;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
  padding: 1rem 1.5rem;
  gap: 12px;
}

.shop-wrap .shop-gender-card:hover {
  transform: translateY(-2px);
  border-color: var(--bhk-border-strong);
  background: var(--bhk-surface-alt) !important;
  box-shadow: 0 8px 20px rgba(26, 31, 28, 0.06);
}

.shop-wrap .shop-gender-card i {
  font-size: 1.1rem;
  color: var(--bhk-ink) !important;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bhk-surface-alt);
  border-radius: 10px;
  border: 1px solid var(--bhk-border);
  box-shadow: none;
}

.shop-wrap .shop-gender-card p {
  color: var(--bhk-ink) !important;
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ── Diet rows ── */
.shop-wrap .shop-diet-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.shop-wrap .dietcontainer {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: var(--bhk-radius-sm);
  background: #fff;
  border: 1.5px solid var(--bhk-border);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.025);
  cursor: pointer;
  transition: all 0.22s ease;
  position: relative;
}

.shop-wrap .dietcontainer::after {
  content: "";
  position: absolute;
  right: 16px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--bhk-muted-light);
  border-top: 2px solid var(--bhk-muted-light);
  transform: rotate(45deg);
  transition: transform 0.22s, border-color 0.22s;
}

.shop-wrap .dietcontainer:hover {
  border-color: var(--bhk-border-strong);
  background: var(--bhk-surface-alt);
  transform: translateX(3px);
  box-shadow: 0 6px 18px rgba(26, 31, 28, 0.05);
  padding-left: 18px;
}

.shop-wrap .dietcontainer:hover::after {
  border-color: var(--bhk-ink-soft);
  transform: rotate(45deg) translate(2px, -2px);
}

.shop-wrap .dietcontainer img {
  width: 44px !important;
  height: 44px;
  object-fit: contain;
  margin-right: 14px !important;
  padding: 8px;
  background: var(--bhk-surface-alt);
  border-radius: 10px;
  border: 1px solid var(--bhk-border);
  flex-shrink: 0;
}

.shop-wrap .dietcontainer i {
  width: 44px;
  height: 44px;
  margin-right: 14px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem !important;
  color: var(--bhk-ink-soft);
  background: var(--bhk-surface-alt);
  border-radius: 10px;
  border: 1px solid var(--bhk-border);
  flex-shrink: 0;
  box-shadow: none;
}

.shop-wrap .dietcontainer p {
  margin: 0;
  padding-right: 1.25rem;
  font-weight: 600;
  color: var(--bhk-text);
  font-size: 0.92rem;
}

/* ── Meal chips ── */
.shop-wrap .meal-check-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 576px) {
  .shop-wrap .meal-check-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.shop-wrap .meal-check-row .form-check {
  margin: 0;
  padding: 0;
  position: relative;
}

.shop-wrap .meal-check-row .form-check-input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
  z-index: 2;
  margin: 0;
}

.shop-wrap .meal-check-row .form-check-label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 10px 6px;
  margin: 0;
  border-radius: var(--bhk-radius-sm);
  background: #fff;
  border: 1.5px solid var(--bhk-border);
  color: var(--bhk-muted) !important;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.22s ease;
  width: 100%;
}

.shop-wrap .meal-check-row .form-check.highlight .form-check-label,
.shop-wrap .meal-check-row .form-check-input:checked + .form-check-label {
  background: var(--bhk-ink);
  border-color: var(--bhk-ink);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(26, 31, 28, 0.12);
  transform: translateY(-1px);
}

.shop-wrap .highlight {
  background: transparent !important;
  border-color: transparent !important;
}

/* ── Forms ── */
.shop-wrap .form-control,
.shop-wrap .form-select {
  border: 1px solid var(--bhk-border);
  border-radius: var(--bhk-radius-sm);
  padding: 12px 15px;
  background: var(--bhk-surface);
  font-size: 0.94rem;
  font-family: inherit;
  transition: all 0.2s ease;
  float: none !important;
  width: 100%;
  margin-bottom: 0 !important;
  height: auto;
  min-height: 48px;
  line-height: 1.4;
}

.shop-wrap .form-control:focus,
.shop-wrap .form-select:focus {
  border-color: var(--bhk-border-strong);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 31, 28, 0.06);
  outline: none;
}

.shop-wrap .form-label {
  font-weight: 600;
  color: var(--bhk-ink-soft);
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
}

.shop-wrap .shop-field-gap > * + * {
  margin-top: 12px;
}

/* ── Buttons ── */
.shop-wrap .btn-primary {
  background: var(--bhk-ink);
  border: none;
  border-radius: var(--bhk-radius-sm);
  padding: 14px 24px;
  font-weight: 600;
  font-size: 0.94rem;
  font-family: inherit;
  width: 100%;
  margin-top: var(--bhk-gap);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26, 31, 28, 0.12);
  transition: all 0.22s ease;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

.shop-wrap .btn-primary::after {
  content: "→";
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.22s ease;
}

.shop-wrap .btn-primary:hover {
  background: var(--bhk-ink-soft);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(26, 31, 28, 0.14);
  color: #fff;
}

.shop-wrap #order-payment {
  background: var(--bhk-accent) !important;
  color: #fff !important;
  border: none;
  border-radius: var(--bhk-radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px !important;
  margin-top: var(--bhk-gap);
  box-shadow: 0 6px 20px var(--bhk-accent-ring);
  letter-spacing: 0.02em;
}

.shop-wrap #order-payment::after {
  content: none;
}

.shop-wrap .btn-primary:hover::after {
  transform: translateX(4px);
}

.shop-wrap #order-payment:hover {
  background: var(--bhk-accent-hover) !important;
  transform: translateY(-1px);
}

.shop-wrap #pay-now-btn {
  background: linear-gradient(135deg, #4895ef, #4361ee) !important;
  color: #fff !important;
  border: none;
  border-radius: var(--bhk-radius-sm);
  font-weight: 600;
  padding: 14px !important;
  box-shadow: 0 6px 20px rgba(67, 97, 238, 0.25);
}

/* ── Price card ── */
.shop-wrap .shop-price-card {
  border-radius: var(--bhk-radius);
  border: none;
  background: #fff;
  position: relative;
  overflow: hidden;
  animation: shopCardUp 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.shop-wrap .shop-price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--bhk-border), var(--bhk-gold-soft), var(--bhk-border));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.shop-wrap .shop-price-card .card-header {
  background: var(--bhk-surface-alt) !important;
  color: var(--bhk-ink) !important;
  font-weight: 600;
  font-size: 0.85rem;
  border: none !important;
  border-bottom: 1px solid var(--bhk-border) !important;
  padding: 0.8rem 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shop-wrap .shop-price-card #plan-amount {
  color: var(--bhk-ink) !important;
  font-weight: 700 !important;
  font-size: 1.15rem !important;
  margin-top: 0.6rem;
  padding-top: 0.65rem;
  border-top: 1px dashed var(--bhk-border) !important;
}

.shop-wrap .shop-price-card .card-body p {
  font-size: 0.85rem;
  color: var(--bhk-muted);
  margin-bottom: 0.25rem;
}

/* ── Sample menu (compact, collapsible) ── */
.shop-wrap .sample-menu-details {
  margin: 0;
  border: none;
}

.shop-wrap .sample-menu-summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bhk-ink-soft);
  padding: 0.5rem 0.65rem;
  margin-bottom: 0.35rem;
  background: var(--bhk-surface-alt);
  border: 1px solid var(--bhk-border);
  border-radius: var(--bhk-radius-sm);
  user-select: none;
}

.shop-wrap .sample-menu-summary::before {
  content: "▸ ";
  color: var(--bhk-gold);
  font-size: 0.75rem;
}

.shop-wrap .sample-menu-summary::-webkit-details-marker {
  display: none;
}

.shop-wrap .sample-menu-details[open] .sample-menu-summary::before {
  content: "▾ ";
}

.shop-wrap .sample-menu-module {
  border: 1px solid var(--bhk-border);
  border-radius: var(--bhk-radius-sm);
  background: #fff;
  padding: 0.5rem 0.65rem;
  max-height: min(200px, 38vh);
  height: auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  animation: none;
  box-shadow: none;
}

.shop-wrap .sample-menu-module::-webkit-scrollbar {
  width: 4px;
}

.shop-wrap .sample-menu-module::-webkit-scrollbar-thumb {
  background: var(--bhk-border-strong);
  border-radius: 10px;
}

.shop-wrap .sample-menu-category-header {
  background: var(--bhk-surface-alt) !important;
  color: var(--bhk-ink-soft) !important;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 8px;
  border-bottom: 1px solid var(--bhk-border);
}

.shop-wrap .sample-menu-intro {
  font-size: 0.78rem;
  color: var(--bhk-muted);
  margin-bottom: 6px;
  line-height: 1.35;
}

.shop-wrap .sample-menu-category {
  border: 1px solid var(--bhk-border);
  border-radius: 8px;
  margin-bottom: 5px;
  overflow: hidden;
}

.shop-wrap .sample-menu-list {
  padding: 4px 8px 6px 18px;
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.35;
}

.shop-wrap .sample-menu-list li {
  margin-bottom: 2px;
}

.shop-wrap .sample-menu-empty {
  color: var(--bhk-muted);
  font-style: italic;
  text-align: center;
  padding: 0.65rem 0.35rem;
  font-size: 0.8rem;
  margin: 0;
}

.shop-wrap .sample-menu-note {
  font-size: 0.7rem;
  color: #94a3b8;
  margin-top: 4px;
  margin-bottom: 0;
  line-height: 1.3;
}

/* Step 6: tighter spacing so Next stays visible */
.shop-wrap #step-6 .shop-stack {
  gap: 0;
}

.shop-wrap #step-6 .shop-stack > * + * {
  margin-top: 0.85rem;
}

.shop-wrap #step-6 .shop-price-card .card-body {
  padding: 0.75rem 1rem;
}

.shop-wrap #step-6 .shop-price-card .card-body p {
  margin-bottom: 0.15rem;
  font-size: 0.82rem;
}

.shop-wrap #step-6 .shop-price-card .card-header {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

/* ── Summary / checkout ── */
.shop-wrap #step-10 .row {
  --bs-gutter-y: 1.25rem;
}

.shop-wrap #step-10 .table {
  border-radius: var(--bhk-radius-sm);
  overflow: hidden;
  border: 1px solid var(--bhk-border);
  margin: 0;
}

.shop-wrap #step-10 .table td {
  padding: 11px 14px;
  font-size: 0.88rem;
  border-color: var(--bhk-border);
}

.shop-wrap #step-10 .table tr:last-child td {
  background: var(--bhk-surface-alt);
  font-weight: 700;
  color: var(--bhk-ink);
  font-size: 0.95rem;
}

.shop-wrap #summary-list li {
  padding: 10px 14px;
  margin-bottom: 7px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--bhk-border);
  border-left: 3px solid var(--bhk-gold);
  font-size: 0.85rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
  animation: shopCardUp 0.35s ease backwards;
}

.shop-wrap #order-saved-banner {
  border-radius: var(--bhk-radius-sm);
  border: 1px solid var(--bhk-border);
  background: var(--bhk-surface-alt);
  color: var(--bhk-ink-soft);
  font-size: 0.85rem;
}

/* ── Switch ── */
.shop-wrap .switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
}

.shop-wrap .switch input { opacity: 0; width: 0; height: 0; }

.shop-wrap .slider {
  position: absolute;
  inset: 0;
  background: #d4dbd6;
  transition: 0.25s;
  border-radius: 34px;
}

.shop-wrap .slider:before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.25s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.shop-wrap .switch input:checked + .slider {
  background: var(--bhk-accent);
}

.shop-wrap .switch input:checked + .slider:before {
  transform: translateX(22px);
}

.shop-wrap #customplan { display: none; }
.shop-wrap .selected { background-color: #fffbeb !important; }

@media (max-width: 768px) {
  .shop-wrap .formcontainer {
    margin: 76px 8px 0;
    border-radius: 22px;
  }

  .shop-wrap .shop-step-body {
    padding: 1.25rem 1rem 1.5rem;
  }

  .shop-wrap .shop-visual-card__media {
    aspect-ratio: 1 / 1;
  }

  .shop-wrap .shop-perk-card .card-title,
  .shop-wrap .shop-goal-card p {
    font-size: 0.72rem;
  }

}

/* Shop page: clearer active nav link */
body:has(.shop-wrap) header#pq-header .pq-bottom-header .navbar .navbar-nav > li.current-menu-item > a {
  color: var(--bhk-ink) !important;
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .shop-wrap .step.active,
  .shop-wrap .shop-perk-card,
  .shop-wrap .shop-goal-card,
  .shop-wrap .sample-menu-module,
  .shop-wrap #summary-list li {
    animation: none;
  }

  .shop-wrap .shop-perk-card:hover,
  .shop-wrap .shop-goal-card:hover,
  .shop-wrap .dietcontainer:hover,
  .shop-wrap .shop-gender-card:hover,
  .shop-wrap .btn-primary:hover {
    transform: none;
  }
}
