:root {
  --bg: #f3f1ed;
  --bg-soft: #f8f6f2;
  --surface: rgba(255, 255, 255, 0.96);
  --surface-soft: #f5f2ee;
  --surface-muted: #ede8e2;
  --ink: #151311;
  --muted: #6a625a;
  --muted-light: rgba(248, 241, 235, 0.76);
  --line: rgba(21, 19, 17, 0.1);
  --line-strong: rgba(21, 19, 17, 0.18);
  --accent: #8a5a3a;
  --accent-deep: #5e3f2d;
  --charcoal: #191715;
  --charcoal-soft: #26221f;
  --sand: #eee2d5;
  --olive: #e2e7e0;
  --blush: #ede1dc;
  --cream: #f2ece4;
  --shadow: 0 18px 48px rgba(21, 19, 17, 0.07);
  --shadow-strong: 0 28px 80px rgba(21, 19, 17, 0.14);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.72;
  background:
    radial-gradient(circle at top left, rgba(138, 90, 58, 0.08), transparent 26%),
    linear-gradient(180deg, #faf8f4 0%, #f1ede7 58%, #f7f4ef 100%);
}

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

h1,
h2,
h3,
p,
figure,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding-left: 1.2rem;
}

a,
button {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1360px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 80px;
}

.promo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: linear-gradient(135deg, #27231f 0%, #42352d 100%);
  color: rgba(255, 248, 242, 0.92);
  text-align: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

.site-header,
.store-hero,
.section,
.article-shell,
.site-footer {
  border-radius: var(--radius-xl);
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 18px 0 26px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  gap: 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.02em;
}

.brand::after {
  content: "winter edit";
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.site-nav a:hover {
  background: rgba(21, 19, 17, 0.06);
  color: var(--ink);
  transform: translateY(-1px);
}

main {
  display: grid;
  gap: 24px;
}

.section[id],
#pinterest-edits {
  scroll-margin-top: 112px;
}

.eyebrow,
.card-kicker,
.product-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow,
.product-badge {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 245, 237, 0.96);
}

.section .eyebrow,
.article-shell .eyebrow,
.card-kicker {
  border: 1px solid rgba(138, 90, 58, 0.14);
  background: rgba(138, 90, 58, 0.08);
  color: var(--accent);
}

.hero-copy h1,
.section h2,
.article-hero h1,
.feature-panel h2,
.collection-card h3,
.product-card h3,
.help-card h3,
.guide-card h3,
.panel-card h3,
.summary-box h2,
.callout h3,
.article-copy h2,
.footer-heading,
.edit-cover strong,
.mini-card strong {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.hero-copy h1,
.section h2,
.article-hero h1 {
  line-height: 0.92;
}

.hero-copy h1 {
  max-width: 10.5ch;
  font-size: clamp(3.4rem, 7.6vw, 6.3rem);
}

.hero-text,
.feature-panel p,
.collection-card p,
.product-copy,
.product-points li,
.help-card p,
.article-copy p,
.article-copy li,
.summary-box ul,
.callout p,
.callout li,
.fine-print,
.site-footer p,
.guide-card p,
.panel-card p,
.article-hero .hero-text,
.hero-note,
.hero-metric span,
.style-links li {
  color: var(--muted);
}

.store-hero .hero-text,
.store-hero .feature-panel p,
.store-hero .hero-note,
.store-hero .hero-metric span,
.store-hero .mini-card,
.store-hero .mini-card strong {
  color: var(--muted-light);
}

.hero-actions,
.buy-buttons,
.product-actions,
.guide-actions,
.hero-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}

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

.button-primary {
  background: var(--charcoal);
  color: #fff8f2;
  box-shadow: 0 14px 28px rgba(21, 19, 17, 0.14);
}

.button-secondary {
  border-color: rgba(21, 19, 17, 0.12);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.store-hero .button-primary,
.section-dark .button-primary {
  background: #fff3e7;
  color: var(--charcoal);
}

.store-hero .button-secondary,
.section-dark .button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff8f2;
}

.hero-chip,
.shelf-index,
.collection-index,
.help-number,
.mini-card-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-chip,
.shelf-index,
.mini-card-label {
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-chip {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 247, 240, 0.96);
  transition: background 0.18s ease, transform 0.18s ease;
}

.hero-chip:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-1px);
}

.shelf-index,
.mini-card-label {
  border: 1px solid rgba(21, 19, 17, 0.1);
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
}

.hero-metrics,
.collection-grid,
.product-grid,
.help-grid,
.article-grid,
.process-grid,
.edit-grid {
  display: grid;
  gap: 18px;
}

.store-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: 24px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(244, 231, 219, 0.08), transparent 26%),
    linear-gradient(135deg, #1b1815 0%, #2f2924 56%, #44352d 100%);
  color: #fff8f2;
  box-shadow: var(--shadow-strong);
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 4px;
}

.hero-metric {
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-metric strong {
  display: block;
  margin-bottom: 4px;
  color: #fff8f2;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-stage {
  display: grid;
  gap: 16px;
  align-content: start;
}

.feature-panel,
.collection-card,
.product-card,
.help-card,
.summary-box,
.callout,
.buy-box,
.panel-card,
.guide-card,
.mini-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.feature-panel {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.feature-panel h2 {
  max-width: 10ch;
  font-size: clamp(2.2rem, 4.8vw, 3.2rem);
  line-height: 0.96;
  color: #fff8f2;
}

.feature-points {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.feature-points li {
  color: rgba(248, 241, 235, 0.8);
}

.hero-note {
  font-size: 0.9rem;
}

.mini-shelf {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mini-card {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.mini-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.mini-card strong {
  font-size: 1.6rem;
  line-height: 1;
}

.section,
.article-shell {
  padding: 38px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.section-dark {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(244, 231, 219, 0.08), transparent 24%),
    linear-gradient(135deg, #1c1815 0%, #2a2521 100%);
  color: #fff8f2;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 6.4vw, 4.8rem);
}

.section-heading p {
  max-width: 64ch;
  color: var(--muted);
}

.section-dark .section-heading p {
  color: rgba(248, 241, 235, 0.76);
}

.collection-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.collection-card {
  display: grid;
  align-content: space-between;
  gap: 20px;
  min-height: 240px;
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.collection-card:hover,
.product-card:hover,
.help-card:hover,
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: var(--line-strong);
}

.collection-index {
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.collection-card h3 {
  font-size: 2rem;
  line-height: 0.98;
}

.collection-foot,
.inline-link,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-deep);
  font-weight: 700;
}

.collection-foot::after,
.inline-link::after,
.back-link::after {
  content: "↗";
  font-size: 0.95em;
}

.back-link {
  margin-top: 12px;
}

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

.product-card {
  overflow: hidden;
  background: rgba(255, 250, 244, 0.96);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-top {
  display: grid;
  gap: 12px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

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

.product-top h3 {
  font-size: 2.25rem;
  line-height: 0.96;
  color: var(--ink);
}

.product-copy {
  font-size: 1rem;
  font-weight: 600;
}

.product-meta {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.product-points {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
}

.product-points li {
  display: flex;
  gap: 10px;
}

.product-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.72em;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 22px;
}

.help-grid,
.process-grid,
.edit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.help-card,
.panel-card,
.guide-card,
.summary-box,
.callout,
.buy-box {
  padding: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.help-card {
  display: grid;
  gap: 12px;
  align-content: start;
}

.help-number {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(21, 19, 17, 0.08);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.help-card .inline-link {
  margin-top: auto;
}

.support-column {
  display: grid;
}

.style-callout {
  display: grid;
  gap: 16px;
  align-content: start;
}

.style-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.style-links a {
  color: var(--accent-deep);
  font-weight: 700;
}

.site-footer {
  margin-top: 24px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, #1f1b18 0%, #2d2622 100%);
  color: rgba(248, 241, 235, 0.8);
  box-shadow: var(--shadow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.footer-heading {
  font-size: 1.35rem;
  color: #fff8f2;
}

.footer-column,
.footer-brand {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-brand {
  gap: 12px;
}

.footer-column a,
.site-footer .brand {
  color: #fff8f2;
}

.footer-brand .brand::after {
  color: rgba(255, 241, 231, 0.64);
}

.article-shell {
  padding: 36px;
}

.article-hero {
  display: grid;
  gap: 14px;
  padding: 34px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(244, 231, 219, 0.08), transparent 24%),
    linear-gradient(135deg, #1c1815 0%, #2e2823 100%);
  color: #fff8f2;
  box-shadow: var(--shadow);
}

.article-hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6.2vw, 5.1rem);
}

.article-hero .hero-text {
  max-width: 62ch;
  color: rgba(248, 241, 235, 0.78);
}

.article-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  align-items: start;
}

.article-copy {
  display: grid;
  gap: 18px;
}

.article-copy section {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(21, 19, 17, 0.05);
}

.article-copy h2 {
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 0.98;
}

.article-copy h3 {
  margin: 18px 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.article-copy ul,
.summary-box ul,
.callout ul {
  margin: 0;
  padding-left: 20px;
}

.article-copy li + li,
.summary-box li + li,
.callout li + li {
  margin-top: 8px;
}

.stack {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}

.summary-box,
.callout {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 238, 231, 0.96));
}

.summary-box h2,
.callout h3 {
  font-size: 1.6rem;
}

.buy-box {
  border-color: rgba(138, 90, 58, 0.18);
  background: linear-gradient(180deg, #fff4ea 0%, #f1e3d5 100%);
}

.fine-print {
  font-size: 0.9rem;
}

.edit-cover {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.edit-cover strong {
  max-width: 11ch;
  font-size: 2rem;
  line-height: 0.96;
}

.tone-sand {
  background: linear-gradient(180deg, #efe2d5 0%, #fff9f2 100%);
}

.tone-olive {
  background: linear-gradient(180deg, #e2e8df 0%, #fbfcfa 100%);
}

.tone-blush {
  background: linear-gradient(180deg, #ede1dc 0%, #fff9f7 100%);
}

.tone-cream {
  background: linear-gradient(180deg, #f3ece4 0%, #fffaf4 100%);
}

@media (max-width: 1200px) {
  .store-hero,
  .support-layout,
  .article-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .collection-grid,
  .help-grid,
  .process-grid,
  .edit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-metrics,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .stack {
    position: static;
  }
}

@media (max-width: 780px) {
  .page-shell {
    width: min(100% - 20px, 1360px);
  }

  .promo-strip {
    border-radius: 18px;
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    text-transform: none;
  }

  .site-header,
  .store-hero,
  .section,
  .article-shell,
  .site-footer {
    padding: 24px;
  }

  .site-header {
    align-items: flex-start;
    border-radius: 22px;
  }

  .hero-copy h1,
  .section-heading h2,
  .article-hero h1,
  .feature-panel h2 {
    max-width: none;
  }

  .mini-shelf,
  .collection-grid,
  .help-grid,
  .process-grid,
  .edit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header,
  .site-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions,
  .product-actions,
  .guide-actions,
  .buy-buttons {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-metrics,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .store-hero,
  .section,
  .article-shell,
  .site-footer {
    border-radius: 24px;
  }

  .brand::after {
    letter-spacing: 0.14em;
  }
}
/* Home storefront refresh */
.store-hero {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  padding: 44px;
  border: 1px solid rgba(21, 19, 17, 0.08);
  background: linear-gradient(180deg, #fbf7f2 0%, #efe7dc 100%);
  color: var(--ink);
}

.store-hero .eyebrow,
.store-hero .card-kicker {
  border: 1px solid rgba(138, 90, 58, 0.14);
  background: rgba(138, 90, 58, 0.08);
  color: var(--accent);
}

.store-hero .hero-text,
.store-hero .hero-note,
.store-hero .feature-points li,
.store-hero .hero-lane-card span,
.store-hero .hero-sku-copy span {
  color: var(--muted);
}

.store-hero .button-primary {
  background: var(--charcoal);
  color: #fff8f2;
}

.store-hero .button-secondary {
  border-color: rgba(21, 19, 17, 0.12);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

.hero-benefits,
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-benefit,
.hero-buy-chip,
.product-tags span,
.hero-lane-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(21, 19, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.hero-lane-card,
.hero-sku-card {
  border: 1px solid rgba(21, 19, 17, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 40px rgba(21, 19, 17, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.hero-lane-card:hover,
.hero-sku-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: var(--line-strong);
}

.hero-lane-card {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.hero-lane-card strong,
.hero-buy-panel h2,
.hero-sku-copy strong,
.product-overline {
  color: var(--ink);
}

.hero-lane-card strong,
.hero-sku-copy strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero-stage {
  gap: 18px;
}

.hero-gallery-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
  gap: 18px;
  align-items: stretch;
}

.hero-gallery-stack {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(21, 19, 17, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, #f5eee5 0%, #ece1d4 100%);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(21, 19, 17, 0.08);
}

.hero-photo {
  position: absolute;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(21, 19, 17, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(21, 19, 17, 0.12);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(21, 19, 17, 0.12));
}

.hero-photo-primary {
  top: 24px;
  right: 24px;
  bottom: 132px;
  left: 120px;
}

.hero-photo-secondary {
  width: 224px;
  height: 224px;
  left: 24px;
  bottom: 24px;
}

.hero-photo-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(21, 19, 17, 0.88);
  color: #fff8f2;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-buy-panel {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(21, 19, 17, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 40px rgba(21, 19, 17, 0.08);
}

.hero-buy-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-buy-panel h2 {
  max-width: 11ch;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.15rem, 4.8vw, 3.3rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
}

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

.hero-sku-card {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.hero-sku-image {
  display: grid;
  place-items: center;
  min-height: 130px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(248, 243, 236, 0.98), rgba(238, 229, 217, 0.98));
}

.hero-sku-image img {
  width: 100%;
  height: 112px;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(21, 19, 17, 0.1));
}

.hero-sku-copy {
  display: grid;
  gap: 4px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.product-visual {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 290px;
  padding: 74px 22px 22px;
  border-bottom: 1px solid var(--line);
}

.product-visual-duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.product-media {
  display: grid;
  place-items: center;
  min-height: 188px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
}

.product-media img {
  width: 100%;
  max-width: 260px;
  height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(21, 19, 17, 0.1));
}

.product-head {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 1;
}

.product-overline {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

#featured-guides {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 238, 0.98));
}

@media (max-width: 1200px) {
  .hero-gallery-panel {
    grid-template-columns: 1fr;
  }

  .hero-lane-grid,
  .hero-sku-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-gallery-stack {
    min-height: 440px;
  }

  .hero-photo-primary {
    left: 88px;
    bottom: 114px;
  }
}

@media (max-width: 780px) {
  .store-hero {
    padding: 24px;
  }

  .hero-lane-grid,
  .hero-sku-grid,
  .product-visual-duo {
    grid-template-columns: 1fr;
  }

  .hero-gallery-stack {
    min-height: 380px;
  }

  .hero-photo-primary {
    top: 20px;
    right: 20px;
    bottom: 112px;
    left: 20px;
  }

  .hero-photo-secondary {
    width: 176px;
    height: 176px;
    left: 16px;
    bottom: 16px;
  }

  .hero-buy-panel h2 {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .hero-benefits {
    gap: 8px;
  }

  .hero-gallery-stack {
    min-height: 320px;
  }

  .hero-photo-primary {
    bottom: 98px;
  }

  .hero-photo-secondary {
    width: 132px;
    height: 132px;
  }

  .product-visual {
    min-height: 252px;
    padding-top: 72px;
  }
}
.store-hero .hero-copy h1 {
  max-width: 7.2ch;
  font-size: clamp(3rem, 6.2vw, 5.3rem);
}

.store-hero .hero-buy-panel p,
.store-hero .hero-lane-card span:not(.hero-lane-label) {
  color: var(--muted);
}

.store-hero .hero-lane-label {
  color: var(--ink);
}

.hero-gallery-panel {
  grid-template-columns: minmax(0, 1.16fr) minmax(260px, 0.84fr);
}

.hero-gallery-stack {
  min-height: 480px;
}

.hero-photo-primary {
  top: 20px;
  right: 20px;
  bottom: 112px;
  left: 56px;
}

.hero-photo-primary img {
  transform: scale(1.16);
  transform-origin: center bottom;
}

.hero-photo-secondary {
  width: 204px;
  height: 204px;
}

.hero-photo-secondary img {
  transform: scale(1.08);
  transform-origin: center bottom;
}

.hero-buy-panel {
  padding: 24px;
}

.hero-buy-panel h2 {
  max-width: 9ch;
  font-size: clamp(1.95rem, 4vw, 2.85rem);
}

@media (max-width: 1200px) {
  .hero-gallery-stack {
    min-height: 420px;
  }

  .hero-photo-primary {
    left: 36px;
    bottom: 104px;
  }
}

@media (max-width: 780px) {
  .store-hero .hero-copy h1 {
    max-width: 8.4ch;
  }

  .hero-gallery-stack {
    min-height: 360px;
  }

  .hero-photo-primary {
    left: 18px;
    right: 18px;
    bottom: 96px;
  }
}
.store-hero .hero-copy h1 {
  max-width: 8.6ch;
  font-size: clamp(2.8rem, 5.6vw, 4.95rem);
}

.hero-gallery-stack {
  min-height: 448px;
}

.hero-photo-primary {
  left: 42px;
  bottom: 98px;
}

.hero-photo-primary img {
  transform: scale(2.08) translateY(22px);
  transform-origin: center bottom;
}

.hero-photo-secondary img {
  transform: scale(1.18) translateY(8px);
  transform-origin: center bottom;
}

@media (max-width: 1200px) {
  .hero-photo-primary {
    left: 24px;
    bottom: 90px;
  }
}

@media (max-width: 780px) {
  .store-hero .hero-copy h1 {
    max-width: 9ch;
  }

  .hero-photo-primary img {
    transform: scale(1.72) translateY(18px);
  }
}
.hero-gallery-stack::before {
  content: "Tasman + Tazz";
  position: absolute;
  right: 28px;
  bottom: 94px;
  z-index: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: rgba(21, 19, 17, 0.88);
}

.hero-gallery-stack::after {
  content: "The front-table pair shoppers already recognize.";
  position: absolute;
  right: 28px;
  bottom: 34px;
  z-index: 0;
  max-width: 170px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.hero-photo-primary {
  top: 18px;
  right: 18px;
  left: 18px;
  height: 182px;
  bottom: auto;
}

.hero-photo-primary img {
  transform: scale(1.38) translateY(8px);
}

.hero-photo-secondary {
  width: 226px;
  height: 226px;
  left: 24px;
  bottom: 24px;
}

@media (max-width: 780px) {
  .hero-gallery-stack::before,
  .hero-gallery-stack::after {
    display: none;
  }

  .hero-photo-primary {
    left: 18px;
    right: 18px;
    height: 164px;
  }

  .hero-photo-primary img {
    transform: scale(1.22) translateY(6px);
  }
}
.hero-gallery-stack {
  min-height: 404px;
}

.hero-photo-secondary {
  bottom: 16px;
}

@media (max-width: 1200px) {
  .hero-gallery-stack {
    min-height: 388px;
  }
}

@media (max-width: 780px) {
  .hero-gallery-stack {
    min-height: 332px;
  }
}
