/* ============================================================
   Verdure — Soft Editorial e-commerce
   Adapted from the Soft Editorial slide template.
   ============================================================ */

:root {
  --paper:    #F2EEDF;
  --paper-2:  #ECE6D2;
  --ink:      #2A241B;
  --ink-soft: #5C5345;
  --pink:     #E1A4C2;
  --lemon:    #D6DD63;
  --blush:    #E8C9B6;
  --sage:     #B7C7A8;
  --lilac:    #C9BEDC;

  --card-fill: rgba(255, 255, 255, 0.55);
  --rule-soft: rgba(42, 36, 27, 0.18);
  --rule-medium: rgba(42, 36, 27, 0.35);

  --max-width: 1440px;
  --pad-outer: clamp(24px, 4vw, 80px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Work Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4, p { margin: 0; }

.serif { font-family: "Cormorant Garamond", "Garamond", serif; font-weight: 500; }
.italic { font-style: italic; font-weight: 400; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(242, 238, 223, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px dashed var(--rule-soft);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px var(--pad-outer);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.nav-brand .mark {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--sage);
  display: inline-block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  color: var(--ink);
}
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a:hover { color: var(--ink-soft); }
.nav-links a.current::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--ink);
}
.nav-cart {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  border: 1px solid var(--rule-medium);
  border-radius: 999px;
  padding: 6px 16px;
  transition: background .2s;
}
.nav-cart:hover { background: var(--lemon); border-color: var(--ink); }

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-outer);
}
.section { padding: 96px 0; }
.section-tight { padding: 56px 0; }
.eyebrow {
  font-family: "Work Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.page-marker {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
}

.chrome-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px var(--pad-outer) 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.footer-note {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 17px;
  color: var(--ink-soft);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 80px 0 120px;
  position: relative;
}
.hero .kicker {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(64px, 11vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.hero h1 em { font-weight: 400; }
.hero .lede {
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 640px;
}
.hero .swatches {
  position: absolute;
  right: var(--pad-outer);
  top: 80px;
  display: flex;
  gap: 12px;
}
.hero .swatches i {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: block;
}
.hero .cta-row {
  display: flex; gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background .18s, color .18s, transform .18s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); background: var(--ink-soft); }
.btn.ghost {
  background: transparent;
  color: var(--ink);
}
.btn.ghost:hover { background: var(--lemon); border-color: var(--ink); color: var(--ink); }
.btn.pill-lemon {
  background: var(--lemon);
  color: var(--ink);
  border-color: var(--ink);
}
.btn.pill-lemon:hover { background: var(--ink); color: var(--paper); }
.btn.wide { width: 100%; }

/* ============================================================
   PRODUCT CARD (used on home + shop)
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.product-grid.three { grid-template-columns: repeat(3, 1fr); }
.product-grid.two { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } .product-grid.three { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 780px)  { .product-grid, .product-grid.three, .product-grid.two { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .product-grid, .product-grid.three, .product-grid.two { grid-template-columns: 1fr; } }

.card-product {
  display: flex;
  flex-direction: column;
  background: var(--card-fill);
  border-radius: 28px;
  padding: 24px;
  transition: transform .25s ease, background .25s ease;
  gap: 18px;
}
.card-product:hover { transform: translateY(-3px); background: rgba(255,255,255,0.75); }

.card-jar {
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease;
}
.card-jar .jar-photo {
  flex: 1 1 62%;
  background-size: cover;
  background-position: center;
  background-color: var(--paper-2);
  position: relative;
}
/* subtle warm wash on photos, keeps the editorial cream tone */
.card-jar .jar-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(242,238,223,0) 55%, rgba(42,36,27,0.06) 100%);
}
.card-jar .jar-body {
  flex: 0 0 38%;
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}
.card-jar .jar-tag {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
  opacity: 0.72;
}
.card-jar .jar-name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.card-jar .jar-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,0.85);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}
.card-jar.pink  .jar-body { background: var(--pink); }
.card-jar.lemon .jar-body { background: var(--lemon); }
.card-jar.blush .jar-body { background: var(--blush); }
.card-jar.sage  .jar-body { background: var(--sage); }
.card-jar.lilac .jar-body { background: var(--lilac); }
.card-jar.cream .jar-body { background: var(--paper-2); }

.card-product .meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.card-product .meta h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  color: var(--ink);
}
.card-product .meta .price {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  white-space: nowrap;
}
.card-product .sub {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.card-product .tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.card-product .tag {
  font-size: 12px;
  color: var(--ink);
  background: rgba(255,255,255,0.55);
  border-radius: 999px;
  padding: 4px 10px;
  letter-spacing: 0.02em;
}

/* ============================================================
   SECTION HEADS
   ============================================================ */
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.sec-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.01em;
}
.sec-head h2 em { font-weight: 400; }
.sec-head .sub {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  max-width: 34ch;
  text-align: right;
}

/* ============================================================
   TWO-COLUMN FOREWORD (about, brand story)
   ============================================================ */
.foreword {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.foreword .opener {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.15;
  color: var(--ink);
}
.foreword .opener::first-letter {
  font-family: "Cormorant Garamond", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 120px;
  float: left;
  line-height: 0.85;
  padding: 8px 14px 0 0;
}
.foreword .col-r p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.foreword .col-r p:first-child { color: var(--ink); }
.foreword .signoff {
  margin-top: 24px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
}
@media (max-width: 900px) { .foreword { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   INSIGHTS / VALUE PROPS
   ============================================================ */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value {
  background: var(--card-fill);
  border-radius: 28px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 260px;
}
.value.pink  { background: var(--pink); }
.value.lemon { background: var(--lemon); }
.value.blush { background: var(--blush); }
.value.sage  { background: var(--sage); }
.value.lilac { background: var(--lilac); }
.value .n {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 56px;
  line-height: 0.9;
  color: var(--ink);
}
.value h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.05;
  color: var(--ink);
}
.value p {
  font-size: 16px;
  color: var(--ink);
  opacity: 0.86;
  line-height: 1.5;
}
@media (max-width: 900px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .values { grid-template-columns: 1fr; } }

/* ============================================================
   PULL QUOTE
   ============================================================ */
.pullquote {
  text-align: center;
  padding: 96px var(--pad-outer);
  background: var(--paper);
}
.pullquote .qmark {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 160px;
  line-height: 0.6;
  color: var(--blush);
  margin-bottom: 10px;
}
.pullquote blockquote {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 68px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  max-width: 28ch;
  margin: 0 auto;
  color: var(--ink);
}
.pullquote blockquote em { font-weight: 400; }
.pullquote .attr {
  margin-top: 32px;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
}
.pullquote .attr .role {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ============================================================
   BANNER (full-bleed pastel like s-closer)
   ============================================================ */
.banner {
  background: var(--pink);
  padding: 120px var(--pad-outer);
  text-align: center;
}
.banner .marker {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 24px;
}
.banner h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(48px, 7vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  max-width: 20ch;
  margin: 0 auto 28px;
}
.banner h2 em { font-weight: 400; }
.banner p {
  font-size: 20px;
  line-height: 1.5;
  max-width: 50ch;
  margin: 0 auto;
  color: var(--ink);
  opacity: 0.85;
}
.banner .cta-row { margin-top: 40px; }
.banner.lemon { background: var(--lemon); }
.banner.sage { background: var(--sage); }
.banner.blush { background: var(--blush); }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 40px 0 96px;
  align-items: start;
}
.product-visual {
  aspect-ratio: 4 / 5;
  border-radius: 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
.product-visual .visual-photo {
  flex: 1 1 68%;
  background-size: cover;
  background-position: center;
  background-color: var(--paper-2);
  position: relative;
}
.product-visual .visual-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(242,238,223,0) 60%, rgba(42,36,27,0.08) 100%);
}
.product-visual .visual-body {
  flex: 0 0 32%;
  padding: 28px 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.product-visual .type-tag {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  opacity: 0.72;
}
.product-visual .visual-name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.product-visual .badge-row {
  position: absolute;
  right: 20px; top: 20px;
  display: flex; gap: 6px; flex-direction: column; align-items: flex-end;
  z-index: 2;
}
.product-visual .badge {
  background: rgba(255,255,255,0.85);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.product-visual.pink  .visual-body { background: var(--pink); }
.product-visual.lemon .visual-body { background: var(--lemon); }
.product-visual.blush .visual-body { background: var(--blush); }
.product-visual.sage  .visual-body { background: var(--sage); }
.product-visual.lilac .visual-body { background: var(--lilac); }
.product-visual.cream .visual-body { background: var(--paper-2); }

/* ============================================================
   HERO IMAGE (homepage, about)
   ============================================================ */
.hero-image {
  max-width: var(--max-width);
  margin: 0 auto 48px;
  padding: 0 var(--pad-outer);
}
.hero-image .frame {
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 21 / 9;
  background: var(--paper-2);
}
.hero-image .frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-image .frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(242,238,223,0) 60%, rgba(42,36,27,0.14) 100%);
  pointer-events: none;
}
.hero-image .caption {
  position: absolute;
  left: 32px; bottom: 24px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 18px;
  color: var(--paper);
  z-index: 2;
  max-width: 40ch;
}

/* ============================================================
   EDITORIAL IMAGE (inline photos in about, sourcing)
   ============================================================ */
.editorial-image {
  border-radius: 24px;
  overflow: hidden;
  background: var(--paper-2);
  aspect-ratio: 4 / 3;
  margin-bottom: 16px;
}
.editorial-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.editorial-image.square { aspect-ratio: 1 / 1; }
.editorial-image.tall   { aspect-ratio: 3 / 4; }

/* Photo-banner variant (like s-closer but with a real photo) */
.banner.photo {
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  background: var(--ink);
}
.banner.photo .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.72);
}
.banner.photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,36,27,0.15) 0%, rgba(42,36,27,0.45) 100%);
}
.banner.photo > * { position: relative; z-index: 2; }
.banner.photo .marker,
.banner.photo h2,
.banner.photo p { color: var(--paper); }
.banner.photo h2 em { color: var(--paper); }

.product-info .breadcrumb {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.product-info .breadcrumb a:hover { color: var(--ink); }
.product-info h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(44px, 5.5vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.product-info h1 em { font-weight: 400; }
.product-info .subtitle {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 24px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.product-info .price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
}
.product-info .price {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 44px;
  line-height: 1;
  color: var(--ink);
}
.product-info .price-note {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
}
.product-info .description {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 52ch;
}
.product-info .actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--rule-medium);
  border-radius: 999px;
  padding: 6px 8px;
  gap: 4px;
}
.qty button {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  cursor: pointer;
  color: var(--ink);
}
.qty button:hover { background: var(--lemon); }
.qty span { min-width: 28px; text-align: center; font-family: "Cormorant Garamond", serif; font-size: 20px; }

.product-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.product-facts .fact {
  background: var(--card-fill);
  border-radius: 18px;
  padding: 14px 18px;
}
.product-facts .fact .k {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.product-facts .fact .v {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 22px;
}

@media (max-width: 900px) {
  .product-page { grid-template-columns: 1fr; gap: 40px; }
}

/* Product detail sections below the hero */
.detail-cols {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.detail-col {
  background: var(--card-fill);
  border-radius: 24px;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.detail-col h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.05;
  border-bottom: 1px solid var(--rule-soft);
  padding-bottom: 12px;
}
.detail-col p, .detail-col li {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.detail-col ul { margin: 0; padding-left: 18px; }
.detail-col li { margin-bottom: 6px; }
.detail-col li strong { color: var(--ink); font-weight: 500; }
.detail-col .macro-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--rule-soft);
  font-size: 16px;
}
.detail-col .macro-row:last-child { border-bottom: 0; }
.detail-col .macro-row .k { color: var(--ink); }
.detail-col .macro-row .v { color: var(--ink); font-family: "Cormorant Garamond", serif; font-weight: 500; }
.detail-col .source {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--rule-soft);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
}
@media (max-width: 900px) { .detail-cols { grid-template-columns: 1fr; } }

/* ============================================================
   RETURNS / TEXT-DENSE PAGE
   ============================================================ */
.policy-hero {
  padding: 80px 0 40px;
}
.policy-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(56px, 8vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
  max-width: 12ch;
}
.policy-hero h1 em { font-weight: 400; }
.policy-hero .lede {
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 60ch;
}
.action-bar {
  background: var(--lemon);
  border-radius: 24px;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 40px 0 48px;
}
.action-bar .tag {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  border-right: 1px solid rgba(42, 36, 27, 0.3);
  padding-right: 24px;
  white-space: nowrap;
}
.action-bar h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(20px, 2.3vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.005em;
}
@media (max-width: 720px) {
  .action-bar { flex-direction: column; align-items: flex-start; }
  .action-bar .tag { border-right: 0; border-bottom: 1px solid rgba(42,36,27,0.3); padding: 0 0 12px 0; }
}

/* ============================================================
   FILTER BAR (shop)
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-bar .chip {
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--rule-medium);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
}
.filter-bar .chip:hover { background: var(--card-fill); }
.filter-bar .chip.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* ============================================================
   FAQ / Accordion
   ============================================================ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.faq details {
  background: var(--card-fill);
  border-radius: 20px;
  padding: 20px 26px;
}
.faq summary {
  cursor: pointer;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: var(--ink-soft);
  transition: transform .2s;
}
.faq details[open] summary::after { content: "–"; }
.faq details p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--paper-2);
  padding: 72px 0 32px;
  margin-top: 96px;
  border-top: 1px dashed var(--rule-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px dashed var(--rule-soft);
}
.footer-col h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; font-size: 15px; color: var(--ink-soft); }
.footer-col a:hover { color: var(--ink); }
.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.footer-brand-note {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 32ch;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
}
@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.newsletter input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--rule-medium);
  background: transparent;
  font-family: "Work Sans", sans-serif;
  font-size: 15px;
  color: var(--ink);
}
.newsletter input::placeholder { color: var(--ink-soft); }
.newsletter button {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: "Work Sans", sans-serif;
  font-size: 15px;
  cursor: pointer;
}

/* ============================================================
   CART / CHECKOUT
   ============================================================ */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  padding: 40px 0 96px;
  align-items: start;
}
@media (max-width: 960px) { .checkout-grid { grid-template-columns: 1fr; } }

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-line {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 20px;
  align-items: center;
  background: var(--card-fill);
  border-radius: 22px;
  padding: 16px 20px;
}
.cart-line .thumb {
  width: 84px; height: 84px;
  border-radius: 16px;
  background-color: var(--paper-2);
  background-size: cover;
  background-position: center;
}
.cart-line .info h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 4px;
}
.cart-line .info .flav {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
}
.cart-line .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.cart-line .right .price {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 22px;
}
.cart-line .qty-mini {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--rule-medium);
  border-radius: 999px;
  padding: 2px 6px;
  gap: 2px;
}
.cart-line .qty-mini button {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  cursor: pointer;
  color: var(--ink);
}
.cart-line .qty-mini button:hover { background: var(--lemon); }
.cart-line .qty-mini span {
  min-width: 20px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
}
.cart-line .remove {
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--ink-soft);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  padding: 0;
  text-decoration: underline;
}
.cart-line .remove:hover { color: var(--ink); }

.cart-empty {
  background: var(--card-fill);
  border-radius: 24px;
  padding: 64px 32px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
}

.order-summary {
  background: var(--card-fill);
  border-radius: 28px;
  padding: 32px 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 100px;
}
.order-summary h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 12px;
}
.order-summary .line {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--rule-soft);
  font-size: 15px;
  color: var(--ink-soft);
}
.order-summary .line.total {
  border-bottom: 0;
  border-top: 1.5px solid var(--rule-medium);
  padding-top: 16px;
  margin-top: 8px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 26px;
  color: var(--ink);
}
.order-summary .line.total .amt { font-size: 28px; }

.widget-frame {
  background: var(--paper-2);
  border-radius: 28px;
  padding: 24px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.widget-frame .status {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 17px;
  color: var(--ink-soft);
}
.widget-frame #uc-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.widget-frame #uc-buttons button {
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  cursor: pointer;
}
.widget-frame #uc-buttons button:disabled {
  opacity: 0.6;
  cursor: default;
}

.notice {
  background: var(--blush);
  border-radius: 18px;
  padding: 16px 20px;
  font-size: 15px;
  color: var(--ink);
}
.notice.error { background: var(--pink); }
.notice.success { background: var(--sage); }
.notice strong { font-weight: 500; }

/* ============================================================
   RECEIPT
   ============================================================ */
.receipt-hero {
  padding: 80px 0 40px;
  text-align: left;
}
.receipt-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(56px, 8vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.receipt-hero h1 em { font-weight: 400; }
.receipt-card {
  background: var(--card-fill);
  border-radius: 32px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.receipt-card .kv {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--rule-soft);
  font-size: 16px;
  color: var(--ink-soft);
}
.receipt-card .kv strong { color: var(--ink); font-weight: 500; }
.receipt-card .kv:last-child { border-bottom: 0; }
