
:root {
  --sbx-green: #006241;      /* Starbucks primary */
  --sbx-deep: #1e3932;       /* Starbucks deep green */
  --surface: #ffffff;
  --text: #0b0f0e;
  --muted: #3a544d;
  --ring: rgba(0, 98, 65, 0.15);
  --shadow: 0 8px 24px rgba(0,0,0,.12);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(1400px 600px at 50% -200px, rgba(0,98,65,.15), transparent 60%),
    radial-gradient(800px 400px at 10% 110%, rgba(30,57,50,.14), transparent 50%),
    #f4f7f6;
  color: var(--text);
}

.container {
  max-width: 720px;
  margin: 24px auto 96px;
  padding: 0 16px;
}

.card {
  background: var(--surface);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px 18px;
  margin-bottom: 16px;
  border: 1px solid #edf1ef;
}

.hero {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 16px;
  align-items: center;
}

.giftcard { aspect-ratio: 1 / 1; object-fit: cover; 
  width: 100%;
  border-radius: 12px;
  border: 1px solid #e6efe9;
  display: block;
}

.hero-text h1 {
  font-size: 28px;
  line-height: 1.1;
  margin: 0 0 6px;
  color: var(--sbx-deep);
  font-weight: 800;
}
.subtitle {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.timer-wrap { display:flex; justify-content:center; margin: 12px 0 8px; }
.timer-pill {
  background: var(--sbx-green);
  color: white;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(0,98,65,.35);
}
.timer-icon { opacity: 0.9 }

.section-head h2 {
  font-size: 18px;
  color: var(--sbx-deep);
  margin: 0 0 8px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.checklist li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #eaf0ed;
  border-radius: 12px;
  background: #fbfdfa;
}
.check {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e6f3ed;
  color: var(--sbx-deep);
  font-weight: 800;
}
.item-title { font-weight: 700; }
.item-sub { color: var(--muted); font-size: 14px; }

.faq details {
  border: 1px solid #eaf0ed;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
  background: #fcfdfc;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--sbx-deep);
}
.faq p {
  margin: 8px 0 0;
  color: var(--muted);
}

.cta { text-align: center; }
.btn {
  display: inline-block;
  padding: 16px 22px;
  font-weight: 800;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, var(--sbx-green), var(--sbx-deep));
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(0,98,65,.35);
  transition: transform .06s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 18px 34px rgba(0,98,65,.42); }
.btn:active { transform: translateY(0); }

.microcopy {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer { text-align:center; color:#6a7e78; margin-top: 12px; }
.footer-links { display:inline-flex; gap:8px; align-items:center; }
.footer a { color:#6a7e78; text-decoration:none; }

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  background: var(--sbx-deep);
  color: #fff;
  text-align: center;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}
@media (max-width: 720px) {
  .container { margin-bottom: 84px; }
  .sticky-cta { display: block; }
  .hero {
    grid-template-columns: 180px 1fr;
  }
}
