/* Tarab Global III — Sunlit Atelier floral skin */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --v2-sand: #EDE8DF;
  --v2-sand-light: #FAF7F2;
  --v2-sand-dark: #D9D0C3;
  --v2-teal: #5C7A68;
  --v2-teal-dark: #466052;
  --v2-teal-soft: #E3EDE7;
  --v2-coral: #C45C3E;
  --v2-coral-soft: #F6E4DE;
  --v2-ink: #2A241E;
  --v2-muted: #6B6258;
  --v2-white: #FFFFFF;
  --v2-line: rgba(42, 36, 30, 0.1);
  --v2-radius: 28px;
  --v2-radius-sm: 16px;
  --v2-shadow: 0 24px 64px rgba(92, 122, 104, 0.12);
  --v2-shadow-soft: 0 12px 40px rgba(42, 36, 30, 0.06);
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Source Sans 3', system-ui, sans-serif;

  /* bridge vars for inner pages using style.css */
  --cream: var(--v2-sand-light);
  --leaf: var(--v2-ink);
  --sage: var(--v2-muted);
  --earth: var(--v2-teal);
  --mint: var(--v2-teal-soft);
  --paper: var(--v2-white);
  --white: var(--v2-white);
  --line: var(--v2-line);
  --shadow: var(--v2-shadow);
  --radius: var(--v2-radius);
  --primary: var(--v2-teal);
  --secondary: var(--v2-coral);
  --accent: var(--v2-coral);
  --navy: var(--v2-ink);

  /* commerce-ui.css token bridge (cart, checkout) */
  --gen-ink: var(--v2-ink);
  --gen-navy: var(--v2-ink);
  --gen-rust: var(--v2-teal);
  --gen-rust-dark: var(--v2-teal-dark);
  --gen-blue: var(--v2-teal);
  --gen-blue-soft: var(--v2-teal-soft);
  --gen-gold: var(--v2-coral);
  --gen-sand: var(--v2-sand-light);
  --gen-cream: var(--v2-sand);
  --gen-blush: var(--v2-coral-soft);
  --gen-white: var(--v2-white);
  --gen-muted: var(--v2-muted);
  --gen-line: var(--v2-line);
  --gen-shadow: var(--v2-shadow-soft);
  --gen-radius: var(--v2-radius-sm);
  --gen-radius-lg: var(--v2-radius);
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--v2-sand-light);
  color: var(--v2-ink);
  font-family: var(--font-sans);
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.site-shell { min-height: 100vh; overflow-x: hidden; }
.container { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }

/* ── Header: airy transparent over hero ── */
.sunlit-v3 .v2-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 0;
  background: transparent;
  border: none;
}

.sunlit-v3 .v2-header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.sunlit-v3 .v2-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 280px;
}

.sunlit-v3 .v2-brand-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--v2-teal);
}

.sunlit-v3 .v2-brand-name {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--v2-ink);
}

.sunlit-v3 .v2-brand-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--v2-muted);
  line-height: 1.4;
}

.sunlit-v3 .v2-nav-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.sunlit-v3 .v2-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.sunlit-v3 .v2-nav a {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--v2-muted);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.sunlit-v3 .v2-nav a:hover {
  color: var(--v2-teal);
  background: rgba(255, 255, 255, 0.6);
}

.sunlit-v3 .v2-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sunlit-v3 .v2-signin {
  font-size: 14px;
  font-weight: 700;
  color: var(--v2-teal);
  padding: 10px 16px;
}

.sunlit-v3 .v2-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: var(--v2-teal);
  color: var(--v2-white) !important;
  font-size: 14px;
  font-weight: 800;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(14, 116, 144, 0.25);
  transition: transform 0.2s, background 0.2s;
}

.sunlit-v3 .v2-cart:hover {
  background: var(--v2-teal-dark);
  transform: translateY(-1px);
}

.sunlit-v3 .v2-cart span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--v2-coral);
  color: var(--v2-white);
  font-size: 12px;
  font-weight: 800;
}

.sunlit-v3 .nav-toggle {
  display: none;
  border: 1px solid var(--v2-line);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  color: var(--v2-ink);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
}

/* Home: sticky compact header — avoids overlapping the hero */
.sunlit-v3.v2-home .v2-header {
  position: sticky;
  top: 0;
  background: rgba(245, 245, 244, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--v2-line);
  padding: 16px 0;
  box-shadow: var(--v2-shadow-soft);
}

.sunlit-v3.v2-home .v2-brand-tag {
  display: none;
}

.sunlit-v3.v2-home .v2-brand {
  max-width: none;
}

.sunlit-v3.v2-home .v2-brand-name {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
}

/* Inner pages: sticky sand header */
.sunlit-v3:not(.v2-home) .v2-header {
  position: sticky;
  top: 0;
  background: rgba(231, 229, 228, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--v2-line);
  padding: 18px 0;
  box-shadow: var(--v2-shadow-soft);
}

/* ── Split hero ── */
.v2-hero {
  position: relative;
  padding: clamp(40px, 6vh, 64px) 0 clamp(56px, 8vh, 80px);
  background: var(--v2-sand-light);
}

.v2-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.v2-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.v2-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--v2-coral);
  margin-bottom: 18px;
}

.v2-hero-kicker::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--v2-coral);
  border-radius: 2px;
  flex-shrink: 0;
}

.v2-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 4.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--v2-ink);
  margin: 0 0 14px;
  max-width: 14ch;
}

.v2-hero-tagline {
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  font-weight: 700;
  color: var(--v2-teal);
  line-height: 1.5;
  margin: 0 0 16px;
  max-width: 34ch;
}

.v2-hero-lead {
  font-size: clamp(0.98rem, 1.2vw, 1.05rem);
  color: var(--v2-muted);
  max-width: 48ch;
  line-height: 1.75;
  margin: 0 0 32px;
}

.v2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.v2-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.v2-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border-radius: var(--v2-radius-sm);
  background: var(--v2-white);
  border: 1px solid var(--v2-line);
  box-shadow: var(--v2-shadow-soft);
}

.v2-stat strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--v2-teal);
  line-height: 1;
}

.v2-stat span {
  font-size: 12px;
  font-weight: 600;
  color: var(--v2-muted);
  line-height: 1.45;
}

.v2-hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.v2-hero-art {
  position: relative;
  overflow: hidden;
  border-radius: var(--v2-radius);
  background:
    linear-gradient(145deg, var(--v2-teal) 0%, #0c6378 42%, var(--v2-coral) 100%);
  box-shadow: var(--v2-shadow);
  min-height: clamp(280px, 36vw, 420px);
  display: grid;
  place-items: center;
  padding: clamp(20px, 3vw, 32px);
}

.v2-hero-art img {
  width: min(100%, 520px);
  height: auto;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.22));
}

.v2-hero-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.v2-hero-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 16px;
  background: var(--v2-white);
  border: 1px solid var(--v2-line);
  box-shadow: var(--v2-shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.v2-hero-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 116, 144, 0.28);
  box-shadow: var(--v2-shadow);
}

.v2-hero-chip-media {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--v2-sand);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.v2-hero-chip-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.v2-hero-chip-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.v2-hero-chip-body strong {
  font-size: 12px;
  font-weight: 800;
  color: var(--v2-ink);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.v2-hero-chip-body span {
  font-size: 13px;
  font-weight: 800;
  color: var(--v2-teal);
}

/* ── Sections ── */
.v2-section {
  padding: clamp(64px, 10vh, 96px) 0;
}

.v2-section--sand {
  background: var(--v2-sand);
}

.v2-section-head {
  margin-bottom: 48px;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.v2-section-head .v2-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--v2-teal);
  margin-bottom: 12px;
}

.v2-section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--v2-ink);
}

.v2-section-head p {
  font-size: 16px;
  color: var(--v2-muted);
  margin: 0;
  line-height: 1.7;
}

/* ── Category circles ── */
.v2-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.v2-cat-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 140px;
  text-align: center;
  transition: transform 0.25s ease;
}

.v2-cat-circle:hover {
  transform: translateY(-6px);
}

.v2-cat-circle-ring {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--v2-white);
  border: 2px solid var(--v2-sand-dark);
  display: grid;
  place-items: center;
  box-shadow: var(--v2-shadow-soft);
  transition: border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.v2-cat-circle:hover .v2-cat-circle-ring {
  border-color: var(--v2-teal);
  box-shadow: 0 16px 40px rgba(14, 116, 144, 0.15);
}

.v2-cat-circle-icon {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--v2-teal);
  line-height: 1;
}

.v2-cat-circle h3 {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: var(--v2-ink);
  line-height: 1.25;
}

.v2-cat-circle span {
  font-size: 12px;
  font-weight: 700;
  color: var(--v2-muted);
}

/* ── Masonry featured grid ── */
.v2-masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: start;
}

.v2-masonry .v2-product {
  background: var(--v2-white);
  border-radius: var(--v2-radius);
  overflow: hidden;
  box-shadow: var(--v2-shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.v2-masonry .v2-product:hover {
  transform: translateY(-4px);
  box-shadow: var(--v2-shadow);
}

.v2-masonry .v2-product:nth-child(odd) {
  margin-top: 0;
}

.v2-masonry .v2-product:nth-child(even) {
  margin-top: 48px;
}

.v2-masonry .v2-product:nth-child(3) {
  margin-top: -24px;
}

.v2-product-media {
  aspect-ratio: 4/3;
  background: var(--v2-sand-light);
  padding: 24px;
  display: grid;
  place-items: center;
}

.v2-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--v2-radius-sm);
}

.v2-product-body {
  padding: 28px 28px 32px;
}

.v2-product-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v2-coral);
  margin-bottom: 10px;
}

.v2-product h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--v2-ink);
}

.v2-product-desc {
  font-size: 14px;
  color: var(--v2-muted);
  line-height: 1.65;
  margin: 0 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.v2-product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.v2-product-foot strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--v2-teal);
}

/* ── Editorial promo strip ── */
.v2-promo {
  background: var(--v2-teal);
  color: var(--v2-white);
  border-radius: var(--v2-radius);
  padding: clamp(40px, 6vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.v2-promo h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--v2-white);
}

.v2-promo p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 48ch;
  line-height: 1.65;
}

/* ── Benefits row ── */
.v2-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.v2-benefit {
  background: var(--v2-white);
  border-radius: var(--v2-radius);
  padding: 28px;
  box-shadow: var(--v2-shadow-soft);
}

.v2-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--v2-coral-soft);
  color: var(--v2-coral);
  display: grid;
  place-items: center;
  font-size: 18px;
  margin-bottom: 18px;
}

.v2-benefit h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--v2-ink);
}

.v2-benefit p {
  font-size: 14px;
  color: var(--v2-muted);
  margin: 0;
  line-height: 1.65;
}

/* ── Buttons ── */
.btn, .v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 800;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}

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

.btn-primary, .v2-btn-primary {
  background: var(--v2-teal);
  color: var(--v2-white) !important;
  border-color: var(--v2-teal);
}

.btn-primary:hover, .v2-btn-primary:hover {
  background: var(--v2-teal-dark);
  border-color: var(--v2-teal-dark);
}

.btn-secondary, .v2-btn-outline {
  background: transparent;
  color: var(--v2-teal) !important;
  border-color: var(--v2-teal);
}

.btn-soft, .v2-btn-soft {
  background: var(--v2-coral-soft);
  color: var(--v2-coral) !important;
  border-color: transparent;
}

.v2-promo .btn, .v2-promo .v2-btn {
  background: var(--v2-white);
  color: var(--v2-teal) !important;
  border-color: var(--v2-white);
}

/* ── Footer: sand, centered minimal ── */
.v2-footer {
  background: var(--v2-sand);
  padding: clamp(56px, 8vh, 80px) 0 36px;
  text-align: center;
  border-top: 1px solid var(--v2-line);
}

.v2-footer-brand {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 600;
  color: var(--v2-ink);
  margin: 0 0 8px;
}

.v2-footer-tag {
  font-size: 14px;
  color: var(--v2-muted);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.v2-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-bottom: 36px;
}

.v2-footer-links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--v2-teal);
  transition: color 0.2s;
}

.v2-footer-links a:hover { color: var(--v2-coral); }

.v2-footer-meta {
  font-size: 12px;
  font-weight: 600;
  color: var(--v2-muted);
  letter-spacing: 0.02em;
}

.v2-footer-meta span { display: block; margin: 4px 0; }

/* ── Product page: express-v2 layout ── */
.sunlit-v3-product {
  padding: clamp(48px, 8vh, 80px) 0;
}

.sunlit-v3-product .v2-product-hero {
  margin-bottom: 40px;
}

.sunlit-v3-product .v2-product-hero .v2-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--v2-coral);
  margin-bottom: 12px;
}

.sunlit-v3-product .v2-product-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--v2-ink);
  max-width: 20ch;
}

.sunlit-v3-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(340px, 1.05fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.sunlit-v3-gallery {
  background: var(--v2-white);
  border-radius: var(--v2-radius);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--v2-shadow-soft);
  position: sticky;
  top: 100px;
}

.sunlit-v3-gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  border-radius: var(--v2-radius-sm);
}

.sunlit-v3-details {
  background: var(--v2-white);
  border-radius: var(--v2-radius);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--v2-shadow-soft);
}

.sunlit-v3-details .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v2-teal);
  margin-bottom: 16px;
}

.sunlit-v3-details .mini-copy {
  font-size: 16px;
  color: var(--v2-muted);
  line-height: 1.75;
  margin: 0 0 24px;
}

.sunlit-v3-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.sunlit-v3-specs span {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  background: var(--v2-sand-light);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--v2-muted);
}

.sunlit-v3-price {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--v2-line);
}

.sunlit-v3-price strong {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--v2-teal);
}

.sunlit-v3-form {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: end;
}

.sunlit-v3-form label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--v2-ink);
}

.sunlit-v3-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius-sm);
  font-family: var(--font-sans);
  font-size: 15px;
  background: var(--v2-white);
  color: var(--v2-ink);
}

.sunlit-v3-form select:focus {
  outline: none;
  border-color: var(--v2-teal);
  box-shadow: 0 0 0 4px rgba(14, 116, 144, 0.12);
}

.sunlit-v3-notice {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--v2-teal-soft);
  border-radius: var(--v2-radius-sm);
  font-size: 14px;
  color: var(--v2-teal-dark);
  line-height: 1.6;
}

.sunlit-v3-related {
  margin-top: 64px;
}

.sunlit-v3-related .v2-section-head {
  text-align: left;
  margin-inline: 0;
  margin-bottom: 32px;
}

.sunlit-v3-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sunlit-v3-related-grid .v2-product {
  background: var(--v2-white);
  border-radius: var(--v2-radius-sm);
  overflow: hidden;
  box-shadow: var(--v2-shadow-soft);
}

.sunlit-v3-related-grid .v2-product-media {
  aspect-ratio: 1/1;
  padding: 16px;
}

.sunlit-v3-related-grid .v2-product-body {
  padding: 18px 20px 22px;
}

.sunlit-v3-related-grid .v2-product h3 {
  font-size: 1rem;
}

/* ── Shared utilities ── */
.eyebrow, .tag { font-family: var(--font-sans); }
.section { padding: 56px 0; }
.section-title h2 { font-family: var(--font-serif); color: var(--v2-ink); }
.notice {
  padding: 16px 20px;
  background: var(--v2-teal-soft);
  border-radius: var(--v2-radius-sm);
  color: var(--v2-teal-dark);
  line-height: 1.6;
}
label { font-family: var(--font-sans); font-weight: 800; color: var(--v2-ink); }
input, select, textarea {
  font-family: var(--font-sans);
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius-sm);
  padding: 14px 16px;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--v2-teal);
  box-shadow: 0 0 0 4px rgba(14, 116, 144, 0.12);
}

/* Scroll reveal */
[data-scroll] {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-scroll].visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .v2-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .v2-hero h1 { max-width: none; }

  .v2-hero-stats {
    grid-template-columns: 1fr;
  }

  .v2-benefits { grid-template-columns: repeat(2, 1fr); }
  .sunlit-v3-layout { grid-template-columns: 1fr; }
  .sunlit-v3-gallery { position: static; }
  .sunlit-v3-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { width: min(100% - 32px, 1200px); }

  .sunlit-v3 .v2-header-inner {
    flex-wrap: wrap;
    align-items: center;
  }

  .sunlit-v3 .nav-toggle { display: inline-flex; }

  .sunlit-v3 .v2-nav-wrap {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .sunlit-v3 .v2-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border: 1px solid var(--v2-line);
    border-radius: var(--v2-radius-sm);
    padding: 12px;
    box-shadow: var(--v2-shadow);
  }

  .sunlit-v3 .v2-nav.open { display: flex; }
  .sunlit-v3 .v2-nav a { border-radius: var(--v2-radius-sm); }
  .sunlit-v3 .v2-actions { justify-content: flex-end; }

  .v2-masonry {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .v2-masonry .v2-product:nth-child(even),
  .v2-masonry .v2-product:nth-child(3) {
    margin-top: 0;
  }

  .v2-benefits { grid-template-columns: 1fr; }
  .v2-categories { gap: 16px; }
  .v2-cat-circle { width: 120px; }
  .v2-cat-circle-ring { width: 96px; height: 96px; }
  .v2-promo { flex-direction: column; text-align: center; }
  .v2-hero-chips { grid-template-columns: 1fr; }
  .sunlit-v3-related-grid { grid-template-columns: 1fr; }
  .sunlit-v3-form { grid-template-columns: 1fr; }
}

/* ── Shop catalogue grid ── */
.pill-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 28px; }
.pill-tabs a {
  padding: 10px 16px; font-size: 0.85rem; font-weight: 700;
  color: var(--v2-muted); background: var(--v2-white);
  border: 1px solid var(--v2-line); border-radius: 999px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.pill-tabs a:hover { color: var(--v2-teal); border-color: var(--v2-teal); background: var(--v2-teal-soft); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; }
.product-card {
  background: var(--v2-white);
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius-sm);
  overflow: hidden;
  box-shadow: var(--v2-shadow-soft);
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--v2-shadow); }
.product-card .product-body { padding: 18px 20px 22px; }
.product-card h3 { font-family: var(--font-serif); font-size: 1.05rem; color: var(--v2-ink); margin: 8px 0; }
.product-card p { font-size: 0.88rem; color: var(--v2-muted); margin: 0 0 12px; }
.product-media { aspect-ratio: 4/3; background: var(--v2-sand); overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 12px; }
.price-row strong { color: var(--v2-coral); font-size: 1.05rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; font-family: var(--font-sans); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-primary { background: var(--v2-teal); color: var(--v2-white); border-color: var(--v2-teal); }
.btn-primary:hover { background: var(--v2-teal-dark); border-color: var(--v2-teal-dark); }
.btn-secondary { background: var(--v2-coral-soft); color: var(--v2-coral); border-color: transparent; }
.pagination-summary { color: var(--v2-muted); font-size: 0.92rem; margin-bottom: 18px; }
.catalog-section { background: var(--v2-sand-light); }


/* v3 form fix — proper stacked labels + full-width inputs */
label { display: block; margin-bottom: 6px; font-size: 0.85rem; }
input, select, textarea { display: block; width: 100%; box-sizing: border-box; background: #fff; }
input[type="checkbox"], input[type="radio"] { display: inline-block; width: auto; }
button { font-family: inherit; cursor: pointer; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-bottom: 20px; }
.form-grid > div { display: flex; flex-direction: column; gap: 6px; }
.auth-form, .contact-form, .track-form, form.simple-form { max-width: 640px; margin: 0 auto 24px; display: block; }
.auth-actions, .form-actions { margin-top: 18px; display: flex; gap: 12px; flex-wrap: wrap; }
.auth-page, .contact-section, .track-section, .policy-section, .company-info, .help-section { padding: 40px 0 60px; }
.auth-page .container, .contact-section .container, .track-section .container { max-width: 1080px; }
.auth-gateway { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; background: var(--v2-paper, #fff); border-radius: 20px; padding: 32px; box-shadow: 0 20px 45px rgba(0,0,0,0.06); }
.auth-tab-bar { grid-column: 1 / -1; display: flex; gap: 8px; margin-bottom: 8px; }
.auth-tab-bar button { padding: 10px 18px; background: transparent; border: 1px solid rgba(0,0,0,0.1); border-radius: 999px; font-weight: 700; }
.auth-tab-bar button.is-active { background: var(--primary, #2d6a4f); color: #fff; border-color: transparent; }
.auth-pane { display: none; }
.auth-pane.is-active { display: block; }
.panel { background: #fff; border-radius: 18px; padding: 24px; box-shadow: 0 12px 30px rgba(0,0,0,0.05); }
.notice { padding: 12px 16px; border-radius: 12px; background: #fff8e1; margin-bottom: 16px; }
.notice-error { background: #fee2e2; color: #991b1b; }
.mini-copy { font-size: 0.9rem; opacity: 0.75; margin: 8px 0 14px; }
.lead { font-size: 1rem; margin: 4px 0 20px; opacity: 0.8; }
.auth-dashboard { display: grid; grid-template-columns: 260px 1fr; gap: 24px; }
.auth-sidebar { background: #fff; border-radius: 18px; padding: 20px; box-shadow: 0 12px 30px rgba(0,0,0,0.05); text-align: center; }
.auth-sidebar .side-links { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.auth-sidebar .side-links a, .auth-sidebar .side-links button { padding: 10px 12px; border-radius: 12px; background: rgba(0,0,0,0.03); border: 1px solid transparent; text-align: left; }
@media (max-width: 800px) { .auth-dashboard { grid-template-columns: 1fr; } }
