/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0E0B0A;
  --bg-alt: #141110;
  --bg-card: #1A1614;
  --rose: #C9947A;
  --rose-light: #D9AA94;
  --rose-pale: #E8C4B2;
  --blush: #FBE8E0;
  --cream: #FFF9F5;
  --text: #F5EDE6;
  --text-muted: #A89890;
  --charcoal: #1A1614;
  --border: rgba(201, 148, 122, 0.18);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;

  --section-pad: clamp(5rem, 10vw, 9rem);
  --container: 1200px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  background: rgba(14, 11, 10, 0.7);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  letter-spacing: -0.01em;
}
.logo-glow { color: var(--rose); }
.nav-links {
  display: flex;
  list-style: none;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--rose); }
.nav-tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.nav-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
  flex-shrink: 0;
}
.nav-cart:hover { color: var(--rose); }
.nav-cart svg { width: 18px; height: 18px; }
.nav-wishlist {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--text-muted);
  transition: color 0.2s;
  flex-shrink: 0;
}
.nav-wishlist:hover { color: var(--rose); }
.nav-wishlist svg { width: 18px; height: 18px; }
.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  background: var(--rose);
  color: var(--bg);
  font-size: 0.6rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.2s;
}
.cart-badge.visible { opacity: 1; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px clamp(1.5rem, 5vw, 5rem) 6rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}
.hero-glow-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #C9947A 0%, transparent 70%);
  top: -200px; right: -100px;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #E8C4B2 0%, transparent 70%);
  bottom: 0; left: 20%;
  opacity: 0.2;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-content {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 2rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--rose);
  font-weight: 300;
}
.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.8;
}
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}
.visual-ring-1 {
  width: 420px; height: 420px;
  border-color: rgba(201, 148, 122, 0.2);
  animation: spin 40s linear infinite;
}
.visual-ring-2 {
  width: 300px; height: 300px;
  border-color: rgba(201, 148, 122, 0.3);
  animation: spin 25s linear infinite reverse;
}
.visual-ring-3 {
  width: 180px; height: 180px;
  border-color: rgba(201, 148, 122, 0.5);
  animation: spin 15s linear infinite;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.visual-center {
  position: relative;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--rose) 0%, var(--rose-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(201, 148, 122, 0.4), 0 0 120px rgba(201, 148, 122, 0.15);
}
.brand-mark {
  display: flex;
  gap: 2px;
}
.bm-m, .bm-g {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--bg);
  line-height: 1;
}
.hero-scroll-cue {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ===== SECTIONS ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
  font-weight: 500;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
}

/* ===== CATEGORIES ===== */
.categories {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 5rem);
  background: var(--bg-alt);
}
.category-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5px;
}
.category-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid var(--border);
}
.category-card:nth-child(1) { grid-column: 1 / 3; }
.cat-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}
.cat-bg-1 { background: linear-gradient(135deg, #1A0E0A 0%, #2D1810 50%, #1A0E0A 100%); }
.cat-bg-2 { background: linear-gradient(135deg, #0E1410 0%, #1A2A20 50%, #0E1410 100%); }
.cat-bg-3 { background: linear-gradient(135deg, #140D1A 0%, #241830 50%, #140D1A 100%); }
.cat-bg-4 { background: linear-gradient(135deg, #1A1008 0%, #2A1A10 50%, #1A1008 100%); }
.cat-bg-5 { background: linear-gradient(135deg, #0E0D14 0%, #1A1830 50%, #0E0D14 100%); }
.cat-bg::after {
  content: '';
  position: absolute;
  bottom: -2px; left: -2px; right: -2px; height: 60%;
  background: linear-gradient(to top, rgba(14, 11, 10, 0.85), transparent);
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201, 148, 122, 0.04);
  z-index: 1;
  transition: background 0.4s;
}
.category-card:hover::before { background: rgba(201, 148, 122, 0.1); }
.category-card:hover .cat-bg { transform: scale(1.04); }
.cat-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.cat-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(201, 148, 122, 0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.cat-name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.cat-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}

/* ===== BEST SELLERS ===== */
.bestsellers {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 5rem);
}
.products-row {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.product-card {
  border: 1px solid var(--border);
  background: var(--bg-alt);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.product-card:hover { border-color: var(--rose); transform: translateY(-4px); }
.product-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.product-img-1 { background: linear-gradient(160deg, #2D1810 0%, #1A0E0A 100%); }
.product-img-2 { background: linear-gradient(160deg, #1A0E0A 0%, #2D1810 100%); }
.product-img-3 { background: linear-gradient(160deg, #0E1410 0%, #1A2A20 100%); }
.product-img-4 { background: linear-gradient(160deg, #140D1A 0%, #241830 100%); }
.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(201, 148, 122, 0.15), transparent 60%);
}
.product-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--rose);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  z-index: 2;
}
.btn-save-wishlist {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(20, 13, 26, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--cream);
  cursor: pointer;
  z-index: 3;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.btn-save-wishlist:hover {
  color: var(--rose);
  background: rgba(20, 13, 26, 0.75);
  border-color: rgba(201, 148, 122, 0.4);
}
.btn-save-wishlist.is-saved {
  color: var(--rose);
  border-color: rgba(201, 148, 122, 0.6);
}
.product-img-wrap .btn-save-wishlist.is-saved svg {
  fill: var(--rose);
}
.btn-save-wishlist svg {
  width: 18px;
  height: 18px;
}
.product-info { padding: 1.25rem 1.25rem 1.5rem; }
.product-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.product-category {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.6rem;
}
.product-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.product-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.price-current {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--rose);
}
.price-compare {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.product-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201, 148, 122, 0.3);
}

/* ===== SHOP PAGE ===== */
.shop-page {
  padding: 120px clamp(1.5rem, 5vw, 5rem) var(--section-pad);
  min-height: 100vh;
}
.shop-header {
  max-width: var(--container);
  margin: 0 auto 3rem;
  text-align: center;
}
.shop-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.shop-filters {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--rose);
  color: var(--rose);
  background: rgba(201, 148, 122, 0.1);
}
.shop-collection-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
}
.shop-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem;
  color: var(--text-muted);
}

/* ===== COLLECTION PAGE ===== */
.collection-page {
  padding-top: 68px;
}
.collection-hero {
  padding: 5rem clamp(1.5rem, 5vw, 5rem) 4rem;
  text-align: center;
}
.collection-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.collection-breadcrumb {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.collection-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.collection-breadcrumb a:hover { color: var(--rose); }
.collection-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.collection-tagline {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}
.collection-count {
  font-size: 0.8rem;
  color: var(--rose);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.collection-products {
  padding: 3rem clamp(1.5rem, 5vw, 5rem) var(--section-pad);
}
.collection-back {
  max-width: var(--container);
  margin: 3rem auto 0;
  text-align: center;
}
.back-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.back-link:hover { color: var(--rose); }
.btn-add-cart {
  display: block;
  width: 100%;
  background: var(--rose);
  color: var(--bg);
  border: none;
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 0.75rem;
  transition: background 0.2s;
}
.btn-add-cart:hover { background: var(--rose-light); }

/* Per-collection hero gradients */
.gradient-hair-growth { background: linear-gradient(135deg, #1A0E0A 0%, #2D1810 50%, #1A0E0A 100%); }
.gradient-wig-essentials { background: linear-gradient(135deg, #0E1410 0%, #1A2A20 50%, #0E1410 100%); }
.gradient-satin { background: linear-gradient(135deg, #140D1A 0%, #241830 50%, #140D1A 100%); }
.gradient-beauty { background: linear-gradient(135deg, #1A1008 0%, #2A1A10 50%, #1A1008 100%); }
.gradient-self-care { background: linear-gradient(135deg, #1A1510 0%, #2A2018 50%, #1A1510 100%); }

/* ===== MANIFESTO ===== */
.manifesto {
  position: relative;
  padding: var(--section-pad) clamp(1.5rem, 5vw, 5rem);
  overflow: hidden;
}
.manifesto-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.manifesto-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 148, 122, 0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
}
.manifesto-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 4rem;
}
.manifesto-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
}
.vert-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
}
.vert-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  min-height: 100px;
}
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin: 1rem 0 2rem;
}
.manifesto-body {
  max-width: 600px;
}
.manifesto-body p {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.manifesto-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.pillar { display: flex; gap: 1rem; }
.pillar-icon {
  color: var(--rose);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.pillar-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== TRUST ===== */
.trust {
  padding: 4rem clamp(1.5rem, 5vw, 5rem);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.trust-stats {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}
.trust-badges {
  display: flex;
  gap: clamp(2rem, 4vw, 4rem);
  flex-wrap: wrap;
  justify-content: center;
}
.badge { text-align: center; }
.badge-icon {
  font-size: 1.4rem;
  color: var(--rose);
  margin-bottom: 0.5rem;
}
.badge-text {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 5rem);
}
.reviews-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5px;
}
.review-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-card-large { grid-column: span 2; }
.review-card-wide { grid-column: span 2; }
.review-stars { color: var(--rose); font-size: 0.85rem; letter-spacing: 2px; }
.review-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.5rem; }
.author-initial {
  width: 36px; height: 36px;
  background: var(--rose);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
}
.author-meta {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.pdp-testimonials .reviews-grid {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
}
.pdp-testimonials .review-card-large,
.pdp-testimonials .review-card-wide {
  grid-column: span 1;
}
@media (max-width: 900px) {
  .pdp-testimonials .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CLOSING ===== */
.closing {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201, 148, 122, 0.06) 0%, transparent 70%);
}
.closing-inner { position: relative; max-width: 700px; margin: 0 auto; }
.closing-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.deco-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--rose);
  opacity: 0.4;
}
.deco-diamond { color: var(--rose); font-size: 0.8rem; opacity: 0.6; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.closing-sub {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 0.8rem;
}
.closing-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.4rem);
}
.tag-glow { color: var(--rose); }
.tag-sep { color: var(--text-muted); }
.tag-conf { color: var(--cream); }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 4rem clamp(1.5rem, 5vw, 5rem) 2.5rem;
  background: var(--bg-alt);
}
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.footer-col-title {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--rose); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-copy, .footer-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--rose);
  color: var(--bg);
  text-align: center;
  padding: 0.55rem clamp(1rem, 4vw, 2rem);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.promo-banner.visible { transform: translateY(0); }
.promo-banner span { font-weight: 500; }
.promo-banner button {
  background: none;
  border: none;
  color: var(--bg);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.promo-banner button:hover { opacity: 1; }

/* ===== WELCOME MODAL ===== */
.welcome-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.welcome-overlay.visible {
  opacity: 1;
  pointer-events: all;
}
.welcome-card {
  background: var(--bg-card);
  border: 1px solid var(--rose);
  max-width: 480px;
  width: 100%;
  padding: 3rem 2.5rem 2.5rem;
  position: relative;
  text-align: center;
  box-shadow: 0 0 60px rgba(201, 148, 122, 0.2);
}
.welcome-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  padding: 0.25rem;
  transition: color 0.2s;
}
.welcome-close:hover { color: var(--rose); }
.welcome-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
  font-weight: 500;
}
.welcome-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.welcome-headline em { color: var(--rose); font-style: italic; }
.welcome-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.welcome-form { display: flex; flex-direction: column; gap: 0.75rem; }
.welcome-input {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
  text-align: center;
  outline: none;
  transition: border-color 0.2s;
}
.welcome-input:focus { border-color: var(--rose); }
.welcome-input::placeholder { color: var(--text-muted); }
.btn-claim {
  background: var(--rose);
  color: var(--bg);
  border: none;
  padding: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s;
}
.btn-claim:hover { background: var(--rose-light); }
.welcome-success {
  display: none;
  padding: 1rem;
  border: 1px solid var(--rose);
  background: rgba(201, 148, 122, 0.08);
}
.welcome-success h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--rose);
  margin-bottom: 0.5rem;
}
.welcome-success p { font-size: 0.85rem; color: var(--text-muted); }
.welcome-success code {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

/* ===== BUNDLES PAGE ===== */
.bundles-page {
  padding: 120px clamp(1.5rem, 5vw, 5rem) var(--section-pad);
  min-height: 100vh;
}
.bundles-header {
  max-width: var(--container);
  margin: 0 auto 3rem;
  text-align: center;
}
.bundles-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.bundle-card {
  border: 1px solid var(--border);
  background: var(--bg-alt);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.bundle-card:hover { border-color: var(--rose); transform: translateY(-4px); }
.bundle-img {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.bundle-img-1 { background: linear-gradient(160deg, #2D1810 0%, #1A0E0A 60%, #3D2015 100%); }
.bundle-img-2 { background: linear-gradient(160deg, #0E1410 0%, #1A2A20 60%, #152518 100%); }
.bundle-img-3 { background: linear-gradient(160deg, #1A1008 0%, #2A1A10 60%, #251508 100%); }
.bundle-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(201, 148, 122, 0.2), transparent 60%);
}
.bundle-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--rose);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  z-index: 2;
}
.bundle-info { padding: 1.5rem 1.5rem 1.75rem; }
.bundle-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.bundle-items {
  list-style: none;
  margin-bottom: 1rem;
}
.bundle-items li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.bundle-items li::before {
  content: '✓';
  color: var(--rose);
  font-size: 0.7rem;
  flex-shrink: 0;
}
.bundle-pricing { margin-bottom: 1.25rem; }
.bundle-price-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}
.bundle-original {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.bundle-current {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--rose);
}
.bundle-savings {
  font-size: 0.78rem;
  color: #7FC8A0;
  font-weight: 500;
}
.btn-add-bundle {
  display: block;
  background: var(--rose);
  color: var(--bg);
  text-align: center;
  padding: 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-add-bundle:hover { background: var(--rose-light); }

/* ===== UPSELL SECTION ===== */
.upsell-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.upsell-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.upsell-scroll::-webkit-scrollbar { display: none; }

/* ===== CART RECOVERY ===== */
.cart-recovery {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 250;
  background: var(--bg-card);
  border: 1px solid var(--rose);
  max-width: 340px;
  width: 100%;
  padding: 1.5rem;
  box-shadow: 0 0 40px rgba(201, 148, 122, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transform: translateX(calc(100% + 2rem));
  transition: transform 0.4s ease;
}
.cart-recovery.visible { transform: translateX(0); }
.cart-recovery h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
}
.cart-recovery p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.cart-recovery-form { display: flex; flex-direction: column; gap: 0.6rem; }
.cart-recovery-input {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.7rem 0.9rem;
  font-size: 0.85rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}
.cart-recovery-input:focus { border-color: var(--rose); }
.cart-recovery-input::placeholder { color: var(--text-muted); }
.btn-save-cart {
  background: var(--rose);
  color: var(--bg);
  border: none;
  padding: 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s;
}
.btn-save-cart:hover { background: var(--rose-light); }
.cart-recovery-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: color 0.2s;
}
.cart-recovery-close:hover { color: var(--rose); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-headline { font-size: clamp(2.8rem, 10vw, 4rem); }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .category-card:nth-child(1) { grid-column: 1 / -1; }
  .products-row { grid-template-columns: 1fr 1fr; }
  .manifesto-inner { grid-template-columns: 1fr; }
  .manifesto-vertical { display: none; }
  .manifesto-pillars { grid-template-columns: 1fr; gap: 1.5rem; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .review-card-large, .review-card-wide { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .trust-stats { flex-wrap: wrap; justify-content: center; }
  .nav-links, .nav-tagline { display: none; }
  .bundles-grid { grid-template-columns: 1fr 1fr; }
  .upsell-products { display: flex; gap: 1.5rem; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .upsell-products::-webkit-scrollbar { display: none; }
  .upsell-products .product-card { min-width: 260px; flex-shrink: 0; }
  .pdp-trust-strip-inner { grid-template-columns: 1fr 1fr; }
  .pdp-why-grid { grid-template-columns: 1fr; gap: 2rem; }
}
/* ===== HERO CTA ===== */
.hero-actions {
  margin-top: 2.5rem;
}
.btn-hero-cta {
  display: inline-block;
  background: var(--rose);
  color: var(--bg);
  text-decoration: none;
  padding: 0.95rem 2.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-hero-cta:hover {
  background: var(--rose-light);
  transform: translateY(-2px);
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  position: relative;
  padding: var(--section-pad) clamp(1.5rem, 5vw, 5rem);
  overflow: hidden;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.newsletter-inner {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.newsletter-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 148, 122, 0.1) 0%, transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  filter: blur(80px);
}
.newsletter-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin: 0.5rem 0 1rem;
  line-height: 1.2;
}
.newsletter-sub {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.newsletter-form {}
.newsletter-fields {
  display: flex;
  gap: 0;
  flex-direction: column;
  gap: 0.75rem;
}
.newsletter-input {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.9rem 1.25rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
  text-align: center;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.newsletter-input:focus { border-color: var(--rose); }
.newsletter-input::placeholder { color: var(--text-muted); }
.btn-newsletter {
  background: var(--rose);
  color: var(--bg);
  border: none;
  padding: 0.95rem 1.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}
.btn-newsletter:hover { background: var(--rose-light); }
.newsletter-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.6;
  margin-top: 0.75rem;
  letter-spacing: 0.05em;
}
.newsletter-success {
  padding: 1.5rem;
  border: 1px solid var(--rose);
  background: rgba(201, 148, 122, 0.08);
}
.success-msg {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--rose);
}

/* ===== TRUST BADGES (homepage row) ===== */
.trust-badges-row {
  padding: 4rem clamp(1.5rem, 5vw, 5rem);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-badges-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.3s;
}
.trust-badge-item:hover { border-color: var(--rose); }
.trust-badge-icon {
  font-size: 1.5rem;
  color: var(--rose);
  line-height: 1;
}
.trust-badge-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  font-weight: 400;
}

@media (max-width: 600px) {
  .category-grid { grid-template-columns: 1fr; }
  .category-card:nth-child(1) { grid-column: 1; }
  .products-row { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .bundles-grid { grid-template-columns: 1fr; }
  .upsell-products { grid-template-columns: 1fr; }
  .cart-recovery { max-width: calc(100vw - 3rem); }
  .trust-badges-inner { grid-template-columns: repeat(2, 1fr); }
  .pdp-trust-strip-inner { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
  .trust-badges-inner { grid-template-columns: 1fr; }
}

/* ===== SHIPPING POLICY PAGE ===== */
.shipping-policy-page {
  padding: 120px clamp(1.5rem, 5vw, 5rem) var(--section-pad);
  min-height: 100vh;
}
.page-header {
  max-width: var(--container);
  margin: 0 auto 3rem;
  text-align: center;
}
.policy-sections {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.policy-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.policy-section:first-child { padding-top: 0; }
.policy-heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.policy-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
}
.policy-body strong { color: var(--cream); font-weight: 500; }
.policy-body a { color: var(--accent-gold); text-decoration: underline; }

.policy-rates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}
.rate-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: border-color 0.2s;
}
.rate-card:hover { border-color: var(--rose); }
.rate-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
}
.rate-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
}

.policy-table {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: 0.5rem;
}
.table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.table-row:last-child { border-bottom: none; }
.table-row:nth-child(even) { background: var(--bg-card); }
.table-region {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.table-time {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--rose);
  font-weight: 500;
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  padding: 120px clamp(1.5rem, 5vw, 5rem) var(--section-pad);
  min-height: 100vh;
}
.contact-layout {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: sticky;
  top: 100px;
}
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.contact-block-title {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.contact-email {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-email:hover { color: var(--rose); }
.contact-hours {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-hours-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.7;
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.25rem;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--text-muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.contact-form-wrapper {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 2.5rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23A89890'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 20px;
  padding-right: 2.5rem;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.btn-send {
  background: var(--rose);
  color: var(--bg);
  border: none;
  padding: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.btn-send:hover { background: var(--rose-light); }

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-info { position: static; }
  .policy-rates { grid-template-columns: 1fr; }
}

/* ===== PDP TRUST / WHY ===== */
.pdp-trust-strip {
  padding: 3rem clamp(1.5rem, 5vw, 5rem);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pdp-trust-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.pdp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.3s;
}
.pdp-trust-item:hover { border-color: var(--rose); }
.pdp-trust-icon {
  display: inline-flex;
  color: var(--rose);
  line-height: 1;
}
.pdp-trust-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.pdp-trust-body {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pdp-why {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 5rem);
}
.pdp-why .section-header {
  max-width: var(--container);
  margin: 0 auto 3rem;
  text-align: center;
}
.pdp-why-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.pdp-why-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pdp-why-icon {
  display: inline-flex;
  color: var(--rose);
  font-size: 1.5rem;
  line-height: 1;
}
.pdp-why-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
  margin: 0;
}
.pdp-why-body {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}