/* GENERAL */
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  font-size:18px;
  line-height:1.6;
  color:#1a1f2b;
  background:#fff;
}
.wrap{
  max-width:980px;
  margin:0 auto;
  padding:20px;
}

/* TOP BAR - FULLY CENTERED EVEN WITH BUTTON */
.topbar{
  position:sticky;
  top:0;
  z-index:40;
  background:#0b1220;
  color:#e5f2ff;
  font-weight:600;
  font-size:16px;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:10px 12px;
  gap:10px;
  text-align:center;
}
.topbar .dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#22d3ee;
  display:inline-block;
}
.inline-btn{
  background:#10b981;
  color:#06130f;
  padding:6px 12px;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  white-space:nowrap;
}

/* HERO */
.hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:center;
  margin-top:20px;
}
@media(max-width:900px){
  .hero{grid-template-columns:1fr}
}

h1{font-size:36px;margin:8px 0}
h2{font-size:28px;margin:22px 0 10px}
p.lead{font-size:21px;color:#4b5563}

.pill{
  display:inline-flex;
  gap:6px;
  align-items:center;
  background:#0ea5e91a;
  color:#0b6474;
  border:1px solid #0ea5e94a;
  padding:6px 10px;
  border-radius:999px;
  font-weight:700;
}

/* SWATCHES */
.colors{
  display:inline-flex;
  gap:8px;
  align-items:center;
  font-weight:600;
  color:#4b5563;
}
.sw{
  display:inline-block;
  width:14px;
  height:14px;
  border-radius:50%;
  border:1px solid #cbd5e1;
}
.sw.pink{background:#f2c5c5}
.sw.blue{background:#b7d2f5}
.sw.black{background:#1a1a1a}
.sw.beige{background:#e8dac4}

/* STOCK / COUNTDOWN CLEANER */
.availability{
  margin-top:12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  font-weight:700;
}

/* CTA BUTTONS */
.cta{
  margin:16px 0;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.btn{
  background:#111827;
  color:#fff;
  padding:18px 22px;
  border-radius:12px;
  font-weight:800;
  font-size:18px;
  text-decoration:none;
  text-align:center;
  display:block;
  width:100%;
  box-sizing:border-box;
}
.btn.secondary{
  background:#0ea5e9;
}

/* Clean small "How does it work" button */
.how-btn{
  background:#38bdf8;
  color:#fff;
  border-radius:12px;
  font-weight:700;
  padding:16px;
  display:block;
  width:100%;
  text-align:center;
}

/* META */
.meta-line{
  margin-top:12px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  font-size:15px;
  color:#4b5563;
}

/* IMAGES */
.media{
  width:100%;
  border-radius:16px;
  overflow:hidden;
}
.media img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
  border-radius:16px;
}

/* BIG IMAGE full width on desktop */
.big-img{
  grid-column:1 / -1;
  width:100%;
  border-radius:18px;
  overflow:hidden;
  margin:30px 0;
}
.big-img img{
  width:100%;
  height:auto;
  border-radius:18px;
  display:block;
}

/* CARDS */
.card{
  background:#f6f7fb;
  border:1px solid #e8ebf6;
  border-radius:14px;
  padding:18px;
  margin-top:24px;
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
}

/* CHECKLIST */
.checklist{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:10px;
}
@media(max-width:760px){
  .checklist{grid-template-columns:1fr}
}
.checklist div{
  display:flex;
  align-items:flex-start;
  gap:8px;
  font-size:17px;
}
.checklist div::before{
  content:"✔";
  font-weight:900;
  color:#059669;
}

/* CENTERED CAPTIONS */
.center{text-align:center}
.caption{
  margin-top:6px;
  text-align:center;
  font-size:15px;
  color:#6b7280;
}

/* FAQ CLEAN */
.faq details{
  background:#f6f7fb;
  border:1px solid #e8ebf6;
  border-radius:10px;
  padding:12px 14px;
  font-size:17px;
  cursor:pointer;
}
.faq summary{
  font-weight:600;
}
.faq details+details{
  margin-top:10px;
}

/* FOOTER */
.footer{
  margin:40px auto;
  text-align:center;
  font-size:14px;
  color:#6b7280;
  max-width:900px;
}
.footer a{
  color:#374151;
  text-decoration:none;
  margin:0 8px;
}
.footer a:hover{
  text-decoration:underline;
}

/* ✅ STICKY CTA — SIMPLIFIED + MOBILE SAFE */
.sticky-cta{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  background:#0b1220;
  color:#fff;
  padding:12px 14px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:16px;
  font-weight:700;
  border-top:2px solid #111;
  z-index:9999;
}
.sticky-cta .btn.green{
  background:#10b981 !important;
  color:#06130f !important;
  padding:12px 18px;
  border-radius:10px;
}

/* Prevent buttons from overflowing */
@media(max-width:500px){
  .btn{
    font-size:16px;
    padding:14px;
  }
  .sticky-cta{
    flex-direction:column;
    gap:8px;
    text-align:center;
  }
}

/* Small animation for urgency */
.shake{
  animation:shakenow 0.7s ease-in-out;
}
@keyframes shakenow {
  0%,100%{transform:translateX(0)}
  25%{transform:translateX(-3px)}
  50%{transform:translateX(3px)}
  75%{transform:translateX(-2px)}
}