/* Blissori shared styles (no large external dependencies) */

:root {
  --color-pearl: #fff9fb;
  --color-soft-dark: #1f151c;

  --color-mauve-50: #fbf6fa;
  --color-mauve-100: #f6eaf3;
  --color-mauve-200: #ebcfe3;
  --color-mauve-700: #7a2f62;
  --color-mauve-800: #5b2449;
  --color-mauve-900: #3b1830;

  --color-rose-50: #fff5f6;
  --color-rose-100: #ffebef;
  --color-rose-200: #ffd6e0;
  --color-rose-500: #e05d7a;
  --color-rose-600: #c23d5a;

  --color-white: #ffffff;

  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --font-serif: ui-serif, Georgia, "Times New Roman", serif;

  --container: 1120px;
  --gutter: clamp(18px, 4vw, 28px);
  --radius-xl: clamp(28px, 5vw, 72px);
  --radius-lg: 32px;
  --radius-md: 22px;

  --shadow-lg: 0 24px 60px rgba(31, 21, 28, 0.18);
  --shadow-md: 0 18px 38px rgba(31, 21, 28, 0.14);
  --shadow-sm: 0 10px 24px rgba(31, 21, 28, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-soft-dark);
  background: var(--color-pearl);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  margin: 0;
}

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

/* Icons (SVG sprite) */
svg.icon {
  display: inline-block;
  vertical-align: -0.125em;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

a {
  color: inherit;
}

strong {
  font-weight: 800;
}

/* Layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(72px, 9vw, 120px) 0;
}

.section--white {
  background: var(--color-white);
}

.section--soft {
  background: var(--color-mauve-50);
}

.section--dark {
  background: var(--color-soft-dark);
  color: rgba(255, 255, 255, 0.92);
}

.section--rounded {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 0 var(--gutter);
}

.grid {
  display: grid;
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
}

@media (min-width: 860px) {
  .grid--2 {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.stack {
  display: grid;
  gap: 16px;
}

.section-head {
  margin-bottom: clamp(28px, 5vw, 48px);
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.uppercase {
  text-transform: uppercase;
}

.narrow {
  max-width: 760px;
}

.muted {
  color: rgba(31, 21, 28, 0.62);
}

.section--dark .muted {
  color: rgba(255, 255, 255, 0.66);
}

/* Top bar */
.topbar {
  background: var(--color-mauve-900);
  color: var(--color-white);
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 10px;
  text-align: center;
  padding: 10px 12px;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--color-rose-50) 0%, var(--color-mauve-100) 55%, var(--color-pearl) 100%);
}

.hero__inner {
  display: grid;
  gap: 26px;
  justify-items: center;
}

.hero__title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.98;
  font-size: clamp(42px, 7vw, 84px);
}

.hero__title-em {
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: uppercase;
}

.lead {
  margin: 0;
  max-width: 64ch;
  margin-inline: auto;
  font-size: clamp(18px, 2.2vw, 22px);
  color: rgba(31, 21, 28, 0.64);
}

.hero__cta {
  margin-top: 10px;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.subline {
  margin: 0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-mauve-800);
}

.accent-rose {
  color: var(--color-rose-600);
}

.accent-mauve {
  color: var(--color-mauve-700);
}

.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

.media-card {
  width: min(520px, 100%);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(31, 21, 28, 0.08);
  border-radius: clamp(28px, 4vw, 48px);
  padding: clamp(14px, 3vw, 22px);
  box-shadow: var(--shadow-md);
}

.media-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  /* Remove white fringe from transparent PNG edges + add shadow */
  filter: drop-shadow(0 35px 35px rgba(0, 0, 0, 0.15)) 
          contrast(1.02) 
          saturate(1.05);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  border-radius: 22px;
  padding: 18px 28px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
  will-change: transform;
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(224, 93, 122, 0.28), var(--shadow-md);
}

.btn--primary {
  background: var(--color-soft-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  background: var(--color-mauve-900);
  transform: translateY(-1px) scale(1.03);
}

.btn--primary:active {
  transform: scale(0.98);
}

.btn--light {
  background: var(--color-white);
  color: var(--color-soft-dark);
  width: 100%;
  padding: 22px 18px;
  border-radius: 26px;
  font-size: clamp(14px, 1.8vw, 18px);
  box-shadow: 0 18px 50px rgba(255, 255, 255, 0.1);
}

.btn--light:hover {
  background: var(--color-rose-50);
  transform: translateY(-1px) scale(1.02);
}

.btn--light:active {
  transform: scale(0.985);
}

/* Content */
.h2 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.02em;
  font-weight: 900;
}

.h2--lg {
  font-size: clamp(32px, 4vw, 52px);
}

.h2--xl {
  font-size: clamp(34px, 5.2vw, 68px);
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.serif {
  font-family: var(--font-serif);
}

.italic {
  font-style: italic;
}

.kicker {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-rose-500);
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 18px;
}

.bullets li {
  position: relative;
  padding-left: 22px;
  color: rgba(31, 21, 28, 0.62);
  font-size: 18px;
  line-height: 1.35;
}

.bullets li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-rose-500);
  font-weight: 900;
}

.quote {
  background: var(--color-rose-50);
  border: 1px solid var(--color-rose-100);
  border-radius: clamp(26px, 4vw, 48px);
  padding: clamp(18px, 4vw, 34px);
  box-shadow: 0 8px 18px rgba(31, 21, 28, 0.06);
  color: rgba(31, 21, 28, 0.86);
  font-style: italic;
}

.card {
  background: var(--color-white);
  border: 1px solid var(--color-mauve-100);
  border-radius: clamp(26px, 4vw, 48px);
  padding: clamp(18px, 4vw, 40px);
  box-shadow: 0 20px 40px rgba(91, 36, 73, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 52px rgba(91, 36, 73, 0.12);
}

.card--dark {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.card--dark:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.tag {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-rose-600);
  color: var(--color-white);
  padding: 8px 14px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0 clamp(26px, 4vw, 48px) 0 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

/* Prevent card title from overlapping with tag */
.card > .h3:first-of-type {
  padding-right: 100px;
}

.badge {
  display: inline-block;
  margin-top: 14px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid var(--color-rose-200);
  background: var(--color-rose-100);
  color: rgba(31, 21, 28, 0.9);
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 12px;
}

.h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.card-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Offer */
.offer {
  background: var(--color-soft-dark);
  color: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-xl);
  padding: clamp(26px, 6vw, 72px);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.offer__bar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 4px;
  background: var(--color-rose-500);
}

.offer__title {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 56px);
}

.offer__media {
  position: relative;
  margin: 26px auto 0;
  max-width: 520px;
  opacity: 0.96;
  padding: clamp(10px, 2.2vw, 14px);
  border-radius: clamp(28px, 4vw, 52px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  isolation: isolate;
}

.offer__media::before {
  content: "";
  position: absolute;
  inset: -22%;
  background: radial-gradient(
    circle at 50% 35%,
    rgba(224, 93, 122, 0.35),
    rgba(122, 47, 98, 0.18),
    transparent 62%
  );
  filter: blur(42px);
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}

.offer__media img {
  position: relative;
  z-index: 1;
  border-radius: clamp(20px, 3vw, 36px);
  /* Remove white fringe from transparent PNG edges + add shadow */
  filter: drop-shadow(0 26px 54px rgba(0, 0, 0, 0.32))
          contrast(1.02)
          saturate(1.05);
}

.meta-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.55);
}

/* On stacked (mobile) layout, hide the separator dot so it doesn't sit alone on a line. */
.meta-row [aria-hidden="true"] {
  display: none;
}

@media (min-width: 860px) {
  .meta-row {
    flex-direction: row;
    gap: 14px;
  }

  .meta-row [aria-hidden="true"] {
    display: inline;
  }
}

.strike {
  margin-top: 10px;
  font-style: italic;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: line-through;
  text-decoration-color: var(--color-rose-500);
  text-decoration-thickness: 2px;
  font-size: 20px;
}

.price-kicker {
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.price {
  margin-top: 10px;
  font-weight: 950;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-size: clamp(56px, 7.5vw, 110px);
  line-height: 0.95;
}

.cents {
  font-size: 0.35em;
  opacity: 0.55;
  vertical-align: super;
  line-height: 1;
  margin-left: 0.04em;
}

.save {
  display: inline-flex;
  align-items: center;
  background: var(--color-rose-600);
  color: var(--color-white);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(194, 61, 90, 0.18);
  line-height: 1.1;
}

.offer__actions {
  margin-top: 26px;
}

.container--offer {
  max-width: var(--container);
}

.offer__badges {
  margin: 18px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.guarantee-badge {
  margin: 0;
  padding: 14px 24px;
  background: rgba(224, 93, 122, 0.12);
  border: 1.5px solid rgba(224, 93, 122, 0.3);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.guarantee-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #E05D7A;
}

.fineprint {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 900;
}

.fineprint-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fineprint-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

.fineprint-divider {
  opacity: 0.2;
  display: none;
}

@media (min-width: 860px) {
  .guarantee-badge {
    font-size: 12px;
  }
  
  .fineprint {
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .fineprint-divider {
    display: inline;
  }
}

/* FAQ */
.faq {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

details {
  border: 1px solid var(--color-rose-50);
  background: rgba(255, 249, 251, 0.6);
  border-radius: 28px;
  padding: 18px 18px;
}

summary {
  cursor: pointer;
  list-style: none;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-weight: 900;
  font-size: 16px;
  opacity: 0.75;
  transition: transform 160ms ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  margin: 10px 0 0;
  color: rgba(31, 21, 28, 0.62);
  font-size: 14px;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--color-soft-dark);
  color: rgba(255, 255, 255, 0.55);
  padding: 72px 0;
  text-align: center;
}

.brand {
  font-weight: 950;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-size: 20px;
  color: var(--color-rose-500);
}

.brand .brand__dot {
  color: var(--color-white);
}

.copyright {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.34;
  font-style: italic;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Shared entrance animation (used by homepage + product pages) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


