/* =============================================================================
   CardSnacks — Gift Cards Mega-Menu — Design Variants
   Desktop-only static showcase. Plain white page, 30 stacked menu concepts.

   Structure of this file:
     1. Brand fonts (@font-face)
     2. Design tokens (:root)
     3. Page shell (white bg, min-width 1200px, variant labels)
     4. Panel base (shared mega-menu anatomy used by every variant)
     5. Columns, gift rows, thumbnails, categories, CardSnacks Cash card
     6. Shared hover/interaction states
     7. Variant themes (.v01 … .v30) — each only overrides what differs

   NOTE FOR CODEX / NEXT EDITOR:
     - All variants share ONE markup template (built in index.html).
       A variant is just a theme class on `.variant` + a CSS block below.
     - To add variant 11: push one entry to the VARIANTS array in index.html
       and add a `.v11 { … }` block in section 7. Nothing else needs to change.
     - Hard rules from the brief, do not break:
         * NO horizontal divider lines anywhere (rows/sections/headings).
         * Vertical separators only (border-left between columns).
         * Every thumbnail + the Cash promo card stay aspect-ratio: 3 / 2.
         * Never stretch/squash logos — use object-fit: contain on real <img>.
============================================================================= */

/* 1. BRAND FONTS ----------------------------------------------------------- */

/* Primary purchased brand face: "WienerNext".
   The genuine WienerNext files are NOT in this repo yet. Drop the real
   purchased woff2 files into /fonts using the names below and they activate
   automatically (they take priority over the AvenirNext fallback). */
@font-face {
  font-family: "WienerNext";
  src: url("fonts/WienerNext-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "WienerNext";
  src: url("fonts/WienerNext-Medium.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "WienerNext";
  src: url("fonts/WienerNext-DemiBold.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "WienerNext";
  src: url("fonts/WienerNext-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

/* Real CardSnacks brand face currently shipping in the product (AvenirNext).
   These files ARE present in /fonts and act as the live brand fallback until
   the genuine WienerNext files above are supplied. */
@font-face {
  font-family: "AvenirNext";
  src: url("fonts/AvenirNext-Regular.otf") format("opentype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "AvenirNext";
  src: url("fonts/AvenirNext-Medium.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "AvenirNext";
  src: url("fonts/AvenirNext-DemiBold.woff") format("woff");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "AvenirNext";
  src: url("fonts/AvenirNext-Bold.woff") format("woff");
  font-weight: 700; font-style: normal; font-display: swap;
}

/* 2. DESIGN TOKENS --------------------------------------------------------- */
:root {
  /* brand stack: WienerNext first, real AvenirNext brand face as fallback */
  --font: "WienerNext", "AvenirNext", "Avenir Next", Arial, sans-serif;

  /* brand mint (source of truth = #20B2A4 from CardSnacks app) */
  --mint:       #20B2A4;
  --mint-600:   #1B9E91;
  --mint-700:   #13857A;
  --mint-deep:  #0F6E66;
  --mint-100:   #DDF5F1;   /* soft fill */
  --mint-050:   #ECFBF9;   /* pale mint hover */
  --mint-tint:  #F4FBFA;   /* barely-there column tint */

  /* neutrals */
  --ink:    #3F3F3F;       /* primary text */
  --navy:   #1F2D3D;       /* premium heading */
  --muted:  #707F80;       /* secondary text / headings */
  --faint:  #9AA7A7;       /* tertiary / chevrons */
  --line:   #E8EDED;       /* vertical divider */
  --line-2: #EFF3F3;

  /* accents from brand palette (used sparingly) */
  --coral:  #EB5757;
  --peach-tint: #FFF7F2;

  /* surfaces */
  --bg-soft: #F7FAFA;
  --bg-card: #FFFFFF;

  /* radii */
  --r-xl: 22px;
  --r-lg: 16px;
  --r-md: 12px;
  --r-sm: 8px;

  /* shadows */
  --shadow-panel: 0 22px 60px -28px rgba(31,45,61,.30), 0 3px 10px rgba(31,45,61,.05);
  --shadow-cash:  0 14px 30px -12px rgba(20,140,128,.55);
  --shadow-tile:  0 1px 2px rgba(16,40,38,.10), inset 0 0 0 1px rgba(255,255,255,.18);

  --ease: cubic-bezier(.2,.7,.3,1);
  --t: 180ms;
}

/* 3. PAGE SHELL ------------------------------------------------------------ */
* { box-sizing: border-box; }

html {
  min-height: 100%;
  background: #fff;
}

body {
  margin: 0;
  min-width: 1200px;           /* desktop-only */
  min-height: 100vh;
  background: #ffffff;
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page { width: 100%; max-width: none; margin: 0; padding: 56px 0 120px; }
.page__back {
  display: block;
  width: max-content;
  margin: 0 auto 22px;
  color: var(--mint-deep);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.page__back:hover { color: var(--mint); }

.page__head { margin: 0 0 12px; padding: 0 40px; display: flex; align-items: center; justify-content: center; gap: 16px; }
.page__logo { height: 34px; width: auto; display: block; }
.page__title { margin: 0; font-size: 20px; font-weight: 700; color: var(--navy); letter-spacing: 0; }
.page__sub {
  margin: 6px auto 0; max-width: 840px; padding: 0 40px;
  color: var(--muted); font-size: 14px; text-align: center;
}
.page__rule { /* purely a spacer, NOT a divider line */ height: 40px; }

/* one variant block = label + framed preview area */
.variant { margin: 0 0 80px; }
.variant:last-child { margin-bottom: 0; }

.variant__head {
  width: 1168px; max-width: calc(100vw - 32px);
  display: flex; align-items: baseline; gap: 14px;
  margin: 0 auto 18px;
}
.variant__num {
  font-size: 13px; font-weight: 700; letter-spacing: .14em;
  color: var(--mint-700); text-transform: uppercase;
}
.variant__name { font-size: 17px; font-weight: 700; color: var(--navy); }
.variant__desc { font-size: 13.5px; color: var(--faint); }

/* the soft stage each panel floats on (kept very light so the white page reads) */
.variant__stage {
  width: 100vw;
  min-width: 1200px;
  margin-left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #FBFDFD 0%, #F6FAFA 100%);
  padding: 40px max(16px, calc((100vw - 1168px) / 2));
  display: flex;
  justify-content: center;
}

/* 3b. HOMEPAGE PROTOTYPE -------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.home {
  position: relative;
  width: 100%;
  min-height: 1420px;
  padding: 0 0 84px;
  background: #fff;
  overflow-x: hidden;
}

.home-header {
  position: relative;
  z-index: 20;
  width: 100%;
  height: 88px;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(2px);
}

.home-header__inner {
  width: min(1280px, calc(100vw - 180px));
  min-width: 1040px;
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: 180px;
  text-decoration: none;
}
.home-logo__word {
  display: block;
  color: var(--mint);
  font-family: var(--font);
  font-size: 28px;
  font-weight: 700;
  line-height: .95;
  letter-spacing: 0;
}
.home-logo__business {
  display: block;
  margin-top: 2px;
  padding-left: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.home-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
}
.home-nav__item {
  display: flex;
  align-items: center;
  height: 100%;
}
.home-nav__item::after {
  content: "";
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  height: 36px;
  display: none;
}
.home-nav__item:hover::after,
.home-nav__item:focus-within::after { display: block; }
.home-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 88px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--t) var(--ease);
}
.home-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 21px;
  height: 2px;
  border-radius: 999px;
  background: var(--mint);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.home-nav__item:hover > .home-nav__link,
.home-nav__item:focus-within > .home-nav__link,
.home-nav__link:hover { color: var(--ink); }
.home-nav__item:hover > .home-nav__link::after,
.home-nav__item:focus-within > .home-nav__link::after { opacity: 1; }

.home-hero {
  position: relative;
  width: 100%;
  padding-top: 36px;
  text-align: center;
}
.home-hero h1 {
  margin: 0 auto;
  max-width: 860px;
  color: var(--ink);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}
.home-hero__sub {
  margin: 10px auto 0;
  max-width: 1040px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
}
.home-hero__image {
  position: relative;
  width: min(1440px, calc(100vw - 178px));
  min-width: 1040px;
  height: 355px;
  margin: 32px auto 0;
  overflow: hidden;
  border-radius: 32px;
}
.home-hero__image > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero__headline {
  position: absolute;
  left: 50%;
  top: 70px;
  width: 820px;
  max-width: calc(100% - 80px);
  transform: translateX(-50%);
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-shadow: 0 0 16px rgba(0,0,0,.08);
}

.home-search {
  position: absolute;
  left: 50%;
  top: 157px;
  width: 790px;
  height: 60px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  border: 1px solid rgba(63,63,63,.22);
  border-radius: 999px;
  background: #fff;
}
.home-search input {
  flex: 1;
  min-width: 0;
  height: 100%;
  padding: 0 20px 0 32px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: 500 20px/1.4 var(--font);
}
.home-search input::placeholder { color: rgba(63,63,63,.67); opacity: 1; }
.home-search button {
  width: 44px;
  height: 44px;
  margin-right: 8px;
  border: 0;
  border-radius: 50%;
  background: var(--mint);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t) var(--ease);
}
.home-search button:hover { background: var(--mint-600); }
.home-search svg { width: 24px; height: 24px; }

.home-scroll-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: -28px auto 52px;
  position: relative;
  z-index: 1;
}
.home-scroll-dots span {
  width: 40px;
  height: 8px;
  border-radius: 999px;
  background: #B6E4E6;
}
.home-scroll-dots .is-active { background: var(--mint); }

.home-chips {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 0 auto;
}
.home-chips a {
  min-height: 48px;
  padding: 15px 24px 13px;
  border: 1px solid #CED4DA;
  border-radius: 999px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: color var(--t) var(--ease), background var(--t) var(--ease);
}
.home-chips a:hover {
  color: var(--mint-deep);
  background: var(--mint-050);
}

.home-easy {
  margin: 72px auto 0;
  width: min(1040px, calc(100vw - 240px));
  min-width: 880px;
  text-align: center;
}
.home-easy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
}
.home-easy > p {
  margin: 10px auto 0;
  max-width: 980px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
}
.home-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  margin: 56px auto 0;
  max-width: 760px;
}
.home-features article {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.home-features img {
  display: block;
  width: 168px;
  height: 162px;
  object-fit: contain;
}
.home-features p {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}
.home-designs-link {
  display: block;
  width: max-content;
  margin: 92px auto 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-position: from-font;
}
.home-designs-link:hover { color: var(--mint-deep); }

.home-mega {
  --mega-border: #B6E4E6;
  --mega-shadow: 0 12px 24px -18px rgba(31,45,61,.42), 0 3px 8px rgba(31,45,61,.16);
  --mega-caret-left: 50%;
  position: fixed;
  left: 50%;
  top: 92px;
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity var(--t) var(--ease), visibility var(--t) var(--ease);
}
.home-nav__item:hover .home-mega,
.home-nav__item:focus-within .home-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.home-mega__caret {
  position: absolute;
  top: -9px;
  left: var(--mega-caret-left);
  width: 18px;
  height: 18px;
  margin-left: -9px;
  background: #fff;
  border: 1px solid var(--mega-border);
  border-color: var(--mega-border) transparent transparent var(--mega-border);
  border-radius: 3px;
  transform: rotate(45deg);
  box-shadow: -4px -4px 9px -7px rgba(31,45,61,.46);
  z-index: 2;
}
.home-mega--ecards {
  width: min(1400px, calc(100vw - 32px));
  top: 96px;
  --mega-caret-left: calc(50% + 125px);
}
.home-mega--ecards .home-mega__caret {
  top: -8px;
  border: 0;
  border-radius: 5px;
  box-shadow: -3px -3px 7px -4px rgba(31,45,61,.18);
}
.home-mega--gifts {
  width: 1168px;
  top: 96px;
  --mega-caret-left: calc(50% + 213px);
}
.home-mega--gifts .home-mega__caret {
  top: -8px;
  border: 0;
  border-radius: 5px;
  box-shadow: -3px -3px 7px -4px rgba(31,45,61,.18);
}
.home-gifts-v32 .panel {
  margin: 0;
  max-width: none;
}
.home-gifts-v32 .panel__caret {
  display: none;
}

.mega-ecards,
.mega-gift {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--mega-border);
  border-radius: 12px;
  box-shadow: var(--mega-shadow);
}
.mega-ecards {
  display: grid;
  grid-template-columns:
    minmax(188px, 1.25fr)
    minmax(118px, .84fr)
    minmax(118px, .84fr)
    minmax(126px, .9fr)
    minmax(126px, .9fr)
    minmax(140px, 1fr)
    minmax(148px, 1.06fr)
    minmax(178px, 1.24fr);
  gap: 0;
  align-items: stretch;
  border: 0;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-panel);
  padding: 28px 12px 30px;
}
.mega-ecards__col,
.mega-ecards__cards {
  min-width: 0;
  padding: 4px 14px;
}
.mega-ecards__col {
  display: flex;
  flex-direction: column;
}
.mega-ecards__col + .mega-ecards__col,
.mega-ecards__cards { border-left: 1px solid var(--line); }
.mega-ecards h3,
.mega-gift h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .10em;
  text-transform: uppercase;
  white-space: nowrap;
}
.mega-ecards ul,
.mega-gift ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mega-ecards li + li { margin-top: 6px; }
.mega-ecards a,
.mega-gift a {
  color: var(--ink);
  text-decoration: none;
  transition: text-decoration-color var(--t) var(--ease);
}
.mega-ecards li > a {
  display: block;
  min-height: 32px;
  padding: 3px 0;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.2;
}
.mega-ecards li > a:hover,
.mega-gift a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.mega-ecards__holiday a {
  display: grid;
  gap: 4px;
}
.mega-ecards__holiday strong,
.mega-ecards__holiday span { display: block; }
.mega-ecards__holiday strong {
  color: var(--mint);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1;
}
.mega-ecards__holiday span {
  color: var(--ink);
}
.mega-more {
  display: inline-block;
  width: max-content;
  margin-top: auto;
  color: #5E686A;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.1;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.mega-more:hover {
  color: #5E686A;
}
.mega-ecards__cards {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ecard-carousel {
  position: relative;
  width: 154px;
}
.ecard-carousel input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.ecard-carousel__viewport {
  position: relative;
  width: 154px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: #B6E4E6;
}
.ecard-carousel__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}
.ecard-carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#ecard-day-1:checked ~ .ecard-carousel__viewport .ecard-carousel__slide--1,
#ecard-day-2:checked ~ .ecard-carousel__viewport .ecard-carousel__slide--2,
#ecard-day-3:checked ~ .ecard-carousel__viewport .ecard-carousel__slide--3,
#ecard-day-4:checked ~ .ecard-carousel__viewport .ecard-carousel__slide--4,
#ecard-day-5:checked ~ .ecard-carousel__viewport .ecard-carousel__slide--5 {
  opacity: 1;
  pointer-events: auto;
}
.ecard-dots {
  display: flex;
  gap: 8px;
  align-self: center;
  justify-content: center;
  margin-top: 14px;
}
.ecard-dots label {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #D8F1EF;
  cursor: pointer;
}
#ecard-day-1:checked ~ .ecard-dots .ecard-dot--1,
#ecard-day-2:checked ~ .ecard-dots .ecard-dot--2,
#ecard-day-3:checked ~ .ecard-dots .ecard-dot--3,
#ecard-day-4:checked ~ .ecard-dots .ecard-dot--4,
#ecard-day-5:checked ~ .ecard-dots .ecard-dot--5 { background: var(--mint); }

.mega-gift {
  display: grid;
  grid-template-columns:
    minmax(220px, 1.12fr)
    minmax(210px, 1.05fr)
    minmax(232px, 1.22fr)
    minmax(228px, 1.16fr);
  align-items: start;
  border: 0;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-panel);
  padding: 28px 12px 30px;
}
.mega-gift__col {
  min-width: 0;
  padding: 4px 22px;
}
.mega-gift__col + .mega-gift__col { border-left: 1px solid #E8EDED; }
.mega-gift__col h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .10em;
}
.mega-gift__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mega-gift__row {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
  padding: 3px 4px;
  border-radius: 8px;
}
.mega-gift__row .thumb {
  width: 28px;
  box-shadow: none;
}
.mega-gift__row .thumb--img img {
  filter: none;
}
.mega-gift__row span:not(.thumb) {
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.2;
}
.mega-gift__row:hover { background: transparent; }
.mega-gift__row:hover span:not(.thumb) { color: var(--mint-deep); }
.mega-gift__catgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
}
.mega-gift__catgrid li + li { margin-top: 4px; }
.mega-gift__catgrid a {
  display: block;
  padding: 4px 6px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.2;
}
.mega-gift__catgrid a:hover {
  background: transparent;
}
.mega-gift__cash-img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-cash);
}
.mega-gift__cash p {
  margin: 16px 4px 0;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.55;
}

/* 4. PANEL BASE ------------------------------------------------------------ */
.panel {
  position: relative;
  width: 1168px;
  max-width: calc(100vw - 32px);
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-panel);
  padding: 34px 14px 38px;
}

/* decorative up-caret (vertical pointer, never a horizontal rule) */
.panel__caret {
  position: absolute; top: -8px; left: 120px;
  width: 18px; height: 18px; background: var(--bg-card);
  transform: rotate(45deg); border-radius: 5px;
  box-shadow: -3px -3px 7px -4px rgba(31,45,61,.18);
}

.panel__grid {
  display: grid;
  grid-template-columns:
    minmax(220px, 1.12fr)
    minmax(210px, 1.05fr)
    minmax(232px, 1.22fr)
    minmax(228px, 1.16fr);
  align-items: start;
}

/* 5. COLUMNS / CONTENT ----------------------------------------------------- */
.col { padding: 4px 30px; min-width: 0; }
/* vertical separators between major sections (the ONLY structural lines) */
.col + .col { border-left: 1px solid var(--line); }

.col__title {
  display: flex; align-items: center; gap: 8px;
  margin: 0 0 18px; padding: 0;
  font-size: 13px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
}
.col__emoji { display: none; font-size: 15px; line-height: 1; }   /* shown only in playful theme */

/* --- gift rows (Popular Gifts + Fathers Day) --- */
.giftlist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.gift {
  display: flex; align-items: center; gap: 12px;
  padding: 6px 8px; border-radius: var(--r-md);
  text-decoration: none; color: inherit; cursor: pointer;
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
}
.thumb {
  flex: 0 0 auto; width: 48px; aspect-ratio: 3 / 2;     /* 3:2 landscape, never distorted */
  border-radius: 4px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 2px 3px; text-align: center;
  font-size: 8px; font-weight: 700; letter-spacing: .03em;
  line-height: 1.05; color: #fff; white-space: pre-line;
  box-shadow: var(--shadow-tile);
}
/* Real gift-card artwork tile: transparent box so the card's own rounded corners
   show; a soft drop-shadow hugs the card shape (not a rectangle). 3:2, undistorted. */
.thumb--img { background: none; box-shadow: none; padding: 0; }
.thumb--img img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  border-radius: 4px;
  filter: drop-shadow(0 1px 2px rgba(16,40,38,.20));
}

.gift__name { font-size: 14.5px; font-weight: 500; color: var(--ink); line-height: 1.25; }
.gift__chev { display: none; margin-left: auto; width: 15px; height: 15px; color: var(--faint); flex: 0 0 auto;
  opacity: 0; transition: opacity var(--t) var(--ease), color var(--t) var(--ease); }

/* --- categories (two text columns) --- */
.cats { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; }
.cats__col { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 3px; }
.cat {
  display: flex; align-items: center; gap: 9px;
  padding: 5px 9px; border-radius: 9px;
  font-size: 14.5px; color: var(--ink); text-decoration: none; cursor: pointer;
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
}
.cat__icon { display: none; width: 16px; height: 16px; color: var(--mint); flex: 0 0 auto; }
.cat__icon svg { width: 100%; height: 100%; display: block; }
.cat__label { min-width: 0; }
.cat__chev { display: none; margin-left: auto; width: 14px; height: 14px; color: var(--faint); flex: 0 0 auto; }
.cat__chev svg { width: 100%; height: 100%; display: block; }

/* --- CardSnacks Cash --- */
.cashcard {
  position: relative; aspect-ratio: 3 / 2;            /* 3:2 promo card */
  border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(140deg, #43C4B9 0%, #29A99C 52%, #1B8B80 100%);
  box-shadow: var(--shadow-cash);
  color: #fff; padding: 20px 22px;
  display: flex; flex-direction: column; justify-content: center;
}
.cashcard::after { /* soft sheen, not a line */
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 12% 0%, rgba(255,255,255,.28), transparent 55%);
  pointer-events: none;
}
.cashcard__badge {
  position: absolute; top: 14px; right: 14px;
  width: 30px; height: 30px; border-radius: 9px;
  background: rgba(255,255,255,.92); color: var(--mint-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; box-shadow: 0 2px 6px rgba(0,0,0,.12);
}
.cashcard__title { font-size: 22px; font-weight: 700; letter-spacing: 0; position: relative; }
.cashcard__sub { margin-top: 5px; font-size: 12.5px; opacity: .92; position: relative; }

/* Real CardSnacks Cash artwork (replaces the CSS-built promo card above).
   The image already contains the title/subtitle/$ badge, so no text overlay. */
.cashcard--img {
  background: none; box-shadow: none; padding: 0;
  aspect-ratio: auto; overflow: visible; display: block;
}
.cashcard--img::after { display: none; }
.cashcard--img img {
  display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: contain;
  border-radius: var(--r-lg); box-shadow: var(--shadow-cash);
}

.cash__para { margin: 16px 4px 0; font-size: 13px; line-height: 1.55; color: var(--muted); }
.cash__cta {
  display: none;            /* shown only in cash-focused theme */
  margin: 16px 4px 0; padding: 11px 16px;
  background: var(--mint); color: #fff; font-size: 13.5px; font-weight: 600;
  border-radius: 10px; text-align: center; text-decoration: none; cursor: pointer;
  box-shadow: 0 8px 18px -8px rgba(20,140,128,.7);
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
}
.cash__cta:hover { background: var(--mint-600); }

/* 6. SHARED HOVER STATES --------------------------------------------------- */
.gift:hover { background: var(--mint-050); }
.gift:hover .gift__name { color: var(--mint-deep); }
.cat:hover { color: var(--mint-700); background: var(--mint-050); }

/* =============================================================================
   7. VARIANT THEMES
   Each block overrides ONLY what makes that concept distinct.
============================================================================= */

/* --- V01 — Minimal Clean : balanced baseline, thin vertical dividers ------ */
.v01 .panel { padding: 36px 16px 40px; }
/* (baseline uses the shared rules as-is) */

/* --- V02 — Soft Inner Panels : each section in a quiet rounded card -------- */
.v02 .panel { background: #FCFDFD; padding: 26px 18px; }
.v02 .col { padding: 22px 20px; margin: 0 7px; background: #fff; border-radius: var(--r-lg);
  box-shadow: 0 4px 14px -10px rgba(31,45,61,.25), inset 0 0 0 1px #EEF3F3; }
.v02 .col + .col { border-left: none; }     /* separation comes from the cards */
.v02 .cashcard { box-shadow: var(--shadow-cash); }

/* --- V03 — Icon Categories : small teal line icons on every category ------ */
.v03 .cat__icon { display: inline-flex; }
.v03 .cat { gap: 10px; }
.v03 .col__title { color: var(--mint-700); }

/* --- V04 — Hover Highlight (Mint) : pale mint rounded selection ----------- */
.v04 .gift:first-child { background: var(--mint-050); }       /* pre-highlighted sample */
.v04 .cat {
  padding: 6px 8px;
  border-radius: var(--r-md);
  font-weight: 500;
}
.v04 .cats__col { gap: 12px; }
.v04 .gift:hover { background: var(--mint-100); }
.v04 .cat:hover { background: var(--mint-100); color: var(--mint-deep); }

/* --- V05 — Chevrons : subtle right chevrons, no row lines ----------------- */
.v05 .cat__chev { display: inline-flex; opacity: .7; }
.v05 .gift__chev { display: inline-flex; opacity: .7; }
.v05 .cat:hover .cat__chev { color: var(--mint); }

/* --- V06 — Premium Navy : stronger hierarchy, restrained accent ----------- */
.v06 .variant__stage { background: linear-gradient(180deg, #FAFBFC 0%, #F4F6F8 100%); }
.v06 .panel { box-shadow: 0 30px 70px -30px rgba(20,30,45,.4), 0 3px 12px rgba(20,30,45,.06); padding: 40px 18px 44px; }
.v06 .col__title { color: var(--navy); font-size: 12.5px; letter-spacing: .14em; }
.v06 .gift__name { font-weight: 600; color: var(--navy); }
.v06 .cat { color: #38424E; font-weight: 500; }
.v06 .cat:hover { color: var(--mint-deep); }
.v06 .cashcard { background: linear-gradient(140deg, #21314A 0%, #16775F 120%); }
.v06 .cashcard__badge { background: var(--mint); color: #fff; }

/* --- V07 — Soft Tint : ultra-light pastel section backgrounds ------------- */
.v07 .panel { padding: 24px 16px; }
.v07 .col + .col { border-left: none; }
.v07 .col { margin: 0 6px; border-radius: var(--r-lg); padding: 22px 20px; }
.v07 .col--gifts   { background: var(--mint-tint); }
.v07 .col--fathers { background: var(--peach-tint); }
.v07 .col--cats    { background: #F6FAFF; }
.v07 .col--cash    { background: #F3FBF9; }
.v07 .gift:hover,
.v07 .cat:hover { background: transparent; color: var(--mint-deep); }
.v07 .gift:hover .gift__name { color: var(--mint-deep); }

/* --- V08 — Playful CardSnacks : heading doodles, rounder tiles ------------ */
.v08 .col__emoji {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: transparent;
  font-size: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.v08 .col:nth-child(1) .col__emoji { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2320B2A4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 12v8H4v-8'/%3E%3Cpath d='M2 7h20v5H2z'/%3E%3Cpath d='M12 7v13'/%3E%3Cpath d='M12 7H7.5a2.5 2.5 0 1 1 2-4c1 1.3 2.5 4 2.5 4Z'/%3E%3Cpath d='M12 7h4.5a2.5 2.5 0 1 0-2-4c-1 1.3-2.5 4-2.5 4Z'/%3E%3C/svg%3E"); }
.v08 .col:nth-child(2) .col__emoji { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2320B2A4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 4h10l2 5-4 2v9H9v-9L5 9l2-5Z'/%3E%3Cpath d='M10 4a2 2 0 0 0 4 0'/%3E%3C/svg%3E"); }
.v08 .col:nth-child(3) .col__emoji { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2320B2A4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='6' height='6' rx='1.5'/%3E%3Crect x='14' y='4' width='6' height='6' rx='1.5'/%3E%3Crect x='4' y='14' width='6' height='6' rx='1.5'/%3E%3Crect x='14' y='14' width='6' height='6' rx='1.5'/%3E%3C/svg%3E"); }
.v08 .col:nth-child(4) .col__emoji { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2320B2A4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='7' width='16' height='10' rx='2'/%3E%3Ccircle cx='12' cy='12' r='2.5'/%3E%3Cpath d='M7 12h.01M17 12h.01'/%3E%3C/svg%3E"); }
.v08 .col__title { color: var(--navy); letter-spacing: .06em; }
.v08 .gift { border-radius: 14px; }
.v08 .gift:hover { background: var(--mint-050); }
.v08 .cat { border-radius: 999px; }
.v08 .cat:hover { background: var(--mint-100); }
.v08 .cashcard { border-radius: 20px; }

/* --- V09 — Compact Grid : tighter, systematic, implementation-ready ------- */
.v09 .panel { padding: 24px 8px 26px; }
.v09 .col { padding: 2px 20px; }
.v09 .col__title { margin-bottom: 12px; font-size: 12px; }
.v09 .giftlist { gap: 7px; }
.v09 .gift { padding: 4px 6px; gap: 10px; border-radius: 9px; }
.v09 .thumb { width: 40px; }
.v09 .gift__name { font-size: 13.5px; }
.v09 .cats { gap: 2px 12px; }
.v09 .cat { padding: 3px 7px; font-size: 13.5px; }
.v09 .cash__para { font-size: 12.5px; margin-top: 12px; }

/* --- V10 — Cash-Focused : wider, stronger promo card + CTA ---------------- */
.v10 .panel__grid {
  grid-template-columns:
    minmax(210px, 1fr)
    minmax(200px, .96fr)
    minmax(220px, 1.08fr)
    minmax(300px, 1.5fr);
}
.v10 .col--cash { padding-left: 34px; }
.v10 .cashcard { box-shadow: 0 22px 44px -16px rgba(20,140,128,.65); }
.v10 .cashcard__title { font-size: 26px; }
.v10 .cashcard__sub { font-size: 13.5px; }
.v10 .cash__cta { display: block; width: 190px; max-width: 100%; margin-left: auto; margin-right: auto; border-radius: 999px; }
.v10 .cash__para { font-size: 13.5px; }
.v10 .gift:hover,
.v10 .cat:hover { background: transparent; color: var(--mint-deep); }
.v10 .gift:hover .gift__name { color: var(--mint-deep); }

/* --- V11 — Glass Mist : frosted white with a quiet mint cast -------------- */
.v11 .variant__stage { background: linear-gradient(180deg, #F8FEFD 0%, #EEF8F7 100%); }
.v11 .panel {
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 76px -34px rgba(19,133,122,.42), inset 0 0 0 1px rgba(255,255,255,.78);
}
.v11 .panel__caret { background: rgba(255,255,255,.78); }
.v11 .col + .col { border-left-color: rgba(32,178,164,.20); }
.v11 .gift:hover, .v11 .cat:hover { background: rgba(221,245,241,.70); }

/* --- V12 — Left Accent Rail : slim brand rail anchoring the dropdown ------- */
.v12 .panel { padding-left: 14px; overflow: visible; }
.v12 .panel::before {
  display: none;
}
.v12 .panel__caret { left: 128px; }
.v12 .col__title {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: var(--navy);
}
.v12 .col__title::before {
  content: "";
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: var(--mint);
}
.v12 .cat:hover { background: var(--mint-050); }

/* --- V13 — Two-Tone Bands : alternating pale vertical columns ------------- */
.v13 .panel { padding: 16px; border-radius: 32px; }
.v13 .panel__grid { gap: 16px; }
.v13 .col { padding: 24px 20px; border-radius: 16px; }
.v13 .col:nth-child(1) { background: #E6FAF7; }
.v13 .col:nth-child(2) { background: #FFF0E8; }
.v13 .col:nth-child(3) { background: #EAF2FF; }
.v13 .col:nth-child(4) { background: #EAF8EF; }
.v13 .col + .col { border-left: none; }
.v13 .col__title { color: #586869; }
.v13 .cashcard--img img { box-shadow: 0 16px 30px -16px rgba(20,140,128,.55); }

/* --- V14 — Outlined Tiles : crisp logo trays instead of filled cards ------- */
.v14 .thumb--img {
  padding: 4px;
  background: #fff;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px #DDE6E6, 0 3px 10px -8px rgba(31,45,61,.22);
}
.v14 .thumb--img img { filter: none; }
.v14 .col__title { color: var(--mint-deep); }

/* --- V15 — Kicker Dots : tiny heading markers with no underlines ---------- */
.v15 .col__title::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 0;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  box-shadow: none;
  flex: 0 0 auto;
}
.v15 .col:nth-child(1) .col__title::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2320B2A4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 12v8H4v-8'/%3E%3Cpath d='M2 7h20v5H2z'/%3E%3Cpath d='M12 7v13'/%3E%3Cpath d='M12 7H7.5a2.5 2.5 0 1 1 2-4c1 1.3 2.5 4 2.5 4Z'/%3E%3Cpath d='M12 7h4.5a2.5 2.5 0 1 0-2-4c-1 1.3-2.5 4-2.5 4Z'/%3E%3C/svg%3E"); }
.v15 .col:nth-child(2) .col__title::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2320B2A4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 4h10l2 5-4 2v9H9v-9L5 9l2-5Z'/%3E%3Cpath d='M10 4a2 2 0 0 0 4 0'/%3E%3C/svg%3E"); }
.v15 .col:nth-child(3) .col__title::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2320B2A4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='6' height='6' rx='1.5'/%3E%3Crect x='14' y='4' width='6' height='6' rx='1.5'/%3E%3Crect x='4' y='14' width='6' height='6' rx='1.5'/%3E%3Crect x='14' y='14' width='6' height='6' rx='1.5'/%3E%3C/svg%3E"); }
.v15 .col:nth-child(4) .col__title::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2320B2A4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='7' width='16' height='10' rx='2'/%3E%3Ccircle cx='12' cy='12' r='2.5'/%3E%3Cpath d='M7 12h.01M17 12h.01'/%3E%3C/svg%3E"); }
.v15 .col__title { gap: 12px; color: var(--navy); letter-spacing: .10em; }
.v15 .gift { padding-left: 0; }
.v15 .cat { padding-left: 0; }
.v15 .gift:hover, .v15 .cat:hover { background: transparent; color: var(--mint-deep); }

/* --- V16 — Logo Gallery : gifts become compact 2-up galleries ------------- */
.v16 .panel__grid {
  grid-template-columns:
    minmax(238px, 1.08fr)
    minmax(238px, 1.08fr)
    minmax(232px, 1.05fr)
    minmax(228px, 1fr);
}
.v16 .col { padding: 4px 22px; }
.v16 .giftlist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.v16 .gift {
  min-height: 82px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 6px;
  padding: 8px;
  background: #FBFDFD;
  border-radius: 12px;
}
.v16 .thumb { width: 100%; }
.v16 .gift__name { font-size: 11.5px; line-height: 1.15; font-weight: 600; }
.v16 .gift:hover { background: var(--mint-050); }
.v16 .cats__col { gap: 4px; }

/* --- V17 — Quiet Luxe : airy, lighter dividers, restrained premium type ---- */
.v17 .panel { padding: 44px 20px 48px; box-shadow: 0 34px 80px -42px rgba(31,45,61,.38); }
.v17 .col { padding: 0 34px; }
.v17 .col + .col { border-left-color: #F1F4F4; }
.v17 .col__title {
  margin-bottom: 22px;
  color: #7A8788;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .16em;
}
.v17 .giftlist { gap: 14px; }
.v17 .gift { padding: 4px 0; }
.v17 .gift:hover, .v17 .cat:hover { background: transparent; }
.v17 .gift__name, .v17 .cat { font-weight: 400; }

/* --- V18 — Mint Labels : soft heading labels over neutral body ------------ */
.v18 .col__title {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--mint-deep);
  background: var(--mint-050);
  letter-spacing: .06em;
}
.v18 .panel { padding: 28px 14px 32px; }
.v18 .panel__grid {
  grid-template-columns:
    minmax(238px, 1.08fr)
    minmax(238px, 1.08fr)
    minmax(232px, 1.05fr)
    minmax(228px, 1fr);
}
.v18 .col { padding: 4px 22px; }
.v18 .giftlist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.v18 .gift {
  min-height: 92px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  padding: 9px;
  background: #fff;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px var(--mint-100);
}
.v18 .thumb { width: 100%; }
.v18 .gift__name { font-size: 11.5px; line-height: 1.15; font-weight: 600; text-align: center; }
.v18 .gift:hover { background: var(--mint-050); }
.v18 .cat:hover { background: var(--mint-050); }
.v18 .cashcard--img img { box-shadow: 0 14px 26px -16px rgba(20,140,128,.58); }

/* --- V19 — Chip Categories : categories as bordered rounded chips --------- */
.v19 .cats { gap: 8px 10px; }
.v19 .cats__col { gap: 8px; }
.v19 .cat {
  justify-content: center;
  min-height: 31px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #E2EAEA;
  font-size: 13.5px;
}
.v19 .cat:hover {
  color: var(--mint-deep);
  background: var(--mint-050);
}
.v19 .col--cats { padding-left: 24px; padding-right: 24px; }
.v19 .col__title { color: var(--navy); }

/* --- V20 — Editorial Feature : Popular Gifts leads wider ------------------ */
.v20 .panel__grid {
  grid-template-columns:
    minmax(224px, 1.04fr)
    minmax(224px, 1.04fr)
    minmax(252px, 1.16fr)
    minmax(236px, 1.06fr);
}
.v20 .col--gifts { padding-left: 24px; padding-right: 24px; }
.v20 .col--gifts .gift { gap: 12px; padding: 7px 8px; }
.v20 .col--gifts .thumb { width: 54px; }
.v20 .col--gifts .gift__name { font-size: 14.5px; font-weight: 600; }
.v20 .col__title { color: var(--mint-deep); }

/* --- V21 — App Directory : dense rows with affordance --------------------- */
.v21 .panel { padding: 28px 12px 30px; }
.v21 .col { padding: 4px 24px; }
.v21 .col--cats { padding-left: 18px; padding-right: 18px; }
.v21 .cats { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 4px 8px; }
.v21 .cat__icon { display: inline-flex; }
.v21 .cat__chev, .v21 .gift__chev { display: none; }
.v21 .cat__icon { width: 14px; height: 14px; }
.v21 .cat__label { flex: 1 1 auto; }
.v21 .gift, .v21 .cat {
  background: transparent;
  box-shadow: none;
}
.v21 .cat { min-width: 0; width: 100%; }
.v21 .giftlist { gap: 8px; }
.v21 .cats__col { gap: 7px; }
.v21 .gift:hover, .v21 .cat:hover { background: var(--mint-050); }

/* --- V22 — Numbered Sections : small ordered badges ----------------------- */
.v22 .panel__grid { counter-reset: menu-section; }
.v22 .col { counter-increment: menu-section; padding-left: 24px; }
.v22 .col__title::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 11px;
  background-color: var(--mint-050);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0;
}
.v22 .col:nth-child(1) .col__title::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2320B2A4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 12v8H4v-8'/%3E%3Cpath d='M2 7h20v5H2z'/%3E%3Cpath d='M12 7v13'/%3E%3Cpath d='M12 7H7.5a2.5 2.5 0 1 1 2-4c1 1.3 2.5 4 2.5 4Z'/%3E%3Cpath d='M12 7h4.5a2.5 2.5 0 1 0-2-4c-1 1.3-2.5 4-2.5 4Z'/%3E%3C/svg%3E"); }
.v22 .col:nth-child(2) .col__title::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2320B2A4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 4h10l2 5-4 2v9H9v-9L5 9l2-5Z'/%3E%3Cpath d='M10 4a2 2 0 0 0 4 0'/%3E%3C/svg%3E"); }
.v22 .col:nth-child(3) .col__title::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2320B2A4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='6' height='6' rx='1.5'/%3E%3Crect x='14' y='4' width='6' height='6' rx='1.5'/%3E%3Crect x='4' y='14' width='6' height='6' rx='1.5'/%3E%3Crect x='14' y='14' width='6' height='6' rx='1.5'/%3E%3C/svg%3E"); }
.v22 .col:nth-child(4) .col__title::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2320B2A4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='7' width='16' height='10' rx='2'/%3E%3Ccircle cx='12' cy='12' r='2.5'/%3E%3Cpath d='M7 12h.01M17 12h.01'/%3E%3C/svg%3E"); }
.v22 .col__title { color: var(--navy); gap: 11px; }
.v22 .gift:hover { background: var(--mint-050); }
.v22 .cat:hover { background: var(--mint-050); }

/* --- V23 — Cash Studio : mint-tinted cash workspace ----------------------- */
.v23 .panel__grid {
  grid-template-columns:
    minmax(210px, 1fr)
    minmax(200px, .96fr)
    minmax(220px, 1.08fr)
    minmax(252px, 1.12fr);
}
.v23 .col--cash {
  margin: 0;
  padding: 18px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, #F0FCFA 0%, #FFFFFF 100%);
  box-shadow: inset 0 0 0 1px rgba(32,178,164,.16);
}
.v23 .col--cash .col__title { color: var(--mint-deep); }
.v23 .cashcard--img img { box-shadow: 0 24px 44px -18px rgba(20,140,128,.62); }
.v23 .cash__cta { display: block; width: 190px; max-width: 100%; margin-left: auto; margin-right: auto; border-radius: 999px; }

/* --- V24 — Bento Calm : rounded content surfaces -------------------------- */
.v24 .panel { background: #fff; padding: 22px; }
.v24 .panel__grid { gap: 12px; }
.v24 .col {
  min-height: 100%;
  padding: 20px 18px;
  border-radius: 16px;
  background: #FBFDFD;
  box-shadow: inset 0 0 0 1px #E8F0F0;
}
.v24 .col + .col { border-left: none; }
.v24 .col__title { color: var(--navy); }
.v24 .gift:hover, .v24 .cat:hover { background: #F5FBFA; }

/* --- V25 — Floating Sheets : layered white cards -------------------------- */
.v25 .panel { background: #fff; padding: 18px; box-shadow: var(--shadow-panel); }
.v25 .panel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "popular cats"
    "fathers cash";
  gap: 16px;
  align-items: stretch;
  min-height: 650px;
}
.v25 .col {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: inset 0 0 0 1px #E8F0F0;
}
.v25 .col + .col { border-left: none; margin-left: 0; }
.v25 .col:nth-child(1) { grid-area: popular; background: #F3FBF9; }
.v25 .col:nth-child(2) { grid-area: fathers; background: #FFF8F4; }
.v25 .col:nth-child(3) { grid-area: cats; background: #FBFDFD; }
.v25 .col:nth-child(4) { grid-area: cash; background: #F4FBFA; }
.v25 .giftlist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 12px; }
.v25 .gift { padding: 6px; align-items: center; }
.v25 .thumb { width: 54px; }
.v25 .gift__name { font-size: 12.5px; }
.v25 .cats { gap: 5px 18px; }
.v25 .cat { min-height: 28px; }
.v25 .cashcard--img { max-width: 330px; margin-left: auto; margin-right: auto; }
.v25 .gift:hover, .v25 .cat:hover { background: var(--mint-050); }

/* --- V26 — Soft Press : tactile pressed-card treatment -------------------- */
.v26 .variant__stage { background: linear-gradient(180deg, #FBFDFD 0%, #F6FAFA 100%); }
.v26 .panel {
  background: #fff;
  padding: 28px 14px 32px;
  box-shadow: var(--shadow-panel);
}
.v26 .panel__grid {
  grid-template-columns:
    minmax(238px, 1.08fr)
    minmax(238px, 1.08fr)
    minmax(232px, 1.05fr)
    minmax(228px, 1fr);
}
.v26 .gift, .v26 .cat {
  box-shadow: none;
}
.v26 .giftlist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.v26 .gift {
  min-height: 92px;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 9px;
  border-radius: 14px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #E8F0F0;
}
.v26 .thumb { width: 100%; }
.v26 .gift__name { font-size: 11.5px; line-height: 1.15; font-weight: 600; text-align: center; }
.v26 .cat {
  background: transparent;
}
.v26 .gift:hover, .v26 .cat:hover {
  background: var(--mint-050);
}
.v26 .col__title { color: #637173; }

/* --- V27 — Brand Wall : gift artwork becomes the hero --------------------- */
.v27 .panel__grid {
  grid-template-columns:
    minmax(246px, 1.10fr)
    minmax(246px, 1.10fr)
    minmax(224px, 1fr)
    minmax(228px, 1fr);
}
.v27 .giftlist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.v27 .gift {
  flex-direction: column;
  align-items: stretch;
  gap: 7px;
  padding: 0;
  background: transparent;
}
.v27 .thumb { width: 100%; }
.v27 .gift__name { min-height: 30px; font-size: 12px; text-align: center; line-height: 1.18; }
.v27 .gift:hover { background: transparent; }
.v27 .gift:hover .gift__name { color: var(--mint-deep); }
.v27 .cat { font-size: 13.5px; }
.v27 .cat:hover { background: transparent; color: var(--mint-deep); }

/* --- V28 — Concierge Links : icons and elegant chevrons ------------------- */
.v28 .cat__icon { display: inline-flex; }
.v28 .cat__chev, .v28 .gift__chev { display: none; }
.v28 .col--cats { padding-left: 18px; padding-right: 18px; }
.v28 .cats { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 4px 8px; }
.v28 .cat__icon { width: 14px; height: 14px; }
.v28 .cat__label { flex: 1 1 auto; }
.v28 .col__title { color: var(--navy); }
.v28 .cat {
  min-width: 0;
  width: 100%;
  padding: 6px 8px;
  background: #fff;
}
.v28 .cat:hover {
  color: var(--mint-deep);
  background: var(--mint-050);
}

/* --- V29 — Cash Rail : vertical rail and stronger CTA --------------------- */
.v29 .panel__grid {
  grid-template-columns:
    minmax(220px, 1fr)
    minmax(220px, 1fr)
    minmax(252px, 1.14fr)
    minmax(252px, 1.14fr);
}
.v29 .col { padding: 4px 24px; }
.v29 .col--cash { position: relative; padding-left: 24px; }
.v29 .col--cash::before {
  display: none;
}
.v29 .gift { padding: 7px 8px; }
.v29 .thumb { width: 54px; }
.v29 .cash__cta { display: block; width: 190px; max-width: 100%; margin-left: auto; margin-right: auto; border-radius: 999px; }
.v29 .cash__para { color: #536263; }
.v29 .cashcard--img img { box-shadow: 0 20px 38px -16px rgba(20,140,128,.62); }

/* --- V30 — Launch Candidate : polished synthesis -------------------------- */
.v30 .panel__grid {
  grid-template-columns:
    minmax(214px, .96fr)
    minmax(214px, .96fr)
    minmax(304px, 1.34fr)
    minmax(246px, 1.08fr);
}
.v30 .panel {
  padding: 32px 14px 36px;
  box-shadow: 0 24px 64px -30px rgba(31,45,61,.34), 0 2px 8px rgba(31,45,61,.05);
}
.v30 .col__title { color: var(--navy); font-size: 12.5px; letter-spacing: .11em; }
.v30 .cat__icon { display: inline-flex; }
.v30 .cat__chev { display: none; }
.v30 .gift__chev { display: none; }
.v30 .col--gifts { padding-left: 24px; padding-right: 24px; }
.v30 .col--cats { padding-left: 28px; padding-right: 28px; }
.v30 .gift { padding: 7px 8px; }
.v30 .thumb { width: 54px; }
.v30 .cat {
  padding: 6px 8px;
  background: transparent;
}
.v30 .cat__icon { width: 18px; height: 18px; overflow: visible; }
.v30 .cat__icon svg { overflow: visible; }
.v30 .cats { gap: 5px 14px; }
.v30 .cat:hover {
  background: transparent;
  color: var(--mint-deep);
}
.v30 .gift:hover { background: transparent; }
.v30 .gift:hover .gift__name { color: var(--mint-deep); }
.v30 .cash__cta { display: block; }
.v30 .cash__cta { border-radius: 999px; }
.v30 .cashcard--img img { box-shadow: 0 18px 34px -15px rgba(20,140,128,.58); }

/* --- V31-V40 — reduced-brand-image and text-only explorations ------------ */
:is(.v31,.v32,.v33,.v34,.v35,.v36,.v37,.v38,.v39,.v40) .col__title {
  gap: 11px;
  color: var(--navy);
  letter-spacing: .10em;
}
:is(.v34,.v35,.v36,.v37,.v38,.v39,.v40) .col__title::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 8px;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  box-shadow: inset 0 0 0 1px rgba(32,178,164,.24), 0 3px 10px -8px rgba(31,45,61,.26);
}
:is(.v34,.v35,.v36,.v37,.v38,.v39,.v40) .col:nth-child(1) .col__title::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2320B2A4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 12v8H4v-8'/%3E%3Cpath d='M2 7h20v5H2z'/%3E%3Cpath d='M12 7v13'/%3E%3Cpath d='M12 7H7.5a2.5 2.5 0 1 1 2-4c1 1.3 2.5 4 2.5 4Z'/%3E%3Cpath d='M12 7h4.5a2.5 2.5 0 1 0-2-4c-1 1.3-2.5 4-2.5 4Z'/%3E%3C/svg%3E"); }
:is(.v34,.v35,.v36,.v37,.v38,.v39,.v40) .col:nth-child(2) .col__title::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2320B2A4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 4h10l2 5-4 2v9H9v-9L5 9l2-5Z'/%3E%3Cpath d='M10 4a2 2 0 0 0 4 0'/%3E%3C/svg%3E"); }
:is(.v34,.v35,.v36,.v37,.v38,.v39,.v40) .col:nth-child(3) .col__title::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2320B2A4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='6' height='6' rx='1.5'/%3E%3Crect x='14' y='4' width='6' height='6' rx='1.5'/%3E%3Crect x='4' y='14' width='6' height='6' rx='1.5'/%3E%3Crect x='14' y='14' width='6' height='6' rx='1.5'/%3E%3C/svg%3E"); }
:is(.v34,.v35,.v36,.v37,.v38,.v39,.v40) .col:nth-child(4) .col__title::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2320B2A4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='7' width='16' height='10' rx='2'/%3E%3Ccircle cx='12' cy='12' r='2.5'/%3E%3Cpath d='M7 12h.01M17 12h.01'/%3E%3C/svg%3E"); }
:is(.v31,.v32,.v33,.v34,.v35,.v36,.v37,.v38,.v39,.v40) .gift:hover,
:is(.v31,.v32,.v33,.v34,.v35,.v36,.v37,.v38,.v39,.v40) .cat:hover {
  color: var(--mint-deep);
  background: transparent;
}
:is(.v31,.v32,.v33,.v34,.v35,.v36,.v37,.v38,.v39,.v40) .gift:hover .gift__name {
  color: var(--mint-deep);
}

/* --- V31 — Mini Logo List : reduced brand artwork, balanced rows ---------- */
.v31 .panel__grid {
  grid-template-columns:
    minmax(218px, 1fr)
    minmax(218px, 1fr)
    minmax(272px, 1.24fr)
    minmax(250px, 1.14fr);
}
.v31 .giftlist { gap: 10px; }
.v31 .gift { gap: 10px; padding: 5px 4px; }
.v31 .thumb { width: 34px; }
.v31 .gift__name { font-size: 14.5px; font-weight: 600; }
.v31 .cat { padding-left: 4px; }
.v31 .cash__cta { display: block; border-radius: 999px; }

/* --- V32 — Micro Catalog : very small logos, compact scan rhythm ---------- */
.v32 .panel { padding: 28px 12px 30px; }
.v32 .col { padding-left: 22px; padding-right: 22px; }
.v32 .giftlist { gap: 6px; }
.v32 .gift {
  min-height: 32px;
  gap: 9px;
  padding: 3px 4px;
}
.v32 .thumb { width: 28px; }
.v32 .gift__name { font-size: 13.5px; line-height: 1.2; }
.v32 .cats__col { gap: 4px; }
.v32 .cat { font-size: 13.5px; padding: 4px 6px; }
.v32 .cash__para { font-size: 12.5px; }
.home-gifts-v32 .gift:hover,
.home-gifts-v32 .cat:hover {
  color: var(--ink);
  background: transparent;
}
.home-gifts-v32 .gift:hover .gift__name,
.home-gifts-v32 .cat:hover .cat__label {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

/* --- V33 — Label-Led : text first, small images as secondary cues --------- */
.v33 .panel { background: #FCFDFD; }
.v33 .panel__grid {
  grid-template-columns:
    minmax(216px, .98fr)
    minmax(216px, .98fr)
    minmax(286px, 1.3fr)
    minmax(252px, 1.14fr);
}
.v33 .gift {
  min-height: 38px;
  gap: 10px;
  padding: 5px 4px;
  background: transparent;
  box-shadow: none;
}
.v33 .giftlist { gap: 8px; }
.v33 .thumb { width: 34px; order: 0; margin: 0; }
.v33 .giftlist li:nth-child(even) .thumb { order: 2; margin-left: auto; }
.v33 .giftlist li:nth-child(even) .gift__name { order: 1; }
.v33 .gift__name,
.v33 .cat {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}
.v33 .cat__icon { display: inline-flex; width: 14px; height: 14px; }
.v33 .cat { gap: 8px; padding: 4px 6px; }
.v33 .cat:hover { color: var(--mint-deep); background: var(--mint-050); }

/* --- V34 — Small Card Gallery : 2-up cards with smaller art --------------- */
.v34 .panel__grid {
  grid-template-columns:
    minmax(244px, 1.08fr)
    minmax(244px, 1.08fr)
    minmax(232px, 1.02fr)
    minmax(232px, 1fr);
}
.v34 .col { padding-left: 22px; padding-right: 22px; }
.v34 .giftlist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.v34 .gift {
  min-height: 72px;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 9px 7px;
  background: #FBFDFD;
  box-shadow: inset 0 0 0 1px #ECF2F2;
}
.v34 .thumb { width: 44px; }
.v34 .gift__name { font-size: 11.5px; line-height: 1.15; font-weight: 600; text-align: center; }
.v34 .gift:hover { background: var(--mint-050); }

/* --- V35 — Slim Editorial : smallest brand images, roomier discovery ------ */
.v35 .panel__grid {
  grid-template-columns:
    minmax(196px, .9fr)
    minmax(196px, .9fr)
    minmax(318px, 1.42fr)
    minmax(266px, 1.18fr);
}
.v35 .col--gifts { padding-left: 24px; padding-right: 20px; }
.v35 .col--cats { padding-left: 30px; padding-right: 30px; }
.v35 .giftlist { gap: 9px; }
.v35 .gift { gap: 9px; padding: 5px 0; }
.v35 .thumb { width: 30px; }
.v35 .col__title::before {
  width: 24px;
  height: 24px;
  border-radius: 0;
  background-color: transparent;
  background-size: 22px 22px;
  box-shadow: none;
}
.v35 .col:nth-child(2) .col__title::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2320B2A4' d='M12 12.4c-1.3-2.2-3.1-3.2-5.2-3.2-2.6 0-4.7 1.7-4.7 3.8 0 1.8 1.6 3.2 3.8 3.2 2.3 0 4.4-1.2 6.1-3.8Zm0 0c1.7 2.6 3.8 3.8 6.1 3.8 2.2 0 3.8-1.4 3.8-3.2 0-2.1-2.1-3.8-4.7-3.8-2.1 0-3.9 1-5.2 3.2Z'/%3E%3C/svg%3E"); }
.v35 .gift__name,
.v35 .cat {
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.25;
}
.v35 .cat__icon { display: inline-flex; width: 14px; height: 14px; }
.v35 .cat { gap: 8px; padding: 4px 0; }
.v35 .cats { gap: 5px 20px; }
.v35 .cashcard--img img { box-shadow: 0 18px 34px -16px rgba(20,140,128,.55); }

/* --- V36-V40 — text-only gift columns, Cash remains visual ---------------- */
:is(.v36,.v37,.v38,.v39,.v40) .col--gifts .thumb {
  display: none;
}
:is(.v36,.v37,.v38,.v39,.v40) .gift {
  gap: 0;
}
:is(.v36,.v37,.v38,.v39,.v40) .gift__name {
  font-weight: 600;
}

/* --- V36 — Text Index : pure text rows with a tiny brand marker ----------- */
.v36 .panel__grid {
  grid-template-columns:
    minmax(196px, .86fr)
    minmax(196px, .86fr)
    minmax(330px, 1.46fr)
    minmax(252px, 1.1fr);
}
.v36 .col--cats { padding-left: 30px; padding-right: 30px; }
.v36 .gift {
  min-height: 30px;
  padding: 4px 0;
}
.v36 .gift::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 11px;
  border-radius: 50%;
  background: var(--mint);
  flex: 0 0 auto;
}
.v36 .gift__name { font-size: 14.5px; }
.v36 .cat__icon { display: inline-flex; width: 14px; height: 14px; }
.v36 .cat { gap: 9px; padding: 4px 4px; }
.v36 .cats { gap: 5px 18px; }

/* --- V37 — Text Chips : text-only brands as quiet rounded chips ----------- */
.v37 .panel { padding: 24px 16px; }
.v37 .col + .col { border-left: none; }
.v37 .col {
  margin: 0 6px;
  padding: 20px 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #E8F0F0;
}
.v37 .giftlist { gap: 8px; }
.v37 .gift {
  justify-content: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #F8FBFB;
}
.v37 .gift:hover { background: var(--mint-050); }
.v37 .gift__name { font-size: 13px; text-align: center; }

/* --- V38-V39 — category-matched brand text grids -------------------------- */
:is(.v38,.v39) .giftlist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}
:is(.v38,.v39) .gift,
:is(.v38,.v39) .cat {
  align-items: center;
  justify-content: flex-start;
  min-height: 0;
  padding: 5px 9px;
  border-radius: 9px;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
}
:is(.v38,.v39) .gift::before { content: none; }
:is(.v38,.v39) .gift__name,
:is(.v38,.v39) .cat {
  font-weight: 400;
  line-height: 1.25;
}
:is(.v38,.v39) .gift:hover,
:is(.v38,.v39) .cat:hover {
  color: var(--mint-deep);
  background: var(--mint-050);
}
:is(.v38,.v39) .gift:hover .gift__name { color: var(--mint-deep); }

/* --- V38 — Text Category Match : airy two-column brand lists -------------- */
.v38 .panel__grid {
  grid-template-columns:
    minmax(270px, 1.14fr)
    minmax(270px, 1.14fr)
    minmax(270px, 1.14fr)
    minmax(220px, .94fr);
}
.v38 .col { padding-left: 22px; padding-right: 22px; }
.v38 .col__title::before {
  width: 18px;
  height: 18px;
  border-radius: 0;
  background-color: transparent;
  background-size: 18px 18px;
  box-shadow: none;
}
.v38 .col:nth-child(2) .col__title::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2320B2A4' d='M12 12.4c-1.3-2.2-3.1-3.2-5.2-3.2-2.6 0-4.7 1.7-4.7 3.8 0 1.8 1.6 3.2 3.8 3.2 2.3 0 4.4-1.2 6.1-3.8Zm0 0c1.7 2.6 3.8 3.8 6.1 3.8 2.2 0 3.8-1.4 3.8-3.2 0-2.1-2.1-3.8-4.7-3.8-2.1 0-3.9 1-5.2 3.2Z'/%3E%3C/svg%3E"); }
.v38 .giftlist {
  grid-auto-rows: 44px;
  gap: 6px 18px;
}
.v38 .cats { gap: 4px 18px; }
.v38 .cats__col { gap: 3px; }
.v38 .gift { min-height: 32px; padding: 5px 7px; }
.v38 .cat { min-height: 30px; padding: 5px 7px; }
.v38 .gift__name,
.v38 .cat {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
}

/* --- V39 — Quiet Text Directory : compact two-column directory rhythm ----- */
.v39 .panel__grid {
  grid-template-columns:
    minmax(270px, 1.18fr)
    minmax(270px, 1.18fr)
    minmax(232px, 1fr)
    minmax(230px, 1fr);
}
.v39 .giftlist,
.v39 .cats { gap: 4px 8px; }
.v39 .gift__name,
.v39 .cat { font-size: 13.5px; }
.v39 .col--gifts,
.v39 .col--cats {
  padding-left: 22px;
  padding-right: 22px;
}

/* --- V40 — Cash Hero Text : text-only shopping, stronger Cash anchor ------ */
.v40 .panel__grid {
  grid-template-columns:
    minmax(196px, .86fr)
    minmax(196px, .86fr)
    minmax(242px, 1.04fr)
    minmax(334px, 1.48fr);
}
.v40 .col--cash { padding-left: 34px; }
.v40 .giftlist { gap: 7px; }
.v40 .gift {
  min-height: 31px;
  padding: 4px 0;
}
.v40 .gift__name { font-size: 13.5px; }
.v40 .cat { padding-left: 0; font-size: 13.5px; }
.v40 .cashcard--img { max-width: 314px; }
.v40 .cashcard--img img { box-shadow: 0 24px 44px -18px rgba(20,140,128,.62); }
.v40 .cash__cta {
  display: block;
  width: 190px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
}
