/* ============================================================
   META — Notion-Inspired Light Design System
   Font: Inter | Warm off-white | Clean & Minimal
   ============================================================ */

/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
img.emoji { height: 1.2em; width: 1.2em; margin: 0 0.05em; vertical-align: -0.2em; display: inline-block; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* --- DESIGN TOKENS --- */
:root {
  --black: #1a1a1a;
  --dark: #2d2d2d;
  --dark-mid: #404040;
  --white: #FFFFFF;
  --cream: #F7F7F5;
  --text: #37352f;
  --text-light: rgba(55, 53, 47, 0.5);
  --bg: #FFFFFF;
  --bg-light: #F7F7F5;
  --bg-muted: #F0F0EE;
  --border: rgba(55, 53, 47, 0.09);
  --red: #EB5757;
  --green: #0F7B6C;
  --accent: #455DD3;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --r-btn: 8px;
  --r-card: 12px;
  --r-xl: 16px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.1);

  --container: 1200px;
  --header-height: 64px;
  --bar-height: 40px;
}

body {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================
   ANNOUNCEMENT BAR
   ============================ */
.announcement-bar {
  background: #191919;
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: sticky;
  top: 0;
  z-index: 1001;
  border-bottom: none;
}

.announcement-bar__flag {
  display: none;
}

/* ============================
   HEADER / NAV
   ============================ */
.header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: var(--bar-height);
  z-index: 1000;
  border-bottom: 1px solid rgba(55, 53, 47, 0.06);
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.header__left {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

.header__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-mid);
  transition: color 0.2s;
}

.header__link:hover { color: var(--black); }

.header__logo {
  text-align: center;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  overflow: visible;
}

.header__logo-img {
  height: auto;
  width: 110px;
}

@media (max-width: 480px) {
  .header__logo-img {
    width: 90px;
  }
}

.header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

.header__cart {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--black);
  transition: opacity 0.2s;
}

.header__cart:hover { opacity: 0.6; }

.header__cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #455DD3;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s;
}

.header__cart-count.visible {
  opacity: 1;
  transform: scale(1);
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: 12px;
}

.header__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}

.header__hamburger--open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header__hamburger--open span:nth-child(2) { opacity: 0; }
.header__hamburger--open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================
   HERO
   ============================ */
.hero {
  background: #FFFFFF;
  overflow: hidden;
}

.hero__inner {
  display: flex;
  align-items: center;
  min-height: calc(85vh - var(--header-height) - var(--bar-height));
  gap: 40px;
}

.hero__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 60px 0;
}

.hero__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--black);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero__title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2.5px;
  color: var(--black);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero__subtitle {
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  max-width: 420px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #455DD3;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid #455DD3;
  transition: all 0.25s ease;
  box-shadow: none;
}

.hero__cta:hover {
  background: #3a4fc2;
  border-color: #3a4fc2;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.hero__cta--outline {
  background: var(--white);
  color: var(--black);
  border-color: rgba(55, 53, 47, 0.16);
  box-shadow: none;
}

.hero__cta--outline:hover {
  background: var(--bg-muted);
  color: var(--black);
  border-color: var(--border);
  transform: translateY(-1px);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  background: var(--bg-muted);
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  width: fit-content;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.15s;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1s;
}

.hero__stars {
  font-size: 14px;
  letter-spacing: 1px;
}

.hero__stars span {
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  margin-left: 4px;
  letter-spacing: -0.3px;
}

.hero__proof-sep {
  width: 4px;
  height: 4px;
  background: var(--border);
  border-radius: 50%;
}

.hero__proof-text {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}

.hero__image {
  flex: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__image img {
  width: 100%;
  max-width: 540px;
  height: auto;
  object-fit: contain;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.3s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================
   MARQUEE / SCROLLING BAR
   ============================ */
.marquee {
  padding: 32px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(55, 53, 47, 0.09);
  display: flex;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
  animation: marqueeScroll 20s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.2px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.marquee__dot {
  width: 5px;
  height: 5px;
  background: #455DD3;
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* ============================
   REASSURANCE BAR
   ============================ */
.reassurance {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-light);
}

.reassurance__grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.reassurance__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.reassurance__item svg {
  stroke: #455DD3;
  flex-shrink: 0;
}

/* ============================
   SECTIONS
   ============================ */
.section {
  padding: 80px 0;
}

.section__header {
  margin-bottom: 40px;
}

.section__title {
  font-size: 36px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.section__subtitle {
  font-size: 16px;
  color: var(--text);
}

.section__header--center {
  text-align: center;
}

/* ============================
   PRODUCT CARDS
   ============================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: #455DD3;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
}

.product-card__badge--new { background: #455DD3; }
.product-card__badge--deal { background: var(--red); }
.product-card__badge--savings { background: #455DD3; }

.product-card__image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-light);
  border-radius: var(--r-xl);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.06);
}

.product-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-card__name {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}

.product-card__tagline {
  font-size: 13px;
  color: var(--text-light);
}

.product-card__price {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.product-card__price-old {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
  text-decoration: line-through;
}

/* Link wrapper on full card */
.product-card__link {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Standalone CTA on card */
.product-card__info .btn {
  align-self: flex-start;
  margin-top: 10px;
}

/* ============================
   PRODUCT SHOWCASE (Homepage)
   ============================ */
.products-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.products-showcase--single {
  grid-template-columns: 1fr;
  max-width: 560px;
}

.showcase-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(55, 53, 47, 0.09);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.showcase-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: #455DD3;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 24px;
}

.showcase-card__badge--savings {
  background: var(--red);
}

.showcase-card__link {
  display: block;
}

.showcase-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-light);
  position: relative;
}

.showcase-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.showcase-card__img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.showcase-card:hover .showcase-card__img-default {
  opacity: 0;
}

.showcase-card:hover .showcase-card__img-hover {
  opacity: 1;
  transform: scale(1.03);
}

.showcase-card__body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.showcase-card__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.3px;
}

.showcase-card__tagline {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

.showcase-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  gap: 12px;
}

.showcase-card__price {
  font-size: 24px;
  font-weight: 800;
  color: var(--black);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.showcase-card__price-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light);
  display: block;
  margin-bottom: 2px;
}
.showcase-card__price-old {
  font-size: 16px;
  font-weight: 400;
  color: rgba(55,53,47,0.35);
  text-decoration: line-through;
  margin-left: 6px;
}

/* ============================
   BUNDLES (legacy)
   ============================ */
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 600;
  border-radius: var(--r-btn);
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: #455DD3;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid #455DD3;
}

.btn--primary:hover {
  background: #3a4fc2;
  border-color: #3a4fc2;
}

.btn--dark {
  background: #455DD3;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  padding: 10px 20px;
  border: 1px solid #455DD3;
}

.btn--dark:hover {
  background: #3a4fc2;
  border-color: #3a4fc2;
}

.btn--outline {
  background: var(--white);
  color: var(--black);
  font-size: 14px;
  padding: 10px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn--outline:hover {
  background: #455DD3;
  color: var(--white);
  border-color: #455DD3;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn--white {
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  padding: 15px 30px;
  border: 2px solid var(--white);
}

.btn--white:hover {
  background: transparent;
  color: var(--white);
}

.btn--large {
  font-size: 16px;
  padding: 10px 24px;
}

/* ============================
   ABOUT BLOCK (Image + Text)
   ============================ */
.about-block__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-block__image {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}

.about-block__image img,
.about-block__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-block__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-block__title {
  font-size: 34px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -1px;
  line-height: 1.1;
}

.about-block__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}

.about-block__text p {
  margin-bottom: 12px;
}

.about-block__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--black);
}

.about-block__stats {
  display: flex;
  gap: 32px;
  margin: 8px 0;
}

.about-block__stat {
  display: flex;
  flex-direction: column;
}

.about-block__stat strong {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.5px;
}

.about-block__stat span {
  font-size: 13px;
  color: var(--text-light);
}

/* ============================
   REVIEWS
   ============================ */
.reviews__header {
  text-align: center;
  margin-bottom: 40px;
}

.reviews__rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.reviews__big-stars {
  font-size: 18px;
  color: #D4A017;
  letter-spacing: 2px;
}

.reviews__rating-number {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
}

.reviews__rating-count {
  font-size: 14px;
  color: var(--text-light);
}

.reviews__title {
  font-size: 34px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -1px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.review-card__stars {
  color: var(--black);
  font-size: 14px;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  flex: 1;
}

.review-card__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 16px;
}

.review-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-card__product {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  background: rgba(55, 53, 47, 0.06);
  padding: 3px 10px;
  border-radius: 20px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #455DD3;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.review-card__info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.review-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

.review-card__meta {
  font-size: 11px;
  color: var(--text-light);
}

.review-card__badge {
  font-size: 11px;
  font-weight: 600;
  color: #2D8A4E;
  background: rgba(45, 138, 78, 0.08);
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================
   TRUST BAR
   ============================ */
.trust-bar {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.trust-bar__emoji {
  font-size: 28px;
  line-height: 1;
}
.trust-bar__emoji img.emoji {
  height: 28px;
  width: 28px;
}

.trust-bar__icon svg {
  width: 32px;
  height: 32px;
  stroke: #455DD3;
}

.trust-bar__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}

.trust-bar__desc {
  font-size: 13px;
  color: var(--text-light);
}

/* Shipping logos */
.trust-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.shipping-logo {
  height: 36px;
  width: auto;
  display: block;
  border-radius: 6px;
}

/* Payment logos */
.trust-bar__payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.pay-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  height: 36px;
}
.pay-logo-img {
  height: 22px;
  width: auto;
  max-width: 60px;
  display: block;
  object-fit: contain;
}

/* ============================
   ENGAGEMENTS
   ============================ */
.engagements-section {
  background: var(--bg-light);
}

.engagements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.engagement {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.engagement:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.engagement__emoji {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 4px;
}
.engagement__emoji img.emoji {
  height: 32px;
  width: 32px;
}

.engagement__number {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.5px;
  display: none;
}

.engagement__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
}

.engagement__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}

/* ============================
   FEATURES GRID
   ============================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature__icon {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  width: 56px;
  height: 56px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #455DD3;
}

.feature__icon svg { stroke: var(--white); }

.feature__emoji {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 4px;
}
.feature__emoji img.emoji {
  height: 36px;
  width: 36px;
}

.features-section {
  background: var(--bg-light);
  border-radius: 0;
}

.feature__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

.feature__text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}

/* ============================
   CTA SECTION (Black)
   ============================ */
.cta-section {
  background: linear-gradient(135deg, #455DD3 0%, #3a4fc2 50%, #455DD3 100%);
  padding: 100px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section__title {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.cta-section__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.5);
}

.cta-section__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
}

/* ============================
   NEWSLETTER
   ============================ */
.newsletter {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.newsletter__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.newsletter__desc {
  font-size: 14px;
  color: var(--text);
}

.newsletter__form {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.newsletter__form input {
  font-family: var(--font);
  font-size: 14px;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-btn);
  width: 260px;
  outline: none;
  transition: all 0.2s;
  background: var(--bg-light);
}

.newsletter__form input:focus {
  border-color: #455DD3;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(23, 92, 211, 0.15);
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: #1a1a1a;
  color: var(--white);
  padding: 60px 0 0;
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__top {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.footer__logo-img {
  height: auto;
  width: 120px;
}

.footer__brand-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 320px;
  line-height: 1.6;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 60px;
}

.footer__col h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  padding: 5px 0;
  transition: color 0.2s;
}

.footer__col a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer__payments {
  display: flex;
  gap: 8px;
}

.footer__payment {
  width: 40px;
  height: 26px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

/* ============================
   PRODUCT PAGE
   ============================ */
.product-page {
  padding-top: 40px;
  padding-bottom: 80px;
  overflow-x: hidden;
}

.product-page__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 32px;
  transition: color 0.2s;
}

.product-page__back:hover { color: var(--black); }

.product-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 100%;
  overflow: hidden;
}

.product-page__gallery { position: sticky; top: 130px; }

.product-page__image-main {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--bg-light);
  margin-bottom: 12px;
}

.product-page__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.product-page__thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  background: var(--bg-light);
}

.product-page__thumb:hover,
.product-page__thumb--active {
  border-color: #455DD3;
}

.product-page__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(55, 53, 47, 0.15);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.gallery-dot--active {
  background: #455DD3;
  transform: scale(1.3);
}

.product-page__image-main {
  touch-action: pan-y pinch-zoom;
  user-select: none;
  -webkit-user-select: none;
  position: relative;
}
.product-page__image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease;
}
.product-page__image-main img.gallery-fading {
  opacity: 0.5;
}

.product-page__details {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.product-page__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  background: #455DD3;
  margin-bottom: 12px;
}

.product-page__badge:empty { display: none; }

/* Stock indicator */
.product-page__stock {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 16px;
}

.product-page__stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0F7B6C;
  animation: stockPulse 2s ease infinite;
}

@keyframes stockPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Price row */
.product-page__price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

/* Variant selector */
.product-page__variants {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.product-page__variant {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
  background: var(--white);
}
.product-page__variant:hover {
  border-color: rgba(55, 53, 47, 0.3);
}
.product-page__variant--active {
  border-color: #455DD3;
  color: #455DD3;
  background: rgba(69, 93, 211, 0.04);
}
.product-page__variant-swatch {
  width: 24px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.1);
}

/* Highlights (emoji bullet points) */
.product-page__highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--r-card);
  border: 1px solid var(--border);
}

.product-page__highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.4;
}

.product-page__highlight-emoji {
  font-size: 20px;
  flex-shrink: 0;
}

.product-page__highlight-emoji img.emoji {
  height: 20px;
  width: 20px;
}

/* Feature grid (2x2) */
.product-page__feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
  margin-top: 24px;
}

.product-page__fg-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-page__fg-item svg {
  width: 20px;
  height: 20px;
  stroke: #455DD3;
  flex-shrink: 0;
}

.product-page__name {
  font-size: 36px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.product-page__tagline {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.product-page__price {
  font-size: 26px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 24px;
}
.product-page__price-old {
  font-size: 18px;
  font-weight: 400;
  color: rgba(55,53,47,0.4);
  text-decoration: line-through;
  margin-left: 8px;
}

.product-page__description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.product-page__description p { margin-bottom: 12px; }
.product-page__description p:last-child { margin-bottom: 0; }

.product-page__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.product-page__features li {
  font-size: 14px;
  line-height: 20px;
  color: var(--black);
  padding-left: 20px;
  position: relative;
}

.product-page__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #455DD3;
}

/* Quantity + Add to cart */
.product-page__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.product-page__qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--r-btn);
  overflow: hidden;
}

.qty-btn {
  width: 44px;
  height: 48px;
  font-size: 18px;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  background: none;
  border: none;
  cursor: pointer;
}

.qty-btn:hover { background: var(--bg-light); }

.product-page__qty span,
#qty-value {
  width: 40px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}

.product-page__actions .btn { flex: 1; height: 48px; }

/* Trust badges */
.product-page__trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  margin-bottom: 24px;
}

.product-page__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-light);
}

.product-page__trust-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Specs */
.product-page__specs {
  border-top: 1px solid var(--border);
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.spec-item__label { color: var(--text-light); }

.spec-item__value {
  font-weight: 500;
  color: var(--black);
  text-align: right;
}

/* Related */
.related-section { padding: 60px 0; }

.related-section .products-grid {
  grid-template-columns: repeat(3, 1fr);
}

#related-products .reveal {
  opacity: 1;
  transform: none;
}

/* --- Visitors indicator --- */
.product-page__visitors {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 4px;
}
.product-page__visitors-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EB5757;
  animation: stockPulse 1.5s ease infinite;
}

/* --- Social proof near CTA --- */
.product-page__social-proof {
  margin-bottom: 12px;
}
.product-page__social-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}
.product-page__social-stars span {
  margin-left: 6px;
}

/* --- Savings banner --- */
.product-page__savings {
  background: #FFF3E0;
  color: #E65100;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--r-btn);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* --- Reassurance under CTA --- */
.product-page__reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.product-page__reassurance span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
}

/* --- Sticky mobile CTA --- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: none;
}
.sticky-cta--visible {
  transform: translateY(0);
}
.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: var(--container);
  margin: 0 auto;
}
.sticky-cta__info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sticky-cta__price {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
}
.sticky-cta__old {
  font-size: 14px;
  color: rgba(55,53,47,0.4);
  text-decoration: line-through;
}
.sticky-cta__btn {
  white-space: nowrap;
  padding: 12px 24px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .sticky-cta { display: block; }
  .product-page__reassurance { flex-direction: column; gap: 8px; }
}

/* --- Technology section --- */
.tech-section { background: var(--bg-light); }
.tech-section__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #455DD3;
  margin-bottom: 12px;
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.tech-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.tech-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(69, 93, 211, 0.06);
  border-radius: 14px;
  color: #455DD3;
}
.tech-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}
.tech-card__text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .tech-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .tech-card { padding: 24px 16px; }
}
@media (max-width: 480px) {
  .tech-grid { grid-template-columns: 1fr; }
}

/* --- Press section --- */
.press-section { padding: 40px 0; }
.press-section__inner {
  text-align: center;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.press-section__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 24px;
}
.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.press-logo {
  font-size: 18px;
  font-weight: 700;
  color: rgba(55, 53, 47, 0.55);
  letter-spacing: -0.5px;
  transition: color 0.2s;
}
.press-logo:hover {
  color: rgba(55, 53, 47, 0.8);
}

/* ============================
   CART PAGE
   ============================ */
.cart-page {
  padding-top: 40px;
  padding-bottom: 100px;
  min-height: calc(100vh - 120px);
}

.cart-page__title {
  font-size: 32px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.75px;
  margin-bottom: 32px;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.cart-item:first-child { border-top: 1px solid var(--border); }

.cart-item__image-wrap,
.cart-item__image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-light);
}

.cart-item__image-wrap img,
.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}

.cart-item__price {
  font-size: 14px;
  color: var(--text-light);
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item__qty .qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-light);
  font-size: 14px;
}

.cart-item__qty .qty-btn:hover { background: var(--border); }

.cart-item__qty .qty-value {
  font-size: 14px;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
  color: var(--black);
}

.cart-item__total {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}

.cart-item__remove {
  color: var(--text-light);
  transition: color 0.15s;
  display: flex;
  align-items: center;
}

.cart-item__remove:hover { color: var(--red); }

/* Cart layout (sidebar) */
.cart-page__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.cart-page__sidebar {
  position: sticky;
  top: 130px;
}

.cart-page__summary-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow);
}

.cart-page__summary-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
}

.cart-page__row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text);
}

.cart-page__row--total {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  padding-top: 16px;
  margin-top: 4px;
}

.cart-page__divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

.cart-page__shipping-free {
  color: var(--green);
  font-weight: 600;
}

#paypal-button-container {
  margin-top: 4px;
  min-height: 55px;
}

.cart-page__trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.cart-page__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
}

.cart-page__trust-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.cart-page__payments {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Cart empty state */
.cart-page__empty {
  text-align: center;
  padding: 40px 20px;
  min-height: calc(100vh - 300px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.cart-page__empty-icon {
  font-size: 64px;
  margin-bottom: 16px;
}

.cart-page__empty h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.cart-page__empty p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.btn--full { width: 100%; }

/* Old cart summary (keep for compat) */
.cart-summary {
  margin-top: 32px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  max-width: 400px;
  margin-left: auto;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text);
}

.cart-summary__row--total {
  border-top: 1px solid var(--border);
  margin-top: 12px;
  padding-top: 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
}

.cart-summary .btn {
  width: 100%;
  margin-top: 20px;
  height: 52px;
}

/* Cart empty */
.cart-empty {
  text-align: center;
  padding: 80px 0;
}

.cart-empty__icon {
  font-size: 64px;
  margin-bottom: 16px;
  opacity: 0.15;
}

.cart-empty__text {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 24px;
}

/* ============================
   FAQ PAGE
   ============================ */
.faq-page {
  padding-top: 40px;
  padding-bottom: 80px;
}

.faq-page__title {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--black);
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  cursor: pointer;
}

.faq-item__question:hover { color: var(--black); }

.faq-item__icon {
  flex-shrink: 0;
  font-size: 20px;
  color: var(--text-light);
  transition: transform 0.3s;
}

.faq-item--open .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item__answer-content {
  padding-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

.faq-item--open .faq-item__answer { max-height: 500px; }
.faq-item__chevron {
  flex-shrink: 0;
  color: var(--text-light);
  transition: transform 0.3s;
}
.faq-item--open .faq-item__chevron { transform: rotate(180deg); }

.faq-contact {
  text-align: center;
  margin-top: 64px;
  padding: 48px 32px;
  background: var(--bg-light);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
}
.faq-contact h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.faq-contact p {
  color: var(--text);
  margin-bottom: 24px;
}

/* ============================
   ABOUT PAGE
   ============================ */
.about-page {
  padding-top: 40px;
  padding-bottom: 0;
}

.about-page__title {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--black);
  text-align: center;
  margin-bottom: 12px;
}

.about-page__subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 48px;
}

.about-content {
  max-width: 700px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 26px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.5px;
  margin-top: 40px;
  margin-bottom: 12px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
}

/* About Numbers */
.about-numbers {
  background: #455DD3;
  padding: 64px 0;
}
.about-numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.about-numbers__value {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}
.about-numbers__label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ============================
   LEGAL PAGES
   ============================ */
.legal-page {
  padding-top: 40px;
  padding-bottom: 80px;
}

.legal-page__title {
  font-size: 32px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.75px;
  margin-bottom: 32px;
}

.legal-content { max-width: 700px; }

.legal-content h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 12px;
}

.legal-content ul { margin-bottom: 12px; padding-left: 20px; }

.legal-content li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 4px;
  list-style: disc;
}

.legal-content a {
  color: var(--black);
  text-decoration: underline;
}

/* ============================
   SUCCESS PAGE
   ============================ */
.success-page {
  padding-top: 60px;
  padding-bottom: 120px;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-page > .container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.success-page__icon { font-size: 64px; margin-bottom: 24px; }

.success-page__title {
  font-size: 28px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
}

.success-page__text {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 8px;
}

.success-page__card {
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 60px 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

@media (max-width: 600px) {
  .success-page { padding-top: 30px; padding-bottom: 120px; }
  .success-page__card { padding: 28px 16px; }
  .success-page__title { font-size: 22px; }
  .success-page__text { font-size: 14px; }
}

.success-page__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 32px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--r-card);
}

.success-page__detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.success-page__detail svg {
  flex-shrink: 0;
  color: var(--text-light);
}

/* ============================
   TOAST
   ============================ */
.toast {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 99999;
  background: #455DD3;
  color: var(--white);
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: reveal-safety 0s 3s forwards;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.3s; }

/* Safety net: if GSAP fails to load, show content after 3s */
@keyframes reveal-safety {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================
   RESPONSIVE
   ============================ */

/* Tablet */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .bundles-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .engagements-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .about-block__grid { gap: 32px; }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  .hero__title { font-size: 50px; }
  .hero__inner { gap: 24px; }
  .hero__image img { max-width: 440px; }
  .section__title { font-size: 26px; }
  .reviews__title { font-size: 32px; }
  .cta-section__title { font-size: 32px; }

  .newsletter__inner { flex-direction: column; text-align: center; }
  .newsletter__form { justify-content: center; }

  .cart-page__layout {
    grid-template-columns: 1fr 320px;
    gap: 32px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .announcement-bar {
    font-size: 11px;
    line-height: 1.5;
    white-space: normal;
  }

  .header__left { display: none; }

  .header__left--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    gap: 4px;
    z-index: 999;
  }

  .header__left--open .header__link {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
  }

  .header__hamburger { display: flex; }

  .header__logo { font-size: 22px; }

  .hero {
    overflow: visible;
  }

  .hero__inner {
    flex-direction: column;
    min-height: auto;
    gap: 0;
    padding: 32px 0 40px;
  }

  .hero__text {
    padding: 0;
    align-items: center;
    text-align: center;
    order: 2;
  }

  .hero__image {
    order: 1;
    margin-bottom: 24px;
    width: 100%;
    justify-content: center;
  }

  .hero__image img {
    max-width: 300px;
    width: 80%;
    margin: 0 auto;
  }

  .hero__title {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .hero__subtitle {
    font-size: 15px;
    max-width: 100%;
  }

  .hero__actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero__cta {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
  }

  .hero__proof { flex-direction: column; gap: 4px; }
  .hero__proof-sep { display: none; }

  .reassurance__grid { flex-direction: column; align-items: center; gap: 12px; }

  .section { padding: 60px 0; }
  .section__title { font-size: 24px; }
  .section__header { margin-bottom: 28px; }

  .products-showcase { grid-template-columns: 1fr; gap: 24px; max-width: 480px; }
  .showcase-card__body { padding: 20px 22px 24px; }
  .showcase-card__name { font-size: 20px; }
  .showcase-card__price { font-size: 20px; }

  .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .bundles-grid { grid-template-columns: 1fr; gap: 16px; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .about-block__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-block__stats { gap: 20px; }
  .about-block__stat strong { font-size: 20px; }

  .engagements-grid { grid-template-columns: 1fr; gap: 16px; }

  .reviews__title { font-size: 26px; }
  .reviews__grid { grid-template-columns: 1fr; gap: 16px; }
  .reviews__rating-summary { flex-wrap: wrap; gap: 6px; }
  .review-card__badge { display: none; }

  .cta-section {
    padding: 60px 20px;
  }
  .cta-section__title { font-size: 28px; }

  .trust-bar__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .newsletter__inner { flex-direction: column; text-align: center; gap: 20px; }
  .newsletter__form { flex-direction: column; align-items: center; }
  .newsletter__form input { width: 100%; max-width: 320px; }

  .product-page__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
  .product-page__gallery {
    min-width: 0;
    max-width: 100%;
  }

  .product-page__gallery { position: static; }
  .product-page__thumbs { display: none; }
  .gallery-dots { display: flex; }
  .product-page__name { font-size: 26px; }

  .cart-page__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cart-page__sidebar {
    position: static;
  }

  .checkout-form__row {
    flex-direction: column;
  }

  .cart-item {
    grid-template-columns: 60px 1fr auto auto;
    gap: 10px;
  }

  .cart-item__image-wrap,
  .cart-item__image {
    width: 60px;
    height: 60px;
  }

  .cart-item__total { display: none; }

  /* Fix 1: Product page actions — stack vertically on mobile */
  .product-page__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .product-page__actions .product-page__qty {
    align-self: flex-start;
  }
  .product-page__actions .btn {
    width: 100%;
    flex: none;
    white-space: normal;
  }

  /* Fix 2: Feature grid — 2x2, prevent text overflow */
  .product-page__feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .product-page__fg-item {
    font-size: 10px;
    gap: 6px;
    min-width: 0;
    letter-spacing: 0;
  }
  .product-page__fg-item span {
    min-width: 0;
    word-break: break-word;
    white-space: normal;
    line-height: 1.3;
  }

  /* Fix 3: Highlights — proper word wrapping */
  .product-page__highlights {
    padding: 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .product-page__highlight {
    font-size: 14px;
  }

  /* Fix 4: Specs table — compact on mobile with word-break */
  .spec-item {
    font-size: 13px;
    gap: 12px;
  }
  .spec-item__label {
    flex: 0 0 auto;
    max-width: 40%;
  }
  .spec-item__value {
    word-break: break-word;
    overflow-wrap: break-word;
    min-width: 0;
    flex: 1;
  }

  /* Fix 5: Trust bar payments — wrap to prevent overflow */
  .trust-bar__payments {
    flex-wrap: wrap;
  }
  .trust-bar__logos {
    flex-wrap: wrap;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .faq-page__title,
  .about-page__title { font-size: 30px; }

  .about-numbers__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .about-numbers__value { font-size: 36px; }

  .related-section .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .marquee__track { gap: 32px; }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero__title { font-size: 32px; line-height: 1.1; }
  .hero__image img { max-width: 240px; }
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .trust-bar__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .related-section .products-grid { grid-template-columns: 1fr; }
  .about-block__stats { flex-direction: column; gap: 12px; }
  .about-numbers__grid { grid-template-columns: 1fr 1fr; }
  .about-numbers__value { font-size: 30px; }

  /* Fix 6: Showcase cards — single column on small mobile */
  .products-showcase { grid-template-columns: 1fr; }

  /* Fix 2 (480px): Feature grid — keep 2x2 but smaller font */
  .product-page__feature-grid {
    gap: 8px;
  }
  .product-page__fg-item {
    font-size: 10px;
    letter-spacing: 0;
    gap: 4px;
  }
  .product-page__fg-item svg {
    width: 16px;
    height: 16px;
  }

  /* Fix 4 (480px): Specs table — even more compact */
  .spec-item {
    font-size: 12px;
    padding: 10px 0;
  }

  /* Fix 3 (480px): Product name and highlights */
  .product-page__name { font-size: 22px; }
  .product-page__highlight {
    font-size: 13px;
    gap: 8px;
  }

  /* Fix 7: General text overflow prevention for 375px screens */
  .btn {
    white-space: normal;
    word-break: break-word;
  }
  .hero__badge {
    font-size: 12px;
    padding: 6px 14px;
    text-align: center;
  }
  .announcement-bar {
    font-size: 10px;
    padding: 8px 12px;
    word-break: break-word;
    line-height: 1.6;
  }
  .reassurance__item {
    font-size: 12px;
  }
  .product-page__tagline {
    font-size: 14px;
    word-break: break-word;
  }
  .product-page__description {
    font-size: 14px;
    word-break: break-word;
  }
  .showcase-card__tagline {
    word-break: break-word;
  }
  .cta-section__title {
    font-size: 24px;
    word-break: break-word;
  }
  .faq-page__title,
  .about-page__title {
    font-size: 26px;
    word-break: break-word;
  }
  .faq-item__question {
    font-size: 14px;
  }
  .cart-page__title {
    font-size: 24px;
  }
  .engagement__title {
    font-size: 16px;
  }
  .engagement {
    padding: 24px 20px;
  }

  /* Fix: Checkout form row — stack name fields on small screens */
  .checkout-form__row {
    flex-direction: column;
  }

  /* Fix: Footer grid — single column on small mobile */
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* --- CHECKOUT FORM --- */
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.checkout-form input,
.checkout-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  box-sizing: border-box;
}
.checkout-form input:focus,
.checkout-form select:focus {
  outline: none;
  border-color: #455DD3;
}
.checkout-form__row {
  display: flex;
  gap: 10px;
}
.checkout-form__row input {
  flex: 1;
}
.checkout-form__newsletter {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
  cursor: pointer;
  margin-top: 4px;
}
.checkout-form__newsletter input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #455DD3;
}

/* --- PROMO CODE --- */
.cart-page__promo-form {
  display: flex;
  gap: 8px;
  margin: 12px 0;
}
.cart-page__promo-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-btn);
  font-size: 14px;
  font-family: inherit;
}
.cart-page__promo-form .btn--small {
  padding: 10px 16px;
  font-size: 13px;
}
.cart-page__promo-applied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--r-btn);
  padding: 10px 14px;
  margin: 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: #16a34a;
}
.cart-page__promo-remove {
  background: none;
  border: none;
  color: #999;
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: rgba(255,255,255,0.85);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  font-size: 13px;
  line-height: 1.5;
}
.cookie-banner p { margin: 0; flex: 1; }
.cookie-banner a { color: #fff; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-banner__btn {
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}
.cookie-banner__btn--accept { background: #fff; color: #1a1a1a; }
.cookie-banner__btn--refuse { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; text-align: center; padding: 14px 16px; }
  .cookie-banner__actions { justify-content: center; }
}
