@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Nunito+Sans:opsz,wght@6..12,400;6..12,500;6..12,600;6..12,700;6..12,800&display=swap");

:root {
  /* Approved Style Lab exports */
  --cream-page: #FEF4D4;
  --cream-soft: #FFF7DE;
  --cream-panel: #FFFAEC;
  --white: #FFFFFF;
  --navy: #0C1324;
  --text-muted: #625C70;
  --border-soft: #EEDFC6;

  --pastel-pink: #FDDAD8;
  --pastel-mint: #D9EBD8;
  --pastel-lavender: #E6D1EA;
  --pastel-yellow: #FEE7AB;
  --footer-lavender: #DCC7ED;

  --accent-pink: #F47F9B;
  --accent-purple: #9074C7;
  --accent-blue: #68C5E8;
  --accent-yellow: #F4B33B;
  --accent-teal: #48B9AE;

  --font-heading: "Fredoka", ui-rounded, "Arial Rounded MT Bold", sans-serif;
  --font-body: "Nunito Sans", ui-sans-serif, system-ui, sans-serif;

  --logo-outline: #D7BEEA;
  --logo-outline-width: 22px;

  --header-height: 160px;
  --header-gutter: 40px;
  --radius-card: 20px;
  --radius-panel: 28px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;

  --transition-fast: 120ms ease;
  --transition-normal: 200ms ease;
  --transition-slow: 320ms ease;
  --carousel-autoplay-delay: 7000ms;

  /* Internal aliases used by the storefront components. */
  --cc-page: var(--cream-page);
  --cc-page-deep: var(--cream-soft);
  --cc-surface: var(--cream-panel);
  --cc-surface-strong: var(--white);
  --cc-ink: var(--navy);
  --cc-ink-soft: var(--text-muted);
  --cc-white: var(--white);
  --cc-line: rgba(12, 19, 36, 0.12);
  --cc-line-soft: rgba(12, 19, 36, 0.07);

  --cc-pink: var(--accent-pink);
  --cc-pink-soft: var(--pastel-pink);
  --cc-mint: var(--pastel-mint);
  --cc-lavender: var(--pastel-lavender);
  --cc-lavender-strong: var(--accent-purple);
  --cc-yellow: var(--pastel-yellow);
  --cc-blue: var(--accent-blue);
  --cc-teal: var(--accent-teal);
  --cc-gold: var(--accent-yellow);

  --cc-footer-start: var(--footer-lavender);
  --cc-footer-end: var(--footer-lavender);

  --cc-display: var(--font-heading);
  --cc-body: var(--font-body);

  --cc-content-max: 1400px;
  --cc-gutter: 40px;
  --cc-page-width: min(var(--cc-content-max), calc(100% - (var(--cc-gutter) * 2)));

  --cc-radius-xl: var(--radius-panel);
  --cc-radius-lg: var(--radius-card);
  --cc-radius-md: 16px;
  --cc-radius-sm: 12px;
  --cc-radius-pill: 999px;

  --cc-shadow-surface: none;
  --cc-shadow-hover: none;
  --cc-shadow-drawer: none;
  --cc-focus: none;

  /* Compatibility aliases retained for existing templates. */
  --cream: var(--cc-page);
  --cream-light: var(--cc-page-deep);
  --paper: var(--cc-surface);
  --ink: var(--cc-ink);
  --ink-soft: var(--cc-ink-soft);
  --pink: var(--cc-pink);
  --pink-pale: var(--cc-pink-soft);
  --mint: var(--cc-mint);
  --lavender: var(--cc-lavender);
  --lavender-deep: var(--cc-lavender-strong);
  --blue: var(--cc-blue);
  --yellow: var(--cc-yellow);
  --gold: var(--cc-gold);
  --line: var(--cc-line);
  --shadow: var(--cc-shadow-surface);
  --page: var(--cc-page-width);
  --radius-large: var(--cc-radius-xl);
  --radius-medium: var(--cc-radius-lg);
  --radius-small: var(--cc-radius-md);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--cc-page); scrollbar-width: thin; scrollbar-color: #B79BD2 #FFF7DE; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: #FFF7DE; }
::-webkit-scrollbar-thumb { background: #B79BD2; border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-purple); }
::-webkit-scrollbar-corner { background: #FFF7DE; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  color: var(--cc-ink);
  background: linear-gradient(180deg, #FDF1CD 0%, var(--cc-page) 48%, #FFF9E8 100%);
  font-family: var(--cc-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button, select { cursor: pointer; }
img, svg { max-width: 100%; }
img { height: auto; }
main { flex: 1 0 auto; }
h1, h2, h3, h4, h5, h6 { font-family: var(--cc-display); letter-spacing: -0.015em; }
p { text-wrap: pretty; }
::selection { background: var(--cc-pink-soft); color: var(--cc-ink); }
:focus-visible { outline: 3px solid var(--accent-blue); outline-offset: 3px; }
.page-shell { width: var(--cc-page-width); margin-inline: auto; }
.icon { width: 1.5rem; height: 1.5rem; display: block; flex: 0 0 auto; }
.icon-mask {
  background: currentColor;
  -webkit-mask: var(--icon-url) center / contain no-repeat;
  mask: var(--icon-url) center / contain no-repeat;
}
.is-hidden { display: none !important; }

/* Header */
.site-header { position: relative; z-index: 30; background: transparent; }
.header-row {
  width: 100%;
  min-height: var(--header-height);
  margin-inline: 0;
  padding-inline: var(--header-gutter);
  display: grid;
  grid-template-columns: minmax(64px, 1fr) minmax(390px, 760px) minmax(64px, 1fr);
  align-items: center;
  gap: 24px;
}
.header-icon {
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: var(--cc-radius-pill);
  background: transparent;
  display: grid;
  place-items: center;
  padding: 0;
  transition: background .18s ease, transform .18s ease;
}
.header-icon:hover { background: rgba(255,255,255,.62); transform: translateY(-1px); }
.header-icon .icon { width: 31px; height: 31px; }
.menu-trigger { justify-self: start; position: relative; z-index: 2; }
.menu-trigger .icon { width: 38px; height: 38px; }
.wordmark { display: block; width: 100%; min-width: 0; position: relative; z-index: 1; }
.wordmark img { display: block; width: 100%; height: auto; }
.cart-link { justify-self: end; position: relative; z-index: 2; }
.cart-badge {
  position: absolute;
  top: -3px;
  right: -5px;
  min-width: 27px;
  height: 27px;
  padding-inline: 6px;
  border-radius: var(--cc-radius-pill);
  background: #ef7898;
  color: white;
  border: 0;
  display: grid;
  place-items: center;
  font-size: .82rem;
  font-weight: 800;
}
.header-sparkles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.sparkle, .footer-sparkle, .decor-sparkle {
  display: block;
  width: 24px;
  aspect-ratio: 1;
  background: currentColor;
  clip-path: polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
}
.sparkle { position: absolute; opacity: .94; }
.sparkle--pink { color: var(--cc-pink); }
.sparkle--gold { color: var(--cc-gold); }
.sparkle--blue { color: #69c4e8; }
.sparkle--header-one { left: calc(50% - 472px); top: 41px; width: 32px; transform: rotate(5deg); }
.sparkle--header-two { left: calc(50% - 427px); top: 91px; width: 19px; transform: rotate(-12deg); }
.sparkle--header-three { right: calc(50% - 468px); top: 37px; width: 23px; transform: rotate(10deg); }
.sparkle--header-four { right: calc(50% - 428px); top: 89px; width: 19px; transform: rotate(-8deg); }

/* Menu drawer */
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 39;
  background: rgba(11,16,38,.30);
  backdrop-filter: blur(3px);
}
.site-menu {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 40;
  isolation: isolate;
  width: min(430px, calc(100vw - 28px));
  background: var(--cc-surface);
  box-shadow: none;
  transform: translateX(-105%);
  transition: transform .25s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.site-menu.is-open { transform: translateX(0); }
.site-menu__content {
  position: relative;
  z-index: 1;
  min-height: 0;
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 26px 28px 148px;
  scrollbar-width: thin;
  scrollbar-color: #B79BD2 transparent;
}
.site-menu__content::-webkit-scrollbar { width: 8px; }
.site-menu__content::-webkit-scrollbar-track { background: transparent; }
.site-menu__content::-webkit-scrollbar-thumb { background: #B79BD2; border-radius: 999px; }
.site-menu__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.site-menu__heading { position: relative; display: inline-flex; align-items: center; gap: 10px; }
.site-menu__heading strong { font-family: var(--cc-display); font-size: 1.58rem; }
.site-menu__heading-sparkle,
.menu-footer-sparkle {
  display: block;
  position: absolute;
  aspect-ratio: 1;
  background: currentColor;
  clip-path: polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
}
.site-menu__heading-sparkle--one { width: 16px; color: var(--accent-pink); left: -8px; top: -9px; transform: rotate(10deg); }
.site-menu__heading-sparkle--two { width: 11px; color: var(--accent-yellow); right: -16px; bottom: -1px; transform: rotate(-8deg); }
.menu-search { display: grid; gap: 7px; margin-bottom: 20px; }
.menu-search > label, .shop-controls label > span { font-size: .79rem; font-weight: 800; letter-spacing: .03em; }
.menu-search__control, .shop-search__control {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--cc-surface-strong);
  border: 1px solid var(--cc-line);
  border-radius: 15px;
  padding: 11px 13px;
}
.menu-search__control:focus-within, .shop-search__control:focus-within { box-shadow: none; border-color: rgba(53,105,180,.65); }
.menu-search__control .icon, .shop-search__control .icon { width: 21px; flex: 0 0 auto; }
.menu-search input, .shop-search input { width: 100%; border: 0; outline: 0; background: transparent; }
.menu-nav { display: grid; gap: 10px; }
.menu-nav__card,
.menu-nav__section {
  position: relative;
  border: 0;
  border-radius: 17px;
  overflow: hidden;
}
.menu-nav__card--shop { background: var(--pastel-pink); }
.menu-nav__section--artists { background: var(--pastel-mint); }
.menu-nav__section--designs { background: var(--pastel-lavender); }
.menu-nav__section--products { background: var(--pastel-yellow); }
.menu-nav__card {
  min-height: 76px;
  padding: 11px 14px 11px 12px;
  display: grid;
  grid-template-columns: 50px minmax(0,1fr) 23px;
  align-items: center;
  gap: 12px;
  transition: transform var(--transition-normal), background var(--transition-normal);
}
.menu-nav__card:hover { transform: translateY(-1px); }
.menu-nav__asset {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.menu-nav__asset img { width: 46px; height: 46px; object-fit: contain; }
.menu-nav__copy,
.menu-nav__summary-copy { min-width: 0; }
.menu-nav__copy { display: grid; gap: 1px; }
.menu-nav__copy strong,
.menu-nav summary strong {
  display: block;
  font-family: var(--cc-display);
  font-size: 1.07rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.menu-nav__copy small,
.menu-nav summary small {
  display: block;
  margin-top: 3px;
  color: #42485A;
  font-size: .79rem;
  font-weight: 600;
  line-height: 1.3;
}
.menu-nav__arrow { width: 21px; height: 21px; justify-self: end; }
.menu-nav summary {
  list-style: none;
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 11px 15px 11px 12px;
  cursor: pointer;
}
.menu-nav summary::-webkit-details-marker { display: none; }
.menu-nav__summary-copy { display: grid; grid-template-columns: 50px minmax(0,1fr); align-items: center; gap: 12px; }
.menu-nav summary::after {
  content: '+';
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.58);
  font-family: var(--cc-body);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1;
  flex: 0 0 auto;
}
.menu-nav details[open] summary::after { content: '−'; }
.menu-subnav {
  display: grid;
  gap: 2px;
  margin: -2px 14px 13px 74px;
  padding-top: 8px;
  border-top: 1px solid rgba(12,19,36,.08);
}
.menu-subnav a {
  padding: 8px 5px;
  border-radius: 9px;
  color: #454B5E;
  font-size: .92rem;
  font-weight: 650;
  line-height: 1.3;
}
.menu-subnav a:hover { background: rgba(255,255,255,.42); color: var(--cc-ink); }
.menu-empty { color: var(--cc-ink-soft); font-size: .9rem; padding-block: 7px; }
.menu-nav__pages {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 8px;
  padding-top: 7px;
  margin-top: 2px;
}
.menu-nav__pages a {
  min-height: 52px;
  padding: 10px 7px;
  border-radius: 14px;
  background: rgba(230,209,234,.48);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: .86rem;
  font-weight: 800;
  line-height: 1.2;
}
.menu-nav__pages a:hover { background: rgba(230,209,234,.74); }
.site-menu__footer-art {
  position: absolute;
  z-index: 0;
  inset: auto 0 0;
  height: 112px;
  background: var(--footer-lavender);
  pointer-events: none;
}
.site-menu__footer-wave {
  position: absolute;
  inset: -54px 0 auto;
  width: 100%;
  height: 64px;
  display: block;
}
.site-menu__footer-wave path { fill: var(--footer-lavender); }
.menu-footer-sparkle { color: rgba(255,255,255,.72); }
.menu-footer-sparkle--one { width: 18px; left: 42px; top: 28px; transform: rotate(7deg); }
.menu-footer-sparkle--two { width: 9px; left: 154px; top: 62px; transform: rotate(-8deg); }
.menu-footer-sparkle--three { width: 22px; left: 246px; top: 20px; transform: rotate(10deg); }
.menu-footer-sparkle--four { width: 11px; right: 72px; top: 64px; transform: rotate(-4deg); }
.menu-footer-sparkle--five { width: 7px; right: 30px; top: 28px; transform: rotate(8deg); }

/* Homepage carousel */
.homepage-carousel {
  position: relative;
  background: var(--cream-panel);
  border: 0;
  border-radius: var(--cc-radius-xl);
  padding: 24px 66px 17px;
  box-shadow: none;
  overflow: visible;
}
.carousel-window { overflow: hidden; border-radius: 20px; }
.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform .42s cubic-bezier(.2,.75,.25,1);
  will-change: transform;
}
.carousel-track .product-card { flex: 0 0 calc((100% - 60px) / 4); }
.carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 43%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: var(--cc-radius-pill);
  background: var(--cc-lavender-strong);
  color: white;
  display: grid;
  place-items: center;
  box-shadow: none;
  transition: transform .18s ease, opacity .18s ease, background .18s ease;
}
.carousel-arrow:hover { transform: translateY(-50%) scale(1.045); background: #7d64bc; }
.carousel-arrow:disabled { opacity: .34; cursor: default; transform: translateY(-50%); }
.carousel-arrow--left { left: -12px; }
.carousel-arrow--right { right: -12px; }
.carousel-arrow .icon { width: 29px; height: 29px; }
.carousel-dots { min-height: 14px; display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.carousel-dots button { width: 10px; height: 10px; padding: 0; border: 0; border-radius: 50%; background: #d4c8ee; }
.carousel-dots button.is-active { background: var(--cc-ink); }

/* Product cards */
.product-card { min-width: 0; }
.product-card__art {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  border: 0;
}
.product-card__art::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
  z-index: 0;
}
.product-card__art::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: none;
  border-radius: inherit;
  z-index: 3;
}
.product-image { max-width: 100%; max-height: 100%; object-fit: contain; object-position: center; display: block; position: relative; z-index: 2; }
.product-card__art > .product-image {
  position: absolute;
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  max-width: calc(100% - 16px);
  max-height: calc(100% - 16px);
}
.product-image--empty { display: grid; place-items: center; color: var(--cc-ink-soft); font-size: .9rem; }
.product-card__sparkles {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: white;
  opacity: .42;
  pointer-events: none;
}
.product-card__sparkles .decor-sparkle { position: absolute; }
.product-card__sparkles .decor-sparkle--1 { width: 27px; left: 7%; top: 9%; transform: rotate(8deg); }
.product-card__sparkles .decor-sparkle--2 { width: 15px; right: 9%; top: 16%; transform: rotate(-10deg); }
.product-card__sparkles .decor-sparkle--3 { width: 19px; left: 13%; bottom: 14%; transform: rotate(-6deg); }
.product-card__sparkles .decor-sparkle--4 { width: 11px; right: 17%; bottom: 8%; transform: rotate(12deg); }
.product-card__sparkles .decor-sparkle--5 { width: 9px; right: 43%; top: 7%; transform: rotate(4deg); }
.tone-lavender { background: var(--pastel-lavender); }
.tone-mint { background: var(--pastel-mint); }
.tone-pink { background: var(--pastel-pink); }
.tone-yellow { background: var(--pastel-yellow); }
.tone-blue { background: #D9EEF5; }
.product-card__copy { padding: 12px 4px 3px; text-align: center; }
.product-card__copy a { display: block; font-weight: 800; font-size: 1.08rem; line-height: 1.28; }
.product-card__copy a:hover { text-decoration: underline; text-decoration-thickness: 3px; text-decoration-color: var(--cc-pink); text-underline-offset: 3px; }
.product-card__copy strong { display: block; margin-top: 5px; font-size: 1.06rem; }

/* Shopping paths */
.shopping-paths { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; padding-block: 31px 28px; }
.shopping-path {
  min-height: 150px;
  padding: 20px 20px 20px 18px;
  border-radius: var(--cc-radius-lg);
  display: grid;
  grid-template-columns: 86px minmax(0,1fr) 26px;
  align-items: center;
  gap: 14px;
  border: 0;
  box-shadow: none;
  overflow: hidden;
  position: relative;
  transition: transform .18s ease, background .18s ease;
}
.shopping-path::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
  z-index: 0;
}
.shopping-path:hover { transform: translateY(-3px); box-shadow: none; }
.shopping-path__sparkles {
  position: absolute !important;
  inset: 0;
  z-index: 1 !important;
  color: white;
  opacity: .72;
  pointer-events: none;
}
.shopping-path__sparkles .decor-sparkle { position: absolute; }
.shopping-path__sparkles .decor-sparkle--1 { width: 25px; left: 7%; top: 10%; transform: rotate(7deg); }
.shopping-path__sparkles .decor-sparkle--2 { width: 13px; right: 9%; top: 13%; transform: rotate(-9deg); }
.shopping-path__sparkles .decor-sparkle--3 { width: 16px; left: 34%; bottom: 8%; transform: rotate(-4deg); }
.shopping-path__sparkles .decor-sparkle--4 { width: 9px; right: 25%; bottom: 14%; transform: rotate(11deg); }
.shopping-path > img { width: 84px; height: 84px; object-fit: contain; position: relative; z-index: 2; }
.shopping-path > span:not(.shopping-path__sparkles), .shopping-path__arrow { position: relative; z-index: 2; }
.shopping-path strong { display: block; margin-bottom: 7px; font-family: var(--cc-display); font-weight: 600; font-size: 1.32rem; line-height: 1.08; }
.shopping-path small { display: block; color: var(--cc-ink); line-height: 1.45; font-size: .92rem; font-weight: 500; }
.shopping-path__arrow { width: 24px; height: 24px; transition: transform .18s ease; }
.shopping-path:hover .shopping-path__arrow { transform: translateX(3px); }
.path-pink { background: var(--cc-pink-soft); }
.path-mint { background: var(--cc-mint); }
.path-lavender { background: var(--cc-lavender); }
.path-yellow { background: var(--cc-yellow); }

/* Information strip */
.info-section { padding: 0 0 58px; }
.info-section h2 {
  margin: 0 0 16px;
  text-align: center;
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  line-height: 1.1;
}
.info-section h2::before, .info-section h2::after { content: '✦'; color: var(--cc-pink); font-size: .62em; margin-inline: .45em; vertical-align: .12em; }
.info-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  background: var(--cream-panel);
  border: 0;
  border-radius: var(--cc-radius-lg);
  box-shadow: none;
  padding: 22px 12px;
}
.info-item { display: grid; grid-template-columns: 60px 1fr; gap: 14px; align-items: center; padding: 8px 20px; border-right: 1px solid rgba(247,154,179,.40); }
.info-item:last-child { border-right: 0; }
.info-item img { width: 58px; height: 58px; object-fit: contain; filter: none; }
.info-item strong { font-family: var(--font-heading); font-size: 1.05rem; line-height: 1.2; font-weight: 700; }
.info-item p { margin: 4px 0 0; color: var(--cc-ink); font-size: .86rem; line-height: 1.42; font-weight: 500; }

/* Shared interior layout */
.interior-page { padding: 44px 0 88px; }
.compact-page-header { margin-bottom: 26px; }
.compact-page-header h1, .prose-page > h1 { margin: 0; font-size: clamp(2.8rem,6vw,5rem); line-height: 1; }
.shop-controls {
  display: grid;
  grid-template-columns: minmax(260px,1.5fr) repeat(3,minmax(150px,.7fr)) auto auto;
  gap: 12px;
  align-items: end;
  padding: 18px;
  background: rgba(255,253,245,.84);
  border: 0;
  border-radius: var(--cc-radius-lg);
  box-shadow: none;
}
.shop-controls label { display: grid; gap: 7px; }
.shop-controls select, .add-to-cart select, .add-to-cart input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--cc-line);
  border-radius: 15px;
  background: white;
  padding: 10px 12px;
}
.shop-controls select:focus, .add-to-cart select:focus, .add-to-cart input:focus { box-shadow: none; border-color: rgba(53,105,180,.65); outline: 0; }
.results-count { color: var(--cc-ink-soft); margin: 24px 0 16px; }
.product-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 30px 20px; }
.button {
  min-height: 47px;
  padding: 11px 20px;
  border: 0;
  border-radius: var(--cc-radius-pill);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  text-align: center;
  transition: transform .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button--primary { background: var(--cc-ink); color: white; box-shadow: none; }
.button--primary:hover { background: #151b39; box-shadow: none; }
.button--quiet { background: rgba(255,255,255,.74); border: 0; }
.button--quiet:hover { background: var(--cc-surface); }
.empty-state { padding: 50px 25px; text-align: center; border-radius: var(--cc-radius-lg); background: rgba(255,253,245,.84); border: 0; }
.empty-state h1, .empty-state h2 { margin-top: 0; }

/* Product page */
.back-link { display: inline-block; margin-bottom: 22px; font-weight: 800; }
.product-detail { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(340px,.95fr); gap: clamp(36px,6vw,90px); align-items: center; }
.product-detail__art { aspect-ratio: 1/1; border-radius: 18px; display: grid; place-items: center; overflow: hidden; box-shadow: none; border: 0; }
.product-detail__art .product-image { width: 91%; height: 91%; }
.product-kicker { display: flex; align-items: center; gap: 10px; color: var(--cc-ink-soft); font-size: .9rem; }
.status-badge { display: inline-flex; padding: 7px 11px; border-radius: var(--cc-radius-pill); font-weight: 800; font-size: .78rem; border: 0; }
.status-badge--made_to_order { background: var(--cc-lavender); }
.status-badge--ready_to_ship { background: var(--cc-mint); }
.status-badge--preorder { background: var(--cc-yellow); }
.product-detail__copy h1 { font-size: clamp(2.65rem,5vw,4.8rem); line-height: .99; margin: 15px 0 0; }
.product-detail__price { font-size: 1.68rem; font-weight: 800; margin: 20px 0 12px; }
.product-detail__description { color: var(--cc-ink-soft); line-height: 1.68; }
.product-attribution { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.product-attribution div { background: rgba(255,255,255,.68); padding: 11px 14px; border-radius: 14px; border: 0; }
.product-attribution dt { font-size: .72rem; color: var(--cc-ink-soft); }
.product-attribution dd { margin: 3px 0 0; font-weight: 800; }
.product-attribution a:hover { text-decoration: underline; text-underline-offset: 3px; }
.processing-note { padding: 16px 18px; border-radius: var(--cc-radius-md); background: rgba(255,255,255,.66); border: 0; }
.processing-note p { margin: 5px 0 0; color: var(--cc-ink-soft); line-height: 1.48; }
.add-to-cart { display: grid; grid-template-columns: minmax(0,1fr) 110px; gap: 12px; align-items: end; margin-top: 22px; }
.add-to-cart label { display: grid; gap: 7px; font-size: .8rem; font-weight: 800; }
.add-to-cart__button { grid-column: 1/-1; }
.form-feedback { grid-column: 1/-1; min-height: 1.3em; margin: 0; color: var(--cc-ink-soft); }
.product-notes { margin-top: 24px; border-top: 1px solid var(--cc-line); }
.product-notes details { padding: 16px 0; border-bottom: 1px solid var(--cc-line); }
.product-notes summary { font-family: var(--cc-display); font-weight: 600; cursor: pointer; }
.product-notes p, .product-notes li { color: var(--cc-ink-soft); line-height: 1.58; }

/* Cart */
.cart-layout { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 30px; align-items: start; }
.cart-lines { display: grid; gap: 14px; }
.cart-line { display: grid; grid-template-columns: 105px minmax(0,1fr) 132px 95px 42px; gap: 15px; align-items: center; background: rgba(255,253,245,.84); border-radius: var(--cc-radius-lg); padding: 14px; border: 0; }
.cart-line__image { width: 105px; height: 105px; border-radius: var(--cc-radius-md); overflow: hidden; background: var(--cc-lavender); }
.cart-line__image img { width: 100%; height: 100%; object-fit: contain; }
.cart-line__copy p { margin: 5px 0; color: var(--cc-ink-soft); }
.cart-line__copy span { font-size: .86rem; color: var(--cc-ink-soft); }
.cart-line__quantity { display: grid; grid-template-columns: 34px 50px 34px; align-items: center; }
.cart-line__quantity button { width: 34px; height: 38px; border: 1px solid var(--cc-line); background: white; display: grid; place-items: center; }
.cart-line__quantity button:first-child { border-radius: 10px 0 0 10px; }
.cart-line__quantity button:last-child { border-radius: 0 10px 10px 0; }
.cart-line__quantity input { width: 50px; height: 38px; border: 1px solid var(--cc-line); border-inline: 0; text-align: center; }
.cart-line__remove { width: 40px; height: 40px; border: 0; border-radius: var(--cc-radius-pill); background: transparent; display: grid; place-items: center; }
.cart-line__remove:hover { background: rgba(247,154,179,.25); }
.cart-summary { position: sticky; top: 20px; background: rgba(255,253,245,.90); border-radius: var(--cc-radius-lg); padding: 25px; box-shadow: none; border: 0; }
.cart-summary h2 { margin-top: 0; }
.cart-summary > div { display: flex; justify-content: space-between; font-size: 1.08rem; }
.cart-summary p { color: var(--cc-ink-soft); font-size: .88rem; line-height: 1.52; }
.cart-summary .button { width: 100%; }

/* Content pages */
.prose-page { max-width: 850px; }
.prose-lead { font-size: 1.18rem !important; }
.prose-page h2 { margin-top: 38px; }
.prose-page p { color: var(--cc-ink-soft); line-height: 1.78; }

/* Temporarily unavailable informational pages */
.coming-soon-page { min-height: min(620px, 72vh); display: grid; place-items: center; }
.coming-soon-card {
  position: relative;
  width: min(760px, 100%);
  overflow: hidden;
  padding: clamp(44px, 8vw, 78px) clamp(24px, 7vw, 68px);
  border-radius: 28px;
  background: rgba(255,250,236,.88);
  text-align: center;
}
.coming-soon-card::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(230,209,234,.34);
  pointer-events: none;
}
.coming-soon-card > * { position: relative; z-index: 1; }
.coming-soon-eyebrow { margin: 0 0 10px; color: #6e57a4; font-weight: 850; }
.coming-soon-card h1 { margin: 0; font-size: clamp(3rem, 8vw, 5.5rem); line-height: .98; }
.coming-soon-card > p:not(.coming-soon-eyebrow) { max-width: 530px; margin: 18px auto 0; color: var(--cc-ink-soft); font-size: 1.06rem; line-height: 1.6; }
.coming-soon-actions,
.error-page-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 28px; }
.coming-soon-stars { position: absolute !important; inset: 0; z-index: 0 !important; pointer-events: none; }
.coming-soon-stars i { position: absolute; width: 18px; aspect-ratio: 1; clip-path: polygon(50% 0,62% 37%,100% 50%,62% 63%,50% 100%,38% 63%,0 50%,38% 37%); }
.coming-soon-stars i:nth-child(1) { left: 9%; top: 16%; background: var(--accent-pink); }
.coming-soon-stars i:nth-child(2) { right: 12%; top: 18%; width: 12px; background: var(--accent-blue); }
.coming-soon-stars i:nth-child(3) { left: 18%; bottom: 19%; width: 11px; background: var(--accent-yellow); }
.coming-soon-stars i:nth-child(4) { right: 20%; bottom: 16%; width: 15px; background: var(--accent-purple); }
.coming-soon-stars i:nth-child(5) { left: 42%; top: 10%; width: 8px; background: var(--accent-teal); }
.coming-soon-stars i:nth-child(6) { right: 39%; bottom: 11%; width: 9px; background: var(--accent-pink); }

/* Footer */
.site-footer {
  position: relative;
  flex-shrink: 0;
  margin-top: auto;
  overflow: hidden;
  background: transparent;
  padding: 48px 0 12px;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 36px 0 0;
  z-index: 0;
  background: var(--footer-lavender);
}
.footer-wave {
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 52px;
  color: var(--cc-footer-start);
  pointer-events: none;
}
.footer-wave svg { display: block; width: 100%; height: 100%; overflow: visible; }
.footer-wave path { fill: currentColor; }
.footer-starfield { position: absolute; inset: 38px 0 0; pointer-events: none; z-index: 1; }
.footer-sparkle { position: absolute; opacity: .58; background: white; }
.footer-sparkle--1 { left: 3%; top: 36px; width: 12px; transform: rotate(-8deg); }
.footer-sparkle--2 { left: 10%; top: 91px; width: 20px; transform: rotate(11deg); }
.footer-sparkle--3 { left: 18%; top: 22px; width: 10px; }
.footer-sparkle--4 { left: 25%; top: 74px; width: 14px; }
.footer-sparkle--5 { left: 34%; top: 31px; width: 18px; }
.footer-sparkle--6 { left: 42%; top: 104px; width: 9px; }
.footer-sparkle--7 { left: 50%; top: 25px; width: 13px; }
.footer-sparkle--8 { left: 58%; top: 79px; width: 21px; }
.footer-sparkle--9 { left: 67%; top: 30px; width: 11px; }
.footer-sparkle--10 { left: 76%; top: 95px; width: 16px; }
.footer-sparkle--11 { left: 85%; top: 34px; width: 19px; }
.footer-sparkle--12 { left: 93%; top: 88px; width: 10px; }
.footer-sparkle--13 { left: 29%; top: 126px; width: 8px; }
.footer-sparkle--14 { left: 72%; top: 126px; width: 9px; }
.footer-sparkle--15 { left: 6%; top: 133px; width: 8px; transform: rotate(9deg); }
.footer-sparkle--16 { left: 46%; top: 54px; width: 8px; transform: rotate(-10deg); }
.footer-sparkle--17 { left: 81%; top: 137px; width: 7px; transform: rotate(6deg); }
.footer-sparkle--18 { left: 96%; top: 28px; width: 7px; transform: rotate(-5deg); }
.footer-row { position: relative; z-index: 2; min-height: 112px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; }
.footer-row--no-social { grid-template-columns: 1fr 1fr; }
.footer-brand p { margin: 0; font-weight: 800; }
.footer-brand small { color: #4c4267; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { width: 58px; height: 58px; border-radius: var(--cc-radius-pill); background: rgba(255,255,255,.90); color: #6856a0; display: grid; place-items: center; box-shadow: none; transition: transform var(--transition-normal), background var(--transition-normal); }
.footer-social a:hover { transform: translateY(-2px); background: white; }
.footer-social .icon { width: 29px; height: 29px; }
.footer-social__custom-icon { width: 32px; height: 32px; object-fit: contain; display: block; }
.footer-links { display: flex; justify-content: flex-end; align-items: center; gap: 24px; font-weight: 700; white-space: nowrap; }
.footer-links a:hover { text-decoration: underline; text-underline-offset: 3px; }

.toast-region { position: fixed; z-index: 80; right: 18px; bottom: 18px; display: grid; gap: 8px; }
.toast { max-width: 360px; padding: 13px 16px; border-radius: 14px; background: var(--cc-ink); color: white; box-shadow: none; }

@media (max-width: 1200px) {
  :root { --header-gutter: 32px; }
  .header-row { grid-template-columns: minmax(60px,1fr) minmax(320px,680px) minmax(60px,1fr); }
  .sparkle--header-one { left: calc(50% - 410px); }
  .sparkle--header-two { left: calc(50% - 372px); }
  .sparkle--header-three { right: calc(50% - 407px); }
  .sparkle--header-four { right: calc(50% - 371px); }
  .shopping-paths { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .info-strip { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .info-item:nth-child(2) { border-right: 0; }
  .info-item:nth-child(-n+2) { border-bottom: 1px solid var(--cc-line); }
  .product-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .shop-controls { grid-template-columns: 1fr 1fr 1fr; }
  .shop-search { grid-column: span 3; }
}

@media (max-width: 820px) {
  :root { --cc-gutter: 24px; --header-gutter: 24px; --header-height: 108px; }
  .header-row { min-height: var(--header-height); grid-template-columns: 56px minmax(210px,1fr) 56px; gap: 10px; }
  .sparkle--header-one { left: 16%; top: 26px; width: 22px; }
  .sparkle--header-two, .sparkle--header-three, .sparkle--header-four { display: none; }
  .homepage-carousel { padding: 19px 48px 15px; }
  .carousel-track .product-card { flex-basis: calc((100% - 20px) / 2); }
  .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .product-detail { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .cart-line { grid-template-columns: 88px minmax(0,1fr) 125px 42px; }
  .cart-line__image { width: 88px; height: 88px; }
  .cart-line__total { grid-column: 2; }
  .footer-row { grid-template-columns: 1fr; justify-items: center; text-align: center; padding: 20px 0 22px; }
  .footer-links { justify-content: center; flex-wrap: wrap; white-space: normal; }
}

@media (max-width: 560px) {
  :root { --cc-gutter: 14px; --header-gutter: 14px; --header-height: 86px; }
  .header-row { min-height: var(--header-height); grid-template-columns: 44px minmax(170px,1fr) 44px; gap: 6px; }
  .header-icon { width: 42px; height: 42px; }
  .header-icon .icon { width: 27px; height: 27px; }
  .menu-trigger .icon { width: 31px; height: 31px; }
  .cart-badge { min-width: 21px; height: 21px; font-size: .67rem; }
  .sparkle--header-one { display: none; }
  .homepage-carousel { padding: 15px 38px 13px; border-radius: 25px; }
  .carousel-track { gap: 14px; }
  .carousel-track .product-card { flex-basis: 100%; }
  .carousel-arrow { width: 40px; height: 40px; }
  .carousel-arrow--left { left: -7px; }
  .carousel-arrow--right { right: -7px; }
  .shopping-paths { grid-template-columns: 1fr; gap: 12px; padding-top: 20px; }
  .shopping-path { min-height: 126px; grid-template-columns: 66px 1fr 22px; padding: 15px; }
  .shopping-path > img { width: 64px; height: 64px; }
  .shopping-path strong { font-size: 1.2rem; }
  .info-strip { grid-template-columns: 1fr; padding: 8px 16px; }
  .info-item { border-right: 0; border-bottom: 1px solid var(--cc-line); padding: 16px 3px; }
  .info-item:nth-child(2) { border-bottom: 1px solid var(--cc-line); }
  .info-item:last-child { border-bottom: 0; }
  .shop-controls { grid-template-columns: 1fr; }
  .shop-search { grid-column: auto; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { max-width: 420px; width: 100%; margin-inline: auto; }
  .add-to-cart { grid-template-columns: 1fr; }
  .add-to-cart__button, .form-feedback { grid-column: auto; }
  .cart-line { grid-template-columns: 72px 1fr 40px; align-items: start; }
  .cart-line__image { width: 72px; height: 72px; }
  .cart-line__quantity { grid-column: 2; }
  .cart-line__total { grid-column: 2; }
  .cart-line__remove { grid-column: 3; grid-row: 1; }
  .footer-links { gap: 17px; }
  .site-footer { padding-top: 40px; }
  .site-footer::before { inset-block-start: 30px; }
  .footer-wave { height: 42px; }
  .footer-starfield { inset-block-start: 32px; }
  .shopping-path__sparkles { opacity: .62; }
  .product-card__sparkles { opacity: .36; }
}

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

/* --------------------------------------------------------------------------
   Shop catalog v1
   -------------------------------------------------------------------------- */
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.shop-route main { min-width: 0; }
.shop-page { padding: 12px 0 86px; }
.shop-page__inner { width: min(1680px, calc(100% - 80px)); margin-inline: auto; }
.shop-intro { margin: 0 0 28px; max-width: 880px; }
.shop-intro__title { display: flex; align-items: center; gap: 14px; }
.shop-intro h1 { margin: 0; font-size: clamp(3rem,5vw,5rem); line-height: .95; }
.shop-intro p { margin: 9px 0 0; max-width: 780px; font-size: clamp(1rem,.93rem + .25vw,1.16rem); font-weight: 600; color: #342f42; }
.shop-intro__sparkle { width: 20px; aspect-ratio: 1; clip-path: polygon(50% 0,62% 37%,100% 50%,62% 63%,50% 100%,38% 63%,0 50%,38% 37%); }
.shop-intro__sparkle--pink { background: var(--cc-pink); transform: rotate(8deg); }
.shop-intro__sparkle--blue { width: 14px; background: var(--cc-blue); transform: rotate(-7deg); }

.shop-toolbar { margin-left: 302px; }
.shop-search-form { display: grid; grid-template-columns: minmax(0,1fr) 245px; gap: 18px; align-items: center; }
.shop-search-field { min-height: 54px; display: flex; align-items: center; gap: 12px; padding: 0 18px; border: 1.5px solid rgba(12,19,36,.18); border-radius: var(--cc-radius-pill); background: rgba(255,255,255,.72); }
.shop-search-field:focus-within { border-color: var(--accent-purple); }
.shop-search-field .icon { width: 23px; height: 23px; }
.shop-search-field input { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; font-size: 1rem; }
.shop-search-field input::placeholder { color: #7c7588; opacity: 1; }
.shop-search-clear { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; font-size: 1.45rem; font-weight: 800; }
.shop-search-clear:hover { background: var(--pastel-lavender); }
.shop-sort { min-height: 54px; display: flex; align-items: center; gap: 4px; padding: 0 14px 0 18px; border: 1.5px solid rgba(12,19,36,.18); border-radius: var(--cc-radius-pill); background: rgba(255,255,255,.72); font-weight: 800; }
.shop-sort:focus-within { border-color: var(--accent-purple); }
.shop-sort__label { white-space: nowrap; }
.shop-sort select { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; font-weight: 800; }
.shop-filter-trigger { display: none; min-height: 48px; align-items: center; justify-content: center; gap: 9px; border: 0; border-radius: var(--cc-radius-pill); background: var(--pastel-lavender); font-weight: 800; }
.shop-filter-trigger strong { display: inline-grid; min-width: 24px; height: 24px; padding-inline: 6px; place-items: center; border-radius: 50%; background: var(--accent-purple); color: white; font-size: .78rem; }

.active-filters { margin: 16px 0 20px 302px; display: flex; align-items: center; gap: 14px; min-height: 36px; }
.active-filter-list { display: flex; flex-wrap: wrap; gap: 9px; }
.filter-chip { min-height: 36px; display: inline-flex; align-items: center; gap: 9px; padding: 7px 13px; border-radius: var(--cc-radius-pill); background: var(--pastel-lavender); font-weight: 750; }
.filter-chip:hover { background: #dac4e8; }
.filter-chip > span:nth-child(2) { font-size: 1.18rem; line-height: .8; }
.active-filters__clear, .shop-filter-form__heading > a, .facet-more { color: #4f2aad; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.active-filters__clear { white-space: nowrap; }

.shop-layout { display: grid; grid-template-columns: 270px minmax(0,1fr); gap: 32px; align-items: start; }
.shop-sidebar { position: sticky; top: 16px; min-width: 0; }
.shop-filter-form { padding: 18px 18px 20px; border-radius: var(--cc-radius-lg); background: rgba(255,250,236,.76); }
.shop-filter-form__heading { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.shop-filter-form__heading > span { display: flex; align-items: center; gap: 10px; }
.shop-filter-form__heading strong { font-family: var(--cc-display); font-size: 1.45rem; }
.shop-filter-form__heading .icon { width: 24px; height: 24px; }
.filter-group { border-top: 1px solid rgba(12,19,36,.10); }
.filter-group summary { min-height: 46px; display: flex; align-items: center; justify-content: space-between; list-style: none; cursor: pointer; font-family: var(--cc-display); font-weight: 700; font-size: 1.03rem; }
.filter-group summary::-webkit-details-marker { display: none; }
.filter-group summary::after { content: "⌃"; font-family: var(--cc-body); font-size: 1rem; transition: transform var(--transition-fast); }
.filter-group:not([open]) summary::after { transform: rotate(180deg); }
.filter-group__body { padding: 0 0 13px; }
.facet-option { min-height: 34px; display: grid; grid-template-columns: 22px minmax(0,1fr) auto; gap: 8px; align-items: center; cursor: pointer; font-weight: 650; }
.facet-option input { position: absolute; opacity: 0; pointer-events: none; }
.facet-option__box { width: 20px; height: 20px; border: 1.5px solid #5e6170; border-radius: 5px; background: white; position: relative; }
.facet-option input:checked + .facet-option__box { background: var(--accent-purple); border-color: var(--accent-purple); }
.facet-option input:checked + .facet-option__box::after { content: ""; position: absolute; left: 5px; top: 2px; width: 6px; height: 11px; border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.facet-option input:focus-visible + .facet-option__box { outline: 3px solid rgba(144,116,199,.42); outline-offset: 3px; }
.facet-option__count { min-width: 25px; text-align: right; color: #554d64; font-size: .86rem; }
.facet-option--extra { display: none; }
.filter-group__body.show-all .facet-option--extra { display: grid; }
.facet-more { padding: 6px 0 2px 30px; border: 0; background: transparent; text-decoration: none; display: inline-flex; gap: 7px; }
.price-filter { display: grid; grid-template-columns: minmax(0,1fr) 12px minmax(0,1fr); gap: 8px; align-items: end; }
.price-filter label { min-width: 0; display: grid; gap: 5px; font-size: .78rem; font-weight: 800; }
.price-filter__input { height: 43px; display: flex; align-items: center; gap: 5px; padding: 0 9px; border: 1.5px solid rgba(12,19,36,.20); border-radius: 10px; background: white; }
.price-filter__input:focus-within { border-color: var(--accent-purple); }
.price-filter__input input { min-width: 0; width: 100%; border: 0; outline: 0; background: transparent; }
.price-filter__dash { align-self: end; padding-bottom: 9px; text-align: center; font-weight: 800; }

.shop-results { min-width: 0; }
.shop-results__count { min-height: 36px; margin: 0 0 15px; display: flex; justify-content: flex-end; align-items: center; font-weight: 800; }
.shop-page .product-grid--shop { display: grid; grid-template-columns: repeat(auto-fill,minmax(230px,280px)); justify-content: start; gap: 31px 20px; }
.product-card__media { position: relative; min-width: 0; }
.product-card--shop .product-card__copy { padding: 10px 3px 0; text-align: left; }
.product-card--shop .product-card__title { font-family: var(--cc-display); font-size: clamp(1rem,.93rem + .18vw,1.14rem); font-weight: 700; line-height: 1.2; }
.product-card--shop .product-card__title:hover { text-decoration: underline; text-decoration-thickness: 3px; text-decoration-color: var(--cc-pink); text-underline-offset: 3px; }
.product-card__artist { display: block; margin-top: 3px; color: #474052; font-size: .9rem; font-weight: 650; line-height: 1.3; }
.product-card__artist a { display: inline; font-size: inherit; text-decoration: none; }
.product-card__artist a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 2px; }
.product-card__price { display: block; margin-top: 5px; font-family: var(--cc-body); font-size: 1.02rem; font-weight: 850; line-height: 1.2; }
.product-card__price-row { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; margin-top: 5px; }
.product-card__price-row .product-card__price { margin-top: 0; }
.product-card__price--sale { color: #c52f53; }
.product-card__price-row del { color: #706a76; font-weight: 700; }
.product-card--shop .product-card__art > .product-image { transition: transform var(--transition-normal); }
.product-card--shop:hover .product-card__art > .product-image { transform: scale(1.02); }
.product-card--shop a:focus-visible { outline: 3px solid var(--accent-purple); outline-offset: 4px; border-radius: 8px; }

.promotion-badge {
  --badge-fill: var(--pastel-yellow);
  --badge-outline: #D89B1E;
  position: absolute;
  z-index: 6;
  top: 7px;
  left: 7px;
  width: clamp(58px,4.5vw,72px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: rotate(-35deg);
  transform-origin: center;
  color: var(--cc-ink);
  pointer-events: none;
}
.promotion-badge::before, .promotion-badge::after { content: ""; position: absolute; mask: url('/icons/custom/promotion-badge.svg') center / contain no-repeat; -webkit-mask: url('/icons/custom/promotion-badge.svg') center / contain no-repeat; }
.promotion-badge::before { inset: 0; background: var(--badge-outline); }
.promotion-badge::after { inset: 4px; background: var(--badge-fill); }
.promotion-badge > span { position: relative; z-index: 2; font-family: var(--cc-display); font-size: clamp(.77rem,.68rem + .25vw,.98rem); font-weight: 700; line-height: 1; }
.promotion-badge--new { left: 7px; right: auto; transform: rotate(-35deg); }
.promotion-badge--sale { --badge-fill: #F7A7B8; --badge-outline: #C94D72; left: auto; right: 7px; transform: rotate(35deg); }

.shop-load-more { margin: 36px auto 0; display: grid; justify-items: center; gap: 8px; }
.button--load-more { min-width: 270px; justify-content: center; gap: 12px; background: var(--pastel-lavender); color: var(--cc-ink); }
.button--load-more:hover { background: #d9c0ea; }
.shop-load-more small { color: var(--cc-ink-soft); font-weight: 650; }
.shop-empty-state { min-height: 330px; padding: 52px 24px; display: grid; place-items: center; align-content: center; text-align: center; border-radius: var(--cc-radius-lg); background: rgba(255,250,236,.76); }
.shop-empty-state h2 { margin: 8px 0; font-size: clamp(1.8rem,3vw,2.7rem); }
.shop-empty-state p { margin: 0 0 20px; color: var(--cc-ink-soft); font-weight: 650; }
.shop-empty-state > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.shop-empty-state__sparkle { width: 31px; aspect-ratio: 1; background: var(--cc-pink); clip-path: polygon(50% 0,62% 37%,100% 50%,62% 63%,50% 100%,38% 63%,0 50%,38% 37%); }
.button--secondary { background: var(--pastel-lavender); }

.shop-filter-dialog { width: min(430px,92vw); max-width: none; height: 100dvh; max-height: none; margin: 0 0 0 auto; padding: 0; border: 0; background: transparent; overflow: visible; }
.shop-filter-dialog::backdrop { background: rgba(12,19,36,.34); backdrop-filter: blur(2px); }
.shop-filter-dialog__panel { height: 100%; display: flex; flex-direction: column; background: var(--cream-soft); }
.shop-filter-dialog__panel > header { min-height: 78px; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; border-bottom: 1px solid rgba(12,19,36,.10); }
.shop-filter-dialog__panel h2 { margin: 0; font-size: 2rem; }
.shop-filter-dialog__panel header button { width: 48px; height: 48px; display: grid; place-items: center; border: 0; border-radius: 50%; background: transparent; }
.shop-filter-dialog__panel header button:hover { background: var(--pastel-lavender); }
.shop-filter-dialog__scroll { flex: 1; min-height: 0; overflow-y: auto; }
.shop-filter-form--mobile { min-height: 100%; border-radius: 0; padding: 10px 22px 116px; background: transparent; }
.shop-filter-form--mobile .shop-filter-form__heading { display: none; }
.shop-filter-actions { position: absolute; inset: auto 0 0; min-height: 94px; padding: 16px 22px; display: grid; grid-template-columns: 1fr 1.7fr; gap: 10px; align-items: center; background: rgba(255,247,222,.97); border-top: 1px solid rgba(12,19,36,.10); }
.shop-filter-actions .button { width: 100%; justify-content: center; }

@media (max-width: 1179px) {
  .shop-page__inner { width: min(1120px,calc(100% - 48px)); }
  .shop-toolbar, .active-filters { margin-left: 0; }
  .shop-search-form { grid-template-columns: minmax(0,1fr) 230px; }
  .shop-filter-trigger { display: inline-flex; margin-top: 13px; min-width: 150px; padding: 0 18px; }
  .shop-layout { grid-template-columns: 1fr; gap: 0; }
  .shop-sidebar { display: none; }
  .shop-page .product-grid--shop { grid-template-columns: repeat(auto-fill,minmax(210px,280px)); justify-content: start; }
}

@media (max-width: 760px) {
  .shop-page { padding-top: 8px; }
  .shop-page__inner { width: calc(100% - 30px); }
  .shop-intro { margin-bottom: 20px; }
  .shop-intro h1 { font-size: clamp(2.7rem,13vw,4.2rem); }
  .shop-intro__sparkle { width: 15px; }
  .shop-toolbar { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 10px; }
  .shop-search-form { display: contents; }
  .shop-search-field { grid-column: 1 / -1; grid-row: 1; }
  .shop-filter-trigger { grid-column: 1; grid-row: 2; width: auto; min-width: 0; margin: 0; }
  .shop-sort { grid-column: 2; grid-row: 2; min-height: 48px; width: auto; min-width: 0; margin: 0; padding-inline: 12px; }
  .shop-sort__label { font-size: .9rem; }
  .active-filters { margin-top: 4px; align-items: flex-start; flex-direction: column; gap: 8px; }
  .active-filter-list { flex-wrap: nowrap; width: 100%; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
  .active-filter-list::-webkit-scrollbar { display: none; }
  .filter-chip { white-space: nowrap; }
  .shop-results__count { justify-content: flex-start; }
  .shop-page .product-grid--shop { grid-template-columns: repeat(auto-fit,minmax(155px,1fr)); gap: 26px 14px; }
  .promotion-badge { top: 5px; width: 56px; }
  .promotion-badge--new { left: 5px; }
  .promotion-badge--sale { right: 5px; }
  .promotion-badge::after { inset: 3px; }
  .product-card--shop .product-card__copy { padding-inline: 1px; }
  .product-card__artist { font-size: .82rem; }
  .product-card__price { font-size: .94rem; }
}

@media (max-width: 360px) {
  .shop-page .product-grid--shop { grid-template-columns: 1fr; }
  .product-card--shop { width: min(100%,320px); margin-inline: auto; }
}

@media (prefers-reduced-motion: reduce) { .product-card--shop:hover .product-card__art > .product-image { transform: none; } }

/* --------------------------------------------------------------------------
   Product detail page v2
   -------------------------------------------------------------------------- */
.product-route main { min-width: 0; }
.product-page-v2 { padding: 6px 0 94px; }
.product-page-v2__inner { width: min(1520px, calc(100% - 80px)); margin-inline: auto; }
.product-breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin: 0 0 24px; color: var(--cc-ink-soft); font-size: .93rem; font-weight: 650; }
.product-breadcrumb a { color: var(--cc-ink); font-weight: 800; }
.product-breadcrumb a:hover { text-decoration: underline; text-underline-offset: 3px; }
.product-main { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr); gap: clamp(38px, 5vw, 72px); align-items: start; }

/* Gallery */
.product-gallery { min-width: 0; }
.product-gallery__stage { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 14px; display: grid; place-items: center; background: var(--pastel-lavender); touch-action: pan-y; }
.product-gallery__stage > [data-gallery-main-image] { position: absolute; inset: 12px; width: calc(100% - 24px); height: calc(100% - 24px); object-fit: contain; cursor: zoom-in; }
.product-gallery__sparkles { position: absolute; inset: 0; opacity: .42; pointer-events: none; }
.product-gallery__sparkles i { position: absolute; width: 22px; aspect-ratio: 1; background: white; clip-path: polygon(50% 0,62% 37%,100% 50%,62% 63%,50% 100%,38% 63%,0 50%,38% 37%); }
.product-gallery__sparkles i:nth-child(1) { left: 7%; top: 11%; transform: rotate(8deg); }
.product-gallery__sparkles i:nth-child(2) { right: 9%; top: 17%; width: 13px; transform: rotate(-9deg); }
.product-gallery__sparkles i:nth-child(3) { left: 12%; bottom: 14%; width: 14px; }
.product-gallery__sparkles i:nth-child(4) { right: 10%; bottom: 10%; width: 28px; transform: rotate(7deg); }
.product-gallery__promotion { top: 14px; width: clamp(62px, 5vw, 76px); }
.product-gallery__promotion.promotion-badge--new { left: 14px; }
.product-gallery__promotion.promotion-badge--sale { right: 14px; }
.product-gallery__arrow { position: absolute; z-index: 8; top: 50%; width: 48px; height: 48px; margin-top: -24px; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.84); color: var(--cc-ink); }
.product-gallery__arrow:hover { background: var(--cc-white); }
.product-gallery__arrow:disabled { opacity: .35; cursor: default; }
.product-gallery__arrow--previous { left: 13px; }
.product-gallery__arrow--next { right: 13px; }
.product-gallery__counter { position: absolute; z-index: 7; right: 14px; bottom: 14px; min-height: 30px; padding: 5px 10px; border-radius: var(--cc-radius-pill); background: rgba(255,250,236,.88); font-size: .82rem; font-weight: 800; }
.product-gallery__expand { position: absolute; z-index: 7; left: 14px; bottom: 14px; min-height: 38px; padding: 7px 12px; display: inline-flex; align-items: center; gap: 7px; border: 0; border-radius: var(--cc-radius-pill); background: rgba(255,250,236,.88); font-weight: 800; }
.product-gallery__expand:hover { background: white; }
.product-gallery__thumbnails { display: flex; gap: 11px; margin-top: 14px; overflow-x: auto; padding: 3px 3px 8px; scrollbar-width: thin; }
.product-gallery__thumbnail { flex: 0 0 80px; width: 80px; height: 80px; padding: 5px; border: 0; border-radius: 10px; background: var(--cream-panel); overflow: hidden; }
.product-gallery__thumbnail img { width: 100%; height: 100%; object-fit: contain; }
.product-gallery__thumbnail.is-current { outline: 3px solid var(--accent-purple); outline-offset: 1px; }
.product-gallery__dots { display: none; justify-content: center; gap: 8px; margin-top: 12px; }
.product-gallery__dots button { width: 10px; height: 10px; padding: 0; border: 0; border-radius: 50%; background: #D7C6E6; }
.product-gallery__dots button.is-current { background: var(--cc-ink); }
.product-gallery__placeholder { display: grid; place-items: center; gap: 12px; color: var(--cc-ink-soft); font-weight: 800; }
.product-gallery__placeholder img { width: 36%; max-height: 46%; object-fit: contain; }

/* Purchase column */
.product-purchase { position: sticky; top: 22px; min-width: 0; }
.product-purchase h1 { margin: 0; max-width: 720px; font-size: clamp(2.65rem, 4.2vw, 4.7rem); line-height: .98; }
.product-artists { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.artist-chip { display: inline-flex; align-items: center; gap: 10px; min-height: 48px; padding: 3px 12px 3px 3px; border-radius: var(--cc-radius-pill); background: rgba(255,255,255,.64); }
.artist-chip:hover strong { text-decoration: underline; text-underline-offset: 3px; }
.artist-avatar { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; overflow: hidden; border-radius: 50%; background: var(--pastel-lavender); }
.artist-avatar img { width: 100%; height: 100%; object-fit: cover; }
.artist-avatar__fallback { font-family: var(--cc-display); font-weight: 700; color: var(--cc-ink); }
.artist-chip small { display: block; color: var(--cc-ink-soft); font-size: .7rem; line-height: 1; }
.artist-chip strong { display: block; margin-top: 2px; font-family: var(--cc-display); font-size: 1rem; line-height: 1.08; }
.product-design-links { margin: 10px 0 0; color: var(--cc-ink-soft); font-weight: 650; }
.product-design-links span { color: var(--cc-ink); font-weight: 800; }
.product-design-links a { color: #55349B; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.product-price { min-height: 46px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px; margin: 23px 0 15px; font-size: clamp(1.7rem, 2.8vw, 2.3rem); font-weight: 850; }
.product-price__sale { color: #C52F53; }
.product-price del { color: #706A76; font-size: .68em; font-weight: 700; }
.product-price__hint { flex-basis: 100%; color: var(--cc-ink-soft); font-size: .84rem; font-weight: 650; }
.product-processing { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: center; margin: 18px 0; padding: 15px 17px; border-radius: 16px; }
.product-processing--ready_to_ship { background: var(--pastel-mint); }
.product-processing--made_to_order { background: var(--pastel-lavender); }
.product-processing--preorder { background: var(--pastel-yellow); }
.product-processing__icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.58); font-family: var(--cc-display); font-size: 1.25rem; font-weight: 700; }
.product-processing h2 { margin: 0; font-size: 1.05rem; }
.product-processing p { margin: 3px 0 0; line-height: 1.45; font-weight: 550; }
.product-summary { margin: 17px 0 22px; max-width: 700px; color: #383240; line-height: 1.65; font-weight: 550; }
.product-purchase-form { display: grid; gap: 20px; }
.product-option { min-width: 0; margin: 0; padding: 0; border: 0; }
.product-option legend { width: 100%; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 0; font-family: var(--cc-display); font-size: 1.05rem; font-weight: 700; }
.product-size-guide-link { padding: 0; border: 0; background: transparent; color: #55349B; font-family: var(--cc-body); font-size: .9rem; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.product-option__selection { margin: 4px 0 10px; color: var(--cc-ink-soft); font-size: .88rem; font-weight: 700; }
.product-option__values { display: flex; flex-wrap: wrap; gap: 9px; }
.product-option-value { position: relative; min-height: 48px; padding: 9px 14px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 0; border-radius: 13px; background: rgba(255,255,255,.72); font-weight: 800; }
.product-option-value:hover:not(:disabled) { background: var(--cream-panel); }
.product-option-value.is-selected { background: var(--pastel-lavender); }
.product-option-value__check { display: none; }
.product-option-value.is-selected .product-option-value__check { display: inline; }
.product-option-value--color { min-width: 108px; justify-content: flex-start; }
.product-option-value__swatch { width: 22px; height: 22px; flex: 0 0 22px; border-radius: 50%; background: var(--option-swatch, var(--pastel-lavender)); border: 1px solid rgba(12,19,36,.16); }
.product-option-value.is-unavailable, .product-option-value:disabled { opacity: .46; cursor: not-allowed; text-decoration: line-through; }
.product-option__error, .product-form-feedback { min-height: 0; margin: 8px 0 0; color: #A92547; font-weight: 750; }
.product-option__error:empty, .product-form-feedback:empty { display: none; }
.product-purchase-row { display: grid; grid-template-columns: 150px minmax(220px, 1fr); gap: 13px; align-items: end; }
.product-quantity { display: grid; gap: 7px; font-family: var(--cc-display); font-weight: 700; }
.product-quantity__control { min-height: 54px; display: grid; grid-template-columns: 44px 1fr 44px; align-items: center; border-radius: 15px; background: rgba(255,255,255,.74); overflow: hidden; }
.product-quantity__control button { height: 54px; display: grid; place-items: center; border: 0; background: transparent; }
.product-quantity__control button:hover { background: var(--pastel-lavender); }
.product-quantity__control .icon { width: 18px; height: 18px; }
.product-quantity__control input { width: 100%; height: 54px; padding: 0; border: 0; background: transparent; text-align: center; font-weight: 850; -moz-appearance: textfield; }
.product-quantity__control input::-webkit-outer-spin-button, .product-quantity__control input::-webkit-inner-spin-button { margin: 0; -webkit-appearance: none; }
.product-add-button { min-height: 54px; width: 100%; font-family: var(--cc-display); font-size: 1.05rem; }
.product-add-button:disabled { opacity: .48; cursor: not-allowed; transform: none; }
.product-availability { margin: -8px 0 0; color: #2F6C4A; font-weight: 750; }
.product-cart-confirmation { padding: 17px; border-radius: 16px; background: var(--pastel-lavender); }
.product-cart-confirmation h2 { margin: 0; font-size: 1.35rem; }
.product-cart-confirmation p { margin: 5px 0 13px; }
.product-cart-confirmation > div { display: flex; flex-wrap: wrap; gap: 9px; }
.product-cart-confirmation .button { min-height: 44px; }

/* Product information */
.product-information { width: min(900px, 100%); margin: 70px auto 0; border-top: 1px solid rgba(12,19,36,.11); }
.product-detail-section { border-bottom: 1px solid rgba(12,19,36,.11); }
.product-detail-section summary { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; list-style: none; font-family: var(--cc-display); font-size: 1.25rem; font-weight: 700; }
.product-detail-section summary::-webkit-details-marker { display: none; }
.product-detail-section__toggle { width: 18px; height: 18px; position: relative; }
.product-detail-section__toggle::before, .product-detail-section__toggle::after { content: ""; position: absolute; background: var(--cc-ink); border-radius: 2px; }
.product-detail-section__toggle::before { width: 16px; height: 2px; left: 1px; top: 8px; }
.product-detail-section__toggle::after { width: 2px; height: 16px; left: 8px; top: 1px; transition: transform var(--transition-normal); }
.product-detail-section[open] .product-detail-section__toggle::after { transform: scaleY(0); }
.product-detail-section__body { max-width: 820px; padding: 0 0 24px; color: #383240; line-height: 1.75; }
.product-detail-section__body p { margin: 0 0 12px; }
.product-detail-section__body ul { padding-left: 22px; }
.product-question { margin: 22px 0 0; font-weight: 650; }
.product-question a { color: #55349B; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.product-related { margin-top: 76px; }
.product-section-heading { display: flex; justify-content: center; align-items: center; gap: 12px; margin-bottom: 26px; }
.product-section-heading h2 { margin: 0; font-size: clamp(2rem, 3.6vw, 3rem); }
.product-section-heading > span { color: var(--cc-pink); }
.product-grid--related { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 28px 18px; }
.product-card--related .product-card__copy { text-align: left; }

/* Gallery and size-guide dialogs */
.gallery-dialog, .size-guide-dialog { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; padding: 0; border: 0; background: rgba(12,19,36,.70); }
.gallery-dialog::backdrop, .size-guide-dialog::backdrop { background: rgba(12,19,36,.44); }
.gallery-dialog__panel { width: 100%; height: 100%; display: grid; grid-template-rows: auto 1fr auto; padding: 18px; color: white; }
.gallery-dialog__panel header { display: flex; justify-content: space-between; align-items: center; }
.gallery-dialog__panel h2 { margin: 0; font-size: 1.25rem; }
.dialog-close { width: 48px; height: 48px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; background: white; color: var(--cc-ink); }
.gallery-dialog__stage { min-height: 0; display: grid; grid-template-columns: 56px minmax(0, 1fr) 56px; gap: 16px; align-items: center; }
.gallery-dialog__stage > button { width: 52px; height: 52px; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.90); color: var(--cc-ink); }
.gallery-dialog__stage > button:disabled { opacity: .3; }
.gallery-dialog__image-wrap { min-width: 0; min-height: 0; width: 100%; height: 100%; overflow: auto; display: grid; place-items: center; }
.gallery-dialog__image-wrap img { max-width: 100%; max-height: 78vh; object-fit: contain; transform-origin: center; transition: transform var(--transition-normal); }
.gallery-dialog__panel footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.gallery-dialog__zoom { display: flex; align-items: center; gap: 8px; }
.gallery-dialog__zoom button { min-width: 42px; min-height: 42px; padding: 8px 12px; border: 0; border-radius: var(--cc-radius-pill); background: white; color: var(--cc-ink); font-weight: 800; }
.gallery-dialog__zoom output { min-width: 58px; text-align: center; font-weight: 800; }
.size-guide-dialog { display: none; place-items: center; padding: 20px; }
.size-guide-dialog[open] { display: grid; }
.size-guide-dialog__panel { width: min(720px, 100%); max-height: calc(100dvh - 40px); overflow-y: auto; padding: 24px; border-radius: 22px; background: var(--cream-soft); color: var(--cc-ink); }
.size-guide-dialog__panel header { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.size-guide-dialog__panel header p { margin: 0; color: var(--cc-ink-soft); font-size: .88rem; font-weight: 700; }
.size-guide-dialog__panel h2 { margin: 2px 0 0; font-size: 2.2rem; }
.size-guide-dialog__panel > p { line-height: 1.6; }
.size-guide-diagram { min-height: 145px; margin: 18px 0; position: relative; display: grid; place-items: center; border-radius: 16px; background: var(--pastel-lavender); }
.size-guide-diagram__shirt { width: 110px; height: 100px; display: grid; place-items: center; border: 3px solid var(--cc-ink); border-radius: 26px 26px 12px 12px; font-family: var(--cc-display); font-size: 2rem; }
.size-guide-diagram__width { position: absolute; left: 13%; top: 51%; font-weight: 800; }
.size-guide-diagram__length { position: absolute; right: 13%; top: 42%; font-weight: 800; }
.size-guide-table-wrap { overflow-x: auto; }
.size-guide-dialog table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,.60); }
.size-guide-dialog th, .size-guide-dialog td { padding: 9px 12px; text-align: left; border-bottom: 1px solid rgba(12,19,36,.10); white-space: nowrap; }
.size-guide-dialog small { display: block; margin: 12px 0 18px; color: var(--cc-ink-soft); }
.size-guide-dialog .button { width: 100%; }

@media (max-width: 1180px) {
  .product-page-v2__inner { width: min(1120px, calc(100% - 48px)); }
  .product-main { grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr); gap: 34px; }
  .product-grid--related { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .product-page-v2 { padding-top: 0; }
  .product-main { grid-template-columns: 1fr; }
  .product-purchase { position: static; }
  .product-gallery { width: min(700px, 100%); margin-inline: auto; }
  .product-purchase h1 { font-size: clamp(2.55rem, 8vw, 4.1rem); }
  .product-grid--related { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
}

@media (max-width: 620px) {
  .product-page-v2__inner { width: calc(100% - 28px); }
  .product-breadcrumb { margin-bottom: 15px; font-size: .84rem; }
  .product-gallery__stage { border-radius: 13px; }
  .product-gallery__stage > [data-gallery-main-image] { inset: 9px; width: calc(100% - 18px); height: calc(100% - 18px); }
  .product-gallery__promotion { top: 8px; width: 55px; }
  .product-gallery__promotion.promotion-badge--new { left: 8px; }
  .product-gallery__promotion.promotion-badge--sale { right: 8px; }
  .product-gallery__arrow { width: 42px; height: 42px; margin-top: -21px; }
  .product-gallery__arrow--previous { left: 7px; }
  .product-gallery__arrow--next { right: 7px; }
  .product-gallery__expand { left: 9px; bottom: 9px; min-width: 42px; width: 42px; height: 42px; padding: 0; justify-content: center; }
  .product-gallery__expand span:last-child { display: none; }
  .product-gallery__counter { right: 9px; bottom: 9px; }
  .product-gallery__thumbnails { display: none; }
  .product-gallery__dots { display: flex; }
  .product-purchase { margin-top: 28px; }
  .product-purchase h1 { font-size: clamp(2.35rem, 12vw, 3.45rem); }
  .artist-chip { min-height: 45px; }
  .artist-avatar { width: 39px; height: 39px; flex-basis: 39px; }
  .product-purchase-row { grid-template-columns: 1fr; }
  .product-option-value { flex: 1 1 calc(50% - 9px); }
  .product-option-value:not(.product-option-value--color) { flex: 0 1 auto; min-width: 58px; }
  .product-information { margin-top: 50px; }
  .product-detail-section summary { min-height: 62px; font-size: 1.12rem; }
  .product-related { margin-top: 58px; }
  .product-grid--related { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 26px 14px; }
  .gallery-dialog__panel { padding: 10px; }
  .gallery-dialog__stage { grid-template-columns: 44px minmax(0, 1fr) 44px; gap: 6px; }
  .gallery-dialog__stage > button { width: 42px; height: 42px; }
  .gallery-dialog__panel footer { flex-direction: column; justify-content: center; }
  .size-guide-dialog { padding: 8px; }
  .size-guide-dialog__panel { max-height: calc(100dvh - 16px); padding: 18px; border-radius: 18px; }
  .size-guide-diagram__width { left: 5%; }
  .size-guide-diagram__length { right: 5%; }
}

@media (max-width: 370px) {
  .product-grid--related { grid-template-columns: 1fr; }
}

@media (min-width: 901px) and (max-height: 760px) {
  .product-purchase { position: static; }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-dialog__image-wrap img { transition: none; }
}
body.dialog-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   Product detail visual parity pass v0.15
   Brings the live product layout in line with the approved preview while
   preserving the established global header, menu, and footer system.
   -------------------------------------------------------------------------- */
.product-page-v2 {
  padding: 18px 0 88px;
}

.product-page-v2__inner {
  width: min(1520px, calc(100% - 64px));
}

.product-page-v2__surface {
  padding: clamp(24px, 3vw, 46px);
  border-radius: 30px;
  background: rgba(255, 255, 255, .46);
}

.product-breadcrumb {
  margin-bottom: 28px;
}

.product-main {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  gap: clamp(42px, 5vw, 76px);
}

.product-purchase {
  top: 30px;
  padding-top: 4px;
}

.product-purchase h1 {
  max-width: 650px;
  font-size: clamp(2.5rem, 3.7vw, 4.25rem);
  line-height: 1.01;
}

.product-artists {
  margin-top: 18px;
}

.artist-chip {
  min-height: 48px;
  padding: 0 8px 0 0;
  background: transparent;
}

.artist-avatar {
  width: 46px;
  height: 46px;
  flex-basis: 46px;
}

.artist-chip small {
  font-size: .76rem;
}

.artist-chip strong {
  font-size: 1.06rem;
}

.product-design-links {
  margin-top: 8px;
  font-size: .98rem;
}

.product-price {
  margin: 24px 0 16px;
}

.product-processing {
  max-width: 650px;
  margin: 16px 0 18px;
  padding: 17px 19px;
}

.product-summary {
  max-width: 650px;
  margin: 18px 0 24px;
  color: #302B38;
  font-size: 1rem;
  line-height: 1.62;
  font-weight: 600;
}

.product-purchase-form {
  max-width: 690px;
}

.product-lower-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: clamp(24px, 3vw, 38px);
  align-items: start;
  margin-top: clamp(46px, 6vw, 78px);
}

.product-lower-layout--single {
  grid-template-columns: minmax(0, 1fr);
}

.product-panel {
  min-width: 0;
  margin: 0;
  padding: clamp(20px, 2.3vw, 30px);
  border: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, .60);
}

.product-information {
  width: auto;
  border-top: 0;
}

.product-detail-section:first-child summary {
  padding-top: 0;
}

.product-detail-section:last-of-type {
  border-bottom: 0;
}

.product-detail-section summary {
  min-height: 62px;
  font-size: 1.16rem;
}

.product-detail-section__body {
  max-width: 100%;
  padding-bottom: 22px;
  font-size: .98rem;
}

.product-question {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(12, 19, 36, .10);
}

.product-related {
  margin-top: 0;
}

.product-section-heading {
  justify-content: flex-start;
  margin-bottom: 22px;
}

.product-section-heading h2 {
  font-size: clamp(1.75rem, 2.6vw, 2.45rem);
}

.product-grid--related {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 16px;
}

.product-card--related .product-card__title {
  font-size: 1rem;
}

.product-card--related .product-card__artist,
.product-card--related .product-card__price {
  font-size: .88rem;
}

@media (max-width: 1180px) {
  .product-page-v2__inner {
    width: min(1120px, calc(100% - 40px));
  }

  .product-page-v2__surface {
    padding: 28px;
  }

  .product-main {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .92fr);
    gap: 34px;
  }

  .product-lower-layout {
    grid-template-columns: 1fr;
  }

  .product-grid--related {
    grid-template-columns: repeat(auto-fit, minmax(170px, 220px));
    justify-content: start;
  }
}

@media (max-width: 900px) {
  .product-page-v2 {
    padding-top: 4px;
  }

  .product-page-v2__surface {
    padding: 24px;
    border-radius: 24px;
  }

  .product-purchase {
    margin-top: 30px;
  }

  .product-lower-layout {
    margin-top: 46px;
  }
}

@media (max-width: 620px) {
  .product-page-v2__inner {
    width: calc(100% - 20px);
  }

  .product-page-v2__surface {
    padding: 14px;
    border-radius: 20px;
  }

  .product-purchase h1 {
    font-size: clamp(2.2rem, 11vw, 3.25rem);
  }

  .product-summary {
    font-size: .96rem;
  }

  .product-panel {
    padding: 18px;
    border-radius: 18px;
  }

  .product-grid--related {
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    gap: 24px 14px;
  }
}

@media (max-width: 370px) {
  .product-page-v2__surface {
    padding-inline: 10px;
  }

  .product-grid--related {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Interior navigation + Cart v0.16
   -------------------------------------------------------------------------- */
.site-header--interior {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(253, 241, 205, .97);
  backdrop-filter: blur(8px);
}
.interior-header-desktop { display: block; }
.interior-header-mobile { display: none; }
.interior-header__row {
  width: min(1520px, calc(100% - 64px));
  min-height: 92px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 2.5vw, 42px);
}
.interior-wordmark { display: block; width: min(235px, 100%); min-width: 0; justify-self: start; }
.interior-wordmark img { display: block; width: 100%; height: auto; }
.interior-nav { display: flex; align-items: center; justify-content: center; justify-self: center; gap: clamp(6px, .75vw, 13px); min-width: 0; }
.interior-nav__link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px clamp(9px, .9vw, 15px);
  border-radius: var(--cc-radius-pill);
  font-family: var(--cc-display);
  font-size: clamp(.93rem, .84rem + .15vw, 1.04rem);
  font-weight: 650;
  white-space: nowrap;
  transition: background var(--transition-normal), transform var(--transition-normal);
}
.interior-nav__link img { width: 28px; height: 28px; object-fit: contain; }
.interior-nav__link--shop { background: rgba(253,218,216,.42); }
.interior-nav__link--artists { background: rgba(217,235,216,.46); }
.interior-nav__link--designs { background: rgba(230,209,234,.44); }
.interior-nav__link--types { background: rgba(254,231,171,.48); }
.interior-nav__link:hover { transform: translateY(-1px); }
.interior-nav__link--shop:hover, .interior-nav__link--shop.is-active { background: var(--pastel-pink); }
.interior-nav__link--artists:hover, .interior-nav__link--artists.is-active { background: var(--pastel-mint); }
.interior-nav__link--designs:hover, .interior-nav__link--designs.is-active { background: var(--pastel-lavender); }
.interior-nav__link--types:hover, .interior-nav__link--types.is-active { background: var(--pastel-yellow); }
.interior-nav__link.is-active { font-weight: 750; }
.interior-header__utilities { min-width: 108px; display: flex; justify-content: flex-end; justify-self: end; align-items: center; gap: 8px; }
.site-header--interior .header-icon { background: rgba(255,255,255,.48); }
.site-header--interior .header-icon:hover { background: var(--pastel-lavender); }
.site-header--interior .cart-link.is-current { background: var(--pastel-lavender); }
.interior-search-tray { background: rgba(255, 250, 236, .98); }
.interior-search-form {
  width: min(940px, calc(100% - 40px));
  min-height: 70px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 28px minmax(0,1fr) 46px;
  gap: 12px;
  align-items: center;
}
.interior-search-form > .icon { width: 25px; height: 25px; }
.interior-search-form input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 1.08rem;
  font-weight: 600;
}
.interior-search-form input::placeholder { color: #777181; opacity: 1; }
.interior-search-close { width: 44px; height: 44px; }

/* Cart page */
.cart-route main { min-width: 0; }
.cart-page { padding: 48px 0 92px; }
.cart-page__inner { width: min(1520px, calc(100% - 64px)); margin-inline: auto; }
.cart-page__header { position: relative; margin-bottom: 30px; }
.cart-page__header h1 { margin: 0; font-size: clamp(3rem, 5vw, 4.8rem); line-height: .95; }
.cart-page__header p { margin: 10px 0 0; font-size: 1.08rem; font-weight: 600; color: #353040; }
.cart-page__heading-sparkles { position: absolute; left: -30px; top: -13px; width: 28px; height: 68px; pointer-events: none; }
.cart-page__heading-sparkles i { position: absolute; display: block; aspect-ratio: 1; clip-path: polygon(50% 0,62% 37%,100% 50%,62% 63%,50% 100%,38% 63%,0 50%,38% 37%); }
.cart-page__heading-sparkles i:first-child { width: 18px; left: 0; top: 0; background: var(--accent-blue); }
.cart-page__heading-sparkles i:last-child { width: 13px; right: 0; bottom: 3px; background: var(--accent-pink); }
.cart-layout { display: grid; grid-template-columns: minmax(0, 1.88fr) minmax(330px, 1fr); gap: clamp(28px, 3vw, 42px); align-items: start; }
.cart-main { min-width: 0; }
.cart-lines {
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 253, 245, .84);
}
.cart-line {
  display: grid;
  grid-template-columns: clamp(135px, 14vw, 170px) minmax(0, 1fr);
  gap: clamp(18px, 2.5vw, 30px);
  align-items: start;
  padding: clamp(20px, 2.4vw, 30px);
  background: transparent;
  border-radius: 0;
}
.cart-line + .cart-line { border-top: 1px solid rgba(12,19,36,.10); }
.cart-line.is-unavailable { background: rgba(253, 218, 216, .24); }
.cart-line__image {
  width: clamp(135px, 14vw, 170px);
  height: clamp(135px, 14vw, 170px);
  max-width: 170px;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  place-items: center;
  justify-self: start;
  align-self: start;
  background: var(--pastel-lavender);
}
.cart-line__image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}
.cart-line__identity { min-width: 0; }
.cart-line__title-row { display: flex; justify-content: space-between; gap: 22px; align-items: flex-start; }
.cart-line__title { font-family: var(--cc-display); font-size: clamp(1.3rem, 1.05rem + .5vw, 1.72rem); font-weight: 700; line-height: 1.13; }
.cart-line__title:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.cart-artists { margin-top: 8px; display: inline-flex; align-items: center; gap: 9px; font-size: .93rem; font-weight: 600; color: #4d4658; }
.cart-artists a { color: var(--cc-ink); font-weight: 750; }
.cart-artists a:hover { text-decoration: underline; text-underline-offset: 3px; }
.cart-artists__avatars { display: flex; min-width: 32px; }
.cart-artists__avatars i {
  width: 32px;
  height: 32px;
  margin-left: calc(var(--avatar-index) * -10px);
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--pastel-lavender);
  font-family: var(--cc-display);
  font-style: normal;
  font-size: .68rem;
  font-weight: 700;
}
.cart-artists__avatars i:first-child { margin-left: 0; }
.cart-artists__avatars img { width: 100%; height: 100%; object-fit: cover; }
.cart-line__options { margin: 12px 0 0; font-weight: 700; color: #423b4d; }
.cart-line__processing { margin: 10px 0 0; display: flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 700; }
.cart-line__processing .icon { width: 19px; height: 19px; }
.cart-line__processing--ready_to_ship { color: #29724f; }
.cart-line__processing--made_to_order { color: #65449a; }
.cart-line__unit-price { margin-top: 8px; display: flex; align-items: baseline; gap: 9px; font-size: .92rem; color: #4d4658; }
.cart-line__unit-price strong { color: var(--cc-ink); }
.cart-line__unit-price del { color: #777181; }
.cart-line__notice { margin: 12px 0 0; padding: 10px 12px; border-radius: 12px; background: var(--pastel-pink); font-weight: 700; }
.cart-line__notice a { text-decoration: underline; }
.cart-line__actions { margin-top: 18px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cart-line__quantity { display: grid; grid-template-columns: 44px 54px 44px; align-items: center; }
.cart-line__quantity button, .cart-line__quantity input {
  height: 44px;
  border: 0;
  background: rgba(255,255,255,.86);
}
.cart-line__quantity button { width: 44px; display: grid; place-items: center; }
.cart-line__quantity button:first-child { border-radius: 13px 0 0 13px; }
.cart-line__quantity button:last-child { border-radius: 0 13px 13px 0; }
.cart-line__quantity input { width: 54px; text-align: center; font-weight: 800; appearance: textfield; }
.cart-line__quantity input::-webkit-outer-spin-button, .cart-line__quantity input::-webkit-inner-spin-button { appearance: none; margin: 0; }
.cart-line__quantity button:hover:not(:disabled) { background: var(--pastel-lavender); }
.cart-line__quantity button:disabled { opacity: .38; cursor: not-allowed; }
.cart-line__remove { min-height: 44px; width: auto; padding: 0 8px; border: 0; border-radius: 0; background: transparent; color: #91415b; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.cart-line__remove:hover { background: transparent; color: #6f243f; }
.cart-line__updating { min-height: 1.3em; font-size: .86rem; font-weight: 700; color: #5f586b; }
.cart-line__total { white-space: nowrap; font-size: 1.1rem; }
.cart-line__total--mobile { display: none; margin-left: auto; }
.cart-notice-region { margin-top: 14px; }
.cart-undo { min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 18px; border-radius: 16px; background: var(--pastel-mint); font-weight: 700; }
.cart-undo__button { min-height: 40px; padding: 0 12px; border: 0; background: transparent; color: #4f2aad; font-weight: 850; text-decoration: underline; text-underline-offset: 3px; }
.cart-processing-guide { margin-top: 16px; display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 14px; padding: 16px 18px; border-radius: 18px; background: rgba(230,209,234,.72); }
.cart-processing-guide__icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.60); color: #65449a; }
.cart-processing-guide__icon .icon { width: 23px; height: 23px; }
.cart-processing-guide h2 { margin: 0; font-size: 1rem; }
.cart-processing-guide p { margin: 4px 0 0; line-height: 1.48; font-size: .92rem; font-weight: 600; color: #3f3749; }
.cart-summary {
  position: sticky;
  top: 112px;
  padding: clamp(24px, 2.8vw, 34px);
  border-radius: 24px;
  background: rgba(255, 250, 236, .88);
  border: 0;
  box-shadow: none;
}
.cart-summary__heading { display: flex; align-items: center; gap: 10px; padding-bottom: 18px; border-bottom: 1px solid rgba(12,19,36,.11); }
.cart-summary__heading h2 { margin: 0; font-size: clamp(1.65rem, 1.4rem + .55vw, 2.1rem); }
.cart-summary__heading span { color: var(--accent-purple); font-size: 1.35rem; }
.cart-summary__rows { margin: 18px 0 0; display: grid; gap: 16px; }
.cart-summary__rows > div { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.cart-summary__rows dt { font-weight: 750; }
.cart-summary__rows dd { margin: 0; text-align: right; font-weight: 750; color: #4e4658; }
.cart-checkout { width: 100%; min-height: 56px; margin-top: 24px; gap: 10px; }
.cart-checkout .icon { width: 22px; height: 22px; }
.cart-checkout:disabled { opacity: .62; cursor: wait; }
.cart-summary__secure { margin: 10px 0 0; text-align: center; color: #5f586b; font-size: .82rem; line-height: 1.42; font-weight: 600; }
.cart-summary__divider { height: 28px; margin: 10px 0 4px; display: flex; align-items: center; gap: 10px; color: var(--accent-purple); }
.cart-summary__divider::before, .cart-summary__divider::after { content: ""; flex: 1; height: 1px; background: rgba(144,116,199,.34); }
.cart-summary__divider i { width: 13px; aspect-ratio: 1; background: currentColor; clip-path: polygon(50% 0,62% 37%,100% 50%,62% 63%,50% 100%,38% 63%,0 50%,38% 37%); }
.cart-continue { width: 100%; min-height: 52px; gap: 10px; background: rgba(255,255,255,.62); color: var(--cc-ink); }
.cart-continue:hover { background: var(--pastel-lavender); }
.cart-summary__status { min-height: 1.4em; margin: 12px 0 0; color: #91415b; font-weight: 700; text-align: center; }

.cart-page--empty { display: grid; align-items: center; }
.cart-page--empty .cart-page__header { text-align: center; }
.cart-page--empty .cart-page__heading-sparkles { left: calc(50% - 100px); }
.cart-empty { max-width: 620px; margin: 20px auto 0; padding: 42px 28px; text-align: center; border-radius: 26px; background: rgba(255,253,245,.84); }
.cart-empty__art { width: 220px; max-width: 55vw; aspect-ratio: 1; margin: 0 auto 14px; position: relative; display: grid; place-items: center; border-radius: 24px; background: var(--pastel-pink); }
.cart-empty__art img { width: 72%; height: 72%; object-fit: contain; }
.cart-empty__sparkle { position: absolute; display: block; aspect-ratio: 1; clip-path: polygon(50% 0,62% 37%,100% 50%,62% 63%,50% 100%,38% 63%,0 50%,38% 37%); }
.cart-empty__sparkle--one { width: 22px; left: 14%; top: 13%; background: white; }
.cart-empty__sparkle--two { width: 14px; right: 15%; top: 22%; background: var(--accent-yellow); }
.cart-empty__sparkle--three { width: 18px; right: 20%; bottom: 13%; background: white; }
.cart-empty h2 { margin: 0; font-size: clamp(1.75rem, 1.5rem + .7vw, 2.3rem); }
.cart-empty p { max-width: 470px; margin: 10px auto 22px; color: #4d4658; font-weight: 600; }
.cart-empty .button { min-width: 210px; }
.cart-empty__home { display: block; width: fit-content; margin: 14px auto 0; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 1180px) {
  .interior-header-desktop { display: none; }
  .interior-header-mobile { display: grid; }
  .site-header--interior { background: rgba(253, 241, 205, .98); }
  .site-header--interior .header-row { min-height: 108px; grid-template-columns: 56px minmax(210px, 1fr) 56px; gap: 10px; }
  .site-header--interior .wordmark { max-width: 560px; justify-self: center; }
  .cart-summary { top: 20px; }
}

@media (max-width: 900px) {
  .cart-page { padding-top: 32px; }
  .cart-page__inner { width: min(100% - 40px, 860px); }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .cart-line { grid-template-columns: 130px minmax(0, 1fr); }
  .cart-line__image { width: 130px; height: 130px; }
}

@media (max-width: 620px) {
  .cart-page { padding: 24px 0 72px; }
  .cart-page__inner { width: calc(100% - 28px); }
  .cart-page__header { margin-bottom: 22px; }
  .cart-page__header h1 { font-size: 3rem; }
  .cart-page__header p { font-size: .98rem; }
  .cart-page__heading-sparkles { display: none; }
  .cart-line { grid-template-columns: 108px minmax(0,1fr); gap: 15px; padding: 18px 14px; }
  .cart-line__image { width: 108px; height: 108px; }
  .cart-line__title-row { display: block; }
  .cart-line__title { font-size: 1.18rem; }
  .cart-line__total--top { display: none; }
  .cart-line__total--mobile { display: block; }
  .cart-artists { margin-top: 6px; }
  .cart-line__options { margin-top: 9px; }
  .cart-line__processing { grid-column: 1 / -1; }
  .cart-line__actions { grid-column: 1 / -1; gap: 10px; }
  .cart-line__quantity { grid-template-columns: 42px 48px 42px; }
  .cart-line__quantity button, .cart-line__quantity input { height: 42px; }
  .cart-line__quantity button { width: 42px; }
  .cart-line__quantity input { width: 48px; }
  .cart-line__updating { width: 100%; order: 5; }
  .cart-processing-guide { grid-template-columns: 38px minmax(0,1fr); padding: 15px 14px; }
  .cart-processing-guide__icon { width: 38px; height: 38px; }
  .cart-summary { padding: 22px 18px; }
  .cart-summary__rows > div { gap: 12px; }
  .cart-summary__rows dd { max-width: 58%; }
  .cart-empty { padding: 30px 18px; }
}

@media (max-width: 410px) {
  .cart-line { grid-template-columns: 92px minmax(0,1fr); }
  .cart-line__image { width: 92px; height: 92px; }
  .cart-line__actions { justify-content: space-between; }
  .cart-line__remove { order: 4; }
}

/* --------------------------------------------------------------------------
   Artist directory and artist profile v0.17
   -------------------------------------------------------------------------- */
.artist-directory-page,
.artist-profile-page { min-width: 0; }

.artist-directory-page__inner,
.artist-profile-page__inner {
  width: min(1520px, calc(100% - 64px));
  margin-inline: auto;
}

.artist-directory-page { padding: 28px 0 94px; }
.artist-directory-intro { margin-bottom: 24px; }
.artist-directory-intro__title { display: flex; align-items: center; gap: 12px; }
.artist-directory-intro__title h1 { margin: 0; font-size: clamp(3rem, 6vw, 5rem); line-height: 1; }
.artist-directory-intro__title > span,
.artist-directory-intro__title > i {
  width: 18px;
  aspect-ratio: 1;
  display: block;
  background: var(--accent-pink);
  clip-path: polygon(50% 0,62% 37%,100% 50%,62% 63%,50% 100%,38% 63%,0 50%,38% 37%);
}
.artist-directory-intro__title > i { width: 11px; background: var(--accent-blue); transform: rotate(11deg); }
.artist-directory-intro > p { max-width: 680px; margin: 12px 0 0; color: var(--cc-ink-soft); font-size: 1.03rem; font-weight: 600; }

.artist-directory-controls {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(190px, 250px) auto;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}
.artist-directory-search,
.artist-directory-sort-control,
.artist-directory-sort-trigger {
  min-height: 54px;
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(12,19,36,.18);
}
.artist-directory-search { position: relative; display: flex; align-items: center; padding: 0 50px 0 16px; }
.artist-directory-search .icon { width: 22px; height: 22px; color: var(--cc-ink-soft); }
.artist-directory-search input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; padding: 0 12px; }
.artist-directory-search button { position: absolute; right: 8px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: transparent; font-size: 1.35rem; }
.artist-directory-search button:hover { background: var(--pastel-lavender); }
.artist-directory-sort-control { display: flex; align-items: center; padding: 0 14px; font-weight: 800; white-space: nowrap; }
.artist-directory-sort-control select { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; font-weight: 800; }
.artist-directory-sort-trigger { display: none; align-items: center; justify-content: space-between; padding: 0 16px; border: 1px solid rgba(12,19,36,.18); font-weight: 700; }
.artist-directory__submit { min-height: 54px; }
.js .artist-directory__submit { display: none; }
.artist-directory-results { margin: 18px 0; font-weight: 800; }

.artist-directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 400px));
  justify-content: start;
  gap: 26px;
}
.artist-directory-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255,250,236,.9);
  display: flex;
  flex-direction: column;
  transition: background var(--transition-normal);
}
.artist-directory-card:hover { background: var(--cream-soft); }
.artist-directory-card__banner { display: block; position: relative; aspect-ratio: 2 / 1; overflow: hidden; background: var(--pastel-lavender); }
.artist-directory-card__banner-image { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-normal); }
.artist-directory-card:hover .artist-directory-card__banner-image { transform: scale(1.015); }
.artist-directory-card__banner-fallback,
.artist-hero__banner-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.artist-directory-card__banner-fallback > strong,
.artist-hero__banner-fallback > strong {
  position: relative;
  z-index: 2;
  font-family: var(--cc-display);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
  color: rgba(12,19,36,.34);
}
.artist-directory-card__banner-fallback > strong { font-size: 3.35rem; }
.artist-hero__banner-fallback > strong { font-size: clamp(3.6rem, 9vw, 6.4rem); }
.artist-directory-card__banner-orb,
.artist-hero__banner-orb {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255,255,255,.26);
  border: 1px solid rgba(255,255,255,.28);
}
.artist-directory-card__banner-orb { width: 112px; height: 112px; }
.artist-hero__banner-orb { width: min(26vw, 220px); height: min(26vw, 220px); }
.artist-directory-card__banner-fallback i,
.artist-hero__banner-fallback i,
.artist-design-card__fallback i {
  position: absolute;
  width: 18px;
  aspect-ratio: 1;
  clip-path: polygon(50% 0,62% 37%,100% 50%,62% 63%,50% 100%,38% 63%,0 50%,38% 37%);
}
.artist-directory-card__banner-fallback i:nth-of-type(1),
.artist-hero__banner-fallback i:nth-of-type(1),
.artist-design-card__fallback i:nth-of-type(1) { background: rgba(255,255,255,.84); }
.artist-directory-card__banner-fallback i:nth-of-type(2),
.artist-hero__banner-fallback i:nth-of-type(2),
.artist-design-card__fallback i:nth-of-type(2) { background: rgba(104,197,232,.9); }
.artist-directory-card__banner-fallback i:nth-of-type(3),
.artist-hero__banner-fallback i:nth-of-type(3),
.artist-design-card__fallback i:nth-of-type(3) { background: rgba(244,179,59,.9); }
.artist-directory-card__banner-fallback i:nth-of-type(4),
.artist-hero__banner-fallback i:nth-of-type(4) { background: rgba(244,127,155,.9); }
.artist-directory-card__banner-fallback i:nth-of-type(5),
.artist-hero__banner-fallback i:nth-of-type(5) { background: rgba(255,255,255,.72); }
.artist-directory-card__banner-fallback i:nth-of-type(6),
.artist-hero__banner-fallback i:nth-of-type(6) { background: rgba(144,116,199,.92); }
.artist-directory-card__banner-fallback i:nth-of-type(1) { left: 10%; top: 14%; width: 16px; }
.artist-directory-card__banner-fallback i:nth-of-type(2) { right: 12%; top: 16%; width: 11px; }
.artist-directory-card__banner-fallback i:nth-of-type(3) { left: 22%; bottom: 15%; width: 10px; }
.artist-directory-card__banner-fallback i:nth-of-type(4) { right: 24%; bottom: 12%; width: 14px; }
.artist-directory-card__banner-fallback i:nth-of-type(5) { left: 47%; top: 15%; width: 8px; }
.artist-directory-card__banner-fallback i:nth-of-type(6) { right: 8%; bottom: 20%; width: 9px; }
.artist-directory-card__body { position: relative; flex: 1; display: flex; flex-direction: column; padding: 52px 24px 24px; }
.artist-directory-card__avatar-link { position: absolute; left: 24px; top: -42px; border-radius: 50%; }
.artist-directory-card__avatar {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--cream-panel);
  background: var(--pastel-lavender);
}
.artist-directory-card__avatar--fallback { font-family: var(--cc-display); font-size: 1.7rem; font-weight: 700; }
.artist-directory-card__content { flex: 1; display: flex; flex-direction: column; }
.artist-directory-card h2 { margin: 0; font-size: clamp(1.55rem, 2vw, 1.85rem); line-height: 1.08; }
.artist-directory-card h2 a:hover { text-decoration: underline; text-underline-offset: 3px; }
.artist-directory-card__accent { margin: 6px 0 0; color: #6e57a4; font-size: .92rem; font-weight: 800; }
.artist-directory-card__bio {
  margin: 16px 0 0;
  color: var(--cc-ink);
  font-size: .96rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.artist-directory-card__counts { margin: 18px 0 0; color: var(--cc-ink-soft); font-size: .9rem; font-weight: 800; }
.artist-directory-card__action {
  align-self: flex-start;
  min-height: 44px;
  margin-top: auto;
  padding: 18px 12px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #6e57a4;
  font-weight: 850;
}
.artist-directory-card__action:hover { text-decoration: underline; text-underline-offset: 3px; }

.artist-directory-empty {
  min-height: 330px;
  padding: 48px 24px;
  border-radius: 20px;
  background: rgba(255,250,236,.8);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  gap: 10px;
  text-align: center;
}
.artist-directory-empty > img { flex-basis: 100%; width: 88px; height: 88px; object-fit: contain; }
.artist-directory-empty h2,
.artist-directory-empty p { flex-basis: 100%; margin: 0; }
.artist-directory-empty h2 { font-size: clamp(2rem, 4vw, 3rem); }
.artist-directory-empty p { color: var(--cc-ink-soft); font-weight: 650; margin-bottom: 12px; }
.artist-directory-empty--catalog { margin-top: 24px; }

.artist-sort-dialog { width: min(520px, 100%); max-width: none; margin: auto 0 0; padding: 0; border: 0; border-radius: 24px 24px 0 0; background: transparent; }
.artist-sort-dialog::backdrop { background: rgba(12,19,36,.35); }
.artist-sort-dialog__panel { padding: 22px 22px 28px; border-radius: 24px 24px 0 0; background: var(--cream-soft); }
.artist-sort-dialog__panel header { display: flex; align-items: center; justify-content: space-between; }
.artist-sort-dialog__panel h2 { margin: 0; font-size: 1.75rem; }
.artist-sort-dialog__panel header button { width: 44px; height: 44px; border: 0; border-radius: 50%; display: grid; place-items: center; background: transparent; }
.artist-sort-dialog__panel header button:hover { background: var(--pastel-lavender); }
.artist-sort-dialog__choices { margin-top: 12px; }
.artist-sort-choice { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid rgba(12,19,36,.1); font-weight: 750; cursor: pointer; }
.artist-sort-choice input { position: absolute; opacity: 0; pointer-events: none; }
.artist-sort-choice i { width: 21px; height: 21px; border: 2px solid var(--accent-purple); border-radius: 50%; }
.artist-sort-choice input:checked + i { border: 6px solid var(--accent-purple); }
.artist-sort-choice:has(input:focus-visible) { outline: 3px solid var(--accent-blue); outline-offset: 2px; }
.artist-sort-dialog__panel small { display: block; margin-top: 18px; color: var(--cc-ink-soft); font-weight: 700; }

.artist-profile-page { padding: 14px 0 88px; }
.artist-profile-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin: 0 0 18px; color: var(--cc-ink-soft); font-size: .93rem; font-weight: 650; }
.artist-profile-breadcrumb a { color: var(--cc-ink); font-weight: 800; text-decoration: none; }
.artist-hero { overflow: hidden; border-radius: 24px; background: rgba(255,255,255,.42); }
.artist-hero__banner { position: relative; height: clamp(180px, 18vw, 230px); overflow: hidden; }
.artist-hero__banner::before { content: ''; position: absolute; inset: 0; background: inherit; }
.artist-hero__banner-image { width: 100%; height: 100%; object-fit: cover; }
.artist-hero__banner-fallback { isolation: isolate; }
.artist-hero__banner-fallback i:nth-of-type(1) { left: 7%; top: 18%; width: 22px; }
.artist-hero__banner-fallback i:nth-of-type(2) { right: 10%; top: 22%; width: 14px; }
.artist-hero__banner-fallback i:nth-of-type(3) { left: 18%; bottom: 17%; width: 12px; }
.artist-hero__banner-fallback i:nth-of-type(4) { right: 20%; bottom: 14%; width: 20px; }
.artist-hero__banner-fallback i:nth-of-type(5) { left: 50%; top: 12%; width: 10px; }
.artist-hero__banner-fallback i:nth-of-type(6) { right: 34%; bottom: 20%; width: 9px; }
.artist-hero__identity { position: relative; padding: 68px 36px 34px; }
.artist-hero__avatar {
  position: absolute;
  left: 36px;
  top: -56px;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--cream-panel);
  background: var(--pastel-lavender);
}
.artist-hero__avatar--fallback { font-family: var(--cc-display); font-size: 2.55rem; font-weight: 700; }
.artist-hero__copy { max-width: 760px; }
.artist-hero h1 { margin: 0; font-size: clamp(2.8rem, 4.4vw, 4rem); line-height: .98; }
.artist-hero__accent { margin: 7px 0 0; color: #6e57a4; font-size: 1.03rem; font-weight: 800; }
.artist-hero__intro { max-width: 720px; margin: 16px 0 0; font-size: 1.04rem; line-height: 1.56; }
.artist-profile-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.artist-profile-links a { min-height: 44px; padding: 0 14px; border-radius: 999px; display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.76); font-weight: 800; text-decoration: none; }
.artist-profile-links a:hover { background: var(--pastel-lavender); }
.artist-profile-links .icon { width: 19px; height: 19px; color: #6e57a4; }
.artist-hero__counts { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 20px 0 0; color: var(--cc-ink-soft); font-weight: 850; }
.artist-hero__counts a { text-decoration: none; }

.artist-about { margin-top: 34px; padding: clamp(24px, 3.4vw, 36px); border-radius: 20px; background: rgba(255,255,255,.48); }
.artist-about h2,
.artist-profile-section__heading h2 { margin: 0; font-size: clamp(2rem, 3.7vw, 3rem); line-height: 1.08; }
.artist-about__copy { max-width: 860px; margin-top: 18px; }
.artist-about__copy p,
.artist-about__copy li { color: var(--cc-ink); line-height: 1.72; }
.artist-about__copy p { margin: 0 0 16px; }
.artist-about__copy ul { padding-left: 24px; }
.artist-about__contact { max-width: 860px; margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(12,19,36,.12); font-weight: 650; }
.artist-about__contact a { color: #6e57a4; font-weight: 850; text-decoration: underline; text-underline-offset: 3px; }

.artist-profile-section { margin-top: 52px; scroll-margin-top: 120px; }
.artist-profile-section__heading { margin-bottom: 22px; }
.artist-profile-section__heading p { max-width: 720px; margin: 10px 0 0; color: var(--cc-ink-soft); font-weight: 600; }
.artist-design-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 340px)); justify-content: start; gap: 26px; }
.artist-design-card { overflow: hidden; border-radius: 20px; background: rgba(255,250,236,.9); display: flex; flex-direction: column; transition: background var(--transition-normal); }
.artist-design-card:hover { background: var(--cream-soft); }
.artist-design-card__media { position: relative; display: grid; place-items: center; aspect-ratio: 1 / 1; overflow: hidden; background: var(--pastel-lavender); }
.artist-design-card__media > img { position: absolute; inset: 10px; width: calc(100% - 20px); height: calc(100% - 20px); object-fit: contain; transition: transform var(--transition-normal); }
.artist-design-card:hover .artist-design-card__media > img { transform: scale(1.015); }
.artist-design-card__fallback { position: absolute; inset: 0; display: grid; place-items: center; }
.artist-design-card__fallback > img { width: 76px; opacity: .45; }
.artist-design-card__fallback > strong { position: absolute; font-family: var(--cc-display); font-size: 3rem; opacity: .14; transform: translateY(58px); }
.artist-design-card__fallback i:nth-of-type(1) { left: 10%; top: 12%; }
.artist-design-card__fallback i:nth-of-type(2) { right: 11%; top: 17%; width: 11px; }
.artist-design-card__fallback i:nth-of-type(3) { right: 19%; bottom: 13%; width: 14px; }
.artist-design-card__body { flex: 1; display: flex; flex-direction: column; padding: 20px; }
.artist-design-card h3 { margin: 0; font-size: 1.55rem; line-height: 1.08; }
.artist-design-card h3 a:hover { text-decoration: underline; text-underline-offset: 3px; }
.artist-design-card__credit { margin: 7px 0 0; color: #6e57a4; font-size: .88rem; font-weight: 750; }
.artist-design-card__credit a { font-weight: 850; }
.artist-design-card__credit a:hover { text-decoration: underline; text-underline-offset: 2px; }
.artist-design-card__description { margin: 15px 0 0; font-size: .94rem; line-height: 1.52; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; }
.artist-design-card__count { margin: 17px 0 0; color: var(--cc-ink-soft); font-size: .88rem; font-weight: 800; }
.artist-design-card__action { align-self: flex-start; min-height: 44px; margin-top: auto; padding-top: 17px; display: inline-flex; align-items: center; gap: 7px; color: #6e57a4; font-weight: 850; }
.artist-design-card__action:hover { text-decoration: underline; text-underline-offset: 3px; }
.artist-profile-products .product-grid { grid-template-columns: repeat(auto-fill, minmax(230px, 280px)); justify-content: start; gap: 31px 20px; }
.artist-profile-products .product-card { width: 100%; max-width: 280px; margin: 0; }
.artist-profile-products .product-card__artist { display: block; }
.artist-profile-view-all { min-height: 44px; margin-top: 28px; padding: 0 15px; border-radius: 999px; display: inline-flex; align-items: center; gap: 8px; background: var(--pastel-lavender); font-weight: 850; text-decoration: none; }
.artist-profile-view-all:hover { background: #d9c0ea; }
.artist-profile-not-found > img { width: 88px; height: 88px; object-fit: contain; }

.artist-directory-card h2 a,
.artist-directory-card__action,
.artist-profile-breadcrumb a,
.artist-hero__counts a,
.artist-about__contact a,
.artist-design-card h3 a,
.artist-design-card__credit a,
.artist-design-card__action,
.artist-profile-view-all,
.artist-profile-products .product-card__title,
.artist-profile-products .product-card__artist a {
  text-decoration: none;
}
.artist-directory-card h2 a:hover,
.artist-directory-card h2 a:focus-visible,
.artist-directory-card__action:hover,
.artist-directory-card__action:focus-visible,
.artist-profile-breadcrumb a:hover,
.artist-profile-breadcrumb a:focus-visible,
.artist-hero__counts a:hover,
.artist-hero__counts a:focus-visible,
.artist-about__contact a:hover,
.artist-about__contact a:focus-visible,
.artist-design-card h3 a:hover,
.artist-design-card h3 a:focus-visible,
.artist-design-card__credit a:hover,
.artist-design-card__credit a:focus-visible,
.artist-design-card__action:hover,
.artist-design-card__action:focus-visible,
.artist-profile-view-all:hover,
.artist-profile-view-all:focus-visible,
.artist-profile-products .product-card__title:hover,
.artist-profile-products .product-card__title:focus-visible,
.artist-profile-products .product-card__artist a:hover,
.artist-profile-products .product-card__artist a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--cc-pink);
  text-underline-offset: 3px;
}
.artist-profile-not-found > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

@media (max-width: 1179px) {
  .artist-directory-page__inner,
  .artist-profile-page__inner { width: min(1120px, calc(100% - 48px)); }
  .artist-directory-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 360px)); }
  .artist-hero__banner { height: clamp(170px, 21vw, 220px); }
  .artist-hero__avatar { width: 104px; height: 104px; top: -52px; }
  .artist-hero__identity { padding: 62px 32px 30px; }
  .artist-hero__avatar { left: 32px; }
}

@media (max-width: 760px) {
  .artist-directory-page,
  .artist-profile-page { padding-top: 8px; }
  .artist-directory-page__inner,
  .artist-profile-page__inner { width: calc(100% - 30px); }
  .artist-directory-intro__title h1 { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .artist-directory-intro > p { font-size: .96rem; }
  .artist-directory-controls { grid-template-columns: 1fr; gap: 10px; }
  .artist-directory-sort-control { width: 100%; }
  .js .artist-directory-sort-control { display: none; }
  .js .artist-directory-sort-trigger { display: flex; }
  .artist-directory__submit { width: 100%; justify-content: center; }
  .artist-directory-grid { grid-template-columns: 1fr; gap: 20px; }
  .artist-directory-card { width: min(100%, 430px); }
  .artist-directory-card__avatar { width: 74px; height: 74px; }
  .artist-directory-card__avatar-link { top: -37px; left: 20px; }
  .artist-directory-card__body { padding: 46px 20px 22px; }
  .artist-sort-dialog { width: 100%; }

  .artist-profile-breadcrumb { margin-bottom: 15px; font-size: .84rem; }
  .artist-profile-breadcrumb a:first-child,
  .artist-profile-breadcrumb a:first-child + span { display: none; }
  .artist-hero { border-radius: 20px; }
  .artist-hero__banner { height: auto; aspect-ratio: 2.65 / 1; }
  .artist-hero__banner-orb { width: 104px; height: 104px; }
  .artist-hero__identity { padding: 52px 22px 26px; }
  .artist-hero__avatar { left: 22px; top: -42px; width: 84px; height: 84px; border-width: 5px; }
  .artist-hero h1 { font-size: clamp(2.4rem, 11vw, 3.3rem); }
  .artist-hero__accent { font-size: .98rem; }
  .artist-hero__intro { font-size: 1rem; }
  .artist-profile-links a { min-height: 44px; }
  .artist-about { margin-top: 34px; padding: 24px 20px; }
  .artist-profile-section { margin-top: 54px; }
  .artist-design-grid { grid-template-columns: 1fr; }
  .artist-design-card { width: min(100%, 420px); }
  .artist-profile-products .product-grid { grid-template-columns: repeat(auto-fit, minmax(155px, 1fr)); gap: 26px 14px; }
  .artist-profile-products .product-card { max-width: none; }
}

@media (max-width: 360px) {
  .artist-profile-products .product-grid { grid-template-columns: 1fr; }
  .artist-profile-products .product-card { width: min(100%, 320px); margin-inline: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .artist-directory-card:hover .artist-directory-card__banner-image,
  .artist-design-card:hover .artist-design-card__media > img { transform: none; }
}


/* --------------------------------------------------------------------------
   Mobile product gallery + compact promotion badges v0.18.2
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  /* The later product visual-parity rules must also collapse the main grid.
     Without this override, the gallery column can shrink to zero on phones. */
  .product-main {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .product-gallery {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 760px) {
  /* Card artwork scales with its column, so both promotion badges must scale
     too. This keeps New and Sale separated in narrow two-column grids. */
  .product-card__media .promotion-badge {
    top: 4px;
    width: clamp(42px, 24%, 50px);
  }

  .product-card__media .promotion-badge--new {
    left: 4px;
  }

  .product-card__media .promotion-badge--sale {
    right: 4px;
  }

  .product-card__media .promotion-badge::after {
    inset: 3px;
  }

  .product-card__media .promotion-badge > span {
    font-size: clamp(.68rem, 3.1vw, .78rem);
  }
}

@media (max-width: 420px) {
  .product-card__media .promotion-badge {
    width: clamp(40px, 23%, 46px);
  }

  .product-card__media .promotion-badge > span {
    font-size: .68rem;
  }
}
