/* Electric Cloud — trydrinkelectriccloud.com
   Clean, bright beverage-DTC aesthetic. */

:root {
  --ink: #2b2b33;
  --body: #4a4a55;
  --teal: #58c5c4;
  --teal-dark: #054544;
  --pink: #f2a4c4;
  --peri: #8ba0d8;
  --bg: #ffffff;
  --bg-soft: #f7f9fb;
  --border: #ebebeb;
  --radius: 14px;
  --pill: 999px;
  --shadow: rgba(0,0,0,0.08) 0px 6px 24px, rgba(0,0,0,0.06) 0px 1px 2px;
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 22px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-weight: 800; letter-spacing: -0.02em; font-size: 20px; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.brand .bolt { color: var(--teal); }
.nav { display: flex; gap: 26px; font-size: 14px; font-weight: 600; }
.nav a:hover { color: var(--teal-dark); }

/* Buttons */
.btn {
  display: inline-block; border: none; cursor: pointer;
  background: var(--ink); color: #fff;
  font-family: var(--font); font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: var(--pill);
  transition: transform .12s ease, background .15s ease;
}
.btn:hover { background: #14141a; transform: translateY(-1px); }
.btn-teal { background: var(--teal); color: var(--teal-dark); }
.btn-teal:hover { background: #46b6b5; }
.btn-block { width: 100%; text-align: center; padding: 16px; font-size: 16px; }

/* Hero */
.hero {
  background:
    radial-gradient(900px 420px at 12% -10%, rgba(242,164,196,.35), transparent 60%),
    radial-gradient(900px 460px at 92% 0%, rgba(139,160,216,.35), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  padding: 78px 0 64px;
  text-align: center;
}
.hero h1 { font-size: clamp(32px, 5vw, 52px); line-height: 1.05; color: var(--ink); font-weight: 800; letter-spacing: -0.03em; margin: 0 0 14px; }
.hero .kicker { text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 700; color: var(--teal-dark); margin-bottom: 16px; }
.hero p { font-size: 18px; max-width: 620px; margin: 0 auto 26px; }
.hero .float { font-style: italic; color: var(--teal-dark); font-weight: 700; }

/* Value strip */
.values { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; }
.values .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 26px 22px; text-align: center; }
.values .v b { display: block; color: var(--ink); font-size: 15px; }
.values .v span { font-size: 13px; }

/* Section */
.section { padding: 64px 0; }
.section h2 { text-align: center; font-size: 30px; color: var(--ink); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 8px; }
.section .sub { text-align: center; max-width: 560px; margin: 0 auto 38px; }

/* Flavor grid */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: transform .15s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); }
.card .thumb { aspect-ratio: 1/1; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; padding: 16px; }
.card .thumb img { max-height: 100%; width: auto; object-fit: contain; }
.card .body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.card .body h3 { margin: 0 0 4px; color: var(--ink); font-size: 18px; }
.card .body .note { font-size: 13px; color: var(--body); flex: 1; }
.card .body .price { font-weight: 800; color: var(--ink); margin: 12px 0 12px; }
.card .body .btn { font-size: 14px; padding: 11px 18px; text-align: center; }

/* Product page */
.pdp { padding: 48px 0; }
.pdp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.pdp-media { background: var(--bg-soft); border-radius: var(--radius); padding: 40px; display: flex; align-items: center; justify-content: center; min-height: 420px; }
.pdp-media img { max-height: 380px; width: auto; }
.pdp-info h1 { font-size: 38px; color: var(--ink); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 6px; }
.pdp-info .note { font-size: 17px; margin: 0 0 18px; }
.pdp-info .price { font-size: 26px; font-weight: 800; color: var(--ink); margin: 0 0 18px; }
.pdp-info ul { padding-left: 0; list-style: none; margin: 0 0 26px; }
.pdp-info ul li { padding: 8px 0 8px 28px; position: relative; border-bottom: 1px solid var(--border); }
.pdp-info ul li:before { content: "☁"; position: absolute; left: 0; color: var(--teal); }
.crumb { font-size: 13px; margin-bottom: 18px; }
.crumb a { color: var(--teal-dark); font-weight: 600; }

/* Trust badges */
.trust { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 22px; font-size: 13px; }
.trust .t { display: flex; align-items: center; gap: 7px; font-weight: 600; color: var(--ink); }

/* Footer */
.site-footer { background: var(--teal-dark); color: #cfe6e5; padding: 48px 0 30px; margin-top: 40px; font-size: 13px; }
.site-footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; }
.site-footer h4 { color: #fff; font-size: 14px; margin: 0 0 12px; }
.site-footer a { color: #cfe6e5; }
.site-footer a:hover { color: #fff; }
.site-footer .legal { border-top: 1px solid rgba(255,255,255,.15); margin-top: 30px; padding-top: 20px; font-size: 11px; color: #9fc4c3; line-height: 1.6; }

/* Age gate */
.age-gate {
  position: fixed; inset: 0; z-index: 999; display: none;
  align-items: center; justify-content: center;
  background: rgba(5,69,68,.92); backdrop-filter: blur(6px); padding: 22px;
}
.age-gate.show { display: flex; }
.age-card { background: #fff; border-radius: var(--radius); max-width: 420px; width: 100%; padding: 38px 32px; text-align: center; }
.age-card .brand { justify-content: center; margin-bottom: 14px; }
.age-card h2 { color: var(--ink); margin: 0 0 8px; font-size: 24px; }
.age-card p { margin: 0 0 24px; font-size: 14px; }
.age-card .row { display: flex; gap: 12px; }
.age-card .row .btn { flex: 1; }
.age-card .deny { background: #eee; color: #555; }
.age-deny-msg { display:none; margin-top:16px; color:#b00; font-size:13px; }

@media (max-width: 860px) {
  .values .wrap { grid-template-columns: repeat(2, 1fr); }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .pdp-grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer .cols { grid-template-columns: 1fr; }
  .nav { display: none; }
}
@media (max-width: 480px) {
  .grid { grid-template-columns: 1fr 1fr; }
}
