:root {
  --sunset-red: #ff5e57;
  --sunset-orange: #ff8c42;
  --sunset-yellow: #ffd166;
  --sunset-pink: #ff7eb3;
  --sky-blue: #1e90ff;
  --ink: #221a2f;
  --ink-soft: #5c5468;
  --cream: #fff8f0;
  --gradient-sunset: linear-gradient(135deg, #ff5e57 0%, #ff8c42 35%, #ffd166 70%, #ff7eb3 100%);
  --radius: 20px;
  --shadow-lg: 0 24px 60px rgba(255, 94, 87, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 600; }
em { font-style: italic; color: var(--sunset-red); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn--primary {
  background: var(--gradient-sunset);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 30px 70px rgba(255, 94, 87, 0.28); }
.btn--small { padding: 10px 22px; font-size: 0.9rem; background: var(--gradient-sunset); color: #fff; }
.btn--full { width: 100%; }

.badge {
  display: inline-block;
  background: rgba(255, 94, 87, 0.1);
  color: var(--sunset-red);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 240, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
}
.logo span { color: var(--sunset-red); }
.nav__links { display: flex; gap: 28px; font-weight: 500; }
.nav__links a { color: var(--ink-soft); transition: color 0.2s; }
.nav__links a:hover { color: var(--sunset-red); }

/* Hero */
.hero { padding: 80px 0 60px; position: relative; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { font-size: 3.2rem; line-height: 1.15; margin-bottom: 20px; }
.hero__sub { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 32px; max-width: 480px; }
.hero__cta { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.hero__trust { font-size: 0.9rem; color: var(--ink-soft); }
.hero__media { position: relative; }
.hero__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.hero__glow {
  position: absolute;
  width: 380px; height: 380px;
  background: var(--gradient-sunset);
  filter: blur(80px);
  opacity: 0.35;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Marquee */
.marquee { background: var(--ink); padding: 16px 0; overflow: hidden; }
.marquee__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll 22s linear infinite;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Lifestyle */
.lifestyle { padding: 100px 0; }
.lifestyle__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.lifestyle__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lifestyle__copy h2 { font-size: 2.2rem; margin-bottom: 18px; }
.lifestyle__copy p { color: var(--ink-soft); margin-bottom: 24px; }
.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-weight: 500;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sunset-red);
  font-weight: 700;
}

/* Section title */
.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 12px; }
.section-title--left { text-align: left; }
.section-sub { text-align: center; color: var(--ink-soft); margin-bottom: 40px; }

/* Features */
.features { padding: 100px 0; background: #fff; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.feature-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-card__icon { font-size: 2rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature-card p { color: var(--ink-soft); font-size: 0.95rem; }

/* Colors */
.colors { padding: 100px 0; }
.colors__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); margin-bottom: 32px; }
.colors__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.swatch {
  padding: 12px 20px;
  border-radius: 999px;
  border: 2px solid transparent;
  background: #fff;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: all 0.2s;
}
.swatch.active, .swatch:hover { border-color: var(--sunset-red); color: var(--sunset-red); }

/* Color-reactive product image filters (placeholder until real per-color photos exist) */
.color-filter { transition: filter 0.4s ease; }
.color-filter[data-color="red"] { filter: none; }
.color-filter[data-color="yellow"] { filter: hue-rotate(-25deg) saturate(1.15) brightness(1.05); }
.color-filter[data-color="blue"] { filter: hue-rotate(150deg) saturate(1.3) brightness(0.95); }
.color-filter[data-color="rainbow"] { filter: hue-rotate(60deg) saturate(1.6) contrast(1.05); }
.color-filter[data-color="discolor"] { filter: hue-rotate(280deg) saturate(1.4) brightness(1.02); }
.color-filter[data-color="gift"] { filter: none; }

/* Specs */
.specs { padding: 100px 0; background: #fff; }
.specs__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.specs__table { width: 100%; border-collapse: collapse; }
.specs__table td { padding: 14px 0; border-bottom: 1px solid #eee; }
.specs__table td:first-child { color: var(--ink-soft); font-weight: 500; }
.specs__table td:last-child { text-align: right; font-weight: 600; }
.specs__cta {
  background: var(--gradient-sunset);
  border-radius: var(--radius);
  padding: 40px;
  color: #fff;
  text-align: center;
}
.specs__cta h3 { margin-bottom: 12px; font-size: 1.4rem; }
.specs__cta p { margin-bottom: 24px; opacity: 0.95; }
.specs__cta .btn--primary { background: #fff; color: var(--sunset-red); box-shadow: none; }

/* Reviews */
.reviews { padding: 100px 0; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.stars { margin-bottom: 12px; }
.review-card p { font-style: italic; margin-bottom: 16px; color: var(--ink-soft); }
.review-name { font-weight: 600; font-size: 0.9rem; }

/* Buy */
.buy { padding: 100px 0; background: #fff; }
.buy__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--cream);
  border-radius: 32px;
  padding: 50px;
}
.buy__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.buy__panel h2 { font-size: 2rem; margin: 10px 0 16px; }
.price-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.price { font-size: 2rem; font-weight: 700; color: var(--sunset-red); }
.price-old { text-decoration: line-through; color: var(--ink-soft); }
.price-off { background: var(--sunset-red); color: #fff; padding: 4px 10px; border-radius: 999px; font-size: 0.8rem; font-weight: 600; }
.buy__desc { color: var(--ink-soft); margin-bottom: 28px; }
.option-group { margin-bottom: 20px; }
.option-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.9rem; }
.option-group select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e0d8d0;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
}
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e0d8d0;
  border-radius: 12px;
  overflow: hidden;
}
.qty-control button {
  width: 44px; height: 44px;
  border: none;
  background: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}
.qty-control span { width: 44px; text-align: center; font-weight: 600; }
.buy__assurance { margin-top: 16px; font-size: 0.85rem; color: var(--ink-soft); text-align: center; }

/* FAQ */
.faq { padding: 100px 0; }
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item {
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}
.faq__item summary { font-weight: 600; cursor: pointer; }
.faq__item p { margin-top: 12px; color: var(--ink-soft); }

/* Footer */
.footer { padding: 40px 0; background: var(--ink); color: #fff; }
.footer__inner { display: flex; justify-content: space-between; align-items: center; }
.footer p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* Responsive */
@media (max-width: 900px) {
  .hero__inner, .lifestyle__inner, .specs__grid, .buy__inner { grid-template-columns: 1fr; }
  .features__grid, .reviews__grid { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .hero h1 { font-size: 2.3rem; }
  .buy__inner { padding: 30px; }
}
