:root {
  --pink: #b84040;
  --pink-deep: #d6006e;
  --pink-soft: #ffe5f1;
  --pink-bg: #fff5fa;
  --cream: #fff8ee;
  --ink: #0f0f12;
  --ink-soft: #2a2a30;
  --muted: #7a7a82;
  --line: #e8e5e0;
  --olive: #4a5d3a;
  --olive-soft: #e8edd9;
  --mustard: #e8a317;
  --paper: #fafaf7;
  --white: #ffffff;
}

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

html,
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.display {
  font-family: "Fraunces", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mono-eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sh-header-container {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 999;
}

/* ===== ANNOUNCEMENT BAR ===== */

.app-bar .notice {
  padding: 0px;
}

.announce {
  background: #000;
  color: white;
  padding: 12px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 2px solid var(--ink);
}

.announce .code {
  background: rgba(0, 0, 0, 0.15);
  padding: 4px 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 12px;
  margin-left: 8px;
}

.announce .cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  text-decoration: none;
  color: white;
  border-bottom: 1px solid white;
  padding-bottom: 2px;
}

.desk-notice-bar {
  padding-top: 0px;
  padding-bottom: 0px;
}

/* ===== HEADER ===== */
.header {
  background: var(--white);
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--ink);
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.logo .amp {
  color: var(--pink);
  font-style: italic;
}

.logo .dot {
  width: 7px;
  height: 7px;
  background: var(--pink);
  display: inline-block;
  margin-left: 4px;
}

.header-right {
  display: flex;
  gap: 8px;
  align-items: center;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.15s;
}

.icon-btn:hover {
  background: var(--ink);
  color: white;
}

.icon-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.cart-pill {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

.cart-pill:hover {
  background: var(--pink);
}

.cart-count {
  background: var(--pink);
  color: white;
  padding: 1px 7px;
  font-size: 11px;
  font-weight: 700;
}

/* ===== NAV ===== */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-scroll-hint {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.15em;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  border-right: 1px solid var(--line);
  padding-right: 16px;
  height: 56px;
  align-items: center;
  display: flex;
}

.nav-items {
  display: flex;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-items::-webkit-scrollbar {
  display: none;
}

.nav-link {
  flex: 1;
  text-align: center;
  padding: 20px 14px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none;
  border-right: 1px solid var(--line);
  transition: all 0.2s;
  white-space: nowrap;
  position: relative;
}

.nav-link:first-child {
  border-left: 1px solid var(--line);
}

.nav-link:hover {
  background: var(--pink);
  color: white;
}

.nav-link.featured {
  color: var(--pink);
}

.nav-link.featured:hover {
  color: white;
}

.nav-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 8px;
}

.nav-arrow:hover {
  background: var(--ink);
  color: white;
}

/* ===== HERO SLIDESHOW ===== */
.hero {
  /* margin: 24px 32px 0; */
  position: relative;
  background: linear-gradient(135deg, #2a2a30 0%, #0f0f12 100%);
  border: 1px solid var(--ink);
  overflow: hidden;
  /* max-width: 1440px; */
  margin: auto;
}

.hero-inner {
  position: relative;
  aspect-ratio: 24/9;
  display: flex;
  align-items: center;
  padding: 64px;
}

.hero-image-placeholder {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg,
      transparent 0 18px,
      rgba(255, 255, 255, 0.025) 18px 19px),
    linear-gradient(135deg, #2a2a30 0%, #1a1a1f 50%, #0f0f12 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-placeholder::before {
  content: "HERO IMAGE";
  color: rgba(255, 255, 255, 0.15);
  font-size: 11px;
  letter-spacing: 0.3em;
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.hero-eyebrow {
  color: var(--pink);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--pink);
}

.hero-title {
  color: white;
  font-size: 68px;
  line-height: 0.95;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--pink);
  font-weight: 400;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 440px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--pink);
  color: white;
  padding: 18px 32px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--pink);
  transition: all 0.2s;
}

.hero-cta:hover {
  background: transparent;
  color: var(--pink);
}

.hero-cta svg {
  width: 16px;
  height: 16px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: all 0.2s;
  z-index: 3;
}

.hero-arrow:hover {
  background: var(--pink);
  border-color: var(--pink);
}

.hero-arrow.prev {
  left: 24px;
  display: none;
}

.hero-arrow.next {
  right: 24px;
  display: none;
}

.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.2s;
}

.hero-dot.active {
  background: var(--pink);
  width: 44px;
}

.hero-meta {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-align: right;
}

.hero-meta-num {
  color: white;
  font-size: 14px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 32px 24px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink);
}

.section-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-eyebrow {
  color: var(--pink);
}

.section-title {
  font-size: 42px;
  line-height: 1;
}

.section-link {
  color: var(--ink);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
}

.section-link:hover {
  color: var(--pink);
  border-color: var(--pink);
}

/* ===== PRODUCT GRID ===== 
  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--ink);
    background: var(--ink);
  }
  .product-card {
    background: var(--white);
    padding: 0;
    position: relative;
    cursor: pointer;
    transition: all 0.25s;
  }
  .product-card:nth-child(odd) { border-right: 1px solid var(--ink); }
  .product-card:nth-child(3n) { border-right: none; }
  .product-card:nth-child(3n+1), .product-card:nth-child(3n+2), .product-card:nth-child(3n) { border-right: 1px solid var(--ink); }
  .product-card:nth-child(3n) { border-right: none; }
  .product-card:nth-child(n+4) { border-top: 1px solid var(--ink); }

  .product-img {
    aspect-ratio: 4/5;
    background: var(--pink-bg);
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .product-img.bg-cream { background: var(--cream); }
  .product-img.bg-olive { background: var(--olive-soft); }
  .product-img.bg-mustard { background: #F7E6BF; }
  .product-img.bg-deep { background: #2A2A30; }
  .product-img.bg-pinker { background: #FFD0E5; }

  .product-img::before {
    content: 'PRODUCT IMAGE';
    color: rgba(0,0,0,0.18);
    font-size: 10px;
    letter-spacing: 0.3em;
    font-weight: 700;
  }
  .product-img.bg-deep::before { color: rgba(255,255,255,0.18); }

  .product-img::after {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px dashed rgba(0,0,0,0.12);
  }*/
.product-img.bg-deep::after {
  border-color: rgba(255, 255, 255, 0.12);
}

.product-info {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  background: white;
}

.product-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.product-meta {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.product-price-row {
  text-align: right;
}

.product-price {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.product-quick {
  width: 36px;
  height: 36px;
  background: var(--ink);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  margin-left: auto;
  transition: background 0.15s;
}

.product-quick:hover {
  background: var(--pink);
}

.product-quick svg {
  width: 14px;
  height: 14px;
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--pink);
  color: white;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  z-index: 2;
}

.badge.dark {
  background: var(--ink);
}

.badge.olive {
  background: var(--olive);
}

.product-num {
  position: absolute;
  bottom: 14px;
  right: 16px;
  font-family: "Fraunces", serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0.05em;
}

.product-img.bg-deep .product-num {
  color: rgba(255, 255, 255, 0.4);
}

/* ===== COLLECTION REELS ===== */
.reel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.reel-card {
  position: relative;
  aspect-ratio: 3/4;
  background: linear-gradient(180deg, #2a2a30 0%, #0f0f12 100%);
  cursor: pointer;
  overflow: hidden;
  border: 1px solid var(--ink);
}

.reel-card::before {
  content: "REEL VIDEO";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 50px));
  color: rgba(255, 255, 255, 0.2);
  font-size: 10px;
  letter-spacing: 0.3em;
  font-weight: 700;
}

.reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.reel-card:hover .reel-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: white;
  color: var(--pink);
}

.reel-play svg {
  width: 26px;
  height: 26px;
  fill: white;
}

.reel-card:hover .reel-play svg {
  fill: var(--pink);
}

.reel-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
  color: white;
}

.reel-handle {
  font-size: 11px;
  color: var(--pink);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.reel-title {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reel-views {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.reel-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  color: white;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.reel-tag .live-dot {
  width: 6px;
  height: 6px;
  background: var(--pink);
}

/* ===== NEWS / EDITORIAL ===== */
.news-section {
  background: var(--ink);
  color: white;
  padding: 80px 32px;
  margin-top: 24px;
}

.news-section .section-head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.news-section .section-eyebrow {
  color: var(--pink);
}

.news-section .section-title {
  color: white;
}

.news-section .section-link {
  color: white;
  border-color: white;
}

.news-section .section-link:hover {
  color: var(--pink);
  border-color: var(--pink);
}

.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}

.news-featured {
  background: var(--white);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  border: 1px solid white;
}

.news-featured-img {
  aspect-ratio: 16/10;
  background:
    repeating-linear-gradient(135deg,
      var(--olive-soft) 0 20px,
      #dce3c7 20px 21px),
    var(--olive-soft);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-featured-img::before {
  content: "EDITORIAL IMAGE";
  color: rgba(0, 0, 0, 0.25);
  font-size: 11px;
  letter-spacing: 0.3em;
  font-weight: 700;
}

.news-featured-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--ink);
  color: white;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.news-featured-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 12px;
}

.news-featured-title {
  font-size: 28px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.news-excerpt {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.news-read {
  color: var(--ink);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--pink);
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px;
  display: flex;
  gap: 18px;
  cursor: pointer;
  transition: all 0.2s;
}

.news-item:hover {
  background: rgba(255, 26, 140, 0.08);
  border-color: var(--pink);
}

.news-item-img {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  background: var(--olive-soft);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-item-img::before {
  content: "IMG";
  color: rgba(0, 0, 0, 0.3);
  font-size: 9px;
  letter-spacing: 0.2em;
  font-weight: 700;
}

.news-item-img.alt {
  background: var(--cream);
}

.news-item-img.alt2 {
  background: var(--pink-soft);
}

.news-item-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.news-item-cat {
  font-size: 10px;
  color: var(--pink);
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 6px;
}

.news-item-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.news-item-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  font-weight: 600;
  display: flex;
  gap: 12px;
}

/* ===== STORY / STATS ===== */
.story-section {
  padding: 25px 32px;
  background: var(--paper);
  position: relative;
}

.story-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.story-head {
  text-align: center;
  margin-bottom: 64px;
}

.story-eyebrow {
  color: var(--pink);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.story-eyebrow::before,
.story-eyebrow::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--pink);
}

.story-title {
  font-size: 72px;
  line-height: 0.95;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.story-title em {
  font-style: italic;
  color: var(--pink);
  font-weight: 400;
}

.story-sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.stat {
  background: white;
  padding: 56px 40px;
  position: relative;
  border-right: 1px solid var(--ink);
}

.stat:last-child {
  border-right: none;
}

.stat.pink-tint {
  background: var(--pink-soft);
}

.stat.olive-tint {
  background: var(--olive-soft);
}

.stat.cream-tint {
  background: var(--cream);
}

.stat-num {
  font-family: "Fraunces", serif;
  font-size: 88px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.stat.pink-tint .stat-num {
  color: var(--pink-deep);
}

.stat.olive-tint .stat-num {
  color: var(--olive);
}

.stat.cream-tint .stat-num {
  color: var(--mustard);
}

.stat-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.stat-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.stat-corner {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: "Fraunces", serif;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.3);
  font-style: italic;
}

/* ===== ACCESSORIES ===== */
.access-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.access-card {
  background: white;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
}

.access-card:hover {
  transform: translateY(-4px);
}

.access-img {
  aspect-ratio: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--ink);
}

.access-img::before {
  content: "IMAGE";
  color: rgba(0, 0, 0, 0.2);
  font-size: 10px;
  letter-spacing: 0.3em;
  font-weight: 700;
}

.access-img.a {
  background: var(--pink-soft);
}

.access-img.b {
  background: var(--cream);
}

.access-img.c {
  background: var(--olive-soft);
}

.access-img.d {
  background: #ffd0e5;
}

.access-info {
  padding: 20px;
}

.access-num {
  font-family: "Fraunces", serif;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 6px;
}

.access-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.access-sub {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.access-price {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.access-price-arrow {
  width: 28px;
  height: 28px;
  background: var(--ink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: white;
  padding: 80px 32px 32px;
  margin-top: 80px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 1280px;
  margin: auto;
}

.footer-brand-title {
  font-family: "Fraunces", serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1;
}

.footer-brand-title em {
  color: var(--pink);
  font-style: italic;
  font-weight: 400;
}

.footer-brand-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 24px;
}

.newsletter {
  display: flex;
  max-width: 360px;
}

.newsletter input {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right: none;
  padding: 14px 16px;
  color: white;
  font-family: inherit;
  font-size: 13px;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter input:focus {
  outline: none;
  border-color: var(--pink);
}

.newsletter button {
  background: var(--pink);
  color: white;
  border: 1px solid var(--pink);
  padding: 0 22px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
}

.newsletter button:hover {
  background: white;
  color: var(--pink);
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.15s;
}

.footer-socials a:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: white;
}

.footer-socials svg {
  width: 16px;
  height: 16px;
}

/* responsive */
@media (max-width: 900px) {

  .hero-title,
  .story-title {
    font-size: 44px;
  }

  .section-title {
    font-size: 30px;
  }

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

  .product-card:nth-child(3n) {
    border-right: 1px solid var(--ink) !important;
  }

  .product-card:nth-child(2n) {
    border-right: none !important;
  }

  .reel-grid,
  .access-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid,
  .stats {
    grid-template-columns: 1fr;
  }

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

  .hero-inner {
    padding: 40px 28px;
    aspect-ratio: 4/5;
  }

  .announce {
    font-size: 11px;
    padding: 10px 16px;
  }

  .header,
  .nav,
  .section,
  .news-section,
  .story-section,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    margin: 16px;
  }

  .stat-num {
    font-size: 60px;
  }
}

.section {
  padding: 0.5rem 5px !important;
}

.pr-outlined-button {
  border-radius: 0px;
}

.pr-long-card {
  border-radius: 0px;
}

.pr-var-btn {
  border-radius: 0px !important;
}

/* =========================================================
   FIXED LATEST NEWS SECTION - Added by ChatGPT
   Paste this at the bottom if you are not replacing full CSS.
   ========================================================= */

.news-section {
  background: var(--ink) !important;
  color: white !important;
  padding: 80px 32px !important;
  margin-top: 24px !important;
  overflow: hidden !important;
}

.news-section .section-head {
  max-width: 1280px !important;
  margin: 0 auto 32px !important;
  padding-bottom: 18px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.news-section .section-eyebrow {
  color: var(--pink) !important;
}

.news-section .section-title {
  color: white !important;
}

.news-section .section-link {
  color: white !important;
  border-color: white !important;
}

.news-section .section-link:hover {
  color: var(--pink) !important;
  border-color: var(--pink) !important;
}

.news-grid {
  max-width: 1280px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr) !important;
  gap: 24px !important;
  align-items: stretch !important;
}

.news-featured {
  background: var(--white) !important;
  color: var(--ink) !important;
  display: flex !important;
  flex-direction: column !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  min-width: 0 !important;
  overflow: hidden !important;
}

.news-featured-img {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden !important;
  background: #111 !important;
  display: block !important;
}

.news-featured-img::before,
.news-item-img::before {
  content: none !important;
  display: none !important;
}

.news-featured-img img,
.news-item-img img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
}

.news-featured-img img,
.news-item-img img {
  transition: transform 0.35s ease !important;
}

.news-featured:hover .news-featured-img img,
.news-item:hover .news-item-img img {
  transform: scale(1.04) !important;
}

.news-featured-tag {
  position: absolute !important;
  top: 18px !important;
  left: 18px !important;
  z-index: 3 !important;
  background: var(--ink) !important;
  color: white !important;
  padding: 9px 16px !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.16em !important;
}

.news-featured-body {
  padding: 30px !important;
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

.news-date {
  font-size: 11px !important;
  color: var(--muted) !important;
  letter-spacing: 0.15em !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
}

.news-featured-title {
  font-size: clamp(24px, 2vw, 32px) !important;
  margin-bottom: 14px !important;
  line-height: 1.12 !important;
}

.news-excerpt {
  color: var(--muted) !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
  margin-bottom: 24px !important;
  flex: 1 !important;
}

.news-read {
  color: var(--ink) !important;
  text-decoration: none !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  align-self: flex-start !important;
  padding-bottom: 4px !important;
  border-bottom: 2px solid var(--pink) !important;
}

.news-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  min-width: 0 !important;
}

.news-item {
  min-width: 0 !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  padding: 18px !important;
  display: grid !important;
  grid-template-columns: 120px minmax(0, 1fr) !important;
  gap: 18px !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  overflow: hidden !important;
}

.news-item:hover {
  background: rgba(255, 26, 140, 0.08) !important;
  border-color: var(--pink) !important;
}

.news-item-img {
  width: 120px !important;
  height: 120px !important;
  flex-shrink: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  background: var(--olive-soft) !important;
  display: block !important;
}

.news-item-body {
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.news-item-cat {
  font-size: 10px !important;
  color: var(--pink) !important;
  letter-spacing: 0.2em !important;
  font-weight: 800 !important;
  margin-bottom: 8px !important;
}

.news-item-title {
  color: white !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  margin-bottom: 14px !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
}

.news-item-meta {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.55) !important;
  letter-spacing: 0.1em !important;
  font-weight: 700 !important;
  display: flex !important;
  gap: 14px !important;
}

@media (max-width: 991px) {
  .news-section {
    padding: 56px 18px !important;
  }

  .news-grid {
    grid-template-columns: 1fr !important;
  }

  .news-featured-body {
    padding: 24px !important;
  }

  .news-item {
    grid-template-columns: 110px minmax(0, 1fr) !important;
    padding: 16px !important;
  }

  .news-item-img {
    width: 110px !important;
    height: 110px !important;
  }
}

@media (max-width: 600px) {
  .news-section {
    padding: 44px 14px !important;
  }

  .news-section .section-head {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
  }

  .news-featured-img {
    aspect-ratio: 4 / 3 !important;
  }

  .news-featured-body {
    padding: 20px !important;
  }

  .news-featured-title {
    font-size: 24px !important;
  }

  .news-item {
    grid-template-columns: 92px minmax(0, 1fr) !important;
    gap: 14px !important;
    padding: 14px !important;
  }

  .news-item-img {
    width: 92px !important;
    height: 104px !important;
  }

  .news-item-title {
    font-size: 15px !important;
    line-height: 1.3 !important;
  }

  .news-item-meta {
    font-size: 10px !important;
  }
}

/* ===== ANIMATED STORY STATS COUNTER ===== */
.story-section {
  padding: 70px 32px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.story-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.story-head {
  text-align: center;
  margin-bottom: 52px;
}

.story-eyebrow {
  color: var(--pink);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.story-eyebrow::before,
.story-eyebrow::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--pink);
}

.story-title {
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.95;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.story-title em {
  font-style: italic;
  color: var(--pink);
  font-weight: 400;
}

.story-sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--ink);
  background: var(--ink);
  overflow: hidden;
}

.stat {
  background: white;
  padding: 56px 40px;
  position: relative;
  border-right: 1px solid var(--ink);
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.stat:last-child {
  border-right: none;
}

.stats.is-visible .stat {
  transform: translateY(0);
  opacity: 1;
}

.stats.is-visible .stat:nth-child(1) {
  transition-delay: 0.05s;
}

.stats.is-visible .stat:nth-child(2) {
  transition-delay: 0.16s;
}

.stats.is-visible .stat:nth-child(3) {
  transition-delay: 0.27s;
}

.stat.pink-tint {
  background: var(--pink-soft);
}

.stat.olive-tint {
  background: var(--olive-soft);
}

.stat.cream-tint {
  background: var(--cream);
}

.stat-num {
  font-family: "Fraunces", serif;
  font-size: clamp(54px, 7vw, 88px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
  will-change: contents;
}

.stat.pink-tint .stat-num {
  color: var(--pink-deep);
}

.stat.olive-tint .stat-num {
  color: var(--olive);
}

.stat.cream-tint .stat-num {
  color: var(--mustard);
}

.stat-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.stat-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 7px;
  line-height: 1.5;
}

.stat-corner {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: "Fraunces", serif;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.3);
  font-style: italic;
}

@media (max-width: 900px) {
  .story-section {
    padding: 56px 16px;
  }

  .story-head {
    margin-bottom: 36px;
  }

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

  .stat {
    border-right: none;
    border-bottom: 1px solid var(--ink);
    padding: 42px 28px;
  }

  .stat:last-child {
    border-bottom: none;
  }
}

@media (max-width: 520px) {
  .story-section {
    padding: 48px 14px;
  }

  .story-eyebrow {
    font-size: 9px;
    letter-spacing: 0.13em;
  }

  .story-eyebrow::before,
  .story-eyebrow::after {
    width: 18px;
  }

  .story-sub {
    font-size: 14px;
  }

  .stat {
    padding: 34px 22px;
  }

  .stat-num {
    font-size: 50px;
  }
}

.footer-bottom {
  color: #fff !important;
}

.footer-col-title {
  color: #fff !important;
}

.footer-links a {
  color: #fff !important;
}

.newsletter button {
  background: #4c4549 !important;
  color: white !important;
  border: 1px solid #999496 !important;
}

.footer-brand-sub {
  color: #fff !important;
}

<style>.ovy-product-coupon,
.ovy-product-coupon * {
  box-sizing: border-box;
}

.sh-header-container .ovy-product-coupon {
  width: 100%;
  margin: 18px 0;
  font-family: inherit;
}

.ovy-coupon-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #111111 0%, #000000 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.ovy-coupon-card::before,
.ovy-coupon-card::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  transform: translateY(-50%);
  z-index: 2;
}

.ovy-coupon-card::before {
  left: -11px;
}

.ovy-coupon-card::after {
  right: -11px;
}

.ovy-coupon-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.ovy-coupon-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.86;
}

.ovy-coupon-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
}

.ovy-coupon-badge {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ovy-coupon-title {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.ovy-coupon-title span {
  display: inline-block;
  color: #000000;
  background: #ffffff;
  padding: 1px 8px 3px;
  border-radius: 999px;
}

.ovy-coupon-sub {
  margin: 0 0 15px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
}

.ovy-coupon-action {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ovy-coupon-code {
  flex: 1;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px dashed rgba(255, 255, 255, 0.5);
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: all;
}

.ovy-coupon-copy {
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 12px;
  background: #ffffff;
  color: #000000;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.ovy-coupon-copy:hover {
  transform: translateY(-2px);
  background: #f1f1f1;
}

.ovy-coupon-msg {
  display: none;
  margin-top: 9px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.88;
}

.ovy-coupon-msg.is-visible {
  display: block;
}

@media (max-width: 520px) {
  .ovy-product-coupon {
    margin: 14px 0;
  }

  .ovy-coupon-card {
    padding: 15px;
    border-radius: 16px;
  }

  .ovy-coupon-title {
    font-size: 20px;
  }

  .ovy-coupon-sub {
    font-size: 12px;
    margin-bottom: 13px;
  }

  .ovy-coupon-action {
    gap: 8px;
  }

  .ovy-coupon-code {
    min-height: 40px;
    font-size: 14px;
    padding: 9px 10px;
  }

  .ovy-coupon-copy {
    min-height: 40px;
    padding: 0 13px;
    font-size: 11px;
  }
}

</style><script>document.addEventListener("click", function (event) {
    var copyBtn=event.target.closest(".ovy-coupon-copy");
    if ( !copyBtn) return;

    var couponBox=copyBtn.closest(".ovy-product-coupon");
    var codeEl=couponBox.querySelector(".ovy-coupon-code");
    var msgEl=couponBox.querySelector(".ovy-coupon-msg");
    var code=codeEl.textContent.trim();

    function showCopied() {
      copyBtn.textContent="Copied";
      msgEl.classList.add("is-visible");

      setTimeout(function () {
          copyBtn.textContent="Copy";
          msgEl.classList.remove("is-visible");
        }

        , 1800);
    }

    if (navigator.clipboard && window.isSecureContext) {
      navigator.clipboard.writeText(code).then(showCopied).catch(function () {
          fallbackCopy(code, showCopied);
        });
    }

    else {
      fallbackCopy(code, showCopied);
    }
  });

function fallbackCopy(text, callback) {
  var textarea=document.createElement("textarea");
  textarea.value=text;
  textarea.setAttribute("readonly", "");
  textarea.style.position="fixed";
  textarea.style.top="-9999px";
  textarea.style.left="-9999px";
  textarea.style.opacity="0";

  document.body.appendChild(textarea);
  textarea.select();
  textarea.setSelectionRange(0, 99999);

  try {
    document.execCommand("copy");
    callback();
  }

  catch (err) {
    alert("Coupon code: " + text);
  }

  document.body.removeChild(textarea);
}

</script>