/* ==========================================================================
   Belle Creates — Design System
   Color hierarchy (decision made here, since brand guide left this open):
     --color-primary      : main brand color (nav, links, section accents)
     --color-primary-dark : headings, footer, high-contrast text on light bg
     --color-primary-light: hover states
     --color-accent       : CTA buttons / highlights (amber)
     --color-gold         : secondary accent / badges
     --color-bg           : page background (pale lilac)
     --color-card-yellow  : soft card background
     --color-sage / --color-olive / --color-malva : value-card palette
   ========================================================================== */

:root {
  --color-primary: #aa90cf;
  --color-primary-dark: #8b6a95;
  --color-primary-light: #b99ce4;
  --color-bg: #e7dcf9;
  --color-accent: #ecb43a;
  --color-gold: #e2c750;
  --color-card-yellow: #f7ec8d;
  --color-sage: #b6b997;
  --color-olive: #8e926d;
  --color-malva: #ba93b5;

  --color-ink: #2e2438;
  --color-white: #ffffff;

  --font-display: "Bagel Fat One", cursive;
  --font-body: "Nunito", sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --shadow-soft: 0 10px 30px rgba(139, 106, 149, 0.18);
  --container-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--color-primary-dark);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

section {
  padding: 72px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-family: var(--font-body);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  font-size: 1rem;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-ink);
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary-dark);
}

/* ---------- Checkered pattern flourish (from brand guide cover) ---------- */
.checker {
  display: grid;
  grid-template-columns: repeat(4, 34px);
  grid-auto-rows: 34px;
  gap: 6px;
}

.checker span {
  border-radius: 8px;
}

.checker span:nth-child(4n+1) { background: var(--color-primary-light); }
.checker span:nth-child(4n+2) { background: transparent; }
.checker span:nth-child(4n+3) { background: var(--color-gold); }
.checker span:nth-child(4n+4) { background: transparent; }

/* ---------------------------------- Header ---------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(231, 220, 249, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(139, 106, 149, 0.15);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo-link img {
  height: 48px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  font-weight: 800;
  color: var(--color-primary-dark);
}

.main-nav a:hover {
  color: var(--color-accent);
}

.nav-cta {
  padding: 10px 22px;
  font-size: 0.9rem;
}

/* ---------------------------------- Header actions (language + cart) ---------------------------------- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-switcher {
  position: relative;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-primary-dark);
  padding: 8px;
  border-radius: 999px;
  font-size: 1.25rem;
  line-height: 1;
  transition: background 0.15s ease;
}

.lang-toggle:hover {
  background: rgba(139, 106, 149, 0.12);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 60;
  list-style: none;
  margin: 0;
  padding: 6px;
  min-width: 170px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.lang-switcher.is-open .lang-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-menu li + li {
  margin-top: 2px;
}

.lang-menu button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-ink);
  cursor: pointer;
  text-align: left;
}

.lang-menu button:hover {
  background: var(--color-bg);
}

.lang-menu button.is-selected {
  background: var(--color-bg);
  color: var(--color-primary-dark);
}

.lang-flag {
  font-size: 1.15rem;
  line-height: 1;
}

/* ---------------------------------- Hero ---------------------------------- */
.hero {
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-light) 55%, var(--color-malva) 100%);
  color: var(--color-white);
  overflow: hidden;
  position: relative;
  padding: 90px 0 110px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-eyebrow {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--color-card-yellow);
}

.hero h1 {
  color: var(--color-white);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-top: 12px;
}

.hero p {
  font-size: 1.15rem;
  max-width: 480px;
  opacity: 0.95;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-visual {
  justify-self: center;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transform: rotate(-3deg);
}

.hero-visual img {
  width: 260px;
}

.hero-checker {
  position: absolute;
  opacity: 0.5;
}

.hero-checker.top-left { top: 24px; left: 24px; }
.hero-checker.bottom-right { bottom: 24px; right: 24px; grid-template-columns: repeat(3, 28px); grid-auto-rows: 28px; }

/* ---------------------------------- Mission ---------------------------------- */
.mission {
  text-align: center;
}

.mission h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.mission-text {
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 1.15rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.value-card {
  border-radius: var(--radius-md);
  padding: 26px 20px;
  color: var(--color-white);
  text-align: left;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-soft);
}

.value-card h3 {
  color: var(--color-white);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.value-card p {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.95;
}

.value-card.creativity { background: var(--color-primary); }
.value-card.empathy { background: var(--color-accent); color: var(--color-ink); }
.value-card.empathy h3 { color: var(--color-ink); }
.value-card.inclusion { background: var(--color-sage); color: var(--color-ink); }
.value-card.inclusion h3 { color: var(--color-ink); }
.value-card.learning { background: var(--color-malva); }
.value-card.courage { background: var(--color-gold); color: var(--color-ink); }
.value-card.courage h3 { color: var(--color-ink); }

/* ---------------------------------- Products ---------------------------------- */
.products {
  background: var(--color-bg);
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 12px;
}

.section-heading p {
  color: #6b5a75;
  margin: 4px 0 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--color-card-yellow);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: var(--color-ink);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--color-white);
  overflow: hidden;
}

.product-card .product-image {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-arrow-sm {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary-dark);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(46, 36, 56, 0.25);
}

.gallery-arrow-sm.gallery-arrow-prev { left: 8px; }
.gallery-arrow-sm.gallery-arrow-next { right: 8px; }

.zoom-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(46, 36, 56, 0.25);
}

.zoom-btn svg {
  width: 14px;
  height: 14px;
}

.product-card .product-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-title-link {
  text-decoration: none;
}

.product-card h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-ink);
  margin: 0;
}

.product-card .price {
  font-weight: 800;
  color: var(--color-primary-dark);
}

.product-card .quick-add {
  margin-top: 8px;
  padding: 10px 18px;
  font-size: 0.85rem;
  align-self: flex-start;
}

.option-dots {
  display: flex;
  gap: 7px;
  margin-top: 2px;
}

.option-dot {
  width: 28px;
  height: 28px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: var(--color-white);
  box-shadow: 0 0 0 1px rgba(139, 106, 149, 0.35);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.option-dot svg {
  width: 20px;
  height: 20px;
}

.option-dot:hover,
.option-dot:focus-visible,
.option-dot.is-active {
  transform: scale(1.18);
  box-shadow: 0 0 0 2px var(--color-primary-dark);
}

/* Brand-palette colors for the option-dot icons (randomly assigned per dot) */
.dot-color-primary { color: var(--color-primary); }
.dot-color-primary-dark { color: var(--color-primary-dark); }
.dot-color-primary-light { color: var(--color-primary-light); }
.dot-color-accent { color: var(--color-accent); }
.dot-color-gold { color: var(--color-gold); }
.dot-color-sage { color: var(--color-sage); }
.dot-color-olive { color: var(--color-olive); }
.dot-color-malva { color: var(--color-malva); }

.sold-out-badge {
  margin-top: 8px;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: #a1454a;
  background: #fdecec;
  padding: 6px 12px;
  border-radius: 999px;
  align-self: flex-start;
}

.products-status {
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--radius-md);
  background: var(--color-bg);
  color: var(--color-primary-dark);
  font-weight: 700;
}

.products-status.is-error {
  background: #fdecec;
  color: #a1454a;
}

.skeleton {
  background: var(--color-card-yellow);
  border-radius: var(--radius-md);
  aspect-ratio: 3 / 4;
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ---------------------------------- About / Story ---------------------------------- */
.about {
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-swatches {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.swatch {
  aspect-ratio: 1;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

/* ---------------------------------- Newsletter / CTA ---------------------------------- */
.cta-band {
  background: var(--color-primary-dark);
  color: var(--color-white);
  text-align: center;
}

.cta-band h2 {
  color: var(--color-white);
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 28px auto 0;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 999px;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ---------------------------------- Cart toggle + drawer ---------------------------------- */
.cart-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-primary-dark);
  padding: 8px;
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--color-accent);
  color: var(--color-ink);
  font-size: 0.7rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(46, 36, 56, 0.4);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  height: 100%;
  width: min(420px, 100%);
  background: var(--color-white);
  box-shadow: -12px 0 40px rgba(46, 36, 56, 0.25);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.cart-drawer.is-open {
  pointer-events: auto;
}

.cart-drawer.is-open .cart-drawer-backdrop {
  opacity: 1;
}

.cart-drawer.is-open .cart-drawer-panel {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-bg);
}

.cart-drawer-header h2 {
  margin: 0;
  font-size: 1.3rem;
}

.cart-drawer-header button {
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--color-ink);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.cart-empty {
  color: #6b5a75;
}

.cart-empty a {
  color: var(--color-primary-dark);
  font-weight: 700;
}

.cart-lines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cart-line {
  display: flex;
  gap: 14px;
}

.cart-line-image {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-bg);
  flex-shrink: 0;
}

.cart-line-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-line-title {
  margin: 0;
  font-weight: 800;
  font-size: 0.95rem;
}

.cart-line-variant {
  margin: 2px 0 0;
  font-size: 0.8rem;
  color: #6b5a75;
}

.cart-line-price {
  margin: 4px 0;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.cart-line-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--color-bg);
  background: var(--color-white);
  cursor: pointer;
  font-weight: 800;
  color: var(--color-primary-dark);
}

.cart-line-remove {
  margin-left: auto;
  background: none;
  border: none;
  color: #a1454a;
  font-size: 0.78rem;
  cursor: pointer;
  text-decoration: underline;
}

.cart-drawer-footer {
  padding: 20px 24px 26px;
  border-top: 1px solid var(--color-bg);
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.cart-checkout-btn {
  width: 100%;
  justify-content: center;
}

.cart-checkout-note {
  text-align: center;
  font-size: 0.78rem;
  color: #6b5a75;
  margin: 10px 0 0;
}

body.cart-open {
  overflow: hidden;
}

/* ---------------------------------- Photo lightbox (zoom) ---------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(46, 36, 56, 0.85);
}

.lightbox-img-wrap {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 900px);
  max-height: 85vh;
  overflow: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  line-height: 0;
}

.lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  cursor: zoom-in;
  -webkit-user-drag: none;
  user-select: none;
}

.lightbox-img.is-zoomed {
  max-width: none;
  max-height: none;
  cursor: grab;
}

.lightbox-img.is-zoomed.is-dragging {
  cursor: grabbing;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--color-white);
  color: var(--color-ink);
  font-size: 1.1rem;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--color-white);
  color: var(--color-primary-dark);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

body.lightbox-open {
  overflow: hidden;
}

/* ---------------------------------- Product detail page ---------------------------------- */
.product-detail {
  padding-top: 32px;
}

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  font-weight: 700;
  color: var(--color-primary-dark);
  text-decoration: none;
}

.back-link:hover {
  color: var(--color-accent);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-gallery-main {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg);
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary-dark);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease;
}

.gallery-arrow:hover {
  transform: translateY(-50%) scale(1.08);
}

.gallery-arrow-prev { left: 14px; }
.gallery-arrow-next { right: 14px; }

.product-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.thumb-btn {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: var(--color-bg);
}

.thumb-btn.is-active {
  border-color: var(--color-primary);
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.product-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin: 0 0 24px;
}

.option-group {
  margin-bottom: 20px;
}

.option-group label {
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option-value-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 2px solid var(--color-bg);
  background: var(--color-white);
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-body);
}

.option-value-btn.is-selected {
  border-color: var(--color-primary);
  background: var(--color-bg);
  color: var(--color-primary-dark);
}

.quantity-row {
  margin-bottom: 24px;
}

.quantity-row label {
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.quantity-stepper {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--color-bg);
  border-radius: 999px;
  overflow: hidden;
}

.quantity-stepper button {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--color-bg);
  cursor: pointer;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-primary-dark);
}

.quantity-stepper input {
  width: 50px;
  text-align: center;
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  -moz-appearance: textfield;
}

#add-to-cart-btn {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 16px 28px;
}

.availability-note {
  margin-top: 10px;
  color: #a1454a;
  font-weight: 700;
  font-size: 0.9rem;
}

.stock-note {
  margin-top: 8px;
  min-height: 1.1em;
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 0.85rem;
}

.stock-note.is-warning {
  color: #a1454a;
}

.product-description {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-bg);
  color: #4a3d52;
}

.product-description p {
  line-height: 1.7;
}

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

/* ---------------------------------- Footer ---------------------------------- */
.site-footer {
  background: var(--color-ink);
  color: var(--color-white);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
}

.footer-grid h4 {
  font-family: var(--font-body);
  font-weight: 800;
  color: var(--color-card-yellow);
  margin: 0 0 14px;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-grid a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------------------------------- Responsive ---------------------------------- */
@media (max-width: 860px) {
  .hero .container,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-self: start;
  }

  .main-nav {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-color-scheme: dark) {
  /* Site is brand-color driven and reads fine in both themes;
     kept intentionally light since Shopify storefronts are typically
     viewed at full brightness regardless of OS theme. */
}
