/* ══════════════════════════════════════════════════════════
   HEITONGBYMEOW — DESIGN SYSTEM & GLOBAL STYLES
   ══════════════════════════════════════════════════════════ */

:root {
  --rose:        #D4A5A5;
  --rose-light:  #F5E6E6;
  --rose-dark:   #B88080;
  --cream:       #FDF6EF;
  --bg:          #FAFAF8;
  --taupe:       #B89A8A;
  --taupe-light: #EDE4DF;
  --charcoal:    #3D3D3D;
  --muted:       #888888;
  --white:       #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(61,61,61,.07);
  --shadow-md: 0 4px 24px rgba(61,61,61,.11);
  --shadow-lg: 0 8px 48px rgba(61,61,61,.15);

  --transition: .2s ease;
  --container:  1160px;
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--bg);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ── TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--charcoal); }

/* ── LAYOUT ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.section { padding-block: 5rem; }
.section--cream { background: var(--cream); }
.section--rose  { background: var(--rose-light); }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(212,165,165,.4);
}
.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,165,165,.5);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--taupe-light);
}
.btn-outline:hover {
  border-color: var(--rose);
  color: var(--rose-dark);
  transform: translateY(-1px);
}
.btn-ghost {
  color: var(--taupe);
  padding: .5rem 1rem;
  font-weight: 500;
}
.btn-ghost:hover { color: var(--rose-dark); }

/* ── NAV ───────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,248,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--taupe-light);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -.02em;
}
.nav__logo span { color: var(--rose); }
.nav__links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav__links a {
  padding: .5rem .85rem;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: var(--transition);
}
.nav__links a:hover, .nav__links a.active { color: var(--rose-dark); background: var(--rose-light); }
.nav__cta { margin-left: .75rem; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  padding-block: 5.5rem 4.5rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--bg) 60%);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(212,165,165,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--rose-light);
  color: var(--rose-dark);
  font-size: .85rem;
  font-weight: 600;
  padding: .35rem .9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  letter-spacing: .03em;
}
.hero__title { margin-bottom: 1.25rem; }
.hero__title em { font-style: italic; color: var(--rose-dark); }
.hero__desc {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__img-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero__mockup {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--cream) 0%, var(--rose-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
}
.hero__mockup-screen {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  width: 100%;
  box-shadow: var(--shadow-md);
}
.hero__mockup-bar {
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--rose);
  margin-bottom: .6rem;
}
.hero__mockup-bar:nth-child(2) { width: 75%; background: var(--taupe-light); }
.hero__mockup-bar:nth-child(3) { width: 55%; background: var(--taupe-light); }
.hero__mockup-tabs {
  display: flex;
  gap: .4rem;
  width: 100%;
}
.hero__mockup-tab {
  flex: 1;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 600;
  color: var(--rose-dark);
}
.hero__mockup-tab:first-child { background: var(--rose); color: var(--white); }
.hero__badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--white);
  border-radius: var(--radius-full);
  padding: .6rem 1.1rem;
  box-shadow: var(--shadow-md);
  font-size: .8rem;
  font-weight: 600;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: .4rem;
  border: 2px solid var(--rose-light);
}

/* ── TRUST BAR ─────────────────────────────────────────── */
.trust-bar {
  background: var(--rose);
  padding: .9rem 0;
}
.trust-bar__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
}
.trust-bar__item svg { opacity: .85; }

/* ── SECTION HEADER ────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header__tag {
  display: inline-block;
  background: var(--rose-light);
  color: var(--rose-dark);
  font-size: .8rem;
  font-weight: 700;
  padding: .3rem .85rem;
  border-radius: var(--radius-full);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--muted); max-width: 540px; margin-inline: auto; font-size: 1.05rem; }

/* ── PRODUCT CARDS ─────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1.5px solid transparent;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--rose-light);
}
.product-card--featured { border-color: var(--rose); }
.product-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--rose);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: var(--radius-full);
  letter-spacing: .04em;
}
.product-card__image {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--cream), var(--rose-light));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card__mockup {
  width: 70%;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 1rem;
}
.product-card__mockup-line {
  height: 6px;
  border-radius: 3px;
  background: var(--rose);
  margin-bottom: .4rem;
}
.product-card__mockup-line:nth-child(2) { width: 70%; background: var(--taupe-light); }
.product-card__mockup-line:nth-child(3) { width: 50%; background: var(--taupe-light); }
.product-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card__category {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--taupe);
  margin-bottom: .5rem;
}
.product-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: .5rem;
  line-height: 1.3;
}
.product-card__desc {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  flex: 1;
  line-height: 1.5;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.product-card__price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
}
.product-card__price-old {
  font-size: .85rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: .3rem;
  font-family: var(--font-body);
  font-weight: 400;
}

/* ── HOW IT WORKS ──────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(16.67% + 2rem);
  right: calc(16.67% + 2rem);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--rose) 0, var(--rose) 8px, transparent 8px, transparent 16px);
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.step__num {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(212,165,165,.4);
  position: relative;
  z-index: 1;
}
.step h4 { font-family: var(--font-body); font-weight: 700; font-size: 1rem; }
.step p { font-size: .9rem; color: var(--muted); }

/* ── BUNDLE SPOTLIGHT ──────────────────────────────────── */
.bundle-spot {
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose-light) 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.bundle-spot__tag {
  display: inline-block;
  background: var(--rose);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  padding: .3rem .85rem;
  border-radius: var(--radius-full);
  letter-spacing: .04em;
  margin-bottom: 1rem;
}
.bundle-spot__title { margin-bottom: .75rem; }
.bundle-spot__savings {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--white);
  color: var(--rose-dark);
  font-size: .85rem;
  font-weight: 700;
  padding: .35rem .85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}
.bundle-spot__includes { margin-bottom: 1.75rem; }
.bundle-spot__includes li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .95rem;
  color: var(--charcoal);
  margin-bottom: .4rem;
}
.bundle-spot__includes li::before {
  content: '✓';
  color: var(--rose-dark);
  font-weight: 700;
  font-size: .9rem;
}
.bundle-spot__price-wrap {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.bundle-spot__price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--charcoal);
}
.bundle-spot__visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bundle-spot__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.bundle-spot__card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-sm);
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}
.bundle-spot__card-text strong {
  display: block;
  font-size: .95rem;
  color: var(--charcoal);
  font-weight: 700;
  margin-bottom: .15rem;
}
.bundle-spot__card-text span { font-size: .8rem; color: var(--muted); }

/* ── BLOG CARDS ─────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  border: 1.5px solid transparent;
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--rose-light);
}
.blog-card__img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--cream), var(--taupe-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}
.blog-card__body { padding: 1.5rem; }
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}
.blog-card__tag {
  background: var(--rose-light);
  color: var(--rose-dark);
  font-size: .75rem;
  font-weight: 700;
  padding: .2rem .65rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.blog-card__read { font-size: .8rem; color: var(--muted); }
.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: .6rem;
  line-height: 1.35;
}
.blog-card__excerpt { font-size: .88rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.5; }
.blog-card__link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--rose-dark);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: var(--transition);
}
.blog-card__link:hover { gap: .5rem; }

/* ── EMAIL SIGNUP ───────────────────────────────────────── */
.email-strip {
  background: var(--charcoal);
  padding: 3.5rem 0;
}
.email-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.email-strip__text h3 {
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: .35rem;
}
.email-strip__text p { color: var(--taupe-light); font-size: .9rem; }
.email-strip__form {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.email-strip__input {
  padding: .75rem 1.25rem;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  min-width: 260px;
  outline: none;
  transition: var(--transition);
}
.email-strip__input::placeholder { color: rgba(255,255,255,.45); }
.email-strip__input:focus { border-color: var(--rose); background: rgba(255,255,255,.15); }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 3rem 0 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: .5rem;
}
.footer__brand-name span { color: var(--rose); }
.footer__tagline { color: rgba(255,255,255,.5); font-size: .88rem; margin-bottom: 1.25rem; }
.footer__social { display: flex; gap: .75rem; }
.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  transition: var(--transition);
  font-weight: 700;
}
.footer__social-link:hover { background: var(--rose); color: var(--white); }
.footer__col-title {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}
.footer__links { display: flex; flex-direction: column; gap: .5rem; }
.footer__links a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: var(--transition);
}
.footer__links a:hover { color: var(--rose); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy { color: rgba(255,255,255,.35); font-size: .82rem; }
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-links a { color: rgba(255,255,255,.35); font-size: .82rem; transition: var(--transition); }
.footer__bottom-links a:hover { color: var(--rose); }

/* ── SHOP PAGE ──────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--bg) 100%);
  padding: 4rem 0 3rem;
  text-align: center;
}
.page-hero p { color: var(--muted); font-size: 1.05rem; margin-top: .75rem; }
.shop-filters {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: .45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: .88rem;
  font-weight: 600;
  border: 2px solid var(--taupe-light);
  color: var(--muted);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--rose);
  color: var(--rose-dark);
  background: var(--rose-light);
}

/* ── PRODUCT PAGE ───────────────────────────────────────── */
.product-page__hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--bg) 100%);
  padding: 4rem 0;
}
.product-page__hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.product-page__visual {
  background: linear-gradient(135deg, var(--cream), var(--rose-light));
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.product-page__mockup-large {
  width: 78%;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}
.product-page__breadcrumb {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.product-page__breadcrumb a { color: var(--muted); transition: var(--transition); }
.product-page__breadcrumb a:hover { color: var(--rose); }
.product-page__category {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--taupe);
  margin-bottom: .5rem;
}
.product-page__title { margin-bottom: .75rem; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.product-page__tagline { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.5rem; }
.product-page__features { margin-bottom: 1.75rem; }
.product-page__features li {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .45rem 0;
  font-size: .95rem;
  border-bottom: 1px solid var(--taupe-light);
}
.product-page__features li:last-child { border-bottom: none; }
.product-page__features li::before {
  content: '✓';
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--rose-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.product-page__price-block { margin-bottom: 1.5rem; }
.product-page__price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.product-page__price-note { font-size: .82rem; color: var(--muted); margin-top: .3rem; }
.product-page__ctas { display: flex; flex-direction: column; gap: .75rem; }
.product-page__ctas .btn { width: 100%; justify-content: center; }
.product-page__secondary-link {
  text-align: center;
  font-size: .85rem;
  color: var(--muted);
  margin-top: .25rem;
}
.product-page__secondary-link a { color: var(--taupe); text-decoration: underline; transition: var(--transition); }
.product-page__secondary-link a:hover { color: var(--rose); }

/* ── PRODUCT DETAILS SECTION ────────────────────────────── */
.product-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding-block: 4.5rem;
  align-items: start;
}
.product-details__screenshots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.product-details__ss {
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--cream), var(--rose-light));
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--taupe);
  font-weight: 600;
  text-align: center;
  padding: .75rem;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.product-details__ss--tall {
  grid-column: span 2;
  aspect-ratio: 16/6;
}

/* ── BLOG PAGE ──────────────────────────────────────────── */
.blog-post__header {
  background: linear-gradient(135deg, var(--cream), var(--bg));
  padding: 4rem 0 3rem;
  text-align: center;
}
.blog-post__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.blog-post__body {
  max-width: 740px;
  margin-inline: auto;
  padding: 3.5rem 1.5rem;
}
.blog-post__body h2 {
  font-size: 1.6rem;
  margin: 2.25rem 0 .85rem;
}
.blog-post__body h3 {
  font-size: 1.25rem;
  margin: 1.75rem 0 .65rem;
}
.blog-post__body p { margin-bottom: 1.15rem; line-height: 1.75; }
.blog-post__body ul, .blog-post__body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.15rem;
}
.blog-post__body ul { list-style: disc; }
.blog-post__body ol { list-style: decimal; }
.blog-post__body li { margin-bottom: .5rem; line-height: 1.65; }
.blog-post__callout {
  background: var(--rose-light);
  border-left: 4px solid var(--rose);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.blog-post__callout strong { color: var(--rose-dark); font-weight: 700; display: block; margin-bottom: .35rem; }
.blog-post__callout p { color: var(--charcoal); margin: 0; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--taupe-light);
}
.faq-item:first-child { border-top: 1px solid var(--taupe-light); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover { color: var(--rose-dark); }
.faq-question__icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-dark);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-question__icon {
  background: var(--rose);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-answer__inner {
  padding: 0 0 1.25rem;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 500px; }

/* ── ABOUT PAGE ─────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  padding-block: 5rem;
}
.about-visual {
  background: linear-gradient(135deg, var(--cream), var(--rose-light));
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3.5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  box-shadow: var(--shadow-md);
}
.about-content h2 { margin-bottom: 1.25rem; }
.about-content p { color: var(--muted); margin-bottom: 1rem; line-height: 1.75; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2.5rem 0;
}
.about-value {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border-left: 3px solid var(--rose);
}
.about-value h4 { font-family: var(--font-body); font-size: .9rem; font-weight: 700; margin-bottom: .3rem; }
.about-value p { font-size: .83rem; color: var(--muted); margin: 0; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner         { grid-template-columns: 1fr; }
  .hero__visual        { order: -1; max-width: 420px; margin-inline: auto; }
  .steps-grid          { grid-template-columns: 1fr; }
  .steps-grid::before  { display: none; }
  .bundle-spot         { grid-template-columns: 1fr; }
  .footer__inner       { grid-template-columns: 1fr 1fr; }
  .product-page__hero-inner { grid-template-columns: 1fr; }
  .product-details     { grid-template-columns: 1fr; }
  .about-grid          { grid-template-columns: 1fr; }
  .about-visual        { order: -1; max-width: 400px; }
}
@media (max-width: 640px) {
  .section             { padding-block: 3.5rem; }
  .nav__links          { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--taupe-light); padding: 1rem 1.5rem; gap: .25rem; }
  .nav__links.open     { display: flex; }
  .nav__cta            { display: none; }
  .nav__toggle         { display: flex; }
  .bundle-spot         { padding: 2rem; }
  .email-strip__inner  { flex-direction: column; text-align: center; }
  .email-strip__input  { min-width: unset; width: 100%; }
  .footer__inner       { grid-template-columns: 1fr; }
  .about-values        { grid-template-columns: 1fr; }
  .hero__actions       { flex-direction: column; }
  .hero__actions .btn  { width: 100%; justify-content: center; }
  .product-details__screenshots { grid-template-columns: 1fr; }
  .product-details__ss--tall { grid-column: 1; }
}
