/* Smaller typography for dose parenthetical next to product name */
.dose-bracket {
  font-size: 0.75em;
  font-weight: 500;
  letter-spacing: 0.02em;
  vertical-align: 0.05em;
}

.brand-bold {
  font-weight: 700;
}

:root {
  --primary: #67315c;
  --dark: #483b44;
  --neutral: #cfcecf;
  --light: #fafaf7;
  --deep: #2a2931;
  --white: #ffffff;
  --text-soft: #635d69;
  --stroke-soft: #e3dbe2;
  --shadow-md: 0 10px 28px rgba(42, 41, 49, 0.1);
  --shadow-lg: 0 16px 40px rgba(42, 41, 49, 0.16);
  --radius-md: 14px;
  --radius-lg: 20px;
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--deep);
  line-height: 1.68;
  font-family: "Inter", "DM Sans", "Plus Jakarta Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 12%, #f4e9f1 0%, transparent 36%),
    radial-gradient(circle at 90% 4%, #efe6ec 0%, transparent 30%),
    var(--light);
  opacity: 0;
  transition: opacity 0.55s var(--ease-smooth);
}

body.is-ready {
  opacity: 1;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: linear-gradient(160deg, #f6f0f5 0%, #fcfcfa 100%);
  border-top: 1px solid rgba(103, 49, 92, 0.1);
  border-bottom: 1px solid rgba(72, 59, 68, 0.08);
}

.section-title {
  max-width: 780px;
  margin-bottom: 36px;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 1.55px;
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--primary);
}

h1,
h2,
h3 {
  margin: 0 0 10px;
  line-height: 1.2;
}

h1,
.hero-title {
  font-family: "Lora", "Fraunces", "Cormorant", serif;
  letter-spacing: -0.35px;
  color: var(--deep);
}

h1 {
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--deep);
}

h3 {
  font-size: 1.15rem;
  color: var(--primary);
}

p {
  margin: 0 0 12px;
}

.muted {
  color: var(--text-soft);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background-color: rgba(252, 251, 248, 0.96);
  background-image:
    radial-gradient(ellipse 120% 100% at 0% 0%, rgba(103, 49, 92, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 90% 80% at 100% 100%, rgba(103, 49, 92, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f7f4f8 100%);
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(103, 49, 92, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(42, 41, 49, 0.08);
  border-bottom-color: rgba(103, 49, 92, 0.16);
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.header-brands {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 1;
  min-width: 0;
}

.company-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
  line-height: 0;
  text-decoration: none;
  opacity: 0.98;
  transition: opacity 0.2s ease;
}

.company-logo-link:hover {
  opacity: 1;
}

.company-logo {
  display: block;
  width: auto;
  height: 54px;
  max-width: min(300px, 58vw);
  object-fit: contain;
  object-position: left center;
}

.company-logo-link--footer {
  margin-bottom: 10px;
}

.company-logo--footer {
  height: 48px;
  max-width: min(280px, 78vw);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--deep);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 500;
  opacity: 0.88;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--primary);
}

.nav-links a.active {
  opacity: 1;
  color: var(--primary);
  font-weight: 700;
  background: rgba(103, 49, 92, 0.09);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(103, 49, 92, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 22px;
  transition: transform 0.25s var(--ease-smooth), box-shadow 0.25s var(--ease-smooth), background 0.25s var(--ease-smooth);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
.nav-links a:focus-visible,
input:focus-visible,
textarea:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #a47299;
  outline-offset: 2px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 50;
  position: relative;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--deep);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #7c3f70 0%, #67315c 45%, #4f2746 100%);
  box-shadow: 0 10px 22px rgba(103, 49, 92, 0.34);
}

.btn-primary:hover {
  box-shadow: 0 14px 30px rgba(103, 49, 92, 0.4);
}

.btn-secondary {
  background: var(--white);
  border-color: var(--neutral);
  color: var(--deep);
}

.buy-link {
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 110px 0 96px;
  background: linear-gradient(180deg, #f8f2f7 0%, var(--light) 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 420px;
  height: 420px;
  top: -130px;
  right: -120px;
  background: radial-gradient(circle, rgba(103, 49, 92, 0.18) 0%, rgba(103, 49, 92, 0) 68%);
}

.hero::after {
  width: 320px;
  height: 320px;
  left: -100px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(72, 59, 68, 0.13) 0%, rgba(72, 59, 68, 0) 72%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

.hero-copy p {
  font-size: 1.04rem;
  max-width: 63ch;
}

.hero-cta {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-subtitle {
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}

.product-badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.product-badge {
  background: linear-gradient(135deg, #f7f0f5 0%, #f0e8ef 100%);
  border: 1px solid rgba(103, 49, 92, 0.25);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.product-highlights {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  border: 1px solid #e6dce4;
}

.product-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--dark);
}

.product-highlight-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.product-showcase {
  display: grid;
  gap: 20px;
}

.product-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #ddd4db;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.product-price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(103, 49, 92, 0.3);
}

.price-current {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.2;
}

.price-original {
  display: block;
  font-size: 0.85rem;
  text-decoration: line-through;
  opacity: 0.85;
  margin-top: 2px;
}

.product-specs-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e4dde2;
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-md);
}

.product-specs-card h3 {
  margin-bottom: 14px;
  font-size: 1.1rem;
  color: var(--primary);
}

.product-specs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.product-specs-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f0e8ef;
  font-size: 0.92rem;
}

.product-specs-list li:last-child {
  border-bottom: none;
}

.product-specs-list strong {
  color: var(--dark);
  font-weight: 600;
}

.product-specs-list span {
  color: var(--text-soft);
  font-weight: 500;
}

.product-featured {
  border: 2px solid var(--primary);
  box-shadow: 0 12px 32px rgba(103, 49, 92, 0.15);
}

.product-header-section {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.product-title-section h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--deep);
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.price-current-large {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  font-family: "Lora", serif;
}

.price-original-large {
  font-size: 1.3rem;
  text-decoration: line-through;
  color: #999;
  font-weight: 600;
}

.price-save {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.stars {
  color: #ffb300;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 0.9rem;
  color: var(--text-soft);
  font-weight: 600;
}

.hero-visual {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--stroke-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  animation: float-soft 7s ease-in-out infinite;
}

.product-art {
  border-radius: var(--radius-md);
  min-height: 320px;
  background: linear-gradient(160deg, #f7eff5 0%, #efe6ec 100%);
  border: 1px solid #dacfd6;
  padding: 20px;
  display: grid;
  align-content: space-between;
}

.hero-image {
  width: 100%;
  border-radius: 13px;
  border: 1px solid #d9ccd7;
  margin-bottom: 14px;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.product-art h3 {
  font-family: "Lora", serif;
  color: var(--dark);
  font-size: 1.36rem;
}

.product-pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.product-pillars li {
  font-size: 0.94rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid #e6dbe3;
  border-radius: 10px;
  padding: 8px 10px;
}

.trust-bar {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-item {
  display: grid;
  justify-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #e6dfe4;
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: #433f4a;
}

.trust-item:hover {
  transform: translateY(-2px);
}

.trust-dot {
  width: 12px;
  height: 12px;
  margin: 0 auto 8px;
  border: 2px solid var(--primary);
  border-radius: 50%;
}

.trust-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.stats-grid {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e5dce3;
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
}

.stat-number {
  font-family: "Lora", serif;
  font-size: 1.62rem;
  color: var(--primary);
  line-height: 1.2;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-md);
  border: 1px solid #e4dde2;
  padding: 24px;
  box-shadow: var(--shadow-md);
  transition: transform 0.28s var(--ease-smooth), box-shadow 0.28s var(--ease-smooth), border-color 0.28s var(--ease-smooth);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: #cfbdcb;
}

.card-benefit-detail h3 {
  margin-bottom: 14px;
}

.card-benefit-detail p {
  font-size: 0.94rem;
  margin-bottom: 12px;
  line-height: 1.62;
}

.card-benefit-detail p strong {
  color: var(--dark);
}

.benefit-detail-tags {
  margin-top: 4px;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.badge-row--tight {
  margin-top: 0;
  gap: 8px;
}

.coa-points {
  margin: 0 0 16px;
  padding-left: 1.2em;
  line-height: 1.65;
}

.coa-points li {
  margin-bottom: 8px;
}

.card code {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.88em;
  background: rgba(103, 49, 92, 0.09);
  padding: 2px 7px;
  border-radius: 6px;
  color: var(--dark);
}

.pdf-panel {
  margin-top: 28px;
}

.pdf-panel h2 {
  margin-bottom: 10px;
}

.pdf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0;
}

.pdf-embed-wrap {
  border: 1px solid #e4dde2;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #f4f1f5;
  box-shadow: var(--shadow-md);
}

.pdf-embed {
  width: 100%;
  min-height: min(78vh, 820px);
  border: 0;
  display: block;
}

.pdf-embed-note {
  margin-top: 12px;
  font-size: 0.88rem;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  color: #128c7e;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.whatsapp-link:hover {
  color: #0d6b62;
  opacity: 0.95;
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.contact-whatsapp-hours {
  margin-top: 4px;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.interactive-card {
  cursor: pointer;
}

.interactive-card:focus-visible {
  outline: 3px solid #a47299;
  outline-offset: 2px;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  border: 1px solid #d9ccd7;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: var(--primary);
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, #f6f0f5 100%);
}

.icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.feature-card-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #ddd2db;
  margin-bottom: 14px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.image-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #ddd4db;
  min-height: 280px;
  background: #f1ebf0;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth), filter 0.5s ease;
}

.image-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.06);
}

.badge-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: #f7f3f6;
  border: 1px solid #dbcfd9;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.84rem;
  color: #534d59;
}

.quote-card {
  border-left: 4px solid var(--primary);
  background: #fff;
}

.quote-meta {
  margin-top: 8px;
  font-size: 0.88rem;
  color: #605a66;
}

.comparison-wrap {
  overflow-x: auto;
}

.comparison-brand-card {
  background: linear-gradient(180deg, #fff 0%, #fcfafc 100%);
  border: 1px solid #ddd2dc;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 18px;
}

.comparison-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 2px 14px;
  border-bottom: 1px solid #ece3ea;
}

.comparison-pill {
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.comparison-pill-brand {
  background: rgba(103, 49, 92, 0.12);
  color: var(--primary);
  border: 1px solid rgba(103, 49, 92, 0.22);
}

.comparison-pill-generic {
  background: #f4f0f3;
  color: #655f6a;
  border: 1px solid #ddd5dc;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  padding: 16px 2px;
  border-bottom: 1px solid #eee6ed;
}

.comparison-row-last {
  border-bottom: 0;
}

.comparison-criteria h3 {
  margin-bottom: 6px;
}

.comparison-score-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}

.score-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.83rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.score-brand {
  background: #f1e5ee;
  color: #5d2b53;
  border-color: #d6bbcf;
}

.score-generic {
  background: #f5f3f5;
  color: #6f6974;
  border-color: #dfd9df;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  background: #fff;
  border: 1px solid #dfd5de;
  border-radius: 14px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid #eee5ec;
  padding: 14px 16px;
  text-align: left;
}

.comparison-table th {
  background: #f8f2f7;
  color: #443f49;
  font-weight: 700;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.feature-good {
  color: #1f6f49;
  font-weight: 700;
}

.feature-mid {
  color: #8d6f21;
  font-weight: 700;
}

.feature-low {
  color: #8d2d35;
  font-weight: 700;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 24, 0.62);
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.modal-backdrop[hidden] {
  display: none !important;
}

.modal {
  width: min(820px, 100%);
  max-height: min(88vh, 900px);
  overflow: auto;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d8cdd7;
  box-shadow: 0 26px 60px rgba(22, 17, 27, 0.28);
  padding: 24px 22px 20px;
  position: relative;
}

.modal-header {
  margin-bottom: 10px;
  padding-right: 36px;
}

.modal-content {
  color: #463f4a;
}

.modal-content p {
  margin-bottom: 12px;
}

.modal-content ul {
  margin: 0 0 14px;
  padding-left: 20px;
}

.modal-content li {
  margin-bottom: 6px;
}

.modal-close {
  position: absolute;
  right: 10px;
  top: 8px;
  border: 0;
  background: transparent;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-size: 1.4rem;
  line-height: 1;
  color: #514a57;
  cursor: pointer;
}

.modal-close:hover {
  background: #f3edf2;
}

.modal-footer {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.timeline {
  border-left: 2px dashed #ccb9c8;
  margin-left: 8px;
  padding-left: 20px;
  display: grid;
  gap: 18px;
}

.timeline-step h3 {
  margin-bottom: 6px;
}

.timeline-step-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.timeline-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #d9ccd7;
  background: linear-gradient(135deg, #fff 0%, #f6f0f5 100%);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  display: inline-grid;
  place-items: center;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.product-card {
  display: grid;
  gap: 14px;
}

.product-media {
  border-radius: 12px;
  min-height: 200px;
  background: linear-gradient(135deg, #efe6ec 0%, #f7f3f6 100%);
  border: 1px solid #d9ccd7;
  transition: transform 0.45s var(--ease-smooth), box-shadow 0.45s var(--ease-smooth);
  overflow: hidden;
  position: relative;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card:hover .product-media {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 22px rgba(42, 41, 49, 0.16);
}

.spec-list {
  margin: 0;
  padding-left: 18px;
  color: #55505b;
}

.faq-wrap {
  display: grid;
  gap: 12px;
}

.faq-wrap.reveal {
  opacity: 1;
  transform: none;
}

.faq-item {
  border: 1px solid #dbd2d9;
  border-radius: 12px;
  background: #fff;
}

.faq-item.reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.faq-item.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-weight: 700;
  color: var(--deep);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--primary);
}

.faq-item[open] summary {
  color: var(--primary);
}

.faq-item p {
  padding: 0 18px 16px;
  color: var(--text-soft);
  line-height: 1.7;
}

.contact-card {
  max-width: 760px;
}

.form-grid {
  display: grid;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
  color: #4b4752;
}

input,
textarea {
  width: 100%;
  margin-top: 5px;
  border-radius: 10px;
  border: 1px solid #cfc1cb;
  padding: 11px 12px;
  font: inherit;
  color: var(--deep);
  background: #fff;
}

input:hover,
textarea:hover {
  border-color: #b79db1;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.cta-panel {
  background:
    radial-gradient(circle at 20% 20%, rgba(103, 49, 92, 0.24) 0%, rgba(103, 49, 92, 0) 40%),
    linear-gradient(130deg, #2a2931 0%, #3a3240 65%, #312d36 100%);
  color: #f2eef2;
  border-radius: 18px;
  padding: 38px 24px;
  text-align: center;
  border: 1px solid rgba(207, 206, 207, 0.22);
}

.cta-panel h2 {
  color: #fff;
}

.site-footer {
  margin-top: 36px;
  background:
    linear-gradient(180deg, #2e2b34 0%, #26242c 100%);
  color: #ece9ee;
  padding: 42px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  opacity: 0.9;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-legal {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(207, 206, 207, 0.28);
  font-size: 0.84rem;
  color: #c8c3cd;
}

.footer-legal p {
  margin: 0 0 0.65em;
}

.footer-legal p:last-child {
  margin-bottom: 0;
}

.footer-entity {
  margin-top: 6px;
  margin-bottom: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #c8c3cd;
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 0.65s var(--ease-smooth), transform 0.65s var(--ease-smooth);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  body {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-2,
  .grid-3,
  .footer-grid,
  .split-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-wrap: nowrap;
    min-height: 80px;
    padding: 12px 0;
    position: relative;
  }

  .mobile-menu-toggle {
    display: flex;
    order: 2;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 244, 248, 0.98) 100%);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    z-index: 45;
    border-bottom: 1px solid rgba(103, 49, 92, 0.12);
    box-shadow: 0 12px 28px rgba(42, 41, 49, 0.1);
  }

  .nav-links.active {
    max-height: 500px;
    padding: 20px;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(103, 49, 92, 0.1);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    width: 100%;
    font-size: 1rem;
    color: var(--deep);
    opacity: 0.92;
  }

  .nav-links a:hover {
    opacity: 1;
    color: var(--primary);
  }

  .nav-links a.active {
    opacity: 1;
    color: var(--primary);
    font-weight: 700;
    background: rgba(103, 49, 92, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(103, 49, 92, 0.16);
    padding: 14px 14px 14px 16px;
    box-shadow: none;
    border-left: 4px solid var(--primary);
  }

  .nav .buy-link {
    order: 3;
    margin-left: 12px;
    padding: 10px 18px;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .product-header-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-image-wrapper {
    max-width: 100%;
  }

  .price-current-large {
    font-size: 1.6rem;
  }

  .price-original-large {
    font-size: 1.1rem;
  }
}

@media (max-width: 640px) {
  .section,
  .hero {
    padding: 70px 0;
  }

  .trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-cta .btn {
    width: 100%;
  }

  .nav {
    min-height: 72px;
    padding: 10px 0;
  }

  .nav-links {
    top: 72px;
  }

  .nav .buy-link {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .company-logo {
    height: 44px;
    max-width: min(240px, 62vw);
  }

  .header-brands {
    gap: 8px;
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-score-wrap {
    align-items: flex-start;
  }
}

