/* ClickSet — mobile-first single product landing page */
:root{
  --bg:#ffffff;
  --ink:#0d0d0d;
  --muted:#555;
  --line:#e5e5e5;
  --brand:#e63946;
  --brand-dark:#c92c39;
  --accent:#ff6b35;
  --gold:#f5a623;
  --green:#2ea44f;
  --max:680px;
  --radius:10px;
  --shadow:0 4px 14px rgba(0,0,0,.08);
}
*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}
html,body{margin:0;padding:0}
body{
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Text","Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  padding-bottom:80px;
}
img{max-width:100%;display:block}
a{color:var(--ink)}
h1,h2,h3{margin:0 0 12px;line-height:1.2;font-weight:800}
h1{font-size:28px}
h2{font-size:22px}
p{margin:0 0 12px}
ul{margin:0 0 12px;padding:0;list-style:none}
.container{max-width:var(--max);margin:0 auto;padding:0 18px}

/* FLASH BANNER */
.flash-banner{
  background:var(--brand);
  color:#fff;
  text-align:center;
  font-weight:800;
  font-size:14px;
  padding:10px 12px;
  letter-spacing:.5px;
  position:sticky;
  top:0;
  z-index:50;
}
#countdown{font-variant-numeric:tabular-nums}

/* HEADER */
.site-header{
  padding:12px 0;
  border-bottom:1px solid var(--line);
  background:#fff;
}
.brand{
  font-weight:900;
  font-size:22px;
  text-decoration:none;
  letter-spacing:-.5px;
}
.brand .dot{color:var(--brand)}

/* PDP */
.pdp{padding:16px 0 8px}

/* SWIPE GALLERY */
.gallery-track{
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  gap:0;
  border-radius:var(--radius);
  background:#f4f4f4;
}
.gallery-track::-webkit-scrollbar{display:none}
.gallery-track{scrollbar-width:none}
.gallery-slide{
  flex:0 0 100%;
  scroll-snap-align:start;
  width:100%;
  object-fit:contain;
  background:#f4f4f4;
}
.gallery-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:10px;
}
.gallery-dot{
  width:8px;height:8px;
  border-radius:50%;
  background:var(--line);
  border:none;
  padding:0;
  cursor:pointer;
  transition:background .2s;
}
.gallery-dot.active{background:var(--brand)}
.gallery-thumbs{
  display:none;
  gap:8px;
  margin-top:10px;
  overflow-x:auto;
}
.thumb{
  width:70px;height:70px;
  border-radius:8px;
  border:2px solid var(--line);
  object-fit:contain;
  background:#f4f4f4;
  cursor:pointer;
  flex-shrink:0;
}
.thumb.active{border-color:var(--brand)}

/* CATALOG PAGE */
.catalog-hero{
  padding:40px 0 20px;
  text-align:center;
}
.catalog-hero h1{font-size:32px;margin-bottom:8px}
.catalog-hero p{color:var(--muted);font-size:16px}
.product-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
  padding:20px 0 40px;
}
.product-card{
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
  text-decoration:none;
  color:var(--ink);
  transition:transform .15s,box-shadow .15s;
}
.product-card:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(0,0,0,.12)}
.product-card img{
  width:100%;
  object-fit:contain;
  background:#f4f4f4;
}
.product-card-info{padding:16px}
.product-card-info h2{font-size:20px;margin-bottom:6px}
.product-card-info .card-price{
  display:flex;align-items:center;gap:8px;margin-bottom:12px;
}
.product-card-info .card-price .price-now{font-size:24px;font-weight:900;color:var(--brand)}
.product-card-info .card-price s{color:#999;font-size:16px}
.product-card .btn-buy{border-radius:8px;padding:14px;font-size:16px}

.pdp-info{padding-top:18px}
.lede{color:var(--muted);font-size:16px;margin-bottom:14px}

.rating{
  display:flex;align-items:center;gap:8px;
  font-size:14px;margin-bottom:12px;
}
.stars{color:var(--gold);font-size:18px;letter-spacing:2px}
.rating-text{color:var(--muted)}

.pdp-price{
  display:flex;align-items:center;flex-wrap:wrap;gap:10px;
  margin-bottom:14px;
}
.pdp-price.center{justify-content:center}
.price-now{font-size:34px;font-weight:900;color:var(--brand)}
.price-old{font-size:20px;color:#999}
.save{
  background:var(--brand);
  color:#fff;
  font-weight:800;
  padding:4px 10px;
  border-radius:6px;
  font-size:13px;
  letter-spacing:.3px;
}

.stock-line{
  background:#fff8e6;
  border:1px solid #f5d27a;
  padding:10px 12px;
  border-radius:8px;
  font-size:14px;
  margin-bottom:14px;
}

/* BIG BUY BUTTON */
.btn-buy{
  display:block;
  width:100%;
  background:var(--brand);
  color:#fff;
  text-align:center;
  font-size:20px;
  font-weight:900;
  padding:18px;
  border-radius:12px;
  text-decoration:none;
  letter-spacing:.5px;
  box-shadow:0 6px 0 var(--brand-dark), 0 8px 20px rgba(230,57,70,.35);
  transition:transform .08s, box-shadow .08s;
  text-transform:uppercase;
}
.btn-buy:active{
  transform:translateY(3px);
  box-shadow:0 3px 0 var(--brand-dark), 0 4px 10px rgba(230,57,70,.35);
}

.ship-urgency{
  text-align:center;
  font-size:14px;
  margin:12px 0;
  color:#333;
}

.payments{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  justify-content:center;
  margin:12px 0;
}
.pay{
  background:#f4f4f4;
  border:1px solid var(--line);
  padding:4px 10px;
  border-radius:4px;
  font-size:11px;
  font-weight:700;
  color:#555;
}

.trust-row{
  display:flex;
  justify-content:space-between;
  font-size:12px;
  color:var(--muted);
  padding:12px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  margin-top:8px;
}

/* BENEFITS */
.benefits-section{padding:24px 0;background:#fafafa}
.benefit{
  display:flex;align-items:center;gap:14px;
  padding:14px;
  background:#fff;
  border-radius:10px;
  margin-bottom:10px;
  box-shadow:var(--shadow);
  font-size:15px;
}
.b-icon{font-size:28px;flex-shrink:0}

/* REVIEWS */
.reviews-section{padding:26px 0;border-top:1px solid var(--line)}
.rating-big{
  text-align:center;
  margin-bottom:20px;
  font-size:16px;
}
.rating-big .stars{font-size:24px;display:block;margin-bottom:4px}
.review-card{
  background:#fafafa;
  border-radius:10px;
  padding:16px;
  margin-bottom:12px;
  border-left:4px solid var(--gold);
}
.review-card .stars{font-size:14px;display:block;margin-bottom:6px}
.review-card p{font-size:15px;margin-bottom:8px;font-style:italic}
.reviewer{font-size:12px;color:var(--muted);font-weight:600}

/* BOX */
.box-section{padding:26px 0;background:#fafafa}
.box-list li{
  padding:10px 0;
  border-bottom:1px solid var(--line);
  font-size:15px;
}
.box-list li:last-child{border-bottom:none}

/* FAQ */
.faq-section{padding:26px 0;border-top:1px solid var(--line)}
.faq-section details{
  background:#fafafa;
  border-radius:8px;
  padding:14px 16px;
  margin-bottom:8px;
}
.faq-section summary{
  font-weight:700;
  cursor:pointer;
  font-size:15px;
  list-style:none;
}
.faq-section summary::after{content:" +";float:right;color:var(--brand)}
.faq-section details[open] summary::after{content:" −"}
.faq-section details p{margin-top:10px;font-size:14px;color:#444}

/* FINAL CTA */
.final-cta{
  background:linear-gradient(180deg,#fff,#fff4f5);
  padding:32px 0 40px;
  text-align:center;
  border-top:1px solid var(--line);
}

/* LIVE ORDER TOAST */
.order-toast{
  position:fixed;
  bottom:90px;
  left:12px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  box-shadow:0 6px 20px rgba(0,0,0,.15);
  padding:10px 14px 10px 32px;
  font-size:12px;
  max-width:240px;
  z-index:40;
  opacity:0;
  transform:translateY(20px);
  transition:opacity .3s,transform .3s;
  pointer-events:none;
}
.order-toast.show{opacity:1;transform:translateY(0)}
.toast-dot{
  position:absolute;
  left:12px;top:14px;
  width:10px;height:10px;
  background:var(--green);
  border-radius:50%;
  animation:pulse 1.5s infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(46,164,79,.6)}
  70%{box-shadow:0 0 0 8px rgba(46,164,79,0)}
  100%{box-shadow:0 0 0 0 rgba(46,164,79,0)}
}

/* VIEWERS PILL */
.viewers-pill{
  position:fixed;
  top:48px;
  right:10px;
  background:rgba(0,0,0,.78);
  color:#fff;
  font-size:11px;
  padding:6px 10px;
  border-radius:20px;
  z-index:40;
  font-weight:600;
}

/* STICKY BOTTOM CTA */
.sticky-cta{
  position:fixed;
  bottom:0;left:0;right:0;
  background:#fff;
  border-top:1px solid var(--line);
  box-shadow:0 -4px 14px rgba(0,0,0,.1);
  padding:10px 14px;
  display:flex;
  align-items:center;
  gap:10px;
  z-index:60;
}
.sticky-info{font-size:12px;line-height:1.25;flex:1}
.sticky-info .s-price{color:var(--brand);font-weight:800;font-size:16px}
.sticky-info s{color:#999;font-size:12px}
.sticky-btn{
  flex:1.2;
  padding:14px 8px;
  font-size:16px;
  box-shadow:0 4px 0 var(--brand-dark);
}

/* FOOTER */
.site-footer{
  padding:24px 0 90px;
  background:#0d0d0d;
  color:#888;
  font-size:11px;
  text-align:center;
  line-height:1.6;
}
.site-footer a{color:#bbb;text-decoration:none}
.site-footer p{margin:4px 0}

/* DESKTOP */
@media (min-width:800px){
  :root{--max:900px}
  h1{font-size:36px}
  .pdp .container{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:start}
  .benefits-section .container{display:grid;grid-template-columns:1fr 1fr;gap:12px}
  .benefit{margin-bottom:0}
  .sticky-cta{display:none}
  body{padding-bottom:0}
  .site-footer{padding-bottom:24px}
  .gallery-dots{display:none}
  .gallery-thumbs{display:flex}
  .gallery-track{overflow:hidden;scroll-snap-type:none}
  .gallery-slide{display:none}
  .gallery-slide.active{display:block}
  .product-grid{grid-template-columns:1fr 1fr;gap:30px}
}
