/* ==========================================================================
   HOMIZENA™ FRONT CLOSURE BRA - HIGH CONVERTING SALES FUNNEL STYLES
   Designed specifically for USA Women (Direct-Response E-Commerce Architecture)
   ========================================================================== */

:root {
  --primary: #c0526f;
  --primary-hover: #a8405d;
  --primary-dark: #872e48;
  --primary-glow: rgba(192, 82, 111, 0.35);
  --primary-light: #fff3f6;
  --accent-pink: #fde8ee;
  
  --secondary: #2d3748;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --green: #059669;
  --green-bg: #ecfdf5;
  --green-border: #a7f3d0;
  
  --gold: #f59e0b;
  --gold-bg: #fffbeb;
  
  --border: #f1d8e0;
  --border-light: #fbebf0;
  --bg-page: #fcf9fa;
  --bg-card: #ffffff;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 18px rgba(192, 82, 111, 0.08);
  --shadow-lg: 0 12px 32px rgba(192, 82, 111, 0.12);
  --shadow-xl: 0 20px 45px rgba(192, 82, 111, 0.16);
  
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --container-width: 1140px;
}

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

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

body {
  font-family: var(--font);
  color: var(--text-dark);
  background-color: var(--bg-page);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* 1. TOP URGENCY TICKER */
.top-ticker-bar {
  background: #1e1e2f;
  color: #fff;
  padding: 10px 0;
  font-size: 13.5px;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 100;
}

.ticker-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.timer-tag {
  background: rgba(255, 255, 255, 0.15);
  padding: 3px 10px;
  border-radius: 99px;
  font-family: monospace;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #fde047;
}

/* 2. HEADER */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 900;
  color: #1e1e2e;
  letter-spacing: -0.5px;
}

.brand-logo .dot {
  color: var(--primary);
}

.logo-tag {
  background: var(--primary-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 99px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.header-trust-bar {
  display: flex;
  align-items: center;
  gap: 24px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #475569;
}

.trust-badge-item svg {
  color: var(--green);
  flex-shrink: 0;
}

.header-cta-btn {
  background: var(--primary);
  color: #fff;
  font-size: 13.5px;
  font-weight: 800;
  padding: 9px 20px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px var(--primary-glow);
  transition: all 0.2s ease;
}

.header-cta-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

/* 3. HERO BUY BOX */
.hero-funnel-section {
  padding: 32px 0 50px;
  background: linear-gradient(180deg, #fff2f5 0%, #ffffff 100%);
}

.funnel-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.gallery-sticky-wrap {
  position: sticky;
  top: 90px;
}

.main-image-container {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease, transform 0.3s ease;
}

.image-corner-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #e11d48, #be123c);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 99px;
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.4);
  letter-spacing: 0.4px;
  z-index: 2;
}

.usps-shipping-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border: 1px solid #e2e8f0;
  border-radius: 99px;
  padding: 4px 12px;
  font-size: 11.5px;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  z-index: 2;
}

.thumbnails-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.thumb-item {
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #fff;
  cursor: pointer;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-item:hover {
  transform: translateY(-2px);
  border-color: #fbcfe8;
}

.thumb-item.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.gallery-guarantee-note {
  margin-top: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #334155;
}

.gallery-guarantee-note .seal-icon {
  font-size: 26px;
  line-height: 1;
}

.funnel-buybox {
  display: flex;
  flex-direction: column;
}

.social-proof-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.star-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-bg);
  border: 1px solid #fde68a;
  border-radius: 99px;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 800;
  color: #92400e;
}

.star-rating-pill .stars {
  color: var(--gold);
  letter-spacing: -1px;
}

.us-flag-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f1f5f9;
  border-radius: 99px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
}

.product-headline {
  font-size: 32px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.6px;
  margin-bottom: 10px;
}

.product-subheadline {
  font-size: 16px;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 16px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 22px;
}

.benefit-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
}

.benefit-pill .icon {
  font-size: 16px;
  flex-shrink: 0;
}

/* 4. MULTI-PACK BUNDLE SELECTOR */
.bundle-selector-wrap {
  margin-bottom: 22px;
}

.bundle-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.bundle-title {
  font-size: 14.5px;
  font-weight: 800;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bundle-subnote {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}

.bundle-cards-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bundle-card {
  position: relative;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bundle-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.bundle-card.selected {
  border-color: var(--primary);
  background: #fffbfa;
  box-shadow: 0 4px 18px rgba(192, 82, 111, 0.14);
}

.bundle-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bundle-radio {
  width: 20px;
  height: 20px;
  border: 2px solid #94a3b8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.bundle-card.selected .bundle-radio {
  border-color: var(--primary);
}

.bundle-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s;
}

.bundle-card.selected .bundle-radio::after {
  opacity: 1;
  transform: scale(1);
}

.bundle-info h4 {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.bundle-info .bundle-desc {
  font-size: 12.5px;
  color: #64748b;
  font-weight: 500;
}

.bundle-badge {
  font-size: 10.5px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.badge-green {
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid var(--green-border);
}

.badge-rose {
  background: #ffe4e6;
  color: #be123c;
  border: 1px solid #fecdd3;
}

.bundle-pricing {
  text-align: right;
  flex-shrink: 0;
}

.bundle-price-main {
  font-size: 20px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
}

.bundle-price-original {
  font-size: 13px;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 600;
}

.bundle-unit-price {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--green);
  margin-top: 2px;
}

.ribbon-tag {
  position: absolute;
  top: -9px;
  right: 18px;
  background: var(--primary);
  color: #fff;
  font-size: 10.5px;
  font-weight: 900;
  padding: 2px 10px;
  border-radius: 99px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px var(--primary-glow);
}

.ribbon-tag.best-value {
  background: linear-gradient(135deg, #d97706, #b45309);
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.4);
}

/* 5. OPTIONS PANEL */
.options-panel {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
}

.opt-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.opt-label {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
}

.opt-label strong {
  color: var(--primary);
}

.size-modal-trigger {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: underline;
  cursor: pointer;
}

.color-swatches-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.color-swatch-item {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.color-swatch-item:hover {
  transform: scale(1.1);
}

.color-swatch-item.active {
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--primary);
  transform: scale(1.08);
}

.size-buttons-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.size-btn {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 7px 2px;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s ease;
}

.size-btn:hover {
  border-color: #cbd5e1;
  background: #fff;
}

.size-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 3px 10px var(--primary-glow);
}

/* Order Bump Add-on */
.order-bump-card {
  background: #fffdfa;
  border: 1.5px dashed #f59e0b;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.order-bump-card input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
  cursor: pointer;
}

.order-bump-text h5 {
  font-size: 13.5px;
  font-weight: 800;
  color: #92400e;
  margin-bottom: 2px;
}

.order-bump-text p {
  font-size: 12px;
  color: #78350f;
  line-height: 1.4;
}

/* 6. MAIN CTA & TRUST */
.main-cta-button {
  width: 100%;
  background: linear-gradient(135deg, #c0526f 0%, #a8405d 100%);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px var(--primary-glow);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.main-cta-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  animation: shineCta 3.5s infinite;
}

@keyframes shineCta {
  0% { left: -100%; }
  25% { left: 150%; }
  100% { left: 150%; }
}

.main-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px var(--primary-glow);
}

.cta-main-text {
  font-size: 18.5px;
  font-weight: 900;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-sub-text {
  font-size: 12.5px;
  font-weight: 600;
  color: #ffe4e9;
  margin-top: 3px;
}

.safe-checkout-badge-wrap {
  text-align: center;
  margin-top: 14px;
}

.safe-checkout-badge-wrap img {
  max-width: 390px;
  width: 100%;
  margin: 0 auto;
}

.trust-micro-points {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  flex-wrap: wrap;
}

/* 7. AS SEEN ON STRIP */
.as-seen-on-section {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 22px 0;
  text-align: center;
}

.seen-label {
  font-size: 11.5px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.seen-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.7;
  font-weight: 800;
  font-size: 15.5px;
  letter-spacing: 0.5px;
  color: #475569;
}

/* 8. PROBLEM VS SOLUTION MATRIX */
.ps-matrix-section {
  padding: 60px 0;
  background: #fff;
}

.section-title-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-eyebrow {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.section-heading {
  font-size: 32px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.section-subheading {
  font-size: 16px;
  color: #64748b;
}

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

.comp-box {
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
}

.comp-box.bad {
  background: #fef2f2;
  border: 2px solid #fee2e2;
}

.comp-box.good {
  background: #f0fdf4;
  border: 2px solid #bbf7d0;
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.08);
}

.comp-box-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.comp-box-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
}

.comp-box.bad .comp-box-icon {
  background: #ef4444;
  color: #fff;
}

.comp-box.good .comp-box-icon {
  background: #10b981;
  color: #fff;
}

.comp-box-header h3 {
  font-size: 20px;
  font-weight: 900;
}

.comp-box.bad h3 { color: #991b1b; }
.comp-box.good h3 { color: #166534; }

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.5;
}

.comp-list.bad li { color: #7f1d1d; }
.comp-list.good li { color: #14532d; }

.comp-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

/* 9. AUTHENTIC FEATURE DEEP DIVES */
.feature-deepdives-section {
  padding: 60px 0;
  background: var(--bg-page);
}

.feature-deep-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 40px;
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.feature-deep-card.reversed {
  direction: rtl;
}

.feature-deep-card.reversed > * {
  direction: ltr;
}

.feature-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  aspect-ratio: 1/1;
  background: #f8fafc;
}

.feature-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-content-box {
  display: flex;
  flex-direction: column;
}

.feature-tag-pill {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 99px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  width: fit-content;
}

.feature-content-box h3 {
  font-size: 26px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 14px;
}

.feature-content-box p {
  font-size: 15.5px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 18px;
}

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

.feature-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
}

.feature-checklist li svg {
  color: var(--green);
  flex-shrink: 0;
}

/* 10. DOCTOR & SPECIALIST ENDORSEMENT */
.endorsement-section {
  padding: 50px 0;
  background: #ffffff;
}

.endorsement-card {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 2px solid #fed7aa;
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.specialist-badge-icon {
  width: 76px;
  height: 76px;
  background: #ea580c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.3);
}

.endorsement-text h4 {
  font-size: 13px;
  font-weight: 900;
  color: #c2410c;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.endorsement-quote {
  font-size: 16.5px;
  font-weight: 700;
  color: #7c2d12;
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 10px;
}

.endorsement-author {
  font-size: 13.5px;
  font-weight: 600;
  color: #9a3412;
}

/* 11. SIZING GUIDE */
.sizing-section {
  padding: 60px 0;
  background: var(--bg-page);
}

.sizing-card-wrapper {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  max-width: 850px;
  margin: 0 auto;
}

.sizing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.sizing-table th {
  background: var(--primary-light);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid var(--border);
}

.sizing-table td {
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid #f1f5f9;
}

.sizing-table tr:hover td {
  background: #fff8fa;
}

.measure-tips-box {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #475569;
}

/* 12. VERIFIED REVIEWS */
.reviews-section {
  padding: 60px 0;
  background: #ffffff;
}

.reviews-summary-card {
  background: #fff8fb;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 30px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 36px;
}

.score-display {
  text-align: center;
}

.score-num {
  font-size: 54px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.score-stars {
  color: var(--gold);
  font-size: 20px;
  margin: 6px 0;
}

.score-caption {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #475569;
}

.rating-progress-track {
  flex: 1;
  height: 10px;
  background: #e2e8f0;
  border-radius: 99px;
  overflow: hidden;
}

.rating-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #f43f5e, var(--primary));
  border-radius: 99px;
}

.reviews-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-top-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.reviewer-name {
  font-size: 14.5px;
  font-weight: 800;
  color: #0f172a;
}

.reviewer-tag {
  font-size: 11.5px;
  color: var(--green);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-stars-row {
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 8px;
}

.review-headline {
  font-size: 15px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 6px;
  line-height: 1.4;
}

.review-body {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 14px;
}

.review-location-time {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 600;
}

/* 13. 60-DAY GUARANTEE */
.guarantee-seal-section {
  padding: 50px 0;
  background: var(--bg-page);
}

.guarantee-box {
  background: #ffffff;
  border: 2px solid #fde047;
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 850px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1);
}

.gold-seal-badge {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-align: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.35);
}

.gold-seal-badge .days {
  font-size: 24px;
  line-height: 1;
}

.gold-seal-badge .seal-text {
  font-size: 9px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.guarantee-content h3 {
  font-size: 22px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 8px;
}

.guarantee-content p {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
}

/* 14. FAQ ACCORDION */
.faq-section {
  padding: 60px 0;
  background: #ffffff;
}

.faq-list-wrap {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-q {
  width: 100%;
  background: #fff;
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-size: 15.5px;
  font-weight: 800;
  color: #1e293b;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.15s;
}

.faq-q:hover {
  background: var(--primary-light);
}

.faq-q .faq-icon {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  transition: transform 0.25s ease;
}

.faq-q.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 20px 20px;
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.6;
}

.faq-a.open {
  display: block;
}

/* 15. FINAL CTA */
.final-cta-banner {
  background: linear-gradient(135deg, #c0526f 0%, #872e48 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.final-cta-wrap {
  max-width: 650px;
  margin: 0 auto;
}

.final-cta-wrap h2 {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 12px;
}

.final-cta-wrap p {
  font-size: 16px;
  color: #fce7f3;
  margin-bottom: 24px;
}

/* 16. FOOTER */
.site-footer {
  background: #111827;
  color: #94a3b8;
  padding: 36px 0;
  font-size: 13px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

/* 17. CONVERSION BOOSTERS */
.recent-buyer-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  max-width: 320px;
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.recent-buyer-toast.show {
  transform: translateY(0);
}

.toast-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.toast-info h6 {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
}

.toast-info p {
  font-size: 11.5px;
  color: #64748b;
  margin-bottom: 2px;
}

.toast-time {
  font-size: 10.5px;
  color: var(--green);
  font-weight: 700;
}

.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  z-index: 999;
}

.sticky-mobile-left {
  display: flex;
  flex-direction: column;
}

.sticky-mobile-price {
  font-size: 18px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
}

.sticky-mobile-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
}

.sticky-mobile-btn {
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: 99px;
  border: none;
  box-shadow: 0 4px 12px var(--primary-glow);
}

/* 18. MODALS */
.funnel-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.funnel-modal-overlay.open {
  display: flex;
}

.modal-content-box {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 32px;
  max-width: 580px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

/* 19. RESPONSIVE */
@media (max-width: 900px) {
  .funnel-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .gallery-sticky-wrap {
    position: static;
  }
  
  .product-headline {
    font-size: 26px;
  }
  
  .feature-deep-card {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }
  
  .feature-deep-card.reversed {
    direction: ltr;
  }
  
  .reviews-summary-card {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  
  .reviews-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  
  .endorsement-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  
  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  
  .header-trust-bar {
    display: none;
  }
  
  .sticky-mobile-bar.active {
    display: flex;
  }
  
  .recent-buyer-toast {
    display: none;
  }
}

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .size-buttons-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .thumbnails-strip {
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
  }
}
