/* =============================================
   Monthly Box Showcase
   Editorial magazine layout
   ============================================= */

/* =============================================
   0. RESET & VARIABLES
   ============================================= */
:root {
  --v3-cream: #f3eee9;
  --v3-cream-light: #F5F2EF;
  --v3-brown: #835E38;
  --v3-terracotta: #C78665;
  --v3-pink: #f2c9c7;
  --v3-dark: #1a1a1a;
  --v3-white: #ffffff;
  --v3-text: #333333;
  --v3-text-light: #666666;
  --v3-radius: 16px;
  --v3-radius-sm: 10px;
  --v3-max-w: 1200px;
  --v3-gutter: 2.5rem;
}

/* =============================================
   1. HERO — Text overlaid on video/image
   ============================================= */
.v3-hero {
  width: 100%;
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  overflow: hidden;
  background-color: #1a1a1a;
}

.v3-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.v3-hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Video sits on top of fallback image */
.v3-hero-video + .v3-hero-bg-img {
  z-index: 0;
}
.v3-hero-video {
  z-index: 1;
}

.v3-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.v3-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 680px;
  margin: 0 auto;
  padding: 140px var(--v3-gutter) 3rem;
}

.v3-hero-dateline {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.v3-hero-title {
  font-family: 'Newsreader', serif !important;
  font-size: clamp(3.5rem, 8vw, 7rem) !important;
  font-weight: 400;
  line-height: 0.95 !important;
  color: #ffffff;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.v3-hero-sub {
  font-family: 'Manrope', sans-serif !important;
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1rem;
  letter-spacing: 0.5px;
}

.v3-hero-pills {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.v3-pill {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.55rem 1.5rem;
  border-radius: 80rem;
}

.v3-pill--pink {
  background: var(--v3-pink);
  color: var(--v3-dark);
}

.v3-pill--dark {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.v3-btn-primary {
  display: inline-block;
  padding: 1rem 3rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border: 1px solid #ffffff;
  background-color: #ffffff;
  color: var(--v3-dark);
  border-radius: 80rem;
  cursor: pointer;
  transition: all 0.3s;
}

.v3-btn-primary:hover {
  color: #ffffff;
  background-color: transparent;
}

.v3-btn--sold-out {
  background-color: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #ffffff !important;
  cursor: default;
}

.v3-btn--sold-out:hover {
  background-color: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #ffffff !important;
}

/* Scroll indicator */
.v3-hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.v3-hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: v3ScrollPulse 2s ease-in-out infinite;
}

@keyframes v3ScrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

.v3-box-reveal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v3-box-reveal-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* =============================================
   3. FEATURE STRIP — Pill chips row
   ============================================= */
.v3-features {
  width: 100%;
  padding: 2.5rem var(--v3-gutter);
  background-color: var(--v3-white);
}

.v3-features-inner {
  max-width: var(--v3-max-w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.v3-feature-chip {
  font-family: 'Newsreader', serif !important;
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--v3-text);
  padding: 0.5rem 0.5rem;
}

.v3-feature-sep {
  color: var(--v3-terracotta);
  font-size: 1.2rem;
  line-height: 1;
}

/* =============================================
   4. LETTER — Stationery card
   ============================================= */
/* -- Shared letter styles -- */
.v3-letter-section {
  width: 100%;
  padding: 5rem var(--v3-gutter);
  overflow: hidden;
}

.v3-letter-split {
  max-width: var(--v3-max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.v3-letter-img-col {
  flex: 0 0 420px;
}

.v3-letter-box-img {
  width: 100%;
  height: auto;
  display: block;
}

.v3-letter-text-col {
  flex: 1;
  min-width: 0;
}

.v3-letter-wrapper {
  flex: 1;
  min-width: 0;
}

.v3-letter-card {
  background: var(--v3-white);
  border-radius: 4px;
  padding: 3rem 2.5rem;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 8px 32px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(131, 94, 56, 0.08);
  position: relative;
}

.v3-letter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--v3-terracotta), var(--v3-pink), var(--v3-terracotta));
}

.v3-letter-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.v3-letter-from {
  font-family: 'Newsreader', serif;
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--v3-brown);
}

.v3-letter-date {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--v3-text-light);
}

.v3-letter-card-body p {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--v3-text);
  margin: 0 0 1.25rem;
}

.v3-letter-card-body p:last-child {
  margin-bottom: 0;
}

.v3-letter-card-footer {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.v3-letter-sig {
  font-family: 'Newsreader', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--v3-brown);
}

.v3-letter-eyebrow {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
}

.v3-letter-heading {
  font-family: 'Manrope', sans-serif !important;
  font-size: 2rem !important;
  font-weight: 400;
  line-height: 1.5 !important;
  margin: 0 0 2rem;
}

.v3-letter-body-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0 0 1.25rem;
}

.v3-letter-body-text:last-of-type {
  margin-bottom: 0;
}

.v3-letter-sig-b {
  display: block;
  font-family: 'Newsreader', serif;
  font-size: 1.25rem;
  font-style: italic;
  margin-top: 2rem;
}

/* ── VERSION A: Same stationery card + image left ── */
.v3-letter--a {
  background-color: var(--v3-cream-light);
}

.v3-letter--a .v3-letter-box-img {
  border-radius: 16px;
}

.v3-letter--a .v3-letter-wrapper {
  transform: rotate(-0.5deg);
}

.v3-letter--a .v3-letter-card {
  transform: rotate(0.5deg);
}

/* ── VERSION B: Clean two-col, rounded image, no card ── */
.v3-letter--b {
  background-color: var(--v3-cream-light);
}

.v3-letter--b .v3-letter-box-img {
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.v3-letter--b .v3-letter-eyebrow {
  color: var(--v3-terracotta);
}

.v3-letter--b .v3-letter-heading {
  color: var(--v3-dark);
}

.v3-letter--b .v3-letter-body-text {
  color: var(--v3-text);
}

.v3-letter--b .v3-letter-sig-b {
  color: var(--v3-brown);
}

/* ── VERSION C: Image with value badge + card right ── */
.v3-letter--c {
  background-color: var(--v3-cream-light);
}

.v3-letter--c .v3-letter-img-frame {
  position: relative;
  display: inline-block;
}

.v3-letter--c .v3-letter-box-img {
  border-radius: 16px;
}

.v3-letter--c .v3-letter-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--v3-brown);
  color: var(--v3-white);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.2;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.v3-letter--c .v3-letter-img-badge span:last-child {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ── VERSION D: Overlapping image + card ── */
.v3-letter--d {
  background-color: var(--v3-cream-light);
}

.v3-letter--d .v3-letter-overlap {
  max-width: var(--v3-max-w);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  position: relative;
}

.v3-letter--d .v3-letter-img-col {
  flex: 0 0 45%;
  z-index: 1;
}

.v3-letter--d .v3-letter-box-img {
  border-radius: 16px;
  height: 100%;
  object-fit: cover;
}

.v3-letter--d .v3-letter-card--overlap {
  flex: 1;
  margin-left: -4rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 3rem 3rem 3rem 5rem;
  z-index: 2;
  background: var(--v3-white);
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.v3-letter--d .v3-letter-card--overlap::before {
  display: none;
}

.v3-letter--d .v3-letter-eyebrow {
  color: var(--v3-terracotta);
}

.v3-letter--d .v3-letter-heading {
  color: var(--v3-dark);
}

.v3-letter--d .v3-letter-body-text {
  color: var(--v3-text);
}

/* ── VERSION E: Dark background, light text ── */
.v3-letter--e {
  background-color: var(--v3-dark);
}

.v3-letter--e .v3-letter-box-img {
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.v3-letter--e .v3-letter-eyebrow {
  color: var(--v3-terracotta);
}

.v3-letter--e .v3-letter-heading {
  color: var(--v3-white);
}

.v3-letter--e .v3-letter-body-text {
  color: rgba(255, 255, 255, 0.75);
}

.v3-letter--e .v3-letter-sig-b {
  color: var(--v3-pink);
}

/* =============================================
   5. INSERT CARDS — Overlapping stack
   ============================================= */
.v3-inserts {
  width: 100%;
  background-color: var(--v3-white);
  padding: 5rem var(--v3-gutter);
}

.v3-inserts-inner {
  max-width: var(--v3-max-w);
  margin: 0 auto;
}

.v3-section-label {
  margin-bottom: 2.5rem;
}

.v3-section-label h2 {
  font-family: 'Manrope', sans-serif !important;
  font-size: 32px !important;
  font-weight: 400;
  color: #000;
  margin: 0 0 0.25rem;
  line-height: 1.2;
}

.v3-section-label p {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  color: var(--v3-text-light);
  font-weight: 400;
  margin: 0;
}

.v3-inserts-stack {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 450px;
  gap: 0;
}

.v3-insert-card {
  border-radius: var(--v3-radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease;
}

.v3-insert-card img {
  width: 100%;
  display: block;
}

.v3-insert-card--front {
  width: 36%;
  max-width: 380px;
  transform: rotate(-3deg) translateX(2rem);
  z-index: 2;
  position: relative;
}

.v3-insert-card--back {
  width: 36%;
  max-width: 380px;
  transform: rotate(2deg) translateX(-2rem);
  z-index: 1;
  position: relative;
}

.v3-insert-card--front:hover {
  transform: rotate(-1deg) translateX(2rem) translateY(-8px);
}

.v3-insert-card--back:hover {
  transform: rotate(1deg) translateX(-2rem) translateY(-8px);
}

/* =============================================
   6. PRODUCTS — Horizontal scroll carousel
   ============================================= */
.v3-products {
  width: 100%;
  background-color: var(--v3-cream);
  padding: 5rem 0 5rem var(--v3-gutter);
}

.v3-products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-right: var(--v3-gutter);
  max-width: var(--v3-max-w);
  margin-bottom: 2.5rem;
}

.v3-scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--v3-text-light);
  cursor: pointer;
  transition: color 0.2s;
}

.v3-scroll-hint:hover {
  color: var(--v3-brown);
}

.v3-products-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-right: var(--v3-gutter);
  padding-bottom: 1rem;
  scrollbar-width: none;
  cursor: grab;
}

.v3-products-track:active {
  cursor: grabbing;
}

.v3-products-track::-webkit-scrollbar {
  display: none;
}

.v3-product-card {
  flex: 0 0 320px;
  background: var(--v3-white);
  border-radius: var(--v3-radius);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.v3-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.v3-product-card-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--v3-cream-light);
}

.v3-product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.v3-product-card:hover .v3-product-card-img img {
  transform: scale(1.04);
}

.v3-product-card-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: 'Newsreader', serif;
  font-size: 0.9rem;
  font-weight: 400;
  font-style: italic;
  color: var(--v3-white);
  background: var(--v3-brown);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v3-product-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.v3-product-card-brand {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--v3-brown);
  margin-bottom: 0.35rem;
}

.v3-product-card-name {
  font-family: 'Newsreader', serif !important;
  font-size: 1.35rem !important;
  font-weight: 400;
  color: var(--v3-dark);
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.v3-product-card-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.v3-product-card-badge {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--v3-dark);
  background: var(--v3-pink);
  padding: 0.3rem 0.85rem;
  border-radius: 80rem;
}

.v3-product-card-value {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--v3-text-light);
}

.v3-product-card-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--v3-text);
  margin: 0;
  flex: 1;
}

.v3-product-card-tagline {
  font-family: 'Newsreader', serif;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--v3-brown);
  margin: 1rem 0 0;
}

/* =============================================
   7. SUMMARY — Dark color-blocked section
   ============================================= */
.v3-summary {
  width: 100%;
  background-color: var(--v3-dark);
  padding: 5rem var(--v3-gutter);
}

.v3-summary-inner {
  max-width: var(--v3-max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.v3-summary-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.v3-summary-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--v3-terracotta);
  margin-bottom: 2rem;
}

.v3-summary-value-block,
.v3-summary-price-block {
  margin-bottom: 1.5rem;
}

.v3-summary-big-value {
  display: block;
  font-family: 'Newsreader', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--v3-white);
  letter-spacing: -0.02em;
}

.v3-summary-value-label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.25rem;
}

.v3-summary-big-price {
  display: block;
  font-family: 'Newsreader', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--v3-pink);
  letter-spacing: -0.02em;
}

.v3-summary-price-label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.25rem;
}

.v3-btn-secondary {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1rem 3rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border: 1px solid var(--v3-white);
  background-color: var(--v3-white);
  color: var(--v3-dark);
  border-radius: 80rem;
  cursor: pointer;
  transition: all 0.3s;
}

.v3-btn-secondary:hover {
  background-color: transparent;
  color: var(--v3-white);
}

.v3-summary-right {
  padding-top: 0.5rem;
}

.v3-summary-shipping {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 1.5rem;
}

.v3-summary-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.v3-summary-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.v3-check {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--v3-terracotta);
  margin-top: 2px;
}

/* ── VERSION B2: Product card grid (front-page Recent Editions inspired) ── */
.v3-s2-inner {
  max-width: var(--v3-max-w);
  margin: 0 auto;
}

.v3-s2-header {
  text-align: left;
  margin-bottom: 3rem;
}

.v3-s2-heading {
  font-family: 'Manrope', sans-serif !important;
  font-size: 32px !important;
  font-weight: 400;
  color: var(--v3-white);
  margin: 0 0 0.5rem;
}

.v3-s2-sub {
  font-family: 'Newsreader', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.v3-s2-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.v3-s2-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.v3-s2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.v3-s2-card-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.v3-s2-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v3-s2-card-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--v3-brown);
  color: var(--v3-white);
  font-family: 'Manrope', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.35rem 0.75rem;
  border-radius: 80rem;
}

.v3-s2-card-body {
  padding: 1.25rem;
}

.v3-s2-card-brand {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--v3-terracotta);
  margin-bottom: 0.35rem;
}

.v3-s2-card-name {
  font-family: 'Newsreader', serif !important;
  font-size: 1.15rem !important;
  font-weight: 400;
  color: var(--v3-white);
  margin: 0 0 0.5rem;
}

.v3-s2-card-size {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
}

.v3-s2-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.v3-s2-totals {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.v3-s2-total-val {
  font-family: 'Newsreader', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
}

.v3-s2-total-sep {
  color: var(--v3-terracotta);
  font-size: 1.5rem;
}

.v3-s2-total-price {
  font-family: 'Newsreader', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--v3-pink);
}

/* ── VERSION C2: Two-col with icon circles (front-page journey section inspired) ── */
.v3-s3-inner {
  max-width: var(--v3-max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.v3-s3-heading {
  font-family: 'Manrope', sans-serif !important;
  font-size: clamp(2rem, 4vw, 2.75rem) !important;
  font-weight: 300;
  line-height: 3rem !important;
  color: var(--v3-white);
  margin: 0.75rem 0 1.5rem;
}

.v3-s3-heading em {
  font-style: italic;
  color: var(--v3-pink);
}

.v3-s3-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 2rem;
}

.v3-s3-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.v3-s3-feature {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.v3-s3-icon-circle {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--v3-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
}

.v3-s3-icon-circle .v3-check {
  width: 18px;
  height: 18px;
  color: var(--v3-white);
  margin: 0;
}

/* ── VERSION D2: Centered editorial with product strip ── */
.v3-s4-inner {
  max-width: var(--v3-max-w);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.v3-s4-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--v3-terracotta);
  margin-bottom: 0.75rem;
}

.v3-s4-heading {
  font-family: 'Manrope', sans-serif !important;
  font-size: 32px !important;
  font-weight: 400;
  color: var(--v3-white);
  margin: 0 0 3rem;
}

.v3-s4-strip {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.v3-s4-thumb {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s, border-color 0.3s;
}

.v3-s4-thumb:hover {
  transform: scale(1.1);
  border-color: var(--v3-terracotta);
}

.v3-s4-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v3-s4-pricing {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.v3-s4-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.v3-s4-pill--accent {
  background: rgba(199, 134, 101, 0.15);
  border-color: rgba(199, 134, 101, 0.3);
}

.v3-s4-pill-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.25rem;
}

.v3-s4-pill-val {
  font-family: 'Newsreader', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--v3-white);
}

.v3-s4-pill--accent .v3-s4-pill-val {
  color: var(--v3-pink);
}

.v3-s4-arrow {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.2);
}

.v3-s4-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.v3-s4-feature-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  padding: 0.45rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 80rem;
}

/* ── VERSION E2: Receipt / line-item rows ── */
.v3-s5-inner {
  max-width: 720px;
  margin: 0 auto;
}

.v3-s5-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v3-s5-heading {
  font-family: 'Manrope', sans-serif !important;
  font-size: 32px !important;
  font-weight: 400;
  color: var(--v3-white);
  margin: 0;
}

.v3-s5-count {
  font-family: 'Newsreader', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.4);
}

.v3-s5-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.v3-s5-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.v3-s5-num {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  min-width: 24px;
}

.v3-s5-row-img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.v3-s5-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v3-s5-row-info {
  flex: 1;
  min-width: 0;
}

.v3-s5-row-brand {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--v3-terracotta);
  margin-bottom: 0.15rem;
}

.v3-s5-row-name {
  font-family: 'Newsreader', serif;
  font-size: 1.1rem;
  color: var(--v3-white);
}

.v3-s5-row-size {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

.v3-s5-row-val {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  min-width: 60px;
  text-align: right;
}

.v3-s5-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.v3-s5-total-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
}

.v3-s5-total-val {
  font-family: 'Newsreader', serif;
  font-size: 1.5rem;
  color: var(--v3-white);
}

.v3-s5-total-row--you-pay {
  border-bottom: none;
  padding-bottom: 2rem;
}

.v3-s5-total-row--you-pay .v3-s5-total-val {
  color: var(--v3-pink);
  font-size: 2rem;
}

.v3-s5-cta {
  text-align: center;
}

/* ── VERSION F: Box image + floating card overlay ── */
.v3-s6-inner {
  max-width: var(--v3-max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.v3-s6-img-side {
  flex: 0 0 380px;
}

.v3-s6-img-side img {
  width: 100%;
  height: auto;
  border-radius: var(--v3-radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.v3-s6-card {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--v3-radius);
  padding: 3rem;
}

.v3-s6-title {
  font-family: 'Newsreader', serif !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 400;
  color: var(--v3-white);
  margin: 0.5rem 0 0.25rem;
}

.v3-s6-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 2rem;
}

.v3-s6-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.v3-s6-price-block {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--v3-radius-sm);
  padding: 1.25rem;
  text-align: center;
}

.v3-s6-price-num {
  display: block;
  font-family: 'Newsreader', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--v3-white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.v3-s6-price-num--accent {
  color: var(--v3-pink);
}

.v3-s6-price-lbl {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
}

.v3-s6-card .v3-summary-list {
  margin-bottom: 2rem;
}

.v3-s6-card .v3-btn-secondary {
  width: 100%;
  text-align: center;
}

/* =============================================
   7-1. Receipt: box image + strikethrough value
   ============================================= */
.sum1-wrap {
  max-width: var(--v3-max-w);
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
}
.sum1-col-left { flex: 0 0 300px; }
.sum1-img {
  width: 100%;
  border-radius: var(--v3-radius);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.sum1-month {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--v3-terracotta);
  margin-bottom: .5rem;
}
.sum1-title {
  font-family: 'Newsreader', serif !important;
  font-size: 2.25rem !important;
  font-weight: 400;
  color: #fff;
  margin: 0 0 1.25rem;
}
.sum1-price-line {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
}
.sum1-strike {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,.35);
  text-decoration: line-through;
}
.sum1-actual {
  font-family: 'Newsreader', serif;
  font-size: 2.5rem;
  color: var(--v3-pink);
}
.sum1-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.sum1-list li {
  font-family: 'Manrope', sans-serif;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sum1-list li:last-child { border-bottom: none; }

/* =============================================
   7-2. Full-width banner, inline headline
   ============================================= */
.sum2-wrap {
  max-width: var(--v3-max-w);
  margin: 0 auto;
  text-align: center;
}
.sum2-headline {
  font-family: 'Newsreader', serif !important;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem) !important;
  font-weight: 400;
  color: #fff;
  margin: 0 0 3rem;
  line-height: 1.3;
}
.sum2-headline em {
  color: var(--v3-pink);
  font-style: italic;
}
.sum2-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 2.5rem;
}
.sum2-item {
  font-family: 'Manrope', sans-serif;
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  padding: .6rem 1.25rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 80rem;
}

/* =============================================
   7-3. Circular product thumbnails + total
   ============================================= */
.sum3-wrap {
  max-width: var(--v3-max-w);
  margin: 0 auto;
  text-align: center;
}
.sum3-thumbs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
.sum3-thumb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.sum3-thumb-item img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.1);
  transition: border-color .3s;
}
.sum3-thumb-item:hover img { border-color: var(--v3-terracotta); }
.sum3-thumb-brand {
  font-family: 'Manrope', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.5);
}
.sum3-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.sum3-total {
  display: flex;
  align-items: baseline;
  gap: .75rem;
}
.sum3-val {
  font-family: 'Newsreader', serif;
  font-size: 1.25rem;
  color: rgba(255,255,255,.45);
  text-decoration: line-through;
}
.sum3-for {
  font-family: 'Newsreader', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,.3);
}
.sum3-price {
  font-family: 'Newsreader', serif;
  font-size: 3rem;
  color: var(--v3-pink);
}

/* =============================================
   7-4. Numbered product list with right-aligned values
   ============================================= */
.sum4-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.sum4-heading {
  font-family: 'Newsreader', serif !important;
  font-size: 2rem !important;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  margin: 0 0 2rem;
  text-align: center;
}
.sum4-rows { margin-bottom: 2rem; }
.sum4-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sum4-idx {
  font-family: 'Newsreader', serif;
  font-size: 1.5rem;
  color: var(--v3-terracotta);
  min-width: 28px;
}
.sum4-info {
  flex: 1;
  font-family: 'Manrope', sans-serif;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
}
.sum4-size {
  display: inline-block;
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.3);
  margin-left: .5rem;
}
.sum4-val {
  font-family: 'Manrope', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  min-width: 50px;
  text-align: right;
}
.sum4-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(255,255,255,.1);
}
.sum4-totals { display: flex; flex-direction: column; gap: .25rem; }
.sum4-total-line {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  font-family: 'Manrope', sans-serif;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.sum4-total-line--big {
  font-size: 1.5rem;
  color: var(--v3-pink);
  font-family: 'Newsreader', serif;
}

/* =============================================
   6B. BRAND SPOTLIGHT — Split rows
   ============================================= */
.v3-brands-b {
  padding: 4rem var(--v3-gutter);
  background: #fff;
}
.v3-brands-b-inner {
  max-width: var(--v3-content-max);
  margin: 0 auto;
}
.v3-brands-b-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--v3-brown);
  text-align: center;
  margin-bottom: 3rem;
}
.v3-brands-b-row {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}
.v3-brands-b-row:last-child {
  margin-bottom: 0;
}
.v3-brands-b-row--reverse {
  flex-direction: row-reverse;
}
.v3-brands-b-img-col {
  flex: 0 0 45%;
  border-radius: 10px;
  overflow: hidden;
  align-self: flex-start;
}
.v3-brands-b-img-col img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.v3-brands-b-text-col {
  flex: 1;
}
.v3-brands-b-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--v3-terracotta);
  margin-bottom: 0.5rem;
  display: block;
}
.v3-brands-b-name {
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--v3-brown);
  margin: 0 0 0.5rem;
}
.v3-brands-b-tagline {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--v3-terracotta);
  margin: 0 0 1rem;
}
.v3-brands-b-bio {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--v3-text-light);
  margin: 0 0 1.25rem;
}
.v3-brands-b-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.v3-brands-b-list li {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--v3-cream-light);
  color: var(--v3-brown);
  padding: 0.4rem 1rem;
  border-radius: 20px;
}

/* Responsive — Brand sections */
@media (max-width: 767px) {
  .v3-brands-a-heading,
  .v3-brands-b-heading {
    font-size: 1.6rem;
    line-height: 1.35 !important;
  }
  .v3-brands-a-grid {
    grid-template-columns: 1fr;
  }
  .v3-brands-b-row,
  .v3-brands-b-row--reverse {
    flex-direction: column;
    gap: 1.5rem;
  }
  .v3-brands-b-img-col {
    flex: none;
    width: 100%;
  }
}

/* =============================================
   7-5. Two stacked cards
   ============================================= */
.sum5-wrap {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sum5-card-top {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--v3-radius);
  overflow: hidden;
}
.sum5-card-top-left,
.sum5-card-top-right {
  flex: 1;
  padding: 2.5rem 2rem;
  text-align: center;
}
.sum5-card-top-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,.08);
}
.sum5-label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.35);
  margin-bottom: .5rem;
}
.sum5-big {
  font-family: 'Manrope', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #fff;
}
.sum5-big--accent { color: var(--v3-pink); }
.sum5-card-bottom {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--v3-radius);
  padding: 2.5rem 2rem;
}
.sum5-card-title {
  font-family: 'Newsreader', serif !important;
  font-size: 1.5rem !important;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  margin: 0 0 1.5rem;
}
.sum5-items {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.sum5-items li {
  font-family: 'Manrope', sans-serif;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sum5-items li:last-child { border-bottom: none; }
.sum5-card-bottom .v3-btn-secondary { width: 100%; text-align: center; }

@media (max-width: 479px) {
  .sum5-card-top {
    border-radius: var(--v3-radius-sm);
  }
  .sum5-big {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }
  .sum5-card-top-left,
  .sum5-card-top-right {
    padding: 1.5rem 0.75rem;
  }
  .sum5-card-top-right {
    padding-right: 1.5rem;
  }
}

/* =============================================
   7-6. Magazine pull-quote + details
   ============================================= */
.sum6-wrap {
  max-width: var(--v3-max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.sum6-quote {
  font-family: 'Newsreader', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: #fff;
  margin: 0 0 1.5rem;
  position: relative;
  padding-left: 2rem;
  border-left: 3px solid var(--v3-terracotta);
}
.sum6-attr {
  font-family: 'Manrope', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: var(--v3-terracotta);
  margin: 0;
  padding-left: 2rem;
}
.sum6-price-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--v3-terracotta);
  color: #fff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  justify-content: center;
  margin-bottom: 2rem;
}
.sum6-badge-price {
  font-family: 'Newsreader', serif;
  font-size: 1.75rem;
  font-weight: 400;
}
.sum6-badge-sub {
  font-family: 'Manrope', sans-serif;
  font-size: .55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sum6-item {
  font-family: 'Manrope', sans-serif;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  margin: 0 0 .75rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sum6-item:last-of-type { border-bottom: none; margin-bottom: 2rem; }

/* =============================================
   7-7. Horizontal scroll tiles + price tag
   ============================================= */
.sum7-top {
  max-width: var(--v3-max-w);
  margin: 0 auto 2rem;
  padding: 0 var(--v3-gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sum7 { padding-left: 0; padding-right: 0; }
.sum7-heading {
  font-family: 'Newsreader', serif !important;
  font-size: 2rem !important;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  margin: 0;
}
.sum7-price-tag {
  text-align: right;
}
.sum7-price-val {
  display: block;
  font-family: 'Newsreader', serif;
  font-size: 2rem;
  color: var(--v3-pink);
}
.sum7-price-sub {
  font-family: 'Manrope', sans-serif;
  font-size: .65rem;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sum7-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 var(--v3-gutter) 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.sum7-scroll::-webkit-scrollbar { display: none; }
.sum7-tile {
  flex: 0 0 180px;
  scroll-snap-align: start;
  background: rgba(255,255,255,.05);
  border-radius: var(--v3-radius-sm);
  overflow: hidden;
}
.sum7-tile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.sum7-tile-info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.sum7-tile-brand {
  font-family: 'Manrope', sans-serif;
  font-size: .55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--v3-terracotta);
}
.sum7-tile-name {
  font-family: 'Newsreader', serif;
  font-size: 1rem;
  color: #fff;
}
.sum7-tile-val {
  font-family: 'Manrope', sans-serif;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
}
.sum7-cta-row {
  max-width: var(--v3-max-w);
  margin: 2rem auto 0;
  padding: 0 var(--v3-gutter);
  text-align: center;
}

/* =============================================
   7-8. Centered minimal, big price
   ============================================= */
.sum8-wrap {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.sum8-intro {
  font-family: 'Newsreader', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255,255,255,.55);
  margin: 0 0 1.5rem;
}
.sum8-price-block {
  margin-bottom: 2.5rem;
}
.sum8-from {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,.35);
  margin-bottom: .5rem;
}
.sum8-big-price {
  font-family: 'Newsreader', serif;
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 400;
  color: var(--v3-pink);
  line-height: 1;
  letter-spacing: -.03em;
}

/* =============================================
   7-9. Two-col: product list + box image
   ============================================= */
.sum9-wrap {
  max-width: var(--v3-max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.sum9-heading {
  font-family: 'Newsreader', serif !important;
  font-size: 1.75rem !important;
  font-weight: 400;
  color: #fff;
  margin: 0 0 1.5rem;
}
.sum9-product {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sum9-product-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
}
.sum9-product-brand {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: .55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--v3-terracotta);
}
.sum9-product-name {
  font-family: 'Newsreader', serif;
  font-size: .95rem;
  color: #fff;
}
.sum9-product div { flex: 1; }
.sum9-product-val {
  font-family: 'Manrope', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
}
.sum9-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(255,255,255,.1);
}
.sum9-price-row > span {
  font-family: 'Newsreader', serif;
  font-size: 1.25rem;
  color: var(--v3-pink);
}
.sum9-right img {
  width: 100%;
  border-radius: var(--v3-radius);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}

/* =============================================
   7-10. Pill tags grid + centered CTA
   ============================================= */
.sum10-wrap {
  max-width: var(--v3-max-w);
  margin: 0 auto;
  text-align: center;
}
.sum10-heading {
  font-family: 'Newsreader', serif !important;
  font-size: 2rem !important;
  font-weight: 400;
  color: #fff;
  margin: 0 0 2.5rem;
}
.sum10-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 3rem;
}
.sum10-tag {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--v3-radius);
  padding: 1rem 1.5rem;
}
.sum10-tag-brand {
  font-family: 'Manrope', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--v3-terracotta);
}
.sum10-tag-name {
  font-family: 'Newsreader', serif;
  font-size: 1rem;
  color: #fff;
}
.sum10-tag-val {
  font-family: 'Manrope', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.35);
}
.sum10-total {
  font-family: 'Newsreader', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255,255,255,.5);
  margin: 0 0 1.5rem;
}

/* =============================================
   8. CLOSING NOTE
   ============================================= */
.v3-closing {
  width: 100%;
  background-color: var(--v3-white);
  padding: 5rem var(--v3-gutter);
}

.v3-closing-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.v3-closing-rule {
  width: 60px;
  height: 1px;
  background: var(--v3-terracotta);
  margin: 0 auto 2.5rem;
  opacity: 0.5;
}

.v3-closing-rule:last-child {
  margin: 2.5rem auto 0;
}

.v3-closing-text {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--v3-text);
  margin: 0 0 1.5rem;
}

.v3-closing-sig {
  font-family: 'Newsreader', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--v3-brown);
  margin: 0;
}


/* =============================================
   RESPONSIVE — Tablet (1024px)
   ============================================= */
@media screen and (max-width: 1024px) {
  .v3-hero {
    min-height: 55vh;
    padding-top: 120px;
  }

  .v3-product-card {
    flex: 0 0 280px;
  }

  .v3-summary-inner {
    gap: 3rem;
  }

  .v3-letter-split {
    gap: 2.5rem;
  }

  .v3-letter-img-col {
    flex: 0 0 320px;
  }

  .v3-letter-card {
    padding: 2.5rem 2rem;
  }

  .v3-letter--d .v3-letter-card--overlap {
    margin-left: -3rem;
    padding-left: 4rem;
  }

  .v3-insert-card--front,
  .v3-insert-card--back {
    width: 50%;
  }
}

/* =============================================
   RESPONSIVE — Mobile (767px)
   ============================================= */
@media screen and (max-width: 767px) {
  :root {
    --v3-gutter: 1.5rem;
  }

  /* Hero */
  .v3-hero {
    min-height: 50vh;
    padding-top: 100px;
    padding-bottom: 4rem;
  }

  .v3-hero-title {
    font-size: 3rem !important;
  }

  .v3-btn-primary,
  .v3-btn-secondary {
    width: 100%;
    display: block;
  }

  .v3-hero-scroll {
    display: none;
  }

  /* Box reveal */
  .v3-box-reveal-frame {
    border-radius: var(--v3-radius-sm);
    aspect-ratio: 3 / 4;
  }

  /* Features */
  .v3-features-inner {
    gap: 0.6rem;
  }

  .v3-feature-chip {
    font-size: 0.65rem;
    padding: 0.4rem 0.9rem;
  }

  /* Letter */
  .v3-letter-section {
    padding: 3rem var(--v3-gutter);
  }

  .v3-letter-split {
    flex-direction: column;
    gap: 2rem;
  }

  .v3-letter-img-col {
    flex: none;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .v3-letter-wrapper {
    transform: none;
  }

  .v3-letter-card {
    transform: none;
    padding: 2rem 1.5rem;
  }

  .v3-letter-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .v3-letter-heading {
    font-size: 2rem !important;
  }

  .v3-letter--d .v3-letter-overlap {
    flex-direction: column;
  }

  .v3-letter--d .v3-letter-img-col {
    flex: none;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .v3-letter--d .v3-letter-card--overlap {
    margin-left: 0;
    margin-top: -2rem;
    padding: 2.5rem 1.5rem;
  }

  /* Inserts — hide on mobile */
  .v3-inserts {
    display: none;
  }

  .v3-inserts-stack {
    flex-direction: column;
    min-height: auto;
    gap: 1.25rem;
  }

  .v3-insert-card--front,
  .v3-insert-card--back {
    width: 100%;
    max-width: none;
    transform: none;
  }

  .v3-insert-card--front:hover,
  .v3-insert-card--back:hover {
    transform: none;
  }

  /* Products */
  .v3-products {
    padding: 3rem 0 3rem var(--v3-gutter);
  }

  .v3-products-header {
    padding-right: var(--v3-gutter);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .v3-product-card {
    flex: 0 0 260px;
  }

  .v3-section-label h2 {
    font-size: 2rem !important;
  }

  /* Summary */
  .v3-summary {
    padding: 3.5rem var(--v3-gutter);
  }

  .v3-summary-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .v3-summary-left {
    align-items: center;
    text-align: center;
  }

  /* Closing */
  .v3-closing {
    padding: 3rem var(--v3-gutter);
  }
}

@media screen and (max-width: 479px) {
  .v3-hero-title {
    font-size: 2.5rem !important;
  }

  .v3-hero-pills {
    flex-direction: column;
    align-items: center;
  }
}
