/** Shopify CDN: Minification failed

Line 19:10 Expected identifier but found whitespace
Line 19:12 Unexpected "{"
Line 19:22 Expected ":"
Line 20:11 Expected identifier but found whitespace
Line 20:13 Unexpected "{"
Line 20:23 Expected ":"
Line 21:13 Expected identifier but found whitespace
Line 21:15 Unexpected "{"
Line 21:25 Expected ":"
Line 22:8 Expected identifier but found whitespace
... and 26 more hidden warnings

**/
/* For Every Morning — Shopify theme styles */

:root {
  --paper: {{ settings.color_paper }};
  --paper2: {{ settings.color_paper }};
  --sagetint: {{ settings.color_paper }};
  --ink: {{ settings.color_ink }};
  --mute: {{ settings.color_mute }};
  --espresso: {{ settings.color_espresso }};
  --bark: #322d21;
  --gold-d: {{ settings.color_gold_dark }};
  --gold: {{ settings.color_gold }};
  --gold-l: {{ settings.color_gold_light }};
  --champagne: {{ settings.color_champagne }};
  --sage-d: {{ settings.color_sage_dark }};
  --sage: {{ settings.color_sage }};
  --sage-l: #9ba48d;

  --hair: rgba(78, 86, 70, 0.2);
  --hairG: rgba(143, 120, 69, 0.3);
  --hairP: rgba(241, 234, 218, 0.16);

  --disp: "Bodoni Moda", Didot, Georgia, serif;
  --sans: "Jost", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

h1, h2, h3, .disp {
  font-family: var(--disp);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6.4vw, 4.3rem); }
h2 { font-size: clamp(1.85rem, 4vw, 2.8rem); }
h3 { font-size: 1.24rem; line-height: 1.28; }

:focus-visible {
  outline: 2px solid var(--sage-d);
  outline-offset: 3px;
}

.skip-to-content-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--champagne);
  padding: 10px 20px;
  z-index: 1000;
  transition: top 0.2s;
}

.skip-to-content-link:focus {
  top: 10px;
}

/* Layout utilities */
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 26px;
}

.narrow {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 26px;
}

.lede {
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  font-weight: 400;
  color: var(--mute);
  line-height: 1.72;
}

.rule {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--sage-d);
}

.band {
  padding: clamp(74px, 10vw, 124px) 0;
  position: relative;
}

.band-deep { background: var(--paper); }
.band-lift { background: var(--sagetint); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 30px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.22s;
  background: transparent;
}

.btn-gold {
  background: var(--ink);
  color: var(--champagne);
}

.btn-gold:hover {
  background: var(--sage-d);
}

.btn-edge {
  border-color: var(--hairG);
  color: var(--ink);
}

.btn-edge:hover {
  border-color: var(--gold-d);
  background: rgba(143, 120, 69, 0.07);
}

.btn-sm {
  padding: 11px 20px;
  font-size: 10.5px;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Announcement bar styles are defined below in the site sections area. */


/* Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hair);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 26px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.header-logo span {
  font-family: var(--disp);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mute);
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--sage-d);
}

.cart-link {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  background: var(--gold-d);
  color: var(--champagne);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 600;
  display: grid;
  place-items: center;
  padding: 0 5px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

@media (max-width: 900px) {
  .header-nav {
    gap: 16px;
  }
  .header-nav .nav-link {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Hero */
.hero-section {
  padding: clamp(40px, 6vw, 72px) 0 clamp(60px, 8vw, 96px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(44px, 6vw, 74px);
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.hero-logo {
  width: clamp(160px, 20vw, 230px);
  height: auto;
  margin-bottom: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--hairG);
  background: rgba(143, 120, 69, 0.06);
  padding: 6px 12px;
  margin-bottom: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  color: var(--gold-d);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-d);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 24px;
  margin-top: 24px;
  font-size: 11px;
  color: var(--mute);
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust svg {
  width: 14px;
  height: 14px;
  color: var(--gold-d);
}

/* Devotion panel */
.devotion-panel {
  background: var(--espresso);
  color: var(--champagne);
  padding: clamp(30px, 4.2vw, 44px);
  max-width: 452px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 34px 64px -28px rgba(42, 37, 26, 0.45);
}

.devotion-panel::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--hairP);
  pointer-events: none;
}

.devotion-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 12px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--hairP);
}

.devotion-number {
  font-family: var(--disp);
  font-size: 2rem;
  line-height: 1;
  color: var(--gold-l);
}

.devotion-month {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sage-l);
}

.devotion-title {
  color: var(--champagne);
  font-size: 1.58rem;
  margin-bottom: 4px;
}

.devotion-author {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-l);
  margin-bottom: 16px;
}

.devotion-verse {
  font-family: var(--disp);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  margin: 16px 0;
  padding-left: 16px;
  border-left: 1.5px solid var(--gold-l);
  color: var(--champagne);
}

.devotion-verse cite {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-l);
  margin-top: 10px;
}

.devotion-body p {
  font-size: 0.95rem;
  line-height: 1.76;
  margin-bottom: 12px;
  font-weight: 300;
  color: rgba(241, 234, 218, 0.86);
}

.devotion-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 14px;
}

.devotion-divider span {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sage-l);
}

.devotion-divider::before,
.devotion-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--hairP);
}

.devotion-prayer {
  font-family: var(--disp);
  font-style: italic;
  font-size: 0.97rem;
  line-height: 1.74;
  color: var(--champagne);
}

.devotion-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 12px;
  border-top: 1px solid var(--hairP);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-l);
}

.devotion-caption {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 20px;
}

/* Trust bar */
.trust-bar {
  background: var(--paper);
  border-block: 1px solid var(--hair);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hair);
}

@media (min-width: 820px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--paper);
  padding: 20px 24px;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold-d);
}

.trust-item-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
}

.trust-item-body {
  font-size: 12px;
  color: var(--mute);
  margin-top: 4px;
  line-height: 1.55;
}

/* Rise / Pour / Renew */
.rise-pour-renew {
  background: var(--sagetint);
}

.rpr-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--hair);
}

@media (min-width: 720px) {
  .rpr-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rpr-item {
  background: var(--sagetint);
  padding: clamp(30px, 4vw, 48px);
}

.rpr-number {
  font-family: var(--disp);
  font-size: 1.2rem;
  color: var(--gold-d);
  margin-bottom: 8px;
}

.rpr-title {
  font-family: var(--disp);
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 12px;
}

.rpr-body {
  font-size: 13px;
  color: var(--mute);
  line-height: 1.7;
}

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--hair);
  padding-top: 12px;
}

@media (min-width: 700px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1040px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  color: var(--ink);
}

.product-card.popular {
  outline: 2px solid var(--gold-d);
  outline-offset: -2px;
}

.popular-badge {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  background: var(--gold-d);
  color: var(--champagne);
}

.product-card-image {
  display: block;
  background: var(--sagetint);
}

.product-card-image img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}

.product-card-placeholder {
  aspect-ratio: 4 / 3;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-d);
}

.product-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
}

.product-card-title {
  margin-bottom: 8px;
  transition: color 0.2s;
}

.product-card-title:hover {
  color: var(--sage-d);
}

.product-card-desc {
  margin-bottom: 20px;
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--mute);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
}

.product-card-price-amount {
  font-family: var(--disp);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--ink);
}

.product-card-price-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mute);
}

.product-card-form {
  margin-top: 20px;
}

.product-card-options {
  margin-bottom: 16px;
}

.product-card-option label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mute);
  margin-bottom: 6px;
}

.product-card-option select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--hair);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  cursor: pointer;
}

.product-card-option select:focus {
  outline: none;
  border-color: var(--sage-d);
}

.product-card-submit {
  width: 100%;
}

/* Guarantee */
.guarantee-band {
  background: var(--espresso);
  color: var(--champagne);
  padding: clamp(48px, 6vw, 72px) 0;
}

.guarantee-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.guarantee-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-l);
}

.guarantee-title {
  color: var(--champagne);
}

.guarantee-body {
  color: rgba(241, 234, 218, 0.86);
  max-width: 520px;
}

/* Fundraisers */
.fundraiser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 720px) {
  .fundraiser-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fundraiser-card {
  border: 1px solid var(--hair);
  padding: 32px;
}

.fundraiser-card h3 {
  margin-bottom: 8px;
}

.fundraiser-card p {
  font-size: 13px;
  color: var(--mute);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

@media (min-width: 820px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image {
  aspect-ratio: 4 / 5;
  background: var(--sagetint);
}

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

.about-body p {
  font-size: 14px;
  color: var(--mute);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
}

@media (min-width: 900px) {
  .faq-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.faq-list {
  border-top: 1px solid var(--hair);
}

.faq-item {
  border-bottom: 1px solid var(--hair);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--disp);
  font-size: 1.08rem;
  letter-spacing: 0.005em;
  color: var(--ink);
}

.faq-question svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gold-d);
}

.faq-answer {
  padding: 0 24px 24px 0;
  font-size: 0.94rem;
  line-height: 1.78;
  color: var(--mute);
}

.faq-answer a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-answer a:hover {
  color: var(--sage-d);
}

/* Email capture */
.email-capture {
  background: var(--sagetint);
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 560px) {
  .email-form {
    flex-direction: row;
  }
}

.email-field {
  flex: 1;
  padding: 13px 16px;
  border: 1px solid var(--hair);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13.5px;
  letter-spacing: 0.02em;
}

.email-field:focus {
  outline: none;
  border-color: var(--sage-d);
}

/* Footer */
.site-footer {
  background: var(--sagetint);
  padding: 56px 0 32px;
  border-top: 1px solid var(--hair);
  color: var(--mute);
  font-size: 12px;
}

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

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.footer-brand-name {
  font-family: var(--disp);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.footer-brand-tagline {
  font-size: 11px;
  margin-top: 4px;
}

.footer-desc {
  margin-top: 16px;
  max-width: 38ch;
  line-height: 1.7;
}

.footer-col-title {
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 12.5px;
  color: var(--mute);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--sage-d);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--hair);
}

.footer-copyright {
  font-size: 11px;
  letter-spacing: 0.06em;
}

.footer-powered {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--sage-d);
}

/* Product page */
.product-section {
  padding: clamp(48px, 6vw, 96px) 0;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

@media (min-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.product-gallery {
  aspect-ratio: 4 / 5;
  background: var(--sagetint);
}

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

.product-title {
  margin-bottom: 12px;
}

.product-price {
  font-family: var(--disp);
  font-size: 2.2rem;
  color: var(--ink);
  margin-bottom: 20px;
}

.product-description {
  font-size: 14px;
  color: var(--mute);
  line-height: 1.75;
  margin-bottom: 24px;
}

.product-option {
  margin-bottom: 16px;
}

.product-option label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mute);
  margin-bottom: 6px;
}

.product-option select {
  width: 100%;
  max-width: 320px;
  padding: 12px 14px;
  border: 1px solid var(--hair);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  cursor: pointer;
}

.product-option select:focus {
  outline: none;
  border-color: var(--sage-d);
}

.product-quantity {
  margin-bottom: 20px;
}

.product-quantity label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mute);
  margin-bottom: 6px;
}

.product-quantity input {
  width: 80px;
  padding: 12px 14px;
  border: 1px solid var(--hair);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
}

.product-submit {
  max-width: 320px;
}

/* Cart page */
.cart-section {
  padding: clamp(48px, 6vw, 96px) 0;
}

.cart-empty {
  text-align: center;
  padding: 80px 0;
}

.cart-empty svg {
  width: 48px;
  height: 48px;
  color: var(--sage-d);
  margin: 0 auto 16px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hair);
}

.cart-item img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--sagetint);
}

.cart-item-title {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.cart-item-variant {
  font-size: 12px;
  color: var(--mute);
  margin-bottom: 8px;
}

.cart-item-price {
  font-family: var(--disp);
  font-size: 1.2rem;
  color: var(--ink);
}

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

.cart-item-qty input {
  width: 50px;
  text-align: center;
  padding: 8px;
  border: 1px solid var(--hair);
  background: var(--paper);
}

.cart-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid var(--hair);
}

.cart-total-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mute);
}

.cart-total-amount {
  font-family: var(--disp);
  font-size: 2rem;
  color: var(--ink);
}

/* Page template */
.page-section {
  padding: clamp(48px, 6vw, 96px) 0;
}

.page-content {
  max-width: 720px;
  margin: 0 auto;
}

.page-content h1,
.page-content h2,
.page-content h3 {
  margin: 24px 0 12px;
}

.page-content p {
  font-size: 14px;
  color: var(--mute);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Section header */
.section-header {
  margin-bottom: clamp(40px, 5vw, 58px);
  max-width: 720px;
}

.section-header .rule {
  display: block;
  margin-bottom: 16px;
}

/* Utility */
.text-center { text-align: center; }
.text-sm { font-size: 13px; }
.text-12 { font-size: 12px; }
.text-13 { font-size: 13.5px; }
.text-15 { font-size: 1.5rem; }
.text-mute { color: var(--mute); }
.text-ink { color: var(--ink); }
.text-sage-d { color: var(--sage-d); }
.text-gold-d { color: var(--gold-d); }
.leading-1\.2 { line-height: 1.2; }
.leading-1\.6 { line-height: 1.6; }
.leading-1\.7 { line-height: 1.7; }
.leading-1\.75 { line-height: 1.75; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 20px; }
.mt-6 { margin-top: 24px; }
.mt-7 { margin-top: 28px; }
.mt-8 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.block { display: block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.self-start { align-self: flex-start; }
.min-w-0 { min-width: 0; }
.max-w-md { max-width: 480px; }
.max-w-sm { max-width: 360px; }
.p-5 { padding: 20px; }
.px-6 { padding-left: 24px; padding-right: 24px; }
.py-5 { padding-top: 20px; padding-bottom: 20px; }
.p-clamp { padding: clamp(28px, 4vw, 44px); }
.bg-paper { background: var(--paper); }
.bg-sagetint { background: var(--sagetint); }
.border { border: 1px solid var(--hair); }
.grid { display: grid; }
.gap-0 { gap: 0; }
.grid-cols-1 { grid-template-columns: 1fr; }
.items-stretch { align-items: stretch; }
@media (min-width: 820px) {
  .min-820-grid-cols-2 {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
@media (min-width: 640px) {
  .sm-inline-flex { display: inline-flex; }
}
.space-y-3 > * + * { margin-top: 12px; }

/* Mobile menu */
.mobile-menu a {
  display: block;
  padding: 10px 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  border-bottom: 1px solid var(--hair);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* Mobile CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--paper);
  border-top: 1px solid var(--hair);
  padding: 12px 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-mobile-cta.is-visible {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: block;
  }
  .sticky-mobile-cta .btn {
    width: 100%;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ======================================================================
   CONCEPT LAYOUT ADDITIONS
   ====================================================================== */

/* ---------- Announcement bar ---------- */
.announcement-bar {
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--hair);
}
.announcement-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.announcement-socials { display: flex; gap: 14px; }
.announcement-socials a { color: var(--ink); opacity: 0.85; transition: opacity 0.2s; }
.announcement-socials a:hover { opacity: 1; }
.announcement-messages {
  display: flex; align-items: center; gap: 10px; justify-content: center;
}
.announcement-viewport {
  position: relative; overflow: hidden; min-width: 240px; text-align: center;
  height: 18px;
}
.announcement-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.announcement-slide.is-active { opacity: 1; pointer-events: auto; }
.announcement-slide a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.announcement-arrow {
  background: transparent; border: 0; color: var(--ink); opacity: 0.7;
  cursor: pointer; padding: 4px; display: inline-flex;
}
.announcement-arrow:hover { opacity: 1; }
.announcement-locale { display: flex; gap: 12px; justify-content: flex-end; }
.announcement-locale select {
  background: transparent; border: 0; color: var(--ink); font-size: 12px;
  letter-spacing: 0.04em; cursor: pointer;
}
.announcement-locale select option { color: #111; }
@media (max-width: 720px) {
  .announcement-inner { grid-template-columns: 1fr; text-align: center; }
  .announcement-socials, .announcement-locale { justify-content: center; }
  .announcement-locale { display: none; }
}

/* ---------- Header (sticky, centered) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--hair);
  transition: box-shadow 0.25s;
}
.site-header.is-scrolled { box-shadow: 0 8px 24px -18px rgba(0,0,0,0.25); }
.header-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 14px 20px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px;
}
.header-logo {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink);
}
.header-logo img { width: 44px; height: 44px; object-fit: contain; }
.header-wordmark {
  font-family: var(--font-display, 'Bodoni Moda', serif);
  font-size: 18px; letter-spacing: 0.02em;
}
.header-nav {
  display: flex; gap: 28px; justify-content: center;
}
.header-nav .nav-link {
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; padding: 6px 0;
  border-bottom: 1px solid transparent; transition: border-color 0.2s, color 0.2s;
}
.header-nav .nav-link:hover, .header-nav .nav-link.is-active { border-bottom-color: var(--gold); }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 4px; }
.header-icon-btn {
  background: transparent; border: 0; color: var(--ink); cursor: pointer;
  width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; position: relative; text-decoration: none;
  transition: background 0.2s;
}
.header-icon-btn:hover { background: var(--paper2); }
.cart-count {
  position: absolute; top: 4px; right: 4px;
  background: var(--gold); color: #fff; font-size: 10px;
  min-width: 16px; height: 16px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center; padding: 0 4px;
}
.mobile-menu-toggle { display: none; }
.mobile-menu {
  display: flex; flex-direction: column; gap: 4px;
  border-top: 1px solid var(--hair); padding: 14px 20px; background: #fff;
}
.mobile-menu a {
  padding: 12px 0; border-bottom: 1px solid var(--hair);
  color: var(--ink); text-decoration: none; font-size: 15px;
}
@media (max-width: 900px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .header-nav { display: none; }
  .mobile-menu-toggle { display: inline-flex; }
}

/* Search overlay */
.search-overlay {
  position: fixed; inset: 0; z-index: 100; background: rgba(20,20,20,0.55);
  display: flex; align-items: flex-start; justify-content: center; padding: 80px 20px;
}
.search-overlay-inner {
  position: relative; width: 100%; max-width: 640px;
  background: #fff; border-radius: 12px; padding: 20px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.4);
}
.search-form { display: flex; gap: 10px; align-items: center; }
.search-form input {
  flex: 1; border: 0; border-bottom: 1px solid var(--hair);
  padding: 10px 4px; font-size: 16px; outline: none;
  font-family: inherit; background: transparent;
}
.search-form input:focus { border-bottom-color: var(--gold); }
.search-form button {
  background: var(--sage-d); color: #fff; border: 0; padding: 10px 14px;
  border-radius: 6px; cursor: pointer;
}
.search-close {
  position: absolute; top: 8px; right: 12px;
  background: transparent; border: 0; font-size: 24px; cursor: pointer; color: var(--mute);
}

/* ---------- Floating rail ---------- */
.floating-rail {
  position: fixed; left: 20px; top: 50%; transform: translateY(-50%);
  z-index: 50; display: flex; flex-direction: column; align-items: center; gap: 20px;
  pointer-events: none;
}
.floating-rail > * { pointer-events: auto; }
.floating-rail-icons {
  display: flex; flex-direction: column; gap: 14px;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(8px);
  padding: 12px 8px; border-radius: 999px; border: 1px solid var(--hair);
}
.floating-rail-icons a { color: var(--ink); display: inline-flex; }
.floating-rail-icons a:hover { color: var(--gold-d); }
.floating-rail-pill {
  writing-mode: vertical-rl; transform: rotate(180deg);
  background: var(--ink); color: var(--paper);
  padding: 14px 8px; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none;
}
.floating-rail-pill:hover { background: var(--gold-d); }
@media (max-width: 1100px) { .floating-rail { display: none; } }

/* ---------- Hero full-bleed ---------- */
.hero-full {
  position: relative; min-height: 82vh;
  display: flex; align-items: flex-end;
  color: var(--paper); overflow: hidden;
}
.hero-full-media { position: absolute; inset: 0; }
.hero-full-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-full-fallback { width: 100%; height: 100%; background: linear-gradient(135deg, var(--sage-d), var(--ink)); }
.hero-full-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
}
.hero-full-content { position: relative; z-index: 2; width: 100%; padding: 60px 0; }
.hero-full-eyebrow {
  display: inline-block; font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; margin-bottom: 20px; opacity: 0.9;
  padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,0.4);
}
.hero-full-title {
  font-family: var(--font-display, 'Bodoni Moda', serif);
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 400; line-height: 1.02; letter-spacing: -0.02em;
  max-width: 14ch; margin: 0 0 20px;
}
.hero-full-lede {
  max-width: 52ch; font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6; opacity: 0.92; margin: 0 0 28px;
}
.hero-full-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-ghost-light {
  background: transparent; color: var(--paper);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 12px 22px; border-radius: 999px; text-decoration: none;
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ---------- Collection grid ---------- */
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 {
  font-family: var(--font-display, 'Bodoni Moda', serif);
  font-size: clamp(32px, 4vw, 52px); font-weight: 400;
  letter-spacing: -0.01em; margin: 8px 0 0;
}
.collection-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .collection-grid { grid-template-columns: 1fr; } }
.collection-card {
  display: flex; flex-direction: column; text-decoration: none; color: var(--ink);
  border-radius: 20px; overflow: hidden; background: var(--paper2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.collection-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.15); }
.collection-card-media { aspect-ratio: 4/5; overflow: hidden; }
.collection-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.collection-card:hover .collection-card-media img { transform: scale(1.04); }
.collection-card-fallback { width: 100%; height: 100%; background: linear-gradient(135deg, var(--sage), var(--sage-d)); }
.collection-card-body {
  padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.collection-card-title {
  font-family: var(--font-display, 'Bodoni Moda', serif);
  font-size: 22px;
}
.collection-card-title sup { font-family: var(--font-body, 'Jost', sans-serif); font-size: 11px; color: var(--mute); margin-left: 4px; }
.collection-card-sub { font-size: 12px; color: var(--mute); letter-spacing: 0.04em; text-transform: uppercase; }
.collection-card-arrow {
  width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--hair);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.collection-card:hover .collection-card-arrow { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ---------- Devotion feature ---------- */
.devotion-feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
@media (max-width: 900px) { .devotion-feature-grid { grid-template-columns: 1fr; gap: 40px; } }
.devotion-feature-copy h2 {
  font-family: var(--font-display, 'Bodoni Moda', serif);
  font-size: clamp(30px, 3.4vw, 46px); font-weight: 400;
  line-height: 1.1; margin: 12px 0 0; letter-spacing: -0.01em;
}

/* ---------- Highlighted text ---------- */
.highlighted-text-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
@media (max-width: 900px) { .highlighted-text-grid { grid-template-columns: 1fr; gap: 24px; } }
.highlighted-text-heading {
  font-family: var(--font-display, 'Bodoni Moda', serif);
  font-size: clamp(32px, 4vw, 56px); font-weight: 400;
  line-height: 1.08; letter-spacing: -0.015em; margin: 8px 0 0;
}
.hl-circle {
  position: relative; display: inline-block; padding: 0 6px;
  color: var(--gold-d);
}
.hl-circle-svg {
  position: absolute; left: -6px; right: -6px; top: -8px; bottom: -8px;
  width: calc(100% + 12px); height: calc(100% + 16px);
  color: var(--gold);
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 90;
  background: #fff; border: 1px solid var(--hair);
  border-radius: 16px; box-shadow: 0 20px 40px -18px rgba(0,0,0,0.25);
  max-width: 720px; margin: 0 auto;
}
.cookie-banner-inner {
  display: grid; grid-template-columns: auto 1fr auto; gap: 16px;
  align-items: center; padding: 16px 18px;
}
.cookie-banner-icon {
  width: 40px; height: 40px; border-radius: 999px; background: var(--paper2);
  display: inline-flex; align-items: center; justify-content: center; color: var(--gold-d);
}
.cookie-banner-text strong { display: block; font-family: var(--font-display, serif); font-size: 15px; margin-bottom: 2px; }
.cookie-banner-text p { margin: 0; font-size: 13px; color: var(--mute); line-height: 1.5; }
.cookie-banner-actions { display: flex; gap: 8px; }
.btn-sm { padding: 8px 14px !important; font-size: 12px !important; }
.btn-edge {
  background: transparent; color: var(--ink); border: 1px solid var(--hair);
  border-radius: 999px; text-decoration: none; cursor: pointer;
  padding: 12px 20px; font-size: 13px; letter-spacing: 0.04em;
}
.btn-edge:hover { border-color: var(--ink); }
@media (max-width: 620px) {
  .cookie-banner-inner { grid-template-columns: 1fr; text-align: left; }
  .cookie-banner-actions { justify-content: flex-end; }
}

/* ---------- Circle text badge ---------- */
.circle-text {
  display: inline-block; animation: circle-spin 22s linear infinite;
  color: var(--ink);
}
.circle-text-text {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  fill: currentColor;
}
@keyframes circle-spin { to { transform: rotate(360deg); } }

/* ---------- PDP ---------- */
.pdp { padding: 60px 0; }
.pdp-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start;
}
@media (max-width: 900px) { .pdp-grid { grid-template-columns: 1fr; gap: 32px; } }
.pdp-media { position: relative; }
.pdp-badge-wrap {
  position: absolute; top: 20px; right: 20px; z-index: 3;
  background: rgba(249,247,242,0.9); border-radius: 999px; padding: 8px;
  backdrop-filter: blur(6px);
}
.pdp-main-image {
  border-radius: 20px; overflow: hidden; background: var(--paper2); aspect-ratio: 4/5;
}
.pdp-main-image img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.pdp-thumb {
  width: 72px; height: 72px; padding: 0; border: 1px solid var(--hair);
  border-radius: 10px; overflow: hidden; cursor: pointer; background: #fff;
}
.pdp-thumb.is-active { border-color: var(--gold); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-info-inner { position: sticky; top: 100px; }
.pdp-title {
  font-family: var(--font-display, 'Bodoni Moda', serif);
  font-size: clamp(32px, 4vw, 52px); font-weight: 400; line-height: 1.05;
  margin: 8px 0 16px; letter-spacing: -0.015em;
}
.pdp-price-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.pdp-price { font-size: 24px; font-weight: 500; color: var(--ink); }
.pdp-compare { text-decoration: line-through; color: var(--mute); font-size: 16px; }
.pdp-stock-pill {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--sagetint); color: var(--sage-d);
  padding: 4px 10px; border-radius: 999px;
}
.pdp-stock-pill--out { background: #f4dede; color: #8b2b2b; }
.pdp-stock-bar { height: 6px; background: var(--paper2); border-radius: 999px; margin: 14px 0 6px; overflow: hidden; }
.pdp-stock-bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-d)); transition: width 0.4s; }
.pdp-stock-note { font-size: 12px; color: var(--gold-d); margin: 0 0 20px; letter-spacing: 0.04em; }
.pdp-desc { font-size: 15px; line-height: 1.7; color: var(--ink); margin: 20px 0 24px; }
.pdp-option { margin-bottom: 20px; }
.pdp-option-label {
  display: block; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mute); margin-bottom: 10px;
}
.pdp-swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.pdp-swatch {
  cursor: pointer; padding: 10px 16px; border: 1px solid var(--hair);
  border-radius: 999px; font-size: 13px; transition: all 0.2s;
  background: #fff;
}
.pdp-swatch input { position: absolute; opacity: 0; pointer-events: none; }
.pdp-swatch:hover { border-color: var(--ink); }
.pdp-swatch.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pdp-qty-row { display: flex; gap: 12px; align-items: stretch; margin: 24px 0 20px; }
.pdp-qty {
  display: inline-flex; align-items: center; border: 1px solid var(--hair);
  border-radius: 999px; overflow: hidden; background: #fff;
}
.pdp-qty button {
  width: 42px; height: 46px; border: 0; background: transparent; cursor: pointer;
  font-size: 18px; color: var(--ink);
}
.pdp-qty input {
  width: 46px; text-align: center; border: 0; font-size: 15px; background: transparent;
  font-family: inherit; -moz-appearance: textfield;
}
.pdp-qty input::-webkit-outer-spin-button,
.pdp-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pdp-add { flex: 1; border-radius: 999px !important; }
.pdp-perks {
  list-style: none; padding: 20px 0 0; margin: 0;
  border-top: 1px solid var(--hair); display: grid; gap: 10px;
}
.pdp-perks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--mute);
}
.pdp-perks svg { color: var(--gold-d); flex-shrink: 0; }

/* Tabs */
.pdp-tabs { margin-top: 28px; border-top: 1px solid var(--hair); padding-top: 24px; }
.pdp-tabs-nav { display: flex; gap: 20px; margin-bottom: 16px; }
.pdp-tabs-nav button {
  background: transparent; border: 0; padding: 8px 0; cursor: pointer;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mute); border-bottom: 1px solid transparent;
}
.pdp-tabs-nav button[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--gold); }
.pdp-tabs-panels p { font-size: 14px; color: var(--ink); line-height: 1.7; margin: 0; }

/* ======================================================================
   COUNTDOWN HERO
   ====================================================================== */
.countdown-hero {
  position: relative; min-height: 78vh;
  display: flex; align-items: center; color: var(--paper); overflow: hidden;
}
.countdown-hero-media { position: absolute; inset: 0; }
.countdown-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.countdown-hero-fallback { width: 100%; height: 100%; background: linear-gradient(135deg, #2a1810, #6b3a2a); }
.countdown-hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%);
}
.countdown-hero-promo {
  position: absolute; left: 24px; top: 50%;
  transform: translateY(-50%) rotate(-90deg); transform-origin: left center;
  z-index: 3;
}
.countdown-hero-promo span {
  display: inline-block; padding: 12px 22px;
  border: 1px solid rgba(255,255,255,0.5); border-radius: 999px;
  color: var(--paper); font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  background: rgba(0,0,0,0.15); backdrop-filter: blur(6px);
}
.countdown-hero-content { position: relative; z-index: 2; width: 100%; padding: 60px 0; }
.countdown-hero-inner { text-align: center; }
.countdown-hero-eyebrow {
  display: inline-block; font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; margin-bottom: 16px; opacity: 0.9;
}
.countdown-hero-heading {
  font-family: var(--font-display, 'Bodoni Moda', serif);
  font-weight: 400; margin: 0 auto 36px; line-height: 1.05; letter-spacing: -0.01em;
  font-size: clamp(38px, 6vw, 84px); max-width: 18ch;
}
.countdown-hero-heading span { display: block; }
.countdown-clock {
  display: inline-flex; align-items: flex-start; gap: 14px;
  margin-bottom: 32px;
}
.countdown-unit { display: flex; flex-direction: column; align-items: center; min-width: 72px; }
.countdown-unit span {
  font-family: var(--font-display, 'Bodoni Moda', serif);
  font-size: clamp(36px, 4.4vw, 64px); font-weight: 400; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown-unit label {
  margin-top: 8px; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.8;
}
.countdown-sep {
  font-family: var(--font-display, 'Bodoni Moda', serif);
  font-size: clamp(28px, 3.4vw, 50px); color: var(--gold); line-height: 1;
  padding-top: 6px;
}
.countdown-hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  background: var(--paper); color: var(--ink); text-decoration: none;
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.countdown-hero-cta:hover { background: var(--gold); color: #fff; transform: translateY(-1px); }
@media (max-width: 720px) {
  .countdown-hero-promo { display: none; }
  .countdown-clock { gap: 8px; }
  .countdown-unit { min-width: 56px; }
}

/* ======================================================================
   LOOKBOOK
   ====================================================================== */
.lookbook { padding: 80px 0; }
.lookbook-header { text-align: center; margin-bottom: 40px; }
.lookbook-heading {
  position: relative; display: inline-block;
  font-family: var(--font-display, 'Bodoni Moda', serif);
  font-size: clamp(32px, 4.4vw, 56px); font-weight: 400;
  line-height: 1.1; letter-spacing: -0.015em; margin: 10px 0 0;
  padding-bottom: 18px;
}
.underline-scribble {
  position: absolute; left: 20%; right: 20%; bottom: 0;
  width: 60%; height: 16px; color: var(--gold);
}
.lookbook-grid {
  display: grid; grid-template-columns: 1.55fr 1fr; gap: 32px; align-items: stretch;
}
@media (max-width: 900px) { .lookbook-grid { grid-template-columns: 1fr; } }
.lookbook-image {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/3; background: var(--paper2);
}
.lookbook-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lookbook-fallback { width: 100%; height: 100%; background: linear-gradient(135deg, var(--sage), var(--sage-d)); }
.lookbook-hotspot {
  position: absolute; transform: translate(-50%, -50%);
  width: 34px; height: 34px; padding: 0; border: 0; cursor: pointer;
  background: transparent; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
}
.lookbook-hotspot::before {
  content: ''; position: absolute; inset: 0; border-radius: 999px;
  background: rgba(255,255,255,0.55);
  animation: hotspot-pulse 2.4s ease-out infinite;
}
.lookbook-hotspot-dot {
  position: relative; z-index: 2;
  width: 16px; height: 16px; border-radius: 999px;
  background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  transition: transform 0.2s;
}
.lookbook-hotspot:hover .lookbook-hotspot-dot,
.lookbook-hotspot.is-active .lookbook-hotspot-dot {
  transform: scale(1.25); background: var(--gold);
}
@keyframes hotspot-pulse {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.8); opacity: 0; }
}
.lookbook-cards { position: relative; min-height: 360px; }
.lookbook-card {
  position: absolute; inset: 0; opacity: 0; pointer-events: none;
  transform: translateY(8px); transition: opacity 0.35s, transform 0.35s;
  display: flex; flex-direction: column;
  border-radius: 20px; overflow: hidden; background: var(--paper2);
}
.lookbook-card.is-active { opacity: 1; pointer-events: auto; transform: none; position: relative; inset: auto; }
@media (max-width: 900px) { .lookbook-card { position: relative; inset: auto; opacity: 1; pointer-events: auto; transform: none; margin-bottom: 16px; } .lookbook-card:not(.is-active) { display: none; } }
.lookbook-card-media { display: block; aspect-ratio: 4/5; overflow: hidden; background: var(--paper); }
.lookbook-card-media img { width: 100%; height: 100%; object-fit: cover; }
.lookbook-card-body { padding: 20px 22px 24px; }
.lookbook-card-eyebrow { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); margin-bottom: 6px; }
.lookbook-card-title { font-family: var(--font-display, serif); font-size: 22px; font-weight: 400; margin: 0 0 6px; }
.lookbook-card-title a { color: var(--ink); text-decoration: none; }
.lookbook-card-price { font-size: 16px; color: var(--ink); margin-bottom: 14px; }
.lookbook-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: var(--ink); color: var(--paper); text-decoration: none;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 0.2s;
}
.lookbook-card-cta:hover { background: var(--gold-d); }

/* ======================================================================
   PRESS TESTIMONIAL
   ====================================================================== */
.press-testimonial {
  position: relative; min-height: 62vh;
  display: flex; align-items: center; color: var(--paper); overflow: hidden;
  padding: 80px 0;
}
.press-testimonial-media { position: absolute; inset: 0; }
.press-testimonial-media img { width: 100%; height: 100%; object-fit: cover; }
.press-testimonial-fallback { width: 100%; height: 100%; background: linear-gradient(135deg, var(--sage-d), #2a1810); }
.press-testimonial-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,20,15,0.55) 0%, rgba(30,20,15,0.7) 100%);
}
.press-testimonial-content { position: relative; z-index: 2; width: 100%; text-align: center; }
.press-testimonial-mark {
  font-family: var(--font-display, 'Bodoni Moda', serif);
  font-size: 72px; line-height: 0.8; color: var(--paper);
  margin-bottom: 18px; opacity: 0.9;
}
.press-testimonial-quote {
  font-family: var(--font-display, 'Bodoni Moda', serif);
  font-size: clamp(22px, 2.8vw, 40px); font-weight: 400;
  line-height: 1.25; max-width: 30ch; margin: 0 auto 30px;
  letter-spacing: -0.005em;
}
.press-testimonial-publication { max-width: 180px; height: auto; margin: 0 auto 12px; opacity: 0.95; filter: brightness(0) invert(1); }
.press-testimonial-publication-text {
  font-family: var(--font-display, serif); font-style: italic;
  font-size: 20px; margin-bottom: 12px; opacity: 0.95;
}
.press-testimonial-attr { font-size: 13px; letter-spacing: 0.06em; opacity: 0.85; }



/* ============================================================
   Concept-inspired additions: sticky ATC, popup, cart notes,
   shipping bar, mega menu, before/after, image swatches,
   upgrades, PDP countdown, header locale chip
   ============================================================ */

/* Star rating pill */
.pdp-rating { display:inline-flex; align-items:center; gap:4px; font-size:.85rem; color:var(--ink); background:var(--sagetint,#f2efe9); padding:4px 10px; border-radius:999px; }
.pdp-rating svg { width:14px; height:14px; color:var(--gold,#a08957); }
.pdp-rating-count { color:var(--mute,#6b6353); margin-left:2px; }

/* PDP countdown strip */
.pdp-countdown { display:flex; align-items:center; gap:10px; margin:14px 0 6px; padding:10px 14px; background:#fff4e5; border:1px solid #f0d9b1; border-radius:10px; font-size:.9rem; color:#7a4a10; }
.pdp-countdown-label { font-weight:600; margin-right:4px; }
.pdp-countdown-unit b { font-variant-numeric: tabular-nums; font-weight:700; }

/* Image (color) swatches */
.pdp-swatches--image { display:flex; flex-wrap:wrap; gap:10px; }
.pdp-swatch--image { width:56px; height:56px; border-radius:12px; background-size:cover; background-position:center; background-color:var(--sagetint,#f2efe9); cursor:pointer; border:2px solid transparent; box-shadow:inset 0 0 0 1px rgba(0,0,0,.06); transition:border-color .15s ease, transform .15s ease; overflow:hidden; }
.pdp-swatch--image input { position:absolute; opacity:0; pointer-events:none; }
.pdp-swatch--image.is-active { border-color: var(--ink,#2a251a); transform: translateY(-1px); }
.pdp-option--color .pdp-option-label b { font-weight:600; color:var(--ink); }

/* Popular upgrades card */
.pdp-upgrades { margin-top:18px; border:1px solid var(--line,#e6e0d3); border-radius:14px; background:#fff; }
.pdp-upgrades-head { display:flex; align-items:center; justify-content:space-between; padding:12px 14px; background:var(--sagetint,#f8f5ee); border-radius:14px 14px 0 0; font-weight:600; }
.pdp-upgrades-close { background:none; border:0; cursor:pointer; color:var(--mute,#6b6353); padding:4px; }
.pdp-upgrades-close svg { width:14px; height:14px; }
.pdp-upgrades-list { padding:6px 8px; }
.upgrade-row { display:grid; grid-template-columns: 22px auto 1fr auto; align-items:center; gap:12px; padding:10px 8px; border-radius:10px; cursor:pointer; transition:background .15s ease; }
.upgrade-row:hover { background: var(--sagetint,#f8f5ee); }
.upgrade-row + .upgrade-row { border-top:1px solid var(--line,#eee7d6); }
.upgrade-check { position:absolute; opacity:0; width:0; height:0; }
.upgrade-check-box { width:20px; height:20px; border:1.5px solid var(--line,#c9c0aa); border-radius:6px; display:inline-block; position:relative; background:#fff; }
.upgrade-check:checked + .upgrade-check-box { background:var(--gold,#a08957); border-color:var(--gold,#a08957); }
.upgrade-check:checked + .upgrade-check-box::after { content:''; position:absolute; left:6px; top:2px; width:5px; height:10px; border:solid #fff; border-width:0 2px 2px 0; transform:rotate(45deg); }
.upgrade-thumb { width:44px; height:44px; border-radius:8px; object-fit:cover; background:var(--sagetint,#f2efe9); }
.upgrade-title { font-weight:500; color:var(--ink); }
.upgrade-price { font-variant-numeric:tabular-nums; color:var(--ink); font-weight:600; }

/* Sticky add-to-cart */
.sticky-atc { position:fixed; left:0; right:0; bottom:0; z-index:80; background:#fff; border-top:1px solid var(--line,#e6e0d3); box-shadow:0 -6px 24px rgba(0,0,0,.06); transform: translateY(100%); transition: transform .28s ease; }
.sticky-atc.is-visible { transform: translateY(0); }
.sticky-atc-inner { max-width:1200px; margin:0 auto; padding:10px 20px; display:flex; align-items:center; justify-content:space-between; gap:16px; }
.sticky-atc-product { display:flex; align-items:center; gap:12px; min-width:0; }
.sticky-atc-product img { width:48px; height:48px; border-radius:8px; object-fit:cover; }
.sticky-atc-title { font-weight:600; color:var(--ink); font-size:.95rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:280px; }
.sticky-atc-variant { color:var(--mute,#6b6353); font-size:.82rem; }
.sticky-atc-buy { display:flex; align-items:center; gap:14px; }
.sticky-atc-price { font-weight:700; font-variant-numeric:tabular-nums; }
.sticky-atc-btn { padding:10px 20px; }
@media (max-width: 640px) {
  .sticky-atc-inner { padding:8px 12px; }
  .sticky-atc-title { max-width:130px; font-size:.85rem; }
  .sticky-atc-price { display:none; }
}

/* Popup newsletter */
.popup-newsletter { position:fixed; inset:0; z-index:100; display:flex; align-items:center; justify-content:center; padding:20px; }
.popup-newsletter[hidden] { display:none !important; }
.popup-newsletter-backdrop { position:absolute; inset:0; background:rgba(20,15,8,.55); backdrop-filter: blur(4px); }
.popup-newsletter-panel { position:relative; z-index:1; background:#fff; border-radius:18px; max-width:820px; width:100%; display:grid; grid-template-columns: 1fr 1fr; overflow:hidden; box-shadow:0 24px 60px rgba(0,0,0,.25); animation: popup-in .32s ease; }
@keyframes popup-in { from { opacity:0; transform: translateY(12px) scale(.98); } to { opacity:1; transform:none; } }
.popup-newsletter-close { position:absolute; top:12px; right:12px; background:rgba(255,255,255,.9); border:0; width:32px; height:32px; border-radius:999px; cursor:pointer; display:grid; place-items:center; z-index:2; }
.popup-newsletter-close svg { width:14px; height:14px; }
.popup-newsletter-media { position:relative; min-height:360px; background:var(--sagetint,#f2efe9); }
.popup-newsletter-media img { width:100%; height:100%; object-fit:cover; display:block; }
.popup-newsletter-body { padding:40px 36px; display:flex; flex-direction:column; justify-content:center; gap:14px; }
.popup-newsletter-title { font-family: var(--font-display, 'Bodoni Moda', serif); font-size:1.8rem; line-height:1.15; margin:6px 0 0; color:var(--ink); }
.popup-newsletter-sub { color:var(--mute,#6b6353); }
.popup-newsletter-form { display:flex; gap:8px; margin-top:8px; }
.popup-newsletter-form input[type=email] { flex:1; padding:12px 14px; border:1px solid var(--line,#e6e0d3); border-radius:10px; font:inherit; }
.popup-newsletter-note { color:var(--sage-d,#4a5248); font-size:.9rem; margin-top:6px; }
.popup-newsletter-dismiss { background:none; border:0; color:var(--mute,#6b6353); text-decoration:underline; font-size:.85rem; cursor:pointer; padding:0; text-align:left; }
@media (max-width: 640px) { .popup-newsletter-panel { grid-template-columns: 1fr; } .popup-newsletter-media { min-height:180px; } .popup-newsletter-body { padding:24px; } }

/* Cart notes */
.cart-notes { margin:18px 0; border:1px solid var(--line,#e6e0d3); border-radius:12px; padding:12px 14px; background:#fff; }
.cart-notes summary { cursor:pointer; font-weight:600; color:var(--ink); list-style:none; }
.cart-notes summary::-webkit-details-marker { display:none; }
.cart-notes summary::before { content:'＋'; margin-right:8px; color:var(--gold,#a08957); }
.cart-notes[open] summary::before { content:'−'; }
.cart-notes textarea { margin-top:10px; width:100%; padding:10px 12px; border:1px solid var(--line,#e6e0d3); border-radius:8px; font:inherit; resize:vertical; }

/* Shipping bar */
.ship-bar { margin:0 0 18px; padding:12px 14px; border-radius:12px; background:var(--sagetint,#f8f5ee); border:1px solid var(--line,#e6e0d3); }
.ship-bar-msg { margin:0 0 8px; font-size:.9rem; color:var(--ink); }
.ship-bar-track { height:6px; border-radius:999px; background:rgba(0,0,0,.08); overflow:hidden; }
.ship-bar-fill { height:100%; background: linear-gradient(90deg, var(--gold-light,#c3a468), var(--gold,#a08957)); transition: width .35s ease; }

/* Mega menu */
.mega-menu { position:absolute; left:0; right:0; top:100%; z-index:70; background:#fff; border-top:1px solid var(--line,#e6e0d3); box-shadow:0 20px 40px rgba(0,0,0,.08); padding:28px 0; }
.mega-menu[hidden] { display:none !important; }
.mega-menu-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap:20px; }
.mega-card { display:block; text-decoration:none; color:inherit; border-radius:14px; overflow:hidden; background:var(--sagetint,#f8f5ee); transition: transform .2s ease, box-shadow .2s ease; }
.mega-card:hover { transform: translateY(-2px); box-shadow:0 12px 24px rgba(0,0,0,.08); }
.mega-card-media { aspect-ratio: 4/3; overflow:hidden; background:var(--sagetint,#f2efe9); }
.mega-card-media img { width:100%; height:100%; object-fit:cover; display:block; }
.mega-card-body { padding:12px 14px; }
.mega-card-title { font-weight:600; color:var(--ink); }
.mega-card-sub { color:var(--mute,#6b6353); font-size:.85rem; margin-top:2px; }
@media (max-width: 900px) { .mega-menu-grid { grid-template-columns: repeat(2, 1fr); } }

/* Header locale chip */
.header-locale { position:relative; }
.header-locale summary { cursor:pointer; list-style:none; padding:6px 10px; border:1px solid var(--line,#e6e0d3); border-radius:999px; font-size:.8rem; color:var(--ink); background:#fff; }
.header-locale summary::-webkit-details-marker { display:none; }
.header-locale-panel { position:absolute; right:0; top:calc(100% + 8px); background:#fff; border:1px solid var(--line,#e6e0d3); border-radius:10px; padding:10px; box-shadow:0 12px 24px rgba(0,0,0,.08); display:flex; flex-direction:column; gap:6px; min-width:220px; z-index:75; }
.header-locale-panel select { padding:8px 10px; border:1px solid var(--line,#e6e0d3); border-radius:6px; font:inherit; background:#fff; }

/* Before / after slider */
.ba-section { padding: 60px 0; }
.ba-heading { font-family: var(--font-display, 'Bodoni Moda', serif); font-size:2.2rem; margin:0 0 24px; color:var(--ink); }
.ba { position:relative; width:100%; aspect-ratio: 16/9; overflow:hidden; border-radius:16px; user-select:none; background:#000; touch-action:none; }
.ba-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; }
.ba-clip { position:absolute; inset:0; width:50%; overflow:hidden; }
.ba-clip .ba-img--before { width:calc(100% * (100 / 50)); max-width:none; }
.ba-handle { position:absolute; top:0; bottom:0; left:50%; width:44px; margin-left:-22px; background:transparent; border:0; cursor:ew-resize; display:flex; align-items:center; justify-content:center; }
.ba-handle-line { position:absolute; top:0; bottom:0; left:50%; width:2px; margin-left:-1px; background:#fff; box-shadow:0 0 12px rgba(0,0,0,.35); }
.ba-handle-knob { position:relative; z-index:1; background:#fff; color:var(--ink); font-size:.7rem; padding:8px 10px; border-radius:999px; box-shadow:0 4px 12px rgba(0,0,0,.25); font-weight:700; letter-spacing:1px; }
.ba-label { position:absolute; top:16px; padding:4px 10px; background:rgba(0,0,0,.55); color:#fff; font-size:.7rem; letter-spacing:1.5px; text-transform:uppercase; border-radius:999px; }
.ba-label--before { left:16px; }
.ba-label--after { right:16px; }

.visually-hidden { position:absolute !important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
