/* ============================================================
   TRITTARO — Soft Beige Luxury Design System
   Feminine Boutique · Warm Beige Gradients · Rounded Cards
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@200;300;400;600&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/* ─── TOKENS ─── */
:root {
  --beige-100: #fdf9f4;
  --beige-200: #f5eee3;
  --beige-300: #ede3d5;
  --beige-400: #e0d0ba;
  --beige-500: #c8b49a;
  --blush: #e8c4b8;
  --blush-light: #f4ddd5;
  --blush-pale: rgba(232, 196, 184, 0.2);
  --mauve: #b5848a;
  --mauve-dark: #8c5f65;
  --warm-brown: #7a5a4a;
  --near-black: #1a1614;
  --charcoal: #3d3330;
  --text-primary: #2d2220;
  --text-secondary: #6b5a52;
  --text-muted: #b09580;
  --border: rgba(200, 180, 154, 0.4);
  --border-strong: rgba(181, 132, 138, 0.4);
  --shadow-soft: 0 8px 32px rgba(122, 90, 74, 0.08), 0 2px 8px rgba(122, 90, 74, 0.05);
  --shadow-card: 0 20px 60px rgba(122, 90, 74, 0.1), 0 8px 24px rgba(122, 90, 74, 0.06);
  --shadow-hover: 0 32px 80px rgba(122, 90, 74, 0.15), 0 12px 40px rgba(122, 90, 74, 0.08);
  --gradient-beige: linear-gradient(135deg, var(--beige-200) 0%, var(--beige-100) 100%);
  --gradient-blush: linear-gradient(135deg, var(--blush-light) 0%, var(--beige-200) 100%);
  --gradient-warm: linear-gradient(160deg, var(--beige-100) 0%, var(--blush-light) 50%, var(--beige-200) 100%);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-pill: 100px;
  --font-display: 'Josefin Sans', sans-serif;
  --font-serif: 'Libre Baskerville', Georgia, serif;
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-display);
  background: var(--beige-100);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { border: none; cursor: pointer; background: none; font-family: var(--font-display); }

/* ─── DISCLOSURE BAR ─── */
.disclosure-bar {
  background: var(--blush);
  color: var(--mauve-dark);
  text-align: center;
  padding: 9px 20px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 300;
}

/* ─── PRELOADER — BLOOMING CIRCLE STYLE ─── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--gradient-warm);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.8s ease, visibility 0.8s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-bloom {
  position: relative;
  width: 80px;
  height: 80px;
}
.preloader-bloom-ring {
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--blush);
  border-radius: 50%;
  animation: bloom-expand 2s ease-out infinite;
}
.preloader-bloom-ring:nth-child(2) { animation-delay: 0.6s; }
.preloader-bloom-ring:nth-child(3) { animation-delay: 1.2s; }
.preloader-bloom-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--mauve);
  border-radius: 50%;
}
@keyframes bloom-expand {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2); opacity: 0; }
}
.preloader-text {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 300;
}
.preloader-progress {
  width: 180px;
  height: 2px;
  background: var(--beige-400);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blush), var(--mauve));
  border-radius: 2px;
  animation: progress-fill 2.8s var(--transition-slow) forwards;
}
@keyframes progress-fill { to { width: 100%; } }

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 249, 244, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-soft); }
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 200;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 300;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--mauve-dark); }
.nav-cta {
  padding: 10px 24px !important;
  background: var(--gradient-blush) !important;
  color: var(--mauve-dark) !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 600 !important;
  font-size: 10px !important;
  transition: all 0.4s var(--transition-bounce) !important;
}
.nav-cta:hover {
  background: var(--mauve) !important;
  color: var(--beige-100) !important;
  transform: scale(1.04) !important;
  box-shadow: var(--shadow-card) !important;
}
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--charcoal); border-radius: 2px; transition: all 0.3s var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--beige-100);
  border-left: 1px solid var(--border);
  z-index: 999;
  flex-direction: column;
  padding: 100px 40px 40px;
  gap: 28px;
  transition: right 0.5s var(--transition-slow);
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--text-primary);
  font-weight: 400;
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--mauve); }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.15);
  z-index: 998;
}
.mobile-overlay.open { display: block; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--gradient-warm);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 48px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--blush-pale) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,180,154,0.3) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  background: var(--blush-pale);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mauve-dark);
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--mauve); }
.hero-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 440px;
  margin-bottom: 36px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.hero-price-wrap { margin-bottom: 36px; }
.hero-price {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-price-note { font-size: 12px; color: var(--text-muted); letter-spacing: 0.05em; }
.btn-blush {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--mauve);
  color: var(--beige-100);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: all 0.4s var(--transition-bounce);
  box-shadow: 0 8px 24px rgba(181, 132, 138, 0.3);
}
.btn-blush:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 40px rgba(181, 132, 138, 0.4); background: var(--mauve-dark); }
.btn-blush-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 36px;
  border: 1.5px solid var(--border-strong);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: all 0.4s var(--transition);
}
.btn-blush-outline:hover { border-color: var(--mauve); color: var(--mauve-dark); transform: translateY(-2px); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-img-wrap {
  position: relative;
}
.hero-img-card {
  background: var(--beige-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 3/4;
}
.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s var(--transition);
}
.hero-img-card:hover img { transform: scale(1.04); }
.hero-badge {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: var(--beige-100);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge-icon { font-size: 20px; }
.hero-badge-text { font-size: 11px; }
.hero-badge-title { font-weight: 600; color: var(--charcoal); letter-spacing: 0.05em; text-transform: uppercase; font-size: 10px; }
.hero-badge-sub { color: var(--text-muted); font-size: 11px; }

/* ─── SECTIONS ─── */
.section { padding: 100px 48px; }
.container { max-width: 1320px; margin: 0 auto; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--blush-pale);
  border-radius: var(--radius-pill);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mauve-dark);
  font-weight: 600;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--mauve); }
.divider-blush { width: 48px; height: 2px; background: linear-gradient(90deg, var(--blush), var(--mauve)); border-radius: 2px; margin: 20px 0 32px; }

/* ─── PRODUCT GRID ─── */
.product-grid-soft {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card-soft {
  background: var(--beige-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: all 0.5s var(--transition-bounce);
  cursor: pointer;
}
.product-card-soft:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.product-card-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gradient-beige);
}
.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.product-card-soft:hover .product-card-img-wrap img { transform: scale(1.06); }
.product-card-body-soft { padding: 24px; }
.product-card-tag-soft {
  display: inline-block;
  padding: 4px 12px;
  background: var(--blush-pale);
  border-radius: var(--radius-pill);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mauve-dark);
  font-weight: 600;
  margin-bottom: 12px;
}
.product-card-name-soft { font-family: var(--font-serif); font-size: 18px; color: var(--charcoal); margin-bottom: 8px; }
.product-card-price-soft { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--charcoal); margin-bottom: 16px; }
.product-card-btn-soft {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--gradient-blush);
  color: var(--mauve-dark);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  border-radius: var(--radius-pill);
  transition: all 0.3s var(--transition-bounce);
}
.product-card-btn-soft:hover { background: var(--mauve); color: var(--beige-100); transform: scale(1.02); }

/* ─── FEATURE SECTION ─── */
.feature-soft {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-img-soft {
  position: relative;
}
.feature-img-soft img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}
.feature-img-soft::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: var(--radius-xl);
  background: var(--gradient-blush);
  z-index: -1;
}
.feature-list-soft { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 16px; }
.feature-item-soft {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--beige-100);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s var(--transition-bounce);
}
.feature-item-soft:hover { transform: translateX(8px); border-color: var(--border-strong); }
.feature-item-icon { width: 32px; height: 32px; background: var(--blush-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.feature-item-text {}
.feature-item-title { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 2px; }
.feature-item-desc { font-size: 13px; color: var(--text-secondary); }

/* ─── TRUST SECTION ─── */
.trust-grid-soft {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-card-soft {
  padding: 32px 24px;
  background: var(--beige-100);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: all 0.4s var(--transition-bounce);
}
.trust-card-soft:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--border-strong); }
.trust-icon-soft {
  width: 48px;
  height: 48px;
  background: var(--gradient-blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 16px;
}
.trust-title-soft { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 8px; }
.trust-desc-soft { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── REVIEWS ─── */
.reviews-soft { background: var(--gradient-blush); }
.reviews-grid-soft { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card-soft {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s var(--transition-bounce);
}
.review-card-soft:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.review-stars-soft { color: var(--mauve); font-size: 12px; letter-spacing: 3px; margin-bottom: 16px; }
.review-text-soft { font-family: var(--font-serif); font-style: italic; font-size: 15px; color: var(--charcoal); line-height: 1.8; margin-bottom: 20px; }
.review-author-soft { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }

/* ─── ORDER PAGE ─── */
.order-layout-soft {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 48px;
}
.gallery-main-soft {
  aspect-ratio: 1;
  background: var(--gradient-beige);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.gallery-main-soft img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 40px;
  transition: transform 0.6s var(--transition);
}
.gallery-main-soft:hover img { transform: scale(1.04); }
.gallery-thumbs-soft { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.gallery-thumb-soft {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 6px;
  background: var(--beige-200);
  transition: all 0.3s var(--transition-bounce);
}
.gallery-thumb-soft:hover, .gallery-thumb-soft.active {
  border-color: var(--mauve);
  box-shadow: 0 4px 12px rgba(181, 132, 138, 0.2);
  transform: scale(1.05);
}
.sticky-card-soft {
  position: sticky;
  top: 100px;
  background: var(--gradient-beige);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.product-badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--blush-pale);
  border-radius: var(--radius-pill);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mauve-dark);
  font-weight: 600;
  border: 1px solid var(--border-strong);
  margin-bottom: 20px;
}
.product-name-soft { font-family: var(--font-serif); font-size: 28px; line-height: 1.2; color: var(--charcoal); margin-bottom: 8px; }
.product-sub-soft { font-family: var(--font-serif); font-size: 14px; font-style: italic; color: var(--text-muted); margin-bottom: 24px; }
.price-soft { font-family: var(--font-serif); font-size: 44px; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.price-note-soft { font-size: 12px; color: var(--text-muted); margin-bottom: 28px; }
.btn-order-soft {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--mauve);
  color: var(--beige-100);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  margin-bottom: 14px;
  transition: all 0.4s var(--transition-bounce);
  box-shadow: 0 8px 24px rgba(181, 132, 138, 0.3);
}
.btn-order-soft:hover { background: var(--mauve-dark); transform: translateY(-2px) scale(1.01); box-shadow: 0 16px 40px rgba(181, 132, 138, 0.4); }
.btn-full { width: 100%; display: block; text-align: center; }
.trust-badges-soft { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.trust-badge-soft {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 10px 16px;
  background: rgba(255,255,255,0.6);
  border-radius: var(--radius-sm);
}
.trust-badge-soft span:first-child { color: var(--mauve); font-size: 15px; }
.specs-soft { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.spec-row-soft {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(200, 180, 154, 0.2);
  font-size: 13px;
}
.spec-label-soft { color: var(--text-muted); }
.spec-value-soft { color: var(--charcoal); font-weight: 600; }

/* ─── CONTACT PAGE ─── */
.contact-soft { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.form-group-soft { margin-bottom: 20px; }
.form-label-soft { display: block; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mauve-dark); font-weight: 600; margin-bottom: 8px; }
.form-input-soft, .form-textarea-soft {
  width: 100%;
  padding: 14px 18px;
  background: var(--beige-100);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 14px;
  transition: all 0.3s var(--transition);
  outline: none;
}
.form-input-soft:focus, .form-textarea-soft:focus {
  border-color: var(--mauve);
  box-shadow: 0 0 0 3px var(--blush-pale);
}
.form-textarea-soft { height: 160px; resize: vertical; }

/* ─── REVIEW PAGE ─── */
.review-hero-soft {
  background: var(--gradient-warm);
  padding: 140px 48px 80px;
  text-align: center;
}
.review-img-soft {
  max-width: 360px;
  margin: 40px auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--beige-200);
}
.review-img-soft img { width: 100%; object-fit: cover; }
.review-body-soft { max-width: 760px; margin: 0 auto; padding: 80px 48px; }
.review-body-soft h2 { font-family: var(--font-serif); font-size: 26px; font-style: italic; color: var(--charcoal); margin: 40px 0 16px; }
.review-body-soft p { font-size: 15px; color: var(--text-secondary); line-height: 1.9; margin-bottom: 20px; }
.rating-bar { display: flex; align-items: center; gap: 16px; margin-bottom: 10px; }
.rating-label { width: 130px; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
.rating-track { flex: 1; height: 6px; background: var(--beige-400); border-radius: 6px; overflow: hidden; }
.rating-fill { height: 100%; background: linear-gradient(90deg, var(--blush), var(--mauve)); border-radius: 6px; transition: width 1.5s var(--transition-slow); }
.rating-score { font-size: 13px; font-weight: 700; color: var(--mauve-dark); width: 36px; text-align: right; }

/* ─── LEGAL ─── */
.legal-hero-soft { background: var(--gradient-beige); padding: 140px 48px 60px; }
.legal-content-soft { max-width: 780px; margin: 60px auto; padding: 0 48px; }
.legal-content-soft h2 { font-family: var(--font-serif); font-size: 22px; font-style: italic; color: var(--charcoal); margin: 36px 0 14px; }
.legal-content-soft h3 { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-primary); margin: 20px 0 8px; }
.legal-content-soft p { font-size: 14px; color: var(--text-secondary); line-height: 1.9; margin-bottom: 14px; }
.legal-content-soft ul { list-style: disc; padding-left: 20px; color: var(--text-secondary); font-size: 14px; line-height: 2; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--charcoal);
  color: var(--beige-100);
  padding: 80px 48px 40px;
}
.footer-grid-soft {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-soft {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 200;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--beige-300);
  margin-bottom: 20px;
}
.footer-info-soft { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 2; }
.footer-info-soft a { color: rgba(255,255,255,0.35); transition: color 0.3s; }
.footer-info-soft a:hover { color: var(--blush); }
.footer-heading-soft { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.2); margin-bottom: 24px; font-weight: 600; }
.footer-links-soft { display: flex; flex-direction: column; gap: 12px; }
.footer-links-soft a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.3s; }
.footer-links-soft a:hover { color: var(--blush); }
.footer-bottom-soft {
  max-width: 1320px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

/* ─── COOKIE POPUP ─── */
.cookie-popup {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 24px));
  width: 600px;
  background: var(--beige-100);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  z-index: 9000;
  opacity: 0;
  transition: all 0.6s var(--transition-bounce);
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 24px;
}
.cookie-popup.visible { transform: translateX(-50%) translateY(0); opacity: 1; }
.cookie-icon { font-size: 28px; flex-shrink: 0; }
.cookie-content { flex: 1; }
.cookie-title { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 4px; }
.cookie-text { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.cookie-text a { color: var(--mauve-dark); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  padding: 12px 20px;
  background: var(--mauve);
  color: var(--beige-100);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.3s var(--transition-bounce);
  white-space: nowrap;
}
.cookie-accept:hover { background: var(--mauve-dark); transform: scale(1.04); }
.cookie-reject {
  padding: 12px 20px;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: all 0.3s;
  white-space: nowrap;
}
.cookie-reject:hover { border-color: var(--text-secondary); color: var(--text-secondary); }

/* ─── DETAIL TABS ─── */
.detail-tabs { display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.detail-tab {
  padding: 10px 24px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  background: var(--beige-200);
  transition: all 0.3s var(--transition-bounce);
}
.detail-tab.active { background: var(--blush-pale); color: var(--mauve-dark); border-color: var(--border-strong); }
.detail-tab:hover { border-color: var(--border-strong); }
.detail-panel { display: none; }
.detail-panel.active { display: block; }

/* ─── ANIMATIONS ─── */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--transition), transform 0.7s var(--transition); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.7s var(--transition); }
.fade-in.visible { opacity: 1; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .order-layout-soft { grid-template-columns: 1fr; }
  .sticky-card-soft { position: relative; top: 0; }
  .product-grid-soft { grid-template-columns: 1fr 1fr; }
  .feature-soft { grid-template-columns: 1fr; }
  .trust-grid-soft { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .header-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .contact-soft { grid-template-columns: 1fr; }
  .footer-grid-soft { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom-soft { flex-direction: column; gap: 12px; }
  .reviews-grid-soft { grid-template-columns: 1fr; }
  .cookie-popup { width: calc(100% - 32px); flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .section { padding: 60px 24px; }
  .hero { padding: 60px 24px; }
  .product-grid-soft { grid-template-columns: 1fr; }
  .trust-grid-soft { grid-template-columns: 1fr; }
  .order-layout-soft { padding: 40px 24px; }
  .gallery-thumbs-soft { gap: 8px; }
  .gallery-thumb-soft { width: 60px; height: 60px; }
}


/* â”€â”€â”€ REVIEW PAGE MULTI-SWAPPER â”€â”€â”€ */
.review-frame-gallery {
  max-width: 500px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gallery-frame {
  width: 100%;
  aspect-ratio: 1;
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 30px;
  transition: transform 0.6s var(--transition);
}
.gallery-frame:hover img {
  transform: scale(1.04);
}
.gallery-indicators {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.indicator {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border: 2px solid transparent;
  background: var(--warm-white);
  padding: 6px;
  cursor: pointer;
  transition: all 0.3s;
}
.indicator:hover, .indicator.active {
  border-color: var(--mauve);
}