/* ── Variables ────────────────────────────────── */
:root {
  --pink:        #f472b6;
  --pink-light:  #fce7f3;
  --pink-dark:   #db2777;
  --blue:        #60a5fa;
  --blue-light:  #dbeafe;
  --blue-dark:   #2563eb;
  --gold:        #f59e0b;
  --white:       #ffffff;
  --off-white:   #fdf8ff;
  --text:        #1e1b4b;
  --muted:       #6b7280;
  --max-width:   1160px;
}

/* ── Base ─────────────────────────────────────── */
body {
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--off-white);
  color: var(--text);
}

.container {
  width: min(var(--max-width), 100% - 3rem);
  margin-inline: auto;
}

/* ── Nav ──────────────────────────────────────── */
.nav {
  background: var(--white);
  border-bottom: 2px solid var(--pink-light);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px #f472b620;
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--pink-dark);
  letter-spacing: -0.01em;
}

.nav__logo span { color: var(--blue-dark); }

.nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}

.nav__links a:hover { color: var(--pink-dark); }

.nav__links .nav__cta {
  background: var(--pink-dark);
  color: var(--white);
  padding: 0.45rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
}

.nav__links .nav__cta:hover { background: var(--pink); color: var(--white); }

/* ── Hero ─────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--blue-light) 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "✦";
  position: absolute; top: 2rem; left: 6%;
  font-size: 1.5rem; color: var(--pink); opacity: 0.5;
}

.hero::after {
  content: "✦";
  position: absolute; bottom: 2rem; right: 6%;
  font-size: 1.5rem; color: var(--blue); opacity: 0.5;
}

.hero__badge {
  display: inline-block;
  background: var(--white);
  color: var(--pink-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px #f472b630;
}

.hero__title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.hero__title .accent-pink { color: var(--pink-dark); }
.hero__title .accent-blue { color: var(--blue-dark); }

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px #0002; }

.btn--pink {
  background: var(--pink-dark);
  color: var(--white);
}

.btn--outline {
  background: var(--white);
  color: var(--text);
  border: 2px solid #e5e7eb;
}

.hero__albums {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}

.hero__album-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem 1.5rem 1.5rem;
  width: 200px;
  text-align: center;
  box-shadow: 0 8px 32px #0001;
  transition: transform 0.2s;
}

.hero__album-card:hover { transform: translateY(-6px); }

.hero__album-card.pink { border-top: 4px solid var(--pink); }
.hero__album-card.blue { border-top: 4px solid var(--blue); }

.hero__album-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.hero__album-emoji { font-size: 3.5rem; margin-bottom: 0.75rem; }

.hero__album-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.hero__album-color {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.hero__album-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--pink-dark);
}

/* ── Products ─────────────────────────────────── */
.products {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-dark);
  margin-bottom: 0.5rem;
}

.section-header__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.section-header__sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  margin-inline: auto;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px #0001;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px #0002;
}

.product-card__cover {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.product-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.product-card:hover .product-card__cover img {
  transform: scale(1.04);
}

.product-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.product-card__body {
  padding: 1.5rem;
}

.product-card__name {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.product-card__tagline {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.product-card__specs {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.spec {
  text-align: center;
}

.spec__value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
}

.spec__label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--pink-dark);
}

.product-card__price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
}

.btn--small {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

/* ── Gallery ──────────────────────────────────── */
.gallery {
  padding: 5rem 0;
  background: var(--white);
}

.gallery__tabs {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.gallery__tab {
  padding: 0.6rem 1.75rem;
  border-radius: 999px;
  border: 2px solid #e5e7eb;
  background: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.gallery__tab.is-active,
.gallery__tab:hover {
  border-color: var(--pink-dark);
  color: var(--pink-dark);
  background: var(--pink-light);
}

.gallery__panel { display: none; }
.gallery__panel.is-active { display: block; }

.gallery__video-wrap {
  margin-bottom: 2rem;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.gallery__video-wrap video {
  width: 100%;
  display: block;
  max-height: 420px;
  object-fit: contain;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.gallery__grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery__grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px #0002;
}

/* ── Lightbox ──────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: #000000e8;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.is-open { display: flex; }

.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 48px #0008;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: #ffffff22;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 999px;
  line-height: 1;
  transition: background 0.2s;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: #ffffff44; }

.lightbox__close {
  top: 1rem; right: 1rem;
  font-size: 1.4rem;
  padding: 0.4rem 0.75rem;
}

.lightbox__prev,
.lightbox__next {
  top: 50%; transform: translateY(-50%);
  font-size: 2.5rem;
  padding: 0.2rem 0.8rem;
}

.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }

/* ── Why us ───────────────────────────────────── */
.why {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  padding: 5rem 0;
  color: var(--white);
}

.why .section-header__label { color: var(--gold); }
.why .section-header__title { color: var(--white); }
.why .section-header__sub   { color: #a5b4fc; }

.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: #ffffff0f;
  border: 1px solid #ffffff14;
  border-radius: 16px;
  padding: 1.75rem;
  transition: background 0.2s;
}

.why-card:hover { background: #ffffff18; }

.why-card__icon { font-size: 2rem; margin-bottom: 1rem; }

.why-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.why-card__text {
  font-size: 0.875rem;
  color: #a5b4fc;
  line-height: 1.6;
}

/* ── Reviews ──────────────────────────────────── */
.reviews {
  padding: 5rem 0;
  background: var(--off-white);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 16px #0001;
}

.review-card__stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}

.review-card__text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 1rem;
  font-style: italic;
}

.review-card__author {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
}

/* ── CTA ──────────────────────────────────────── */
.cta {
  background: linear-gradient(135deg, var(--pink-dark) 0%, #9333ea 100%);
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
}

.cta__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.cta__sub {
  font-size: 1rem;
  color: #fce7f3;
  max-width: 460px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.btn--white {
  background: var(--white);
  color: var(--pink-dark);
}

/* ── Footer ───────────────────────────────────── */
.footer {
  background: var(--text);
  color: #a5b4fc;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer a { color: var(--pink); }
.footer a:hover { text-decoration: underline; }

/* ── Hamburger ────────────────────────────────── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Responsive ───────────────────────────────── */
@media (max-width: 700px) {

  /* Container */
  .container { width: min(var(--max-width), 100% - 2rem); }

  /* ── Nav ── */
  .nav__hamburger { display: flex; }

  .nav__links {
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
  }

  .nav__links.is-open { opacity: 1; pointer-events: auto; }
  .nav__links a { font-size: 1.3rem; font-weight: 600; }
  .nav__links .nav__cta {
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
  }

  /* ── Hero ── */
  .hero {
    padding: 3.5rem 0 3rem;
  }

  /* hide decorative sparkles on mobile */
  .hero::before, .hero::after { display: none; }

  .hero__badge { font-size: 0.72rem; }

  .hero__title {
    font-size: 2.1rem;
    line-height: 1.15;
  }

  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  /* Buttons: stack and go full-width */
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    max-width: 320px;
    margin-inline: auto;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Album preview cards: horizontal rows instead of small squares */
  .hero__albums {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 2.5rem;
    max-width: 340px;
    margin-inline: auto;
    margin-top: 2.5rem;
  }

  .hero__album-card {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    text-align: left;
  }

  .hero__album-emoji { font-size: 2.8rem; margin-bottom: 0; flex-shrink: 0; }

  .hero__album-info { flex: 1; }
  .hero__album-name { font-size: 1rem; }
  .hero__album-color { font-size: 0.8rem; margin-bottom: 0.2rem; }
  .hero__album-price { font-size: 1.2rem; }

  /* ── Products ── */
  .products { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2rem; }

  .products__grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .product-card__cover { height: 220px; font-size: 5.5rem; }

  .product-card__body { padding: 1.25rem; }
  .product-card__name { font-size: 1.25rem; }
  .product-card__tagline { font-size: 0.9rem; }

  .product-card__specs { gap: 1.25rem; }
  .spec__value { font-size: 1.2rem; }
  .spec__label { font-size: 0.75rem; }

  .product-card__price { font-size: 1.6rem; }

  .btn--small {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  /* ── Gallery ── */
  .gallery { padding: 3.5rem 0; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .gallery__video-wrap { border-radius: 10px; }
  .lightbox__prev { left: 0.25rem; }
  .lightbox__next { right: 0.25rem; }

  /* ── Why ── */
  .why { padding: 3.5rem 0; }
  .why__grid { grid-template-columns: 1fr; gap: 1rem; }

  .why-card { padding: 1.5rem; }
  .why-card__icon { font-size: 2.2rem; }
  .why-card__title { font-size: 1.05rem; }
  .why-card__text { font-size: 0.95rem; }

  /* ── Reviews ── */
  .reviews { padding: 3.5rem 0; }
  .reviews__grid { grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }

  .review-card { padding: 1.5rem; }
  .review-card__text { font-size: 0.95rem; }

  /* ── CTA ── */
  .cta { padding: 3.5rem 0; }
  .cta__title { font-size: 1.75rem; line-height: 1.2; }
  .cta__sub { font-size: 1rem; margin-bottom: 1.75rem; }

  .btn--white {
    display: block;
    max-width: 320px;
    margin-inline: auto;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}
