/* ==========================================================================
   Winky Fantasy — Design System (v3)
   A hand-built global stylesheet replacing the retired Tinker port.
   Style language: cool grey palette — light #f3f4f6, slate #3a4048,
   mid grey #6f7a87, rounded type (Fredoka / Nunito) echoing the
   round-cap line icons.

   Layers:
     1. Fonts & tokens
     2. Typography
     3. Base elements & forms
     4. Buttons & badges
     5. Layout primitives (container, sections, grids, carousel)
     6. Header & announcement bar
     7. Footer & newsletter
     8. Homepage blocks (hero, collections, banners, thanks)
     9. Cards (product / collection / post)
     10. Search modal
     11. Compatibility layer for kept templates
     12. Utilities & responsive helpers
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Fonts & tokens
   Rounded type (SIL OFL, self-hosted — free for commercial use):
   - Nunito   body + UI — variable wght 200-1000, round terminals echo
                          the round-cap stroke icons, crisp at small sizes
   - Fredoka  headings + display — variable wght 300-700, soft geometric
                          shapes with a playful collectible-shop energy
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Nunito";
  font-weight: 200 1000; /* variable font — single file covers all weights */
  font-style: normal;
  font-display: swap;
  src: url("../fonts/nunito_n4.woff2") format("woff2");
}
@font-face {
  font-family: "Fredoka";
  font-weight: 300 700; /* variable font — single file covers all weights */
  font-style: normal;
  font-display: swap;
  src: url("../fonts/fredoka_n4.woff2") format("woff2");
}

:root {
  /* Brand palette — cool grey system */
  --c-bg: #f3f4f6;            /* light cool grey page bg  */
  --c-bg-2: #e9ebef;          /* slightly deeper grey section */
  --c-surface: #ffffff;       /* cards, header           */
  --c-accent: #3a4048;        /* deep cool grey (slate)  */
  --c-accent-deep: #2c3138;   /* deeper slate (hover)    */
  --c-accent-soft: rgba(58, 64, 72, 0.08);
  --c-coral: #6f7a87;         /* mid cool grey accent    */
  --c-coral-soft: rgba(111, 122, 135, 0.18);
  --c-ink: #1d1c1c;           /* near-black text         */
  --c-ink-soft: rgba(29, 28, 28, 0.62);
  --c-ink-faint: rgba(29, 28, 28, 0.4);
  --c-line: rgba(58, 64, 72, 0.16);
  --c-white: #ffffff;
  --c-cream: #f3f4f6;         /* legacy alias → cool grey */

  /* Typography */
  --font-body: "Nunito", "Segoe UI", system-ui, sans-serif;
  --font-heading: "Fredoka", "Nunito", "Segoe UI", system-ui, sans-serif;
  --font-display: "Fredoka", "Nunito", "Segoe UI", system-ui, sans-serif;

  /* Legacy Tinker token names still referenced by some templates */
  --font-body--family: var(--font-body);
  --font-heading--family: var(--font-heading);
  --font-subheading--family: var(--font-heading);

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(29, 28, 28, 0.06);
  --shadow-md: 0 10px 30px rgba(29, 28, 28, 0.1);
  --shadow-card: 0 4px 20px rgba(58, 64, 72, 0.1);

  /* Layout */
  --page-max: 1280px;
  --page-pad: clamp(18px, 4vw, 40px);
  --section-gap: clamp(56px, 9vw, 110px);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 0.28s;
}

/* --------------------------------------------------------------------------
   2. Typography
   -------------------------------------------------------------------------- */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--c-accent);
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); }
h4 { font-size: 1.06rem; }

p { margin: 0 0 1em; }
a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
a:hover { color: var(--c-accent-deep); }
img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }
hr {
  border: 0;
  border-top: 1px solid var(--c-line);
  margin: 2.5em auto;
}
::selection { background: var(--c-coral); color: var(--c-ink); }

:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Display heading — Fredoka SemiBold, used on hero + page titles */
.display-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.12;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
}
.section-title .star {
  color: var(--c-coral);
  font-weight: 700;
  padding: 0 0.15em;
}

.text-block--align-center { text-align: center; }
.text-block--align-left { text-align: left; }

/* --------------------------------------------------------------------------
   3. Base elements & forms
   -------------------------------------------------------------------------- */
input[type="text"],
input[type="search"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="url"],
input[type="password"],
select,
textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 18px;
  font: inherit;
  color: var(--c-ink);
  background: var(--c-surface);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-md);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 4px var(--c-accent-soft);
}
input::placeholder, textarea::placeholder { color: var(--c-ink-faint); }
select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M11 5.5L7 9.5L3 5.5' stroke='%238e4543' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
label { font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; color: var(--c-accent); }

table { border-collapse: collapse; width: 100%; }
th, td { padding: 0.6em 0.9em; text-align: left; border-bottom: 1px solid var(--c-line); }
th { font-family: var(--font-heading); color: var(--c-accent); }

/* --------------------------------------------------------------------------
   4. Buttons & badges
   -------------------------------------------------------------------------- */
.btn,
button.button,
a.button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 14px 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--c-white);
  background: var(--c-accent);
  border: 2px solid var(--c-accent);
  border-radius: var(--r-pill);
  cursor: pointer;
  text-align: center;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
    border-color var(--dur) var(--ease), transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.btn:hover, button.button:hover, a.button:hover, .button:hover {
  background: var(--c-accent-deep);
  border-color: var(--c-accent-deep);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(58, 64, 72, 0.28);
}
/* Solid 8-bit key press: travel down into the page while the lifted
   shadow collapses, reading like a physical button being pressed. */
.btn:active, button.button:active, .button:active {
  transform: translateY(2px);
  box-shadow: 0 3px 8px rgba(58, 64, 72, 0.2);
}
.btn--light:active, .button--light:active { box-shadow: 0 3px 8px rgba(29, 28, 28, 0.12); }
.btn:disabled, button.button:disabled, .button:disabled,
button[disabled], input[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn--light, .button--light {
  background: var(--c-bg-2);
  border-color: var(--c-bg-2);
  color: var(--c-accent);
}
.btn--light:hover, .button--light:hover {
  background: var(--c-bg);
  border-color: var(--c-bg);
  color: var(--c-accent-deep);
  box-shadow: 0 10px 24px rgba(233, 235, 239, 0.5);
}
.btn--ghost, .button--ghost, .button-secondary, .btn-secondary {
  background: transparent;
  border-color: var(--c-accent);
  color: var(--c-accent);
}
.btn--ghost:hover, .button--ghost:hover, .button-secondary:hover, .btn-secondary:hover {
  background: var(--c-accent);
  color: var(--c-white);
}
.btn--coral { background: var(--c-coral); border-color: var(--c-coral); color: var(--c-ink); }
.btn--coral:hover { background: #5f6a77; border-color: #5f6a77; color: var(--c-ink); }
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--block { width: 100%; }
.btn--white { background: var(--c-white); border-color: var(--c-white); color: var(--c-accent); }
.btn--white:hover { background: var(--c-bg-2); border-color: var(--c-bg-2); color: var(--c-accent-deep); }

/* Unstyled buttons (icons etc.) */
.button-unstyled {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.button-unstyled:hover { background: none; transform: none; box-shadow: none; color: inherit; }

/* Badges (Sale / stock states) */
.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-badges__badge {
  display: inline-block;
  padding: 5px 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-white);
  background: var(--c-accent);
  border-radius: var(--r-pill);
}
.product-badges__badge--rectangle { border-radius: var(--r-sm); }

/* Stock-state badge colors:
   bright & buyable → solid slate; soft holds → muted greys. */
.product-badges__badge--preorder { background: var(--c-accent); }
.product-badges__badge--soldout { background: var(--c-coral); }
.product-badges__badge--coming-soon {
  color: var(--c-ink-soft);
  background: var(--c-surface);
  border: 1px solid var(--c-line);
}
.product-badges__badge--retired { background: var(--c-ink); }

/* --------------------------------------------------------------------------
   5. Layout primitives
   -------------------------------------------------------------------------- */
.container,
.page-width {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--page-pad);
  box-sizing: border-box;
}

.site-main { min-height: 40vh; }

.section { position: relative; }
.section--page-width { padding-block: 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(28px, 4vw, 44px);
}
.section-head__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.section-head__eyebrow::before,
.section-head__eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--c-coral);
}
.section-head p { color: var(--c-ink-soft); }

/* Generic grids */
.grid {
  display: grid;
  gap: clamp(14px, 2vw, 24px);
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--6 { grid-template-columns: repeat(6, 1fr); }

/* Carousel (scroll-snap) */
.carousel { position: relative; }
.carousel__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px 18px;
  -webkit-overflow-scrolling: touch;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__slide {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: min(78vw, 280px);
}
@media (min-width: 750px) { .carousel__slide { width: 300px; } }
@media (min-width: 1200px) { .carousel__slide { width: 306px; } }

.carousel__arrow {
  position: absolute;
  top: 42%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--c-surface);
  color: var(--c-accent);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.carousel__arrow:hover { background: var(--c-accent); color: var(--c-white); transform: scale(1.06); }
.carousel__arrow--prev { left: -14px; }
.carousel__arrow--next { right: -14px; }
@media (max-width: 749px) { .carousel__arrow { display: none; } }

/*
 * Short groups (1–4 products): static left-aligned row, no scrolling/arrows.
 * Cards keep the carousel's standard size; the only difference is the track
 * wraps and never scrolls.
 */
.carousel--static .carousel__track {
  flex-wrap: wrap;
  overflow: visible;
  scroll-snap-type: none;
}
.carousel--static .carousel__slide {
  flex: 0 0 auto;
}

/* Divider */
.divider {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 0;
}
.divider__line {
  display: block;
  width: 100%;
  max-width: 240px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-coral), transparent);
}

/* Fade-in on scroll — animates the individual `translate` property so the
   reveal never fights card hover motion (cards transition `transform`). */
.js-reveal { opacity: 0; translate: 0 22px; transition: opacity 0.7s var(--ease), translate 0.7s var(--ease); }
.js-reveal.is-visible { opacity: 1; translate: 0 0; }
@media (prefers-reduced-motion: reduce) {
  .js-reveal { opacity: 1; translate: none; transition: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* --------------------------------------------------------------------------
   6. Header & announcement bar
   -------------------------------------------------------------------------- */
.site-header-wrap { position: sticky; top: 0; z-index: 60; }
.winky-header-hidden .site-header-wrap { transform: translateY(-100%); }

.announcement-bar {
  background: var(--c-accent);
  color: var(--c-cream);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-align: center;
  overflow: hidden;
}
.announcement-bar__inner { position: relative; }
.announcement-slider { display: flex; transition: transform 0.45s var(--ease); }
.announcement-slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 11px 46px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
.announcement-slide a { color: inherit; }
.announcement-slide a:hover { color: var(--c-coral); }
/* Vertical centering lives on the `translate` property: `.button-unstyled:hover`
   resets `transform` (higher specificity), which used to un-center the arrow
   mid-hover and make it jump down. */
.announcement-arrow {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 2;
  color: var(--c-cream);
  opacity: 0.85;
  padding: 6px;
}
.announcement-arrow:hover { opacity: 1; color: var(--c-white); }
.announcement-arrow--prev { left: 14px; }
.announcement-arrow--next { right: 14px; }

.site-header {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding-block: 14px;
}
.header-logo {
  display: inline-flex;
  align-items: center;
}
.header-logo img { width: auto; height: 72px; object-fit: contain; }
.header-logo__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--c-accent);
}
.header-logo:hover .header-logo__name { color: var(--c-accent-deep); }

/* Primary nav (desktop) */
.main-nav { display: none; }
.main-nav > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav > ul > li { position: static; }
.main-nav > ul > li > .main-nav__link {
  position: relative;
  display: inline-block;
  padding: 8px 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: var(--c-ink);
}
.main-nav > ul > li > .main-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--c-coral);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.main-nav > ul > li > .main-nav__link:hover,
.main-nav > ul > li > .main-nav__link.is-active { color: var(--c-accent); }
.main-nav > ul > li > .main-nav__link:hover::after,
.main-nav > ul > li > .main-nav__link.is-active::after { transform: scaleX(1); }

/* Hover dropdown (SHOP mega menu / INFO pages) */
.nav-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 40;
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-line);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
  pointer-events: none;
}
.main-nav__item:hover > .nav-dropdown,
.main-nav__item:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
/* Transparent bridge over the header's bottom padding: without it the cursor
   leaves the nav link before reaching the panel, closing the menu mid-move. */
.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -32px;
  height: 32px;
}
.nav-dropdown__inner {
  max-width: var(--page-max);
  margin-inline: auto;
  padding: clamp(28px, 4vw, 44px) var(--page-pad) clamp(32px, 4vw, 48px);
}

/* SHOP mega menu: rail + featured panel */
.nav-mega {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.nav-mega__rail {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 48px);
}
.nav-mega__group { min-width: 160px; }
/* A group split into N columns (the long "More" list): label stays on top, the
   column <ul>s sit side by side underneath so the panel reads as a grid. */
.nav-mega__columns {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  align-items: flex-start;
}
.nav-mega__columns .nav-mega__cats { flex: 1 1 0; min-width: 0; }
.nav-mega__columns--3 { min-width: 320px; }
.nav-mega__columns--4 { min-width: 420px; }
.nav-mega__group-label {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-ink-faint);
}
.nav-mega__cats {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-mega__cats a {
  display: inline-block;
  padding: 4px 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-ink);
  transition: color var(--dur) var(--ease);
}
.nav-mega__cats a:hover { color: var(--c-accent); }

/* Featured "popular right now" panel */
.nav-mega__featured {
  border-left: 1px solid var(--c-line);
  padding-left: clamp(20px, 3vw, 32px);
}
.nav-mega__featured-label {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.nav-mega__products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.nav-mega__products .product-card__body { text-align: left; }
.nav-mega__products .product-card__title { min-height: 0; font-size: 0.88rem; }
.nav-mega__products .product-card__price { font-size: 0.88rem; }

/* INFO (pages) dropdown: simple columns of links */
.nav-dropdown-cols {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 64px);
}
.nav-dropdown-cols__col { min-width: 160px; }
.nav-dropdown-cols__parent {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-ink);
}
.nav-dropdown-cols__parent:hover { color: var(--c-accent); }
.nav-dropdown-cols__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-dropdown-cols__links a {
  display: inline-block;
  padding: 4px 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--c-ink-soft);
  transition: color var(--dur) var(--ease);
}
.nav-dropdown-cols__links a:hover { color: var(--c-accent); }

/* ARTISTS dropdown: roster cards (collection-card language) + studio aside.
   The cards reuse .winky-artist-card; here we only size them for the panel. */
.nav-artists {
  display: flex;
  align-items: stretch;
  gap: clamp(28px, 4vw, 56px);
}
.nav-artists__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.nav-artists__card { width: 200px; flex: 0 1 200px; }
/* Roster fallback for a menu child without a matching artist image. */
.nav-artists__plate { position: absolute; inset: 0; background: var(--c-bg-2); }
.nav-artists__aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  max-width: 300px;
  border-left: 1px solid var(--c-line);
  padding-left: clamp(20px, 3vw, 32px);
}
.nav-artists__aside-label {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.nav-artists__aside-text {
  margin: 0;
  color: var(--c-ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}
.nav-artists__aside-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

@media (max-width: 899px) {
  .nav-dropdown { display: none; }
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.header-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--c-ink);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.header-action:hover { background: var(--c-accent-soft); color: var(--c-accent); }
.header-action svg { width: 21px; height: 21px; }

.cart-bubble {
  position: absolute;
  top: 2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.66rem;
  color: var(--c-white);
  background: var(--c-coral);
  border-radius: var(--r-pill);
  box-sizing: border-box;
}

/* Mobile menu button */
.menu-toggle { display: inline-flex; }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s 0.35s;
}
.mobile-drawer.is-open { pointer-events: auto; visibility: visible; transition: none; }
.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(29, 28, 28, 0.5);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.mobile-drawer.is-open .drawer-backdrop { opacity: 1; }
.drawer-panel {
  position: relative;
  margin-left: auto;
  width: min(88vw, 380px);
  height: 100%;
  background: var(--c-surface);
  box-shadow: var(--shadow-md);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.38s var(--ease);
  padding: 22px 24px 40px;
  box-sizing: border-box;
}
.mobile-drawer.is-open .drawer-panel { transform: none; }
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.drawer-header .header-logo img { height: 44px; }
.drawer-close {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--c-ink);
}
.drawer-close:hover { background: var(--c-accent-soft); color: var(--c-accent); }
.drawer-nav ul { list-style: none; margin: 0; padding: 0; }
.drawer-nav > ul > li { border-bottom: 1px solid var(--c-line); }
.drawer-nav a {
  display: block;
  padding: 15px 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--c-ink);
}
.drawer-nav a:hover { color: var(--c-accent); }
.drawer-nav details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--c-ink);
  cursor: pointer;
  list-style: none;
}
.drawer-nav details summary::-webkit-details-marker { display: none; }
.drawer-nav details summary .caret { transition: transform var(--dur) var(--ease); color: var(--c-accent); }
.drawer-nav details[open] summary .caret { transform: rotate(180deg); }
.drawer-nav .sub-menu { padding: 0 0 10px 14px; }
.drawer-nav .sub-menu a { padding: 9px 4px; font-size: 0.95rem; font-weight: 500; color: var(--c-ink-soft); }
.drawer-utility {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.drawer-utility .btn { width: 100%; }

@media (min-width: 900px) {
  .main-nav { display: block; }
  .menu-toggle { display: none; }
}

/* --------------------------------------------------------------------------
   7. Footer & newsletter
   -------------------------------------------------------------------------- */
.newsletter-section {
  background: var(--c-bg-2);
  padding-block: clamp(48px, 7vw, 84px);
}
.newsletter-inner { text-align: center; max-width: 620px; margin-inline: auto; }
.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}
.newsletter-form input {
  flex: 1;
  border-radius: var(--r-pill);
  border-color: transparent;
  padding: 15px 24px;
  background: var(--c-surface);
}
.newsletter-form .btn { padding-block: 15px; flex-shrink: 0; }

.site-footer { background: var(--c-accent); color: var(--c-cream); }
.footer-top {
  display: grid;
  gap: clamp(26px, 4vw, 48px);
  padding-block: clamp(44px, 6vw, 72px) 30px;
}
.footer-brand p { color: rgba(243, 244, 246, 0.75); max-width: 300px; }
.footer-brand img { height: 54px; width: auto; object-fit: contain; margin-bottom: 14px; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(243, 244, 246, 0.12);
  color: var(--c-cream);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.footer-social a:hover { background: var(--c-white); color: var(--c-accent); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }

/* Contact page store details (email / phone / address) */
.contact-details {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: grid;
  gap: 6px;
}
.contact-details a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-col h4 {
  color: var(--c-white);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(243, 244, 246, 0.82); font-size: 0.95rem; }
.footer-col a:hover { color: var(--c-white); text-decoration: underline; text-underline-offset: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(243, 244, 246, 0.18);
  padding-block: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(243, 244, 246, 0.72);
}
.footer-bottom a { color: rgba(243, 244, 246, 0.9); }
.footer-bottom a:hover { color: var(--c-white); }
.footer-bottom .footer-legal { display: flex; flex-wrap: wrap; gap: 4px 20px; }
.footer-bottom .footer-legal a { color: inherit; }
.footer-bottom .footer-legal a:hover { color: var(--c-white); }

@media (min-width: 750px) {
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}

/* --------------------------------------------------------------------------
   8. Homepage blocks
   -------------------------------------------------------------------------- */
/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--c-white);
}
.hero__media,
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 28, 28, 0.62) 0%, rgba(29, 28, 28, 0.18) 45%, rgba(29, 28, 28, 0.55) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: var(--page-pad);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vw, 30px);
}
.hero__content .display-title {
  color: var(--c-white);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  letter-spacing: 0.015em;
  margin: 0;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}
.hero__sub {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}
.hero .btn { margin-top: 8px; }

/* Hero slideshow */
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.9s var(--ease), visibility 0s linear 0.9s;
}
.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
  transition: opacity 0.9s var(--ease), visibility 0s;
}
.hero__arrow {
  position: absolute;
  top: 50%;
  /* `translate` (not `transform`) so `.button-unstyled:hover`'s transform
     reset can't un-center the button while hovering — same as the
     announcement arrows. */
  translate: 0 -50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--c-white);
  background: rgba(29, 28, 28, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.hero__arrow:hover { background: rgba(29, 28, 28, 0.6); border-color: rgba(255, 255, 255, 0.65); }
.hero__arrow--prev { left: clamp(12px, 3vw, 40px); }
.hero__arrow--next { right: clamp(12px, 3vw, 40px); }
.hero__dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: clamp(18px, 4vh, 44px);
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.hero__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  border: 0;
  cursor: pointer;
  transition: width var(--dur) var(--ease), background var(--dur) var(--ease);
}
.hero__dot:hover { background: rgba(255, 255, 255, 0.85); }
.hero__dot.is-active { width: 28px; background: var(--c-white); }
@media (max-width: 749px) {
  .hero__arrow { width: 38px; height: 38px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__slide { transition: opacity 0.01s linear; }
}

/* Collections grid */
.collections-block { padding-block: var(--section-gap); }
.collections-grid { display: grid; gap: clamp(12px, 2vw, 20px); }
.collection-card {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.collection-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.collection-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.collection-card:hover img { transform: scale(1.05); }
.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 28, 28, 0) 45%, rgba(29, 28, 28, 0.62) 100%);
}
.collection-card__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 18px 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  color: var(--c-white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

/* Banner panel + product row groups */
.banner-group { padding-block: var(--section-gap); }
.banner-panel {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: clamp(240px, 34vw, 380px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding: clamp(28px, 5vw, 56px) var(--page-pad);
  box-sizing: border-box;
  margin-bottom: clamp(24px, 3vw, 40px);
}
.banner-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-panel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(243, 244, 246, 0) 55%, rgba(243, 244, 246, 0.85) 100%);
}
.banner-panel__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  align-self: flex-end;
}
.banner-panel h2 {
  color: var(--c-accent);
  background: var(--c-bg);
  padding: 12px 26px;
  border-radius: var(--r-md);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  box-shadow: var(--shadow-sm);
}
.banner-panel .btn { padding-block: 13px; }

/* Instagram strip */
.insta-block { padding-block: var(--section-gap); }
.insta-block .section-head { margin-bottom: clamp(24px, 3vw, 34px); }
.insta-block__lede { max-width: 460px; margin: -6px auto 0; color: var(--c-ink-soft); }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 10px;
  width: 100%;
  max-width: var(--page-max);
  padding: 0;
  list-style: none;
}
.insta-card { margin: 0; min-height: 0; }
.insta-card a {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: var(--c-surface);
  transition: box-shadow var(--dur) var(--ease);
}
.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  transition: transform 0.5s var(--ease);
}
.insta-card__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background var(--dur) var(--ease);
}
.insta-card__icon {
  position: absolute;
  inset: 0;
  margin: auto;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-white);
  color: var(--c-accent);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.insta-card a:hover,
.insta-card a:focus-visible {
  box-shadow: 0 0 0 3px var(--c-coral-soft), 0 14px 30px rgba(58, 64, 72, 0.22);
}
.insta-card a:hover img,
.insta-card a:focus-visible img { transform: scale(1.06); }
.insta-card a:hover .insta-card__overlay,
.insta-card a:focus-visible .insta-card__overlay { background: rgba(29, 28, 28, 0.42); }
.insta-card a:hover .insta-card__icon,
.insta-card a:focus-visible .insta-card__icon { opacity: 1; transform: scale(1); }

/* Promo slot — cream card in the middle of the grid */
.insta-card--promo a {
  display: flex;
  background:
    radial-gradient(130% 130% at 88% 12%, var(--c-coral-soft), transparent 62%),
    var(--c-bg-2);
  border-color: var(--c-coral);
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100%;
}
.insta-card__promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px;
  color: var(--c-accent);
}
.insta-card__promo-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--c-white);
}
.insta-card__promo-icon svg { display: block; }
.insta-card__promo-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--c-ink);
}
.insta-card__promo-handle {
  font-size: 0.95rem;
  font-weight: 700;
}
.insta-card--promo a:hover,
.insta-card--promo a:focus-visible {
  background:
    radial-gradient(130% 130% at 88% 12%, var(--c-coral-soft), transparent 62%),
    var(--c-surface);
  box-shadow: 0 0 0 3px var(--c-coral-soft), 0 14px 30px rgba(58, 64, 72, 0.22);
}
.insta-card--promo a:hover .insta-card__promo-icon,
.insta-card--promo a:focus-visible .insta-card__promo-icon {
  background: var(--c-accent-deep);
}

.insta-block__cta { margin: 28px 0 0; text-align: center; }

@media (max-width: 749px) {
  .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  /* Lead with the follow card on small screens — F-pattern first stop. */
  .insta-card--promo { order: -1; }
}
@media (prefers-reduced-motion: reduce) {
  .insta-card img {
    transition: none;
  }
  .insta-card__overlay,
  .insta-card__icon,
  .insta-card a {
    transition: none;
  }
}

/* Thank-you block */
.thanks-block { padding-block: var(--section-gap); }

/* Homepage artists section */
.artists-block { padding-block: var(--section-gap); }
.artists-block .section-head { margin-bottom: clamp(24px, 3vw, 34px); }

.thanks-card {
  display: grid;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(24px, 4.5vw, 56px);
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.thanks-copy { text-align: center; }
.thanks-copy .thanks-logo { height: 44px; width: auto; object-fit: contain; margin: 0 auto 16px; }
.thanks-copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  letter-spacing: 0.02em;
}
.thanks-copy .thanks-text {
  color: var(--c-ink-soft);
  max-width: 34em;
  margin: 14px auto 0;
}
.thanks-copy .thanks-note {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  box-sizing: border-box;
  max-width: 100%;
  margin-top: 18px;
  padding: 10px 20px;
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  font-family: var(--font-heading);
  color: var(--c-accent);
  font-size: 0.9rem;
  line-height: 1.5;
}
.thanks-cta { margin: 24px 0 0; }
.thanks-cta .btn { padding: 16px 38px; }
.thanks-media {
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
  background: var(--c-bg-2);
}
.thanks-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 32%;
}

@media (min-width: 900px) {
  .thanks-card {
    grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
    gap: clamp(32px, 5vw, 64px);
  }
  .thanks-copy { text-align: left; padding-left: clamp(0px, 2vw, 28px); }
  .thanks-copy .thanks-logo { margin-inline: 0; }
  .thanks-copy .thanks-text { margin-inline: 0; }
  .thanks-copy .thanks-note { align-items: flex-start; }
}

/* --------------------------------------------------------------------------
   9. Cards (product / collection / post)
   -------------------------------------------------------------------------- */
.product-card {
  position: relative;
  display: block;
  background: var(--c-surface);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.product-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--c-bg-2);
}
.product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s var(--ease), transform 0.6s var(--ease);
}
.product-card__media .img--secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.product-card:hover .img--main { transform: scale(1.04); }
.product-card:hover .img--secondary { opacity: 1; }

/* Unavailable cards (Out of stock / Coming soon): a grey veil washes over
   the image on hover — the card itself stays clickable. Bright states
   (In stock / Pre-order / Retired) never dim. The veil reuses the holo
   sheen's ::after (section 14.4), so transform: none pins it down instead
   of letting the sheen sweep it off the card. */
.product-card--dim .product-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(111, 122, 135, 0.45);
  opacity: 0;
  transform: none;
  transition: opacity var(--dur) var(--ease);
}
.product-card--dim .product-card__media img { transition: opacity 0.4s var(--ease), transform 0.6s var(--ease), filter var(--dur) var(--ease); }
/* Extra .product-card keeps these one class above the holo-sheen hover rule
   in 14.4 (same file-later position would otherwise win the tie). */
.product-card.product-card--dim:hover .product-card__media::after,
.product-card.product-card--dim:focus-within .product-card__media::after { opacity: 1; transform: none; }
.product-card--dim:hover .product-card__media img { filter: grayscale(0.9); }
/* Touch devices have no hover: show the veil persistently instead. */
@media (hover: none) {
  .product-card--dim .product-card__media::after { opacity: 1; }
}
.product-card__body {
  padding: 14px 16px 16px;
  text-align: center;
}
.product-card__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  /* Reserve two lines so cards stay equal height whatever the title length. */
  min-height: 2.8em;
  margin: 0 0 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--c-ink);
}
.product-card__title:hover { color: var(--c-accent); }
.product-card__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-accent);
}
.product-card__price s { color: var(--c-ink-faint); font-weight: 500; margin-right: 6px; }

/* Post card */
.post-card {
  display: block;
  background: var(--c-surface);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.post-card__media { aspect-ratio: 4 / 5; overflow: hidden; background: var(--c-bg-2); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__body { padding: 18px 20px 22px; }
.post-card__date {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-coral);
  margin-bottom: 8px;
}
.post-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.post-card h3 a { color: var(--c-ink); }
.post-card h3 a:hover { color: var(--c-accent); }
.post-card p { color: var(--c-ink-soft); font-size: 0.92rem; margin: 0; }

/* --------------------------------------------------------------------------
   10. Search modal
   -------------------------------------------------------------------------- */
.search-modal {
  border: 0;
  padding: 0;
  margin: 0;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  background: transparent;
  color: var(--c-ink);
}
.search-modal::backdrop { background: rgba(29, 28, 28, 0.55); }
.search-modal__panel {
  width: min(680px, calc(100vw - 32px));
  margin: 9vh auto 0;
  background: var(--c-surface);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 20px;
  box-sizing: border-box;
}
.search-modal__header { display: flex; align-items: center; gap: 12px; }
.search-modal__input {
  flex: 1;
  border: 0;
  border-bottom: 2px solid var(--c-accent);
  border-radius: 0;
  padding: 14px 6px;
  font-size: 1.15rem;
  background: transparent;
}
.search-modal__input:focus { box-shadow: none; }
.search-modal__close {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--c-ink);
}
.search-modal__close:hover { background: var(--c-accent-soft); color: var(--c-accent); }
.search-modal__results { margin-top: 14px; max-height: 55vh; overflow-y: auto; }
.search-modal__results:empty::after {
  content: attr(data-empty);
  display: block;
  padding: 18px 6px;
  color: var(--c-ink-soft);
  font-size: 0.95rem;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: var(--r-sm);
  transition: background var(--dur) var(--ease);
}
.search-result-item:hover { background: var(--c-accent-soft); }
.search-result-item img { width: 54px; height: 64px; object-fit: cover; border-radius: var(--r-sm); }
.search-result-item__title { font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; color: var(--c-ink); }
.search-result-item__price { font-size: 0.88rem; color: var(--c-accent); font-family: var(--font-heading); font-weight: 700; }
.search-modal__footer-link {
  display: block;
  margin-top: 12px;
  text-align: center;
  padding: 12px;
  border-radius: var(--r-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--c-accent);
}
.search-modal__footer-link:hover { background: var(--c-accent-soft); }

/* --------------------------------------------------------------------------
   11. Compatibility layer — kept templates using Tinker class names
   -------------------------------------------------------------------------- */

/* Custom elements default to inline; force sane boxes */
slideshow-component, rte-formatter, product-card, product-card-link,
product-price, media-gallery, variant-picker, product-form-component,
sticky-add-to-cart, add-to-cart-component, featured-blog-posts-card,
header-menu, header-drawer, announcement-bar-component,
anchored-popover-component, search-button, cart-icon, sorting-filter-component,
facets-form-component, results-list, product-recommendations, scroll-hint,
drag-zoom-wrapper, zoom-dialog, dialog-component, predictive-search-component,
quantity-selector, accordion-custom, overflow-list, popover-component {
  display: block;
}
product-card-link { display: block; }
a.contents, span.contents { display: contents; }

/* Generic Tinker section shell */
.shopify-section { position: relative; }
.section-background { position: absolute; inset: 0; z-index: -1; }
.spacing-style { box-sizing: border-box; }
.section--full-width { width: 100%; }
.section--page-width { width: 100%; max-width: var(--page-max); margin-inline: auto; box-sizing: border-box; padding-inline: var(--page-pad); }
.section-resource-list { padding-block: clamp(40px, 6vw, 80px); }
.section-resource-list__content { margin-bottom: clamp(22px, 3vw, 36px); }

/* Color schemes → brand tints */
.color-scheme-1 { background: var(--c-bg); color: var(--c-ink); }
.color-scheme-2 { background: var(--c-bg-2); color: var(--c-ink); }
.color-scheme-3 { background: var(--c-accent); color: var(--c-cream); }
.color-scheme-6 { background: var(--c-ink); color: var(--c-white); }

/* Headings inside text blocks */
.rte h1, .rte h2, .rte h3, .rte h4 { margin-top: 1.2em; }
.rte p { color: var(--c-ink-soft); }
.rte a { text-decoration: underline; text-underline-offset: 3px; }

/* Resource list / product grids used by shop, search, blog */
.resource-list { display: grid; gap: 20px; }
.resource-list--grid { display: grid; }
.resource-list__item { min-width: 0; }
.resource-list__carousel {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.resource-list__carousel::-webkit-scrollbar { display: none; }
.resource-list__slide { flex: 0 0 auto; scroll-snap-align: start; width: min(70vw, 300px); }

/* Compatibility: old product-card markup inside kept templates */
.product-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); }
.product-grid__item { min-width: 0; }
@media (min-width: 750px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }


/* --------------------------------------------------------------------------
   9. Cards (product / collection / post)
   -------------------------------------------------------------------------- */
/* Post card */
.post-card {
  display: block;
  background: var(--c-surface);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.post-card__media { aspect-ratio: 4 / 5; overflow: hidden; background: var(--c-bg-2); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__body { padding: 18px 20px 22px; }
.post-card__date {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-coral);
  margin-bottom: 8px;
}
.post-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.post-card h3 a { color: var(--c-ink); }
.post-card h3 a:hover { color: var(--c-accent); }
.post-card p { color: var(--c-ink-soft); font-size: 0.92rem; margin: 0; }

/* --------------------------------------------------------------------------
   10. Search modal
   -------------------------------------------------------------------------- */
.search-modal {
  border: 0;
  padding: 0;
  margin: 0;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  background: transparent;
  color: var(--c-ink);
}
.search-modal::backdrop { background: rgba(29, 28, 28, 0.55); }
.search-modal__panel {
  width: min(680px, calc(100vw - 32px));
  margin: 9vh auto 0;
  background: var(--c-surface);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 20px;
  box-sizing: border-box;
}
.search-modal__header { display: flex; align-items: center; gap: 12px; }
.search-modal__input {
  flex: 1;
  border: 0;
  border-bottom: 2px solid var(--c-accent);
  border-radius: 0;
  padding: 14px 6px;
  font-size: 1.15rem;
  background: transparent;
}
.search-modal__input:focus { box-shadow: none; }
.search-modal__close {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--c-ink);
}
.search-modal__close:hover { background: var(--c-accent-soft); color: var(--c-accent); }
.search-modal__results { margin-top: 14px; max-height: 55vh; overflow-y: auto; }
.search-modal__results:empty::after {
  content: attr(data-empty);
  display: block;
  padding: 18px 6px;
  color: var(--c-ink-soft);
  font-size: 0.95rem;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: var(--r-sm);
  transition: background var(--dur) var(--ease);
}
.search-result-item:hover { background: var(--c-accent-soft); }
.search-result-item img { width: 54px; height: 64px; object-fit: cover; border-radius: var(--r-sm); }
.search-result-item__title { font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; color: var(--c-ink); }
.search-result-item__price { font-size: 0.88rem; color: var(--c-accent); font-family: var(--font-heading); font-weight: 700; }
.search-modal__footer-link {
  display: block;
  margin-top: 12px;
  text-align: center;
  padding: 12px;
  border-radius: var(--r-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--c-accent);
}
.search-modal__footer-link:hover { background: var(--c-accent-soft); }



/* --------------------------------------------------------------------------
   11. Compatibility layer — kept templates using Tinker class names
   -------------------------------------------------------------------------- */

/* Custom elements default to inline; force sane boxes */
slideshow-component, rte-formatter, product-card, product-card-link,
product-price, media-gallery, variant-picker, product-form-component,
sticky-add-to-cart, add-to-cart-component, featured-blog-posts-card,
header-menu, header-drawer, announcement-bar-component,
anchored-popover-component, search-button, cart-icon, sorting-filter-component,
facets-form-component, results-list, product-recommendations, scroll-hint,
drag-zoom-wrapper, zoom-dialog, dialog-component, predictive-search-component,
quantity-selector, accordion-custom, overflow-list, popover-component {
  display: block;
}
product-card-link { display: block; }
a.contents, span.contents { display: contents; }

/* Generic Tinker section shell */
.shopify-section { position: relative; }
.section-background { position: absolute; inset: 0; z-index: -1; }
.spacing-style { box-sizing: border-box; }
.section--full-width { width: 100%; }
.section--page-width { width: 100%; max-width: var(--page-max); margin-inline: auto; box-sizing: border-box; padding-inline: var(--page-pad); }
.section-resource-list { padding-block: clamp(40px, 6vw, 80px); }
.section-resource-list__content { margin-bottom: clamp(22px, 3vw, 36px); }

/* Color schemes -> brand tints */
.color-scheme-1 { background: var(--c-bg); color: var(--c-ink); }
.color-scheme-2 { background: var(--c-bg-2); color: var(--c-ink); }
.color-scheme-3 { background: var(--c-accent); color: var(--c-cream); }
.color-scheme-6 { background: var(--c-ink); color: var(--c-white); }

/* Headings inside text blocks */
.rte h1, .rte h2, .rte h3, .rte h4 { margin-top: 1.2em; }
.rte p { color: var(--c-ink-soft); }
.rte a { text-decoration: underline; text-underline-offset: 3px; }

/* Resource list / product grids used by shop, search, blog */
.resource-list { display: grid; gap: 20px; }
.resource-list--grid { display: grid; }
.resource-list__item { min-width: 0; }
.resource-list__carousel {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.resource-list__carousel::-webkit-scrollbar { display: none; }
.resource-list__slide { flex: 0 0 auto; scroll-snap-align: start; width: min(70vw, 300px); }

/* Compatibility: old product-card markup inside kept templates */
.product-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); }
.product-grid__item { min-width: 0; }
@media (min-width: 750px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }
.product-card .product-grid-view-zoom-out--details { display: none; }
.product-card .group-block { padding: 0 !important; }
.product-card .text-block p { margin: 0 0 4px; font-size: 0.95rem; }
.product-card .product-media__image { border-radius: 0; }

.price { font-family: var(--font-heading); font-weight: 700; color: var(--c-accent); }
.price__compare { color: var(--c-ink-faint); font-weight: 500; margin-right: 6px; }
.price--on-sale .price__sale { color: var(--c-accent); }

/* Forms: contact, newsletter compat */
.field { margin-bottom: 16px; }
.input { font: inherit; }

/* Facets (shop toolbar) */
.facets { margin-bottom: 14px; }
.facets__form { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.facets__summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-pill);
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--c-ink);
  list-style: none;
  background: var(--c-surface);
}
.facets__summary::-webkit-details-marker { display: none; }
.facets__display {
  position: absolute;
  z-index: 20;
  margin-top: 8px;
  background: var(--c-surface);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  min-width: 210px;
}
.facets__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.facet-checkbox { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-family: var(--font-body); }
.facet-checkbox input { accent-color: var(--c-accent); width: 16px; height: 16px; }
.facet-checkbox__text { font-size: 0.92rem; color: var(--c-ink); }
.products-count-wrapper { font-size: 0.9rem; color: var(--c-ink-soft); }
.sorting-filter__details { display: inline-flex; align-items: center; gap: 10px; }
.sorting-filter__label { font-family: var(--font-heading); font-weight: 600; font-size: 0.88rem; color: var(--c-ink-soft); }
.sorting-filter__select-wrapper { position: relative; }
.sorting-filter .select__select { width: auto; min-width: 200px; }
.facets-remove { margin-left: auto; font-size: 0.88rem; color: var(--c-accent); }

/* Kept-template page hero (h1 on shop/blog/about/contact...) */
.collection-header-section h1,
.page-main-section h1,
.article-main-section h1,
.artists-main-section h1,
.contact-main-section h1,
.search-results-section h1,
.not-found-section h1 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.page-main-section h1, .artists-main-section h1, .contact-main-section h1, .search-results-section h1 {
  color: var(--c-accent);
}

/* RTE content */
.winky-page__content, .winky-article__content, .artists-intro, .contact-intro {
  max-width: 760px;
  margin-inline: auto;
  color: var(--c-ink-soft);
}

/* Page copy (FAQ / policy pages): headings, text and native details/summary
   accordions written in the block editor. */
.winky-page__content h2,
.winky-page__content h3,
.winky-page__content h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--c-ink);
  margin: 42px 0 12px;
  line-height: 1.25;
}
.winky-page__content > h2:first-child,
.winky-page__content > h3:first-child,
.winky-page__content > h4:first-child { margin-top: 0; }
.winky-page__content p { margin: 0 0 14px; font-size: 1rem; line-height: 1.75; }
.winky-page__content a { color: var(--c-accent); font-weight: 600; }
.winky-page__content a:hover { color: var(--c-accent-deep); }
.winky-page__content strong { color: var(--c-ink); }
.winky-page__content details {
  border-bottom: 1px solid var(--c-line);
}
.winky-page__content details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 2px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--c-ink);
  cursor: pointer;
  list-style: none;
  transition: color var(--dur) var(--ease);
}
.winky-page__content details summary::marker,
.winky-page__content details summary::-webkit-details-marker { content: ""; display: none; }
.winky-page__content details summary::after {
  content: "";
  flex: none;
  width: 10px;
  height: 10px;
  margin-top: -3px;
  border-right: 2px solid var(--c-coral);
  border-bottom: 2px solid var(--c-coral);
  transform: rotate(45deg);
  transition: transform var(--dur) var(--ease);
}
.winky-page__content details[open] summary::after { margin-top: 3px; transform: rotate(225deg); }
.winky-page__content details summary:hover { color: var(--c-accent); }
.winky-page__content details p { margin: 0 0 16px; }

/* Artists cards (kept template) */
.winky-artists-grid {
  display: grid;
  gap: clamp(18px, 3vw, 30px);
  grid-template-columns: 1fr;
}
@media (min-width: 750px) { .winky-artists-grid { grid-template-columns: repeat(3, 1fr); } }
.winky-artist-card {
  background: var(--c-surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  text-align: center;
}
.winky-artist-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.winky-artist-card__link { display: block; color: inherit; }
.winky-artist-card__media { display: block; aspect-ratio: 1; overflow: hidden; }
.winky-artist-card__media img { width: 100%; height: 100%; object-fit: cover; }
.winky-artist-card__title { display: block; padding: 16px 18px 4px; }
.winky-artist-card__name { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: var(--c-ink); }
.winky-artist-card__role { display: block; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-coral); margin-top: 4px; }
.winky-artist-card__bio { padding: 12px 20px 22px; color: var(--c-ink-soft); font-size: 0.92rem; }
.winky-artists-cta { color: var(--c-ink-soft); }
.winky-artists-cta__email { font-family: var(--font-heading); color: var(--c-accent); margin-top: 18px; }

/* Contact form */
.contact-form__form { max-width: 620px; margin-inline: auto; }
.contact-form__form .button { width: 100%; }

/* Blog cards compat */
.featured-blog-posts-card {
  display: block;
  background: var(--c-surface);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.featured-blog-posts-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.featured-blog-posts-card__image { aspect-ratio: 4/5; overflow: hidden; }
.featured-blog-posts-card__image img { width: 100%; height: 100%; object-fit: cover; }
.featured-blog-posts-card__content { padding: 18px 20px 22px; }
.featured-blog-posts-card h4 { margin-bottom: 6px; }
.featured-blog-posts-card h4 a { color: var(--c-ink); }
.featured-blog-posts-card h4 a:hover { color: var(--c-accent); }
.blog-post-details { color: var(--c-coral); font-family: var(--font-heading); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; }
.featured-blog-posts-card .rte p { color: var(--c-ink-soft); font-size: 0.92rem; }

/* Pagination */
.winky-pagination .pagination__list { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; list-style: none; margin: 40px 0 0; padding: 0; }
.winky-pagination .pagination__list li { margin: 0; }
.winky-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: var(--r-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--c-accent);
  background: var(--c-surface);
  border: 1.5px solid var(--c-line);
}
.winky-pagination .page-numbers.current { background: var(--c-accent); border-color: var(--c-accent); color: var(--c-white); }
.winky-pagination a.page-numbers:hover { background: var(--c-accent-soft); }

/* Product page: kept markup */
.product-information__grid { display: grid; gap: clamp(24px, 4vw, 56px); }
@media (min-width: 900px) { .product-information__grid { grid-template-columns: 1.05fr 1fr; } }
.product-details h1 { text-align: center; }
.product-details .price { font-size: 1.4rem; }
.product-media { border-radius: var(--r-md); overflow: hidden; background: var(--c-bg-2); }
.product-media__image { width: 100%; }
.media-gallery__grid { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
.variant-option { border: 0; margin: 0 0 18px; padding: 0; text-align: center; }
.variant-option legend { font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-ink-soft); margin-bottom: 12px; }
.variant-option__buttons { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.variant-option__button-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-pill);
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--c-ink);
  background: var(--c-surface);
  transition: all var(--dur) var(--ease);
}
.variant-option__button-label:hover { border-color: var(--c-accent); }
.variant-option__button-label input { position: absolute; opacity: 0; }
.variant-option__button-label input:checked + .variant-option__button-label__pill { background: var(--c-accent); border-color: var(--c-accent); }
.variant-option__button-label input:checked ~ .variant-option__button-label__text { color: var(--c-white); }
.variant-option__button-label:has(input:checked) { background: var(--c-accent); border-color: var(--c-accent); color: var(--c-white); }
.variant-option__button-label[aria-disabled="true"], .variant-option__button-label:has(input:disabled) { opacity: 0.45; cursor: not-allowed; }
.variant-option__button-label__pill { display: none; }
.variant-option__strikethrough { position: absolute; inset: 0; opacity: 0.35; pointer-events: none; }
.buy-buttons-block { display: block; text-align: center; margin-top: 6px; }
.buy-buttons-block .add-to-cart-button { width: 100%; }
.buy-buttons-block button.add-to-cart-button,
.buy-buttons-block a.add-to-cart-button,
sticky-add-to-cart button.add-to-cart-button {
  background: var(--c-accent) !important;
  border-color: var(--c-accent) !important;
  color: var(--c-white) !important;
  border-radius: var(--r-pill) !important;
}
.buy-buttons-block button.add-to-cart-button:hover,
.buy-buttons-block a.add-to-cart-button:hover,
sticky-add-to-cart button.add-to-cart-button:hover {
  background: var(--c-accent-deep) !important;
  border-color: var(--c-accent-deep) !important;
  color: var(--c-white) !important;
}
.buy-buttons-block .add-to-cart-button .svg-wrapper { display: inline-flex; }
.buy-buttons-block .add-to-cart-button .svg-wrapper svg { width: 20px; height: 20px; }
.buy-buttons-block .add-to-cart-button .checkmark-burst { display: none; }
.winky-trust-badge p { margin: 0; font-family: var(--font-heading); font-weight: 600; font-size: 0.88rem; color: var(--c-ink-soft); }
.product-recommendations .section-resource-list__content h3 { font-family: var(--font-display); font-weight: 600; }

/* Sticky add-to-cart bar */
.sticky-add-to-cart__bar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px var(--page-pad);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-line);
  box-sizing: border-box;
}
.sticky-add-to-cart__image { width: 46px; height: 46px; border-radius: var(--r-sm); overflow: hidden; flex-shrink: 0; }
.sticky-add-to-cart__image img { width: 100%; height: 100%; object-fit: cover; }
.sticky-add-to-cart__title { font-family: var(--font-heading); font-size: 0.95rem; margin: 0; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-add-to-cart__price { font-family: var(--font-heading); font-weight: 700; color: var(--c-accent); white-space: nowrap; }
.sticky-add-to-cart__button { flex-shrink: 0; }

/* Zoom dialog */
dialog[scroll-lock] { border: 0; padding: 0; background: transparent; max-width: none; }
dialog[scroll-lock]::backdrop { background: rgba(29, 28, 28, 0.85); }

/* Footer utility policy popover */
.anchored-popover { border: 0; border-radius: var(--r-md); box-shadow: var(--shadow-md); padding: 16px 20px; background: var(--c-surface); color: var(--c-ink); }
.policy_list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.policy_list__link { font-size: 0.92rem; }
.policy-list-trigger { color: inherit; }

/* Misc Tinker helpers */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.hidden { display: none !important; }
.hidden--desktop { display: none !important; }
@media (max-width: 749px) { .hidden--mobile { display: none !important; } }
@media (min-width: 750px) { .hidden--desktop { display: block !important; } }
.list-unstyled { list-style: none; margin: 0; padding: 0; }
.skip-to-content-link { position: absolute; top: -60px; left: 16px; z-index: 99; }

/* --------------------------------------------------------------------------
   12. Utilities & responsive helpers
   -------------------------------------------------------------------------- */
.mobile-column { flex-direction: column; }
.layout-panel-flex { display: flex; }
.layout-panel-flex--row { flex-direction: row; align-items: center; gap: 16px; }
.layout-panel-flex--column { flex-direction: column; align-items: center; gap: 12px; }
.space-between { justify-content: space-between; }
.relative { position: relative; }

@media (max-width: 749px) {
  body { font-size: 15.5px; }
  .grid--3, .grid--4, .grid--6 { grid-template-columns: repeat(2, 1fr); }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-form { flex-direction: column; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .header-logo img { height: 46px; }
}
@media (min-width: 750px) {
  .collections-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .collections-grid { grid-template-columns: repeat(6, 1fr); }
}

/* --------------------------------------------------------------------------
   13. Store pages — archive / product / cart / checkout (v3.1)
   -------------------------------------------------------------------------- */

/* 13.1 Product card block display (cards are built from spans) */
.product-card__link { display: block; color: inherit; }
.product-card__media,
.product-card__body { display: block; }

/* 13.2 WooCommerce notices */
.woocommerce-notices-wrapper,
.winky-commerce-content .woocommerce-message,
.winky-commerce-content .woocommerce-info,
.winky-commerce-content .woocommerce-error,
.cart-page .woocommerce-message,
.cart-page .woocommerce-info,
.cart-page .woocommerce-error,
.product-page .woocommerce-message,
.product-page .woocommerce-info,
.product-page .woocommerce-error {
  margin: 0 0 22px;
}
ul.woocommerce-error,
li.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  list-style: none;
  margin-block: 0 22px;
  padding: 14px 20px;
  border-radius: var(--r-md);
  font-size: 0.95rem;
  border: 1.5px solid var(--c-line);
}
.woocommerce-message { background: var(--c-bg-2); color: var(--c-ink); border-color: transparent; }
.woocommerce-info { background: var(--c-surface); color: var(--c-ink); }
/* WC's icon font (WooCommerce) has no ✿/✦ glyphs, so the theme's marks
   rendered as blank squares; draw them in the body font and keep them in
   flow instead of WC's absolutely-positioned icon slot. */
.woocommerce-info::before,
.woocommerce-message::before {
  font-family: inherit;
  position: static;
  display: inline-block;
  font-weight: 700;
  margin-right: 0.4em;
}
.woocommerce-message::before { content: "✦"; color: var(--c-coral); }
.woocommerce-info::before { content: "✿"; color: var(--c-accent); }
ul.woocommerce-error::before,
li.woocommerce-error::before {
  content: none;
}
ul.woocommerce-error,
li.woocommerce-error {
  background: #fdecea;
  color: #8c2f28;
  border-color: rgba(140, 47, 40, 0.25);
}
.woocommerce-message .button, .woocommerce-info .button, .woocommerce-error .button {
  float: right;
  padding: 8px 18px;
  font-size: 0.82rem;
}

/* 13.3 Shop archive */
.shop-archive { padding-block: clamp(34px, 5vw, 60px) var(--section-gap); }
.shop-archive .section-head { margin-bottom: clamp(22px, 3vw, 34px); }
.shop-archive .display-title { font-size: clamp(2.3rem, 4.6vw, 3.6rem); }
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin: 0 0 clamp(22px, 3vw, 34px);
}
.shop-toolbar__filter { position: relative; }
.shop-toolbar__filter summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--c-surface);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--c-ink);
  cursor: pointer;
  list-style: none;
  transition: border-color var(--dur) var(--ease);
}
.shop-toolbar__filter summary::-webkit-details-marker { display: none; }
.shop-toolbar__filter summary:hover, .shop-toolbar__filter[open] summary { border-color: var(--c-accent); color: var(--c-accent); }
.shop-toolbar__filter summary .caret { transition: transform var(--dur) var(--ease); color: var(--c-accent); }
.shop-toolbar__filter[open] summary .caret { transform: rotate(180deg); }
.shop-toolbar__filter-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 20;
  background: var(--c-surface);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 190px;
}
.shop-toolbar__count { font-size: 0.9rem; color: var(--c-ink-soft); }
.shop-toolbar__sort { margin-left: auto; }
/* The sort drop-down sits at the toolbar's right edge, so its panel opens
   right-aligned instead of overflowing the viewport. */
.shop-toolbar__sort .shop-toolbar__filter-panel { left: auto; right: 0; max-height: min(320px, 60vh); overflow-y: auto; }
.shop-toolbar__clear { font-size: 0.88rem; font-family: var(--font-heading); font-weight: 600; color: var(--c-accent); }
.shop-toolbar__clear:hover { color: var(--c-accent-deep); }
/* Category facet dropdown */
.shop-toolbar__filter.is-active summary { border-color: var(--c-accent); color: var(--c-accent); }
.shop-toolbar__filter-panel--categories { max-height: min(320px, 60vh); overflow-y: auto; }
.filter-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 10px;
  margin: 0 -10px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--c-ink);
  text-decoration: none;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.filter-link:hover { background: var(--c-bg-2); color: var(--c-accent-deep); }
.filter-link.is-active { color: var(--c-accent); font-weight: 600; }
.filter-link.is-active::after { content: '✓'; font-weight: 700; }
@media (max-width: 749px) {
  .shop-toolbar__sort { margin-left: 0; }
  .shop-toolbar__sort .shop-toolbar__filter-panel { left: 0; right: auto; }
}
.shop-empty { text-align: center; color: var(--c-ink-soft); padding-block: 40px; }
.product-grid--shop, .product-grid--related { gap: clamp(14px, 2vw, 22px); }
.view-more-next { display: block; height: 1px; }

/* 13.4 Product page */
.product-page { padding-block: clamp(30px, 4.5vw, 56px) clamp(40px, 6vw, 80px); }
.product-page__grid { display: grid; gap: clamp(28px, 4.5vw, 60px); }
@media (min-width: 980px) {
  .product-page__grid { grid-template-columns: 1.04fr 1fr; align-items: start; }
}
.product-gallery__main {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-bg-2);
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
}
.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-gallery__main:hover img { transform: scale(1.03); }
.product-gallery__zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--c-accent);
  box-shadow: var(--shadow-sm);
  pointer-events: none;
}
.product-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.product-gallery__thumb {
  width: 78px;
  aspect-ratio: 4 / 5;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--c-bg-2);
  cursor: pointer;
  opacity: 0.65;
  transition: opacity var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-gallery__thumb:hover { opacity: 1; }
.product-gallery__thumb.is-active { border-color: var(--c-accent); opacity: 1; }

.product-details { min-width: 0; }
@media (min-width: 980px) {
  .product-details { position: sticky; top: 118px; }
}
.product-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  text-align: center;
  color: var(--c-accent);
  margin: 0 0 10px;
}
.product-price {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--c-accent);
  margin-bottom: 22px;
}
.product-price .price s, .product-price .price__compare { color: var(--c-ink-faint); font-weight: 500; font-size: 0.85em; margin-right: 8px; }

/* Stock status note under the price (dot + copy per state). */
.stock-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: -10px 0 22px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--c-ink-soft);
}
.stock-note__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(29, 28, 28, 0.06);
}
.stock-note--in-stock, .stock-note--in_stock { color: #4e8a6a; }
.stock-note--preorder { color: #a97f2f; }
.stock-note--out-of-stock, .stock-note--out_of_stock { color: #b06060; }
.stock-note--coming-soon, .stock-note--coming_soon { color: var(--c-coral); }
.stock-note--retired { color: var(--c-ink-faint); }

.product-details .variant-picker { margin-bottom: 22px; }
.product-buy__row { display: flex; gap: 12px; align-items: stretch; }
.product-buy__row .quantity-selector { flex-shrink: 0; }
.product-buy__button { flex: 1; padding-block: 15px; }
.quantity-selector { display: inline-flex; align-items: stretch; background: var(--c-surface); border: 1.5px solid var(--c-line); border-radius: var(--r-pill); overflow: hidden; }
.quantity-selector__button {
  width: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--c-accent);
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.quantity-selector__button:hover { background: var(--c-accent-soft); color: var(--c-accent-deep); }
.quantity-selector__input {
  width: 46px;
  padding: 10px 2px;
  text-align: center;
  border: 0;
  background: transparent;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--c-ink);
  -moz-appearance: textfield;
  appearance: textfield;
  box-shadow: none;
}
.quantity-selector__input:focus { box-shadow: none; }
.quantity-selector__input::-webkit-outer-spin-button,
.quantity-selector__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.product-form-error { margin: 10px 0 0; font-size: 0.9rem; color: #8c2f28; }
.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.trust-badge {
  background: var(--c-bg-2);
  border-radius: var(--r-md);
  padding: 18px 12px;
  text-align: center;
}
.trust-badge svg { width: 22px; height: 22px; color: var(--c-accent); margin: 0 auto 8px; display: block; }
.trust-badge p { margin: 0; font-family: var(--font-heading); font-weight: 600; font-size: 0.84rem; color: var(--c-ink-soft); line-height: 1.45; }
.product-shipnote {
  margin-top: 16px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--c-accent);
}
.product-desc { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--c-line); color: var(--c-ink-soft); }
.product-desc h1, .product-desc h2, .product-desc h3 { font-size: 1.05rem; }
.product-desc ul { padding-left: 20px; }

/* Image lightbox */
.lightbox {
  border: 0;
  padding: 24px;
  border-radius: var(--r-lg);
  background: transparent;
  max-width: min(92vw, 900px);
  max-height: 92vh;
}
.lightbox::backdrop { background: rgba(29, 28, 28, 0.86); }
.lightbox__img { max-width: 100%; max-height: 82vh; border-radius: var(--r-md); margin: 0 auto; display: block; }
.lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--c-accent);
  cursor: pointer;
}
.lightbox__close:hover { background: var(--c-white); }

/* Related products */
.related-section { padding-block: 0 var(--section-gap); }

/* 13.5 Cart */
.cart-page { padding-block: clamp(34px, 5vw, 60px) var(--section-gap); }
.cart-layout { display: grid; gap: clamp(22px, 3vw, 36px); align-items: start; }
@media (min-width: 1000px) {
  .cart-layout { grid-template-columns: 1.55fr 1fr; }
}
.cart-items { display: flex; flex-direction: column; gap: 14px; }
.cart-item {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 16px;
  align-items: center;
  background: var(--c-surface);
  border-radius: var(--r-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}
.cart-item__thumb { display: block; width: 92px; aspect-ratio: 1; border-radius: var(--r-sm); overflow: hidden; background: var(--c-bg-2); }
.cart-item__thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__title { display: inline-block; font-family: var(--font-heading); font-weight: 600; font-size: 0.98rem; color: var(--c-ink); line-height: 1.4; }
.cart-item__title:hover { color: var(--c-accent); }
.cart-item__variant { font-size: 0.85rem; color: var(--c-ink-soft); margin-top: 3px; }
.cart-item__unit { font-size: 0.85rem; color: var(--c-ink-faint); margin-top: 3px; }
.cart-item__qty { margin-top: 10px; }
.cart-item__side { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; align-self: start; padding-top: 4px; }
.cart-item__line-total { font-family: var(--font-heading); font-weight: 700; font-size: 1.02rem; color: var(--c-accent); white-space: nowrap; }
.cart-item__remove { font-size: 0.82rem; color: var(--c-ink-faint); text-decoration: underline; text-underline-offset: 3px; }
.cart-item__remove:hover { color: var(--c-accent); }
@media (max-width: 560px) {
  .cart-item { grid-template-columns: 72px 1fr; }
  .cart-item__thumb { width: 72px; }
  .cart-item__side { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; padding-top: 0; }
}
.cart-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; }
.cart-actions__update { font-family: var(--font-heading); font-weight: 600; font-size: 0.88rem; color: var(--c-ink-soft); text-decoration: underline; text-underline-offset: 4px; }
.cart-actions__update:hover { color: var(--c-accent); }
.cart-actions__continue { font-family: var(--font-heading); font-weight: 600; font-size: 0.92rem; color: var(--c-accent); }
.cart-actions__continue:hover { color: var(--c-accent-deep); }

.cart-summary {
  background: var(--c-bg-2);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 30px);
  box-sizing: border-box;
}
@media (min-width: 1000px) {
  .cart-summary { position: sticky; top: 118px; }
}
.cart-summary__heading { font-size: 1.02rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.cart-summary__rows { margin: 0 0 6px; }
.cart-summary__row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-block: 9px; }
.cart-summary__row dt { font-family: var(--font-heading); font-weight: 600; font-size: 0.92rem; color: var(--c-ink-soft); }
.cart-summary__row dd { margin: 0; font-family: var(--font-heading); font-weight: 700; color: var(--c-ink); }
.cart-summary__row--discount dt { color: var(--c-accent); }
.cart-summary__row--discount dd { color: var(--c-accent); }
.cart-summary__row--muted dd { font-weight: 500; font-size: 0.85rem; color: var(--c-ink-faint); }
.cart-summary__row--total { border-top: 1px solid var(--c-line); margin-top: 6px; padding-top: 14px; }
.cart-summary__row--total dt { color: var(--c-ink); font-size: 1rem; }
.cart-summary__row--total dd { font-size: 1.2rem; color: var(--c-accent); }
.cart-coupon { display: flex; gap: 10px; margin-block: 14px 4px; }
.cart-coupon__input { flex: 1; background: var(--c-surface); padding-block: 11px; }
.cart-coupon .button { padding: 10px 20px; font-size: 0.85rem; flex-shrink: 0; }
.cart-coupon__codes { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 10px; padding: 0; list-style: none; }
.cart-coupon__pill { display: inline-flex; align-items: center; gap: 8px; background: var(--c-surface); border-radius: var(--r-pill); padding: 5px 8px 5px 14px; font-size: 0.82rem; font-family: var(--font-heading); font-weight: 600; color: var(--c-accent); }
.cart-coupon__pill button { width: 20px; height: 20px; border-radius: 50%; border: 0; background: var(--c-accent-soft); color: var(--c-accent); font-size: 0.8rem; line-height: 1; cursor: pointer; }
.cart-coupon__pill button:hover { background: var(--c-accent); color: var(--c-white); }
.cart-note { margin-top: 16px; }
.cart-note label { display: block; margin-bottom: 7px; font-size: 0.85rem; }
.cart-note textarea { min-height: 84px; resize: vertical; background: var(--c-surface); }
.cart-note__hint { margin: 6px 0 0; font-size: 0.78rem; color: var(--c-ink-faint); }
.cart-summary__checkout { width: 100%; margin-top: 18px; padding-block: 15px; }
.cart-summary__checkout span { font-weight: 700; }
.ship-progress { margin-top: 18px; }
.ship-progress__track { height: 8px; border-radius: var(--r-pill); background: rgba(58, 64, 72, 0.14); overflow: hidden; }
.ship-progress__fill { display: block; height: 100%; border-radius: var(--r-pill); background: linear-gradient(90deg, var(--c-coral), var(--c-accent)); transition: width 0.5s var(--ease); }
.ship-progress__label { margin: 9px 0 0; font-family: var(--font-heading); font-weight: 600; font-size: 0.84rem; color: var(--c-accent); text-align: center; }

/* Empty cart */
.cart-empty { text-align: center; max-width: 520px; margin-inline: auto; padding-block: clamp(10px, 3vw, 30px); }
.cart-empty__cat { width: min(240px, 60vw); border-radius: var(--r-lg); margin: 0 auto 26px; box-shadow: var(--shadow-md); }
.cart-empty .display-title { font-size: clamp(2.2rem, 4.4vw, 3.2rem); margin-bottom: 12px; }
.cart-empty p { color: var(--c-ink-soft); margin-bottom: 26px; }

/* 13.6 Checkout & commerce pages */
.winky-commerce-content {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding: clamp(28px, 4.5vw, 52px) var(--page-pad) var(--section-gap);
  box-sizing: border-box;
}
.checkout-head { text-align: center; margin-bottom: clamp(24px, 3.5vw, 40px); }
.checkout-head .section-head__eyebrow { margin-bottom: 12px; }
.checkout-head .display-title { font-size: clamp(2.3rem, 4.6vw, 3.6rem); margin: 0 0 10px; }
.checkout-back { font-family: var(--font-heading); font-weight: 600; font-size: 0.92rem; color: var(--c-accent); }
.checkout-back:hover { color: var(--c-accent-deep); }

form.checkout { display: grid; gap: 36px; align-items: start; }
@media (min-width: 1080px) {
  form.checkout { grid-template-columns: 1.12fr 0.95fr; gap: 48px; }
  #customer_details { grid-column: 1; grid-row: 1 / span 2; }
  #order_review_heading { grid-column: 2; grid-row: 1; margin-bottom: 16px; }
  #order_review { grid-column: 2; grid-row: 2; position: sticky; top: 118px; }
}
#customer_details .col-1, #customer_details .col-2 { float: none; width: 100%; }
#customer_details .col-2 { margin-top: 30px; }
.woocommerce-billing-fields h3, .woocommerce-additional-fields h3,
#order_review_heading, .woocommerce-form-login h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--c-accent);
  margin-bottom: 18px;
}
.woocommerce-billing-fields h3 span, .woocommerce-additional-fields h3 span { display: none; }
.form-row { margin: 0 0 16px; padding: 0; }
.form-row::before, .form-row::after { display: none; }
.form-row label { display: block; margin-bottom: 7px; }
.form-row label .required { color: var(--c-coral); text-decoration: none; }
.form-row input[type="text"], .form-row input[type="email"], .form-row input[type="tel"],
.form-row input[type="password"], .form-row input[type="number"], .form-row textarea { background: var(--c-surface); }
/* WC 11's own .form-row rules (0,3,1) out-rank the bare selectors above;
   re-apply the brand field sizing at matching specificity. */
.woocommerce form .form-row { margin: 0 0 16px; padding: 0; }
.woocommerce form .form-row .input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  padding: 13px 18px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-md);
}
.form-row-wide { clear: both; }
.form-row .select, .select2-container { width: 100% !important; }
.select2-container .select2-selection--single {
  height: 48px;
  background: var(--c-surface);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-md);
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 45px;
  padding: 0 16px;
  color: var(--c-ink);
  font-family: var(--font-body);
}
.select2-container--default .select2-selection--single .select2-selection__arrow { height: 45px; right: 12px; }
.select2-container--default .select2-selection--single .select2-selection__arrow b { border-color: var(--c-accent) transparent transparent transparent; }
.select2-dropdown { border: 1.5px solid var(--c-line); border-radius: var(--r-sm); overflow: hidden; }
.select2-container--default .select2-results__option--highlighted[aria-selected] { background: var(--c-accent); }
.woocommerce-form-login { background: var(--c-surface); border-radius: var(--r-md); padding: 22px 24px; margin-bottom: 26px; box-shadow: var(--shadow-sm); }
.woocommerce-form-login p.form-row { margin-bottom: 12px; }
.woocommerce-info a.showcoupon, .woocommerce-info a.showlogin { color: var(--c-accent); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.woocommerce-info a.showcoupon:hover, .woocommerce-info a.showlogin:hover { color: var(--c-accent-deep); }
.checkout_coupon { background: var(--c-surface); border-radius: var(--r-md); padding: 18px 20px; margin-bottom: 24px; }
/* WC 11 also styles form.checkout_coupon with a 5px-radius lavender
   border; re-assert the brand box at equal specificity. */
.woocommerce form.checkout_coupon {
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 18px 20px;
}
.checkout_coupon .form-row { display: inline-block; margin: 0 10px 0 0; }
.checkout_coupon input { min-width: 220px; }
.checkout_coupon .button { padding: 11px 22px; }

#order_review { background: var(--c-surface); border-radius: var(--r-lg); padding: clamp(20px, 2.6vw, 28px); box-shadow: var(--shadow-sm); box-sizing: border-box; min-width: 0; }
.woocommerce-checkout-review-order-table { border: 0; width: 100%; table-layout: fixed; }
.woocommerce-checkout-review-order-table .product-name { width: 62%; }
.woocommerce-checkout-review-order-table .product-total { width: 38%; }
.woocommerce-checkout-review-order-table thead { display: none; }
.woocommerce .woocommerce-checkout-review-order-table td,
.woocommerce .woocommerce-checkout-review-order-table th,
.woocommerce table.shop_table .woocommerce-shipping-totals td,
.woocommerce table.shop_table .woocommerce-shipping-totals th {
  border-top: 0;
  border-bottom: 1px solid var(--c-line);
  padding: 12px 4px;
  vertical-align: top;
  line-height: 1.5;
}
.woocommerce-checkout-review-order-table tr:last-child td, .woocommerce-checkout-review-order-table tr:last-child th { border-bottom: 0; }
.woocommerce-checkout-review-order-table .product-name { font-family: var(--font-heading); font-weight: 600; color: var(--c-ink); }
.woocommerce-checkout-review-order-table .product-name .product-quantity { color: var(--c-accent); font-weight: 700; }
.woocommerce-checkout-review-order-table .product-total, .woocommerce-checkout-review-order-table .cart-subtotal td,
.woocommerce-checkout-review-order-table .order-total td { text-align: right; }
.woocommerce-checkout-review-order-table .cart-subtotal th, .woocommerce-checkout-review-order-table .order-total th { font-family: var(--font-heading); font-size: 0.92rem; color: var(--c-ink-soft); }
.woocommerce-checkout-review-order-table .order-total th { color: var(--c-ink); font-size: 1rem; }
.woocommerce-checkout-review-order-table .order-total .amount { font-size: 1.25rem; color: var(--c-accent); font-weight: 700; }

/* Checkout line items — thumbnail + name, quantity and variation meta
   stacked under the title (Tinker-style summary rows). */
.checkout-product { display: flex; align-items: flex-start; gap: 12px; }
.checkout-product__thumb { width: 56px; height: 64px; border-radius: var(--r-sm); overflow: hidden; background: var(--c-bg-2); flex-shrink: 0; }
.checkout-product__thumb img { width: 100%; height: 100%; object-fit: cover; }
.checkout-product__info { min-width: 0; flex: 1; }
.checkout-product__name { display: block; font-family: var(--font-heading); font-weight: 600; color: var(--c-ink); line-height: 1.35; }
.woocommerce-checkout-review-order-table .checkout-product__info .product-quantity { display: block; margin-top: 4px; font-family: var(--font-body); font-weight: 500; font-size: 0.84rem; color: var(--c-ink-faint); }
.checkout-product .variation { display: flex; flex-wrap: wrap; gap: 2px 10px; margin: 4px 0 0; padding: 0; font-size: 0.82rem; color: var(--c-ink-soft); list-style: none; }
.checkout-product .variation dt { display: none; }
.checkout-product .variation dd { margin: 0; }

.woocommerce-shipping-totals th { font-family: var(--font-heading); font-size: 0.92rem; color: var(--c-ink-soft); vertical-align: top; }
#shipping_method { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
#shipping_method li { display: flex; align-items: center; gap: 8px; font-size: 0.92rem; }
#shipping_method li input { accent-color: var(--c-accent); margin: 0; flex-shrink: 0; }
/* 配送名称文本是匿名 flex 项，放不下时不换行会把金额顶出容器；
   wrap + overflow-wrap + 金额 margin-left:auto，窄列下文本换行、金额仍贴右。 */
.woocommerce ul#shipping_method li label { margin: 0; flex: 1; min-width: 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 4px 10px; overflow-wrap: anywhere; font-family: var(--font-body); font-weight: 400; font-size: 0.92rem; color: var(--c-ink); }
.woocommerce ul#shipping_method li label > .amount { flex-shrink: 0; margin-left: auto; color: var(--c-ink); font-weight: 700; white-space: nowrap; }

#payment { background: var(--c-bg-2); border-radius: var(--r-md); padding: 18px 20px; margin-top: 20px; }
#payment ul.payment_methods { list-style: none; margin: 0; padding: 0; border-bottom: 1px solid var(--c-line); }
#payment ul.payment_methods li { margin-bottom: 12px; }
#payment ul.payment_methods li label { display: inline; font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; color: var(--c-ink); }
#payment ul.payment_methods li input { accent-color: var(--c-accent); margin-right: 6px; }
#payment .payment_box { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--r-sm); padding: 12px 16px; margin: 10px 0 4px; font-size: 0.88rem; color: var(--c-ink-soft); position: relative; }
#payment .payment_box::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 22px;
  border: 6px solid transparent;
  border-bottom-color: var(--c-surface);
  border-top: 0;
}
#payment .place-order { padding-top: 16px; margin-bottom: 0; }
#payment .place-order .button { width: 100%; padding-block: 16px; font-size: 1rem; }
.woocommerce-privacy-policy-text { font-size: 0.82rem; color: var(--c-ink-soft); margin-bottom: 14px; }
.woocommerce-privacy-policy-text p { margin: 0; }
.woocommerce-terms-and-conditions-wrapper { margin-bottom: 16px; }
.woocommerce-terms-and-conditions-wrapper label { font-family: var(--font-body); font-weight: 400; font-size: 0.9rem; color: var(--c-ink); }
.woocommerce-terms-and-conditions-wrapper input { accent-color: var(--c-accent); }
.woocommerce-invalid input, .woocommerce-invalid .select2-selection { border-color: #c0392b !important; }

/* Order received (thank-you) page */
.woocommerce-order-received .woocommerce-message { margin-bottom: 26px; }
.woocommerce-order-overview { background: var(--c-surface); border-radius: var(--r-lg); padding: clamp(20px, 2.6vw, 28px); box-shadow: var(--shadow-sm); list-style: none; margin: 0 0 34px; display: grid; gap: 10px; }
@media (min-width: 750px) { .woocommerce-order-overview { grid-template-columns: repeat(3, 1fr); } }
.woocommerce-order-overview li { font-size: 0.92rem; color: var(--c-ink-soft); }
.woocommerce-order-overview li strong { display: block; font-family: var(--font-heading); color: var(--c-ink); font-size: 1rem; }
.woocommerce-order-details, .woocommerce-customer-details { margin-bottom: 34px; }
.woocommerce-order-details__title, .woocommerce-column__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--c-accent);
  margin-bottom: 14px;
}
.woocommerce-order-details table { background: var(--c-surface); border-radius: var(--r-md); padding: 6px 14px; box-shadow: var(--shadow-sm); }
.woocommerce-order-details tfoot td, .woocommerce-order-details tfoot th { border-bottom: 0; }
.woocommerce-order-details .order-again .button { margin-top: 14px; }
.woocommerce-customer-details address { background: var(--c-surface); border-radius: var(--r-md); padding: 18px 22px; font-style: normal; color: var(--c-ink-soft); box-shadow: var(--shadow-sm); line-height: 1.8; }
.woocommerce-customer-details .woocommerce-column--billing-address { margin-bottom: 24px; }

/* 13.19 — Retune WooCommerce's own palette to the brand.
   WC 11 paints its buttons through :where(body:not(.woocommerce-block-theme-
   has-button-styles)) rules with literal purple/lavender colors, which
   out-rank plain .button. body.winky-theme selectors re-take the cascade
   (the .woocommerce class sits on <body> for product pages but on a wrapper
   div for shortcode pages, so both scopes are listed). */
:root {
  --wc-green: #3a4048;   /* "validated" field borders — neutral brand tone */
  --wc-red: #c0392b;
}
body.winky-theme.woocommerce a.button,
body.winky-theme.woocommerce button.button,
body.winky-theme.woocommerce input.button,
body.winky-theme.woocommerce #respond input#submit,
body.winky-theme .woocommerce a.button,
body.winky-theme .woocommerce button.button,
body.winky-theme .woocommerce input.button,
body.winky-theme .woocommerce #respond input#submit,
body.winky-theme.woocommerce a.button.alt,
body.winky-theme.woocommerce button.button.alt,
body.winky-theme.woocommerce #payment #place_order,
body.winky-theme .woocommerce a.button.alt,
body.winky-theme .woocommerce button.button.alt,
body.winky-theme .woocommerce #payment #place_order {
  background-color: var(--c-accent);
  border: 2px solid var(--c-accent);
  border-radius: var(--r-pill);
  color: var(--c-white);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: none;
  text-shadow: none;
}
body.winky-theme.woocommerce a.button:hover,
body.winky-theme.woocommerce button.button:hover,
body.winky-theme.woocommerce button.button.alt:hover,
body.winky-theme.woocommerce #payment #place_order:hover,
body.winky-theme .woocommerce a.button:hover,
body.winky-theme .woocommerce button.button:hover,
body.winky-theme .woocommerce button.button.alt:hover,
body.winky-theme .woocommerce #payment #place_order:hover {
  background-color: var(--c-accent-deep);
  border-color: var(--c-accent-deep);
  color: var(--c-white);
}
body.winky-theme.woocommerce button.button:disabled,
body.winky-theme.woocommerce button.button:disabled[disabled],
body.winky-theme.woocommerce button.button.alt:disabled,
body.winky-theme.woocommerce button.button.alt:disabled[disabled],
body.winky-theme.woocommerce button.button:disabled:hover,
body.winky-theme.woocommerce button.button.alt:disabled:hover,
body.winky-theme .woocommerce button.button:disabled,
body.winky-theme .woocommerce button.button.alt:disabled:hover {
  background-color: #efe7e0;
  border-color: #efe7e0;
  color: #9a8f88;
}
/* Ghost-style secondary buttons (Apply coupon) keep the outline. */
body.winky-theme.woocommerce button.button-secondary,
body.winky-theme.woocommerce a.button-secondary,
body.winky-theme .woocommerce button.button-secondary,
body.winky-theme .woocommerce a.button-secondary {
  background-color: transparent;
  border-color: var(--c-accent);
  color: var(--c-accent);
}
body.winky-theme.woocommerce button.button-secondary:hover,
body.winky-theme .woocommerce button.button-secondary:hover {
  background-color: var(--c-accent);
  color: var(--c-white);
}
/* Payment box: WC paints it translucent purple on checkout/cart pages and
   forces a 5px radius; the brand box is 14px. */
body.winky-theme #add_payment_method #payment,
body.winky-theme .woocommerce-cart #payment,
body.winky-theme .woocommerce-checkout #payment {
  background: var(--c-bg-2);
  border-radius: var(--r-md);
}
.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select {
  border-color: #c0392b;
}
.woocommerce form .form-row.woocommerce-invalid label { color: #c0392b; }
/* --------------------------------------------------------------------------
   13.20 — About page
   Template: template-about.php — hero, story, pillars, values, quote,
   timeline, voices, CTA. Reuses the homepage block language (full-bleed
   image heroes, gradient-overlay image cards, hairline dividers) instead
   of a second, competing card system.
   -------------------------------------------------------------------------- */
.about-hero {
  position: relative;
  min-height: clamp(480px, 74svh, 660px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--c-white);
}
.about-hero__media,
.about-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 62% 58% at 50% 42%, rgba(29, 28, 28, 0.55) 0%, rgba(29, 28, 28, 0) 72%),
    linear-gradient(180deg, rgba(29, 28, 28, 0.72) 0%, rgba(29, 28, 28, 0.38) 45%, rgba(29, 28, 28, 0.64) 100%);
}
.about-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 2.6vw, 26px);
  padding-block: clamp(56px, 9vw, 92px);
}
.about-hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-coral);
  margin: 0 0 8px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}
.about-hero__content .display-title {
  color: var(--c-white);
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  margin: 0;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}
.about-hero__lede {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}
.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.about-hero__actions .btn--ghost {
  background: rgba(29, 28, 28, 0.32);
  border-color: rgba(255, 255, 255, 0.92);
  color: var(--c-white);
}
.about-hero__actions .btn--ghost:hover {
  background: var(--c-white);
  border-color: var(--c-white);
  color: var(--c-accent);
}
/* Stats read as a quiet strip of numbers, not cards — same white-on-image
   treatment as the hero type; hairline separators keep them airy. */
.about-hero__stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: clamp(16px, 3vw, 30px) 0 0;
  padding: 0;
  width: min(100%, 760px);
}
.about-hero__stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 18px 2px;
}
.about-hero__stats li:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}
.about-hero__stats strong {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  color: var(--c-white);
}
.about-hero__stats span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.45;
  min-height: 2.2em;
  color: rgba(255, 255, 255, 0.78);
}
@media (max-width: 749px) {
  .about-hero__stats li:nth-child(3) { border-left: 0; padding-top: 12px; }
  .about-hero__stats li:nth-child(n + 3) { border-top: 1px solid rgba(255, 255, 255, 0.16); }
}

/* Story */
.about-story {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  padding-block-start: max(24px, calc((var(--section-gap) + 40px) / 2));
  padding-block-end: clamp(48px, 7vw, 92px);
  align-items: center;
}
.about-story__media {
  position: relative;
}
.about-story__media img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}
.about-story__badge {
  position: absolute;
  top: clamp(12px, 3vw, 20px);
  left: clamp(12px, 3vw, 20px);
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: var(--c-accent);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}
.about-story__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.about-story__copy h2 {
  margin-bottom: 14px;
}
.about-story__text p {
  color: var(--c-ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.08rem);
}
.about-story__signature {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--c-accent);
  margin: 10px 0 22px;
}
.about-story__copy .button {
  background: transparent;
  border-color: var(--c-accent);
  color: var(--c-accent);
}
.about-story__copy .button:hover {
  background: var(--c-accent);
  color: var(--c-white);
}

/* Pillars — same gradient-overlay image card as the homepage collections. */
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 44px);
  padding-block-start: clamp(48px, 7vw, 92px);
  padding-block-end: clamp(48px, 7vw, 92px);
}
.about-pillars__grid {
  display: grid;
  gap: clamp(12px, 2vw, 20px);
}
.about-pillar-card {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.about-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.about-pillar-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.about-pillar-card:hover img { transform: scale(1.05); }
.about-pillar-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 28, 28, 0) 28%, rgba(29, 28, 28, 0.86) 100%);
}
.about-pillar-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 30px 22px 22px;
  text-align: left;
}
.about-pillar-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--c-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6), 0 0 22px rgba(29, 28, 28, 0.5);
}
.about-pillar-card__text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  display: none;
}
.about-pillar-card__go {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-coral);
  margin-top: 4px;
}
.about-pillar-card:hover .about-pillar-card__go { text-decoration: underline; text-underline-offset: 4px; }

/* Values — hairline rows instead of a feature-grid, so the page keeps
   breathing; the ✦ star is the only motif, echoing the section headings. */
.about-values {
  padding-block-start: clamp(48px, 7vw, 92px);
  padding-block-end: clamp(48px, 7vw, 92px);
}
.about-values__grid {
  display: grid;
  gap: 0;
  margin-top: clamp(22px, 3.5vw, 40px);
}
.about-value-card {
  padding: clamp(20px, 3vw, 30px) clamp(4px, 2vw, 24px);
  text-align: center;
  border-top: 1px solid var(--c-line);
  min-width: 0;
}
.about-value-card:last-child { border-bottom: 1px solid var(--c-line); }
.about-value-card h3 {
  font-size: 1.05rem;
  margin: 0 0 8px;
}
.about-value-card h3::before {
  content: "✦ ";
  color: var(--c-coral);
  font-weight: 400;
}
.about-value-card p {
  color: var(--c-ink-soft);
  font-size: 0.95rem;
  margin: 0 auto;
  max-width: 380px;
  line-height: 1.7;
}

/* Pull quote */
.about-quote {
  padding-block-start: clamp(48px, 7vw, 92px);
  padding-block-end: clamp(48px, 7vw, 92px);
}
.about-quote__inner {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}
.about-quote blockquote {
  margin: 0 0 28px;
}
.about-quote blockquote p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--c-cream);
  margin: 0;
}
.about-quote__signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--c-white);
  margin: 0;
}
.about-quote__star {
  color: var(--c-coral);
  font-size: 0.85rem;
}

/* Timeline — the hairline + dots echo the section-head rules, and the
   milestone text stays on the cream ground (no extra card layer). */
.about-timeline {
  padding-block-start: clamp(48px, 7vw, 92px);
  padding-block-end: clamp(48px, 7vw, 92px);
}
.about-timeline__list {
  list-style: none;
  margin: clamp(26px, 4vw, 48px) auto 0;
  padding: 0;
  max-width: 620px;
  position: relative;
}
.about-timeline__list::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 5px;
  width: 2px;
  background: var(--c-line);
}
.about-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 12px 1fr;
  column-gap: clamp(20px, 4vw, 34px);
  padding-bottom: clamp(26px, 4vw, 40px);
}
.about-timeline__item:last-child { padding-bottom: 0; }
.about-timeline__dot {
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--c-coral);
  box-shadow: 0 0 0 4px var(--c-bg);
}
.about-timeline__year {
  grid-column: 2;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-coral);
  margin: 0 0 6px;
}
.about-timeline__card {
  grid-column: 2;
  margin: 0;
}
.about-timeline__card h3 {
  font-size: 1.08rem;
  margin: 0 0 4px;
}
.about-timeline__card p {
  color: var(--c-ink-soft);
  font-size: 0.95rem;
  margin: 0;
}

/* Voices — plain quote columns with a hairline start rule; the card box,
   icon-chips and borders from the first pass are gone. */
.about-voices {
  padding-block-start: clamp(48px, 7vw, 92px);
  padding-block-end: clamp(48px, 7vw, 92px);
}
.about-voices__grid {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  margin-top: clamp(24px, 4vw, 44px);
}
.about-voice-card {
  margin: 0;
  padding-left: clamp(18px, 2.6vw, 26px);
  border-left: 2px solid var(--c-coral);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-voice-card__stars {
  color: var(--c-coral);
  letter-spacing: 0.16em;
  font-size: 0.9rem;
  line-height: 1;
}
.about-voice-card blockquote {
  margin: 0;
  color: var(--c-ink);
  font-size: 1.02rem;
  line-height: 1.75;
}
.about-voice-card figcaption {
  padding-top: 2px;
}
.about-voice-card figcaption strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-ink);
}
.about-voice-card figcaption span {
  display: block;
  margin-top: 2px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink-faint);
}

/* Final CTA — quiet text band, not a second landing page. */
.about-cta {
    padding-block-start: clamp(48px, 7vw, 92px);
  padding-block-end: clamp(48px, 7vw, 92px);
}
.about-cta__inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.about-cta__inner .display-title {
  color: var(--c-accent);
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0;
}
.about-cta__inner .display-title .star { color: var(--c-coral); }
.about-cta__inner p {
  color: var(--c-ink-soft);
  margin: 0;
}
.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}
.about-cta__email {
  font-size: 0.95rem;
  margin-top: 10px !important;
}

/* About page responsive grid */
@media (min-width: 750px) {
  .about-hero__stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .about-story { grid-template-columns: 1fr 1fr; }
  .about-pillars__grid { grid-template-columns: repeat(3, 1fr); }
  .about-values__grid { grid-template-columns: repeat(2, 1fr); }
  .about-voices__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 750px) and (max-width: 1099px) {
  .about-pillars__grid { grid-template-columns: repeat(2, 1fr); }
}/* --------------------------------------------------------------------------
   13.21 — Artists page
   Template: template-artists.php — hero, roster (gradient image cards),
   CTA. Mirrors the About system: a full-bleed text hero on cream, a light
   peach roster band with homepage collection-card language, and a quiet
   text CTA.
   -------------------------------------------------------------------------- */
.artists-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: clamp(64px, 8vw, 104px);
  border-bottom: 1px solid var(--c-line);
}
.artists-hero__eyebrow {
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-coral);
}
.artists-hero__title {
  margin: 0 auto 22px;
  max-width: 12ch;
  color: var(--c-accent);
}
.artists-hero__lede {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--c-ink-soft);
  font-size: clamp(1.02rem, 1.6vw, 1.15rem);
  line-height: 1.7;
}
.artists-hero__lede p { margin: 0; }
.artists-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Roster band */
.artists-roster-section { background: var(--c-bg-2); }
.artists-roster { padding-block: clamp(48px, 7vw, 92px); }

/* Artist cards — gradient image cards, homepage collection-card language. */
.winky-artists-grid {
  display: grid;
  gap: clamp(18px, 3vw, 30px);
  grid-template-columns: 1fr;
}
@media (min-width: 750px) { .winky-artists-grid { grid-template-columns: repeat(3, 1fr); } }
.winky-artist-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-bg-2);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  text-align: left;
}
.winky-artist-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.winky-artist-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.winky-artist-card:hover img { transform: scale(1.05); }
.winky-artist-card__overlay {
  position: absolute;
  inset: 0;
  /* Multi-stop: keep the upper art clear, deepen fast across the text block
     so names stay readable over busy card art. */
  background: linear-gradient(180deg, rgba(29, 28, 28, 0) 30%, rgba(29, 28, 28, 0.55) 46%, rgba(29, 28, 28, 0.88) 62%, rgba(29, 28, 28, 0.96) 82%, rgba(29, 28, 28, 1) 100%);
}
.winky-artist-card__content {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 22px clamp(18px, 2vw, 26px) clamp(20px, 2.6vw, 28px);
  color: var(--c-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6), 0 0 22px rgba(29, 28, 28, 0.5);
  z-index: 2;
}
.winky-artist-card__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  line-height: 1.15;
}
.winky-artist-card__role {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-coral);
}
.winky-artist-card__bio {
  display: block;
  font-size: 0.88rem;
  line-height: 1.55;
  opacity: 0.92;
  margin-top: 2px;
}
.winky-artist-card__go {
  display: block;
  margin-top: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--c-coral);
}

/* Collaborate CTA — quiet text band, same language as About. */
.artists-cta-section { background: var(--c-bg); border-top: 1px solid rgba(58, 64, 72, 0.22); }
.artists-cta { padding-block: clamp(48px, 7vw, 92px); }
.artists-cta__inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.artists-cta__inner .display-title {
  color: var(--c-accent);
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0;
}
.artists-cta__inner p { color: var(--c-ink-soft); margin: 0; }
.artists-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}
.artists-cta__email {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 0.4em;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--c-ink-soft);
  margin-top: 28px;
}
.artists-cta__email a { color: var(--c-accent); font-weight: 600; }

/* 13.21b — Singular artist page
   Template: template-artist.php — same hero language as the roster page,
   then a portrait + story band and a quiet "more from the studio" strip. */
.artist-hero__role {
  margin: -8px 0 22px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-coral);
}
.artist-profile-section { background: var(--c-bg-2); }
.artist-profile {
  padding-block: clamp(48px, 7vw, 92px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
@media (min-width: 900px) {
  .artist-profile {
    grid-template-columns: minmax(260px, 380px) minmax(0, 560px);
    justify-content: center;
  }
}
.artist-portrait {
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--c-bg);
}
.artist-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Undo .winky-page__content's auto centering — inside the band it sits in a
   grid cell next to the portrait. */
.artist-profile__content { margin-inline: 0; }
.artist-squad { padding-block: clamp(48px, 7vw, 92px); }
.winky-artists-grid--duo { max-width: 760px; }
@media (min-width: 750px) { .winky-artists-grid--duo { grid-template-columns: repeat(2, 1fr); } }

/* --------------------------------------------------------------------------
   14. Polish pass — pixel dust, CRT scanlines, parallax & holo sheen (v3.2)
   Motion-only layer: no colors, sizes, spacing or layout changes. Every
   rule degrades to the current static design under prefers-reduced-motion
   or when design.js does not run.
   -------------------------------------------------------------------------- */

/* 14.1 Hero pixel dust — canvas injected by design.js into .hero. Sits
   above the slide overlay but below arrows/dots (z 3); never intercepts
   pointer events, so hero swipe/hover interactions keep working. */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* 14.2 CRT scanlines — static retro-monitor texture, no motion. The hero
   gets scanlines plus a soft vignette; banner panels only scanlines at
   lower strength so their light copy and white heading chips stay crisp. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(29, 28, 28, 0.05) 0 1px, transparent 1px 3px),
    radial-gradient(ellipse 95% 80% at 50% 45%, transparent 62%, rgba(29, 28, 28, 0.13) 100%);
}
.banner-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1; /* above the image + overlay, below __content (z 2) */
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(29, 28, 28, 0.03) 0 1px, transparent 1px 3px);
}

/* 14.3 Scroll parallax — design.js writes the shift custom properties from
   a rAF-throttled passive scroll listener. The small permanent scale is
   headroom so the shifted image never reveals an edge; JS skips writing
   on <768px and under reduced motion (var then stays 0px). */
.hero__media {
  transform: translate3d(0, var(--winky-hero-shift, 0px), 0) scale(1.09);
}
.banner-panel img {
  transform: translate3d(0, var(--winky-banner-shift, 0px), 0) scale(1.06);
}

/* 14.4 Holo sheen — a diagonal light band sweeps the artwork on hover,
   echoing the holographic card stock the shop sells. translateX with a
   115deg gradient reads as a diagonal pass; the band slides back out on
   unhover, which plays as the sheen leaving rather than snapping. */
.product-card__media::after,
.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.32) 50%, transparent 62%);
  transform: translateX(-130%);
  transition: transform 0.75s var(--ease);
}
.product-card:hover .product-card__media::after,
.product-card:focus-within .product-card__media::after,
.collection-card:hover::after,
.collection-card:focus-visible::after { transform: translateX(130%); }

/* 14.5 Staggered card reveals — design.js lifts .js-reveal from grid/track
   containers onto their cards. Cards keep their own hover transitions
   alongside the reveal ones (transition is one property, not additive). */
.product-card.js-reveal,
.collection-card.js-reveal,
.post-card.js-reveal,
.insta-card.js-reveal,
.carousel__slide.js-reveal {
  transition: opacity 0.7s var(--ease), translate 0.7s var(--ease),
    transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

/* 14.6 Cart bubble pop — the count bounces once whenever it changes. */
.cart-bubble.is-popping { animation: winky-pop 0.45s var(--ease); }
@keyframes winky-pop {
  0% { transform: scale(1); }
  45% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

/* 14.7 Section star twinkle — a slow, hard-stepped blink like a save-point
   sparkle. Opacity only, never fully off, one small glyph per heading. */
.section-title .star {
  display: inline-block;
  animation: winky-star-blink 3.8s linear infinite;
}
@keyframes winky-star-blink {
  0%, 44% { opacity: 1; }
  48%, 60% { opacity: 0.45; }
  64%, 100% { opacity: 1; }
}

/* 14.8 Reduced motion — stop the loops. The static scanline texture stays
   (it is texture, not motion); the dust canvas is never injected. */
@media (prefers-reduced-motion: reduce) {
  .section-title .star { animation: none; }
  .cart-bubble.is-popping { animation: none; }
  .hero__particles { display: none; }
}