:root {
  /* Brand palette pulled from the Click'n'Get logo */
  --navy: #0a0b3a;
  --bg: #05061c;
  --bg-2: #0b0d32;
  --card: #12153c;
  --indigo: #4f54a4;
  --purple: #6b5cb0;
  --magenta: #b764a7;
  --cyan: #39c4f1;
  --green: #70bd46;
  --yellow: #f2d85a;
  /* aliases mapped to brand colors so component rules stay consistent */
  --wine: #4f54a4;   /* indigo */
  --wine-2: #b764a7; /* magenta */
  --gold: #39c4f1;   /* cyan accent */
  --cream: #eef0ff;
  --text: #eef1ff;
  --muted: #a6a9cf;
  --wa: #25d366;
  --wa-dark: #1ebe5b;
  --brand-grad: linear-gradient(120deg, #4f54a4 0%, #b764a7 50%, #39c4f1 100%);
  --radius: 22px;
  --shadow: 0 24px 60px rgba(0,0,0,.5);
  --ring: rgba(79,84,164,.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.1; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---------- Topbar ---------- */
.topbar {
  background: linear-gradient(90deg, var(--wine), var(--wine-2));
  overflow: hidden;
  white-space: nowrap;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .3px;
}
.topbar-track {
  display: inline-flex;
  gap: 3rem;
  padding: .55rem 0;
  animation: marquee 22s linear infinite;
}
.topbar-track span { flex: none; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(14,10,12,.72);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  padding: .8rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: .55rem; font-weight: 700; }
.brand-logo-img {
  height: 40px; width: auto; display: block;
  background: #ececf2; border-radius: 12px;
  padding: 5px 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
}
.footer-logo { height: 54px; padding: 8px 16px; }
.brand-logo {
  width: 38px; height: 38px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--wine-2), var(--gold));
  font-family: 'Playfair Display', serif; font-weight: 700;
  color: #fff; font-size: 1.2rem;
  box-shadow: 0 6px 18px var(--ring);
}
.brand-name { font-size: 1.15rem; letter-spacing: .3px; }
.brand-n { color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--wine-2), var(--wine));
  padding: .55rem 1.15rem; border-radius: 999px;
  font-size: .85rem; font-weight: 600;
  box-shadow: 0 8px 22px var(--ring);
  transition: transform .25s, box-shadow .25s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px var(--ring); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 3rem 1.2rem 4rem; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 55% at 80% 15%, rgba(183,100,167,.32), transparent 60%),
    radial-gradient(55% 55% at 12% 78%, rgba(57,196,241,.20), transparent 60%),
    radial-gradient(40% 40% at 45% 50%, rgba(79,84,164,.18), transparent 65%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}
.hero-grid {
  position: relative; z-index: 1;
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.5rem;
  align-items: center;
}
.badge-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.1rem; }
.pill {
  font-size: .75rem; font-weight: 500;
  padding: .35rem .8rem; border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
}
.pill-hot { background: linear-gradient(135deg, var(--wine-2), var(--wine)); border: none; font-weight: 600; }
.hero-title { font-size: clamp(2.4rem, 6vw, 4.2rem); margin-bottom: 1rem; }
.grad {
  background: var(--brand-grad);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: hueShift 6s ease infinite;
}
@keyframes hueShift { 0%,100% { background-position: 0% center; } 50% { background-position: 100% center; } }
.hero-sub {
  font-style: italic; font-size: clamp(1.3rem, 3.5vw, 2rem);
  color: var(--gold);
}
.hero-desc { color: var(--muted); max-width: 500px; margin-bottom: 1.6rem; font-size: 1rem; }
.hero-desc b { color: var(--text); font-weight: 600; }

.price-box { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.6rem; }
.price-now { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: #fff; }
.price-old { font-size: 1.4rem; color: var(--muted); text-decoration: line-through; }
.price-save {
  background: rgba(37,211,102,.15); color: var(--wa);
  border: 1px solid rgba(37,211,102,.35);
  font-size: .8rem; font-weight: 600;
  padding: .3rem .7rem; border-radius: 999px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.6rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .9rem 1.5rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  cursor: pointer; border: none;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.btn-wa { background: linear-gradient(135deg, var(--wa), var(--wa-dark)); color: #06301a; box-shadow: 0 12px 30px rgba(37,211,102,.35); }
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(37,211,102,.5); }
.btn-ghost { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); color: var(--text); }
.btn-ghost:hover { transform: translateY(-3px); background: rgba(255,255,255,.12); }
.btn.full { width: 100%; }
.btn.big { font-size: 1.1rem; padding: 1.1rem 2rem; }
.wa-ic { width: 22px; height: 22px; fill: currentColor; }

.trust-row { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; }
.trust { display: flex; align-items: center; gap: .45rem; font-size: .85rem; color: var(--muted); }
.trust span { font-size: 1.05rem; }

/* Hero media */
.hero-media { position: relative; display: grid; place-items: center; }
.hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: floaty 5s ease-in-out infinite;
  position: relative; z-index: 2;
}
.glow {
  position: absolute; z-index: 1; width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(183,100,167,.55), rgba(79,84,164,.25) 45%, transparent 68%);
  filter: blur(30px); animation: pulse 4s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes pulse { 0%,100% { transform: scale(.9); opacity:.7; } 50% { transform: scale(1.05); opacity:1; } }

.float-tag {
  position: absolute; z-index: 3;
  background: rgba(20,14,17,.85); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14);
  padding: .5rem .9rem; border-radius: 14px;
  font-weight: 600; font-size: .85rem;
  box-shadow: 0 10px 24px rgba(0,0,0,.4);
}
.tag-1 { top: 10%; left: -2%; animation: floaty 4s ease-in-out infinite; }
.tag-2 { bottom: 12%; right: -2%; color: var(--gold); animation: floaty 4.6s ease-in-out infinite .5s; }

.scroll-hint {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.3);
  border-radius: 14px; z-index: 2;
}
.scroll-hint span {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; border-radius: 4px; background: #fff;
  animation: scrolldot 1.6s infinite;
}
@keyframes scrolldot { 0% { opacity:0; top:8px; } 40% { opacity:1; } 80% { opacity:0; top:22px; } 100% { opacity:0; } }

/* ---------- Strip ---------- */
.strip {
  background: linear-gradient(90deg, var(--gold), var(--wine-2));
  color: #fff; overflow: hidden; white-space: nowrap;
  padding: .7rem 0; font-family: 'Playfair Display', serif;
  font-weight: 700; letter-spacing: 2px; font-size: 1rem;
}
.strip-track { display: inline-flex; gap: 2rem; animation: marquee 20s linear infinite; }
.strip-track span { flex: none; }

/* ---------- Sections ---------- */
.section { max-width: 1180px; margin: 0 auto; padding: 4.5rem 1.2rem; }
.section-head { text-align: center; margin-bottom: 2.6rem; }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: 3px;
  font-size: .72rem; font-weight: 600; color: var(--gold); margin-bottom: .6rem;
}
.eyebrow.light { color: rgba(255,255,255,.85); }
.section-head h2 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); margin-bottom: .5rem; }
.section-head p { color: var(--muted); max-width: 520px; margin: 0 auto; }

/* ---------- Colors ---------- */
.colors-wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.2rem; align-items: center; }
.color-stage {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--card); box-shadow: var(--shadow); display: grid; place-items: center;
  padding: 1rem; min-height: 340px;
}
.stage-glow {
  position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(57,196,241,.35), rgba(183,100,167,.25) 55%, transparent 70%);
  filter: blur(35px);
}
.color-stage img { position: relative; z-index: 2; border-radius: 16px; transition: opacity .35s, transform .5s; }
.color-stage img.swap { opacity: 0; transform: scale(.96); }
.stage-label {
  position: absolute; z-index: 3; bottom: 16px; left: 16px;
  background: rgba(14,10,12,.75); backdrop-filter: blur(8px);
  padding: .4rem .9rem; border-radius: 12px; font-weight: 600; font-size: .9rem;
  border: 1px solid rgba(255,255,255,.12);
}

.color-picker {
  background: var(--card); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow);
}
.picker-title { color: var(--muted); margin-bottom: 1rem; }
.picker-title b { color: var(--text); }
.swatches { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.5rem; }
.swatch {
  width: 46px; height: 46px; border-radius: 50%;
  cursor: pointer; border: 2px solid rgba(255,255,255,.18);
  position: relative; transition: transform .2s, box-shadow .2s;
  outline: none;
}
.swatch:hover { transform: scale(1.1); }
.swatch.active { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(217,164,65,.25); transform: scale(1.08); }
.swatch.active::after {
  content: "✓"; position: absolute; inset: 0; display: grid; place-items: center;
  color: #fff; font-size: .9rem; font-weight: 700; text-shadow: 0 1px 3px rgba(0,0,0,.6);
}
.picker-price { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.pp-now { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; }
.pp-old { color: var(--muted); text-decoration: line-through; margin-left: .5rem; }
.pp-badge { background: linear-gradient(135deg, var(--wine-2), var(--wine)); padding: .3rem .7rem; border-radius: 999px; font-size: .8rem; font-weight: 600; }

/* ---------- Pieces ---------- */
.pieces-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.piece-card {
  background: var(--card); border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px; padding: 1.6rem 1.2rem; text-align: center;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.piece-card:hover { transform: translateY(-8px); border-color: rgba(217,164,65,.4); box-shadow: var(--shadow); }
.piece-ic { font-size: 2.4rem; margin-bottom: .6rem; }
.piece-card h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.piece-card p { color: var(--muted); font-size: .85rem; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.gallery-grid figure { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gallery-grid figure:hover img { transform: scale(1.07); }

/* ---------- Features ---------- */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.feat {
  background: linear-gradient(160deg, var(--card), rgba(79,84,164,.14));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px; padding: 1.6rem 1.3rem; text-align: center;
  transition: transform .3s;
}
.feat:hover { transform: translateY(-6px); }
.feat-ic { font-size: 2rem; margin-bottom: .6rem; }
.feat h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.feat p { color: var(--muted); font-size: .84rem; }

/* ---------- Order ---------- */
.order { padding-bottom: 5.5rem; }
.order-card {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(160deg, #171a4d, #0a0b2c);
  border: 1px solid rgba(57,196,241,.28);
  border-radius: 28px; padding: 3.2rem 1.5rem; box-shadow: var(--shadow);
}
.order-glow {
  position: absolute; inset: 0;
  background: radial-gradient(55% 65% at 50% 0%, rgba(183,100,167,.35), rgba(57,196,241,.12) 60%, transparent 75%);
}
.order-card > * { position: relative; z-index: 1; }
.order-card h2 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); margin: .3rem 0 1.2rem; }
.order-price { display: flex; align-items: center; justify-content: center; gap: .8rem; margin-bottom: .6rem; }
.op-now { font-family: 'Playfair Display', serif; font-size: 3.2rem; font-weight: 700; color: var(--gold); }
.op-old { font-size: 1.4rem; color: var(--muted); text-decoration: line-through; }
.op-badge { background: linear-gradient(135deg, var(--wine-2), var(--wine)); padding: .35rem .8rem; border-radius: 999px; font-size: .82rem; font-weight: 600; }
.order-note { color: var(--muted); margin-bottom: 1.6rem; }
.order-phone { margin-top: 1.1rem; color: var(--muted); font-weight: 500; }

/* ---------- Footer ---------- */
.footer { text-align: center; padding: 3rem 1.2rem; border-top: 1px solid rgba(255,255,255,.06); color: var(--muted); }
.footer-brand { justify-content: center; margin-bottom: 1rem; }
.foot-phone { color: var(--text); font-weight: 600; margin-top: .3rem; }
.copy { font-size: .78rem; margin-top: 1rem; opacity: .7; }

/* ---------- Floating WA ---------- */
.wa-float {
  position: fixed; bottom: 20px; right: 20px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--wa), var(--wa-dark));
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.5);
  animation: waPulse 2.2s infinite;
}
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 1.8rem; }
  .badge-row, .price-box, .hero-actions, .trust-row { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .colors-wrap { grid-template-columns: 1fr; }
  .pieces-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero { padding-top: 2rem; }
  .hero-media { order: -1; }
  .float-tag { font-size: .78rem; padding: .4rem .7rem; }
  .tag-1 { left: 2%; } .tag-2 { right: 2%; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .pieces-grid { grid-template-columns: 1fr 1fr; }
  .price-now { font-size: 2.4rem; }
  .section { padding: 3.2rem 1.1rem; }
  .nav-cta { padding: .5rem .95rem; }
  .wa-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
