/* Cullman Bearcat QB Club — storefront styles
   Palette pulled from the team crest: ink black, metallic gold, cream. */
:root {
  --ink: #0e0e0e;
  --ink-2: #1a1a1a;
  --ink-3: #242424;
  --gold: #c79a3b;
  --gold-lt: #e6c878;
  --gold-dk: #9c7320;
  --cream: #f6efdc;
  --cream-2: #efe6d0;
  --paper: #faf6ea;
  --brown: #5b3a22;
  --line: rgba(199, 154, 59, 0.28);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  --radius: 14px;
  --maxw: 1180px;
  --font: "Inter", "Helvetica Neue", Arial, sans-serif;
  --display: "Oswald", "Arial Narrow", Impact, sans-serif;
}

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

h1, h2, h3, .display {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0;
}

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 8px 12px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 14, 14, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 3px solid var(--gold);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: auto; height: 52px; }
.brand-text { color: var(--cream); }
.brand-text strong {
  font-family: var(--display);
  font-size: 1.12rem;
  letter-spacing: 0.06em;
  display: block;
  color: var(--gold-lt);
}
.brand-text span { font-size: 0.7rem; letter-spacing: 0.18em; color: #b8b095; }
.main-nav { margin-left: auto; display: flex; gap: 22px; }
.main-nav a {
  color: var(--cream);
  font-family: var(--display);
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.main-nav a:hover { color: var(--gold-lt); border-color: var(--gold); }
.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  font-family: var(--display);
  letter-spacing: 0.04em;
  padding: 9px 16px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
}
.cart-btn:hover { background: var(--gold-lt); }
.cart-count {
  background: var(--ink);
  color: var(--gold-lt);
  border-radius: 999px;
  font-size: 0.78rem;
  min-width: 20px;
  text-align: center;
  padding: 1px 6px;
}
.nav-toggle { display: none; background: none; border: 0; color: var(--cream); font-size: 1.6rem; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(199,154,59,0.22), transparent 60%),
    linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 60%, #000 100%);
  color: var(--cream);
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero .wrap { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }
.hero-kicker {
  color: var(--gold-lt);
  font-family: var(--display);
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  margin-bottom: 14px;
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); color: #fff; }
.hero h1 .gold { color: var(--gold); }
.hero p { max-width: 46ch; color: #d7d0bd; margin: 18px 0 26px; font-size: 1.06rem; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-emblem { justify-self: center; filter: drop-shadow(0 18px 40px rgba(0,0,0,0.5)); }
.hero-emblem img { width: min(360px, 70vw); }
.stats { display: flex; gap: 30px; margin-top: 34px; }
.stats div strong { font-family: var(--display); font-size: 1.8rem; color: var(--gold-lt); display: block; }
.stats div span { font-size: 0.78rem; letter-spacing: 0.1em; color: #b8b095; text-transform: uppercase; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1rem;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s, background .15s, color .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-lt); }
.btn-ghost { background: transparent; color: var(--cream); border-color: var(--gold); }
.btn-ghost:hover { background: var(--gold); color: var(--ink); }
.btn-ink { background: var(--ink); color: var(--cream); }

/* ---------- Category strip ---------- */
.cats { background: var(--ink-2); border-bottom: 1px solid var(--line); }
.cats .wrap { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; padding: 16px 22px; }
.cats a {
  color: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-family: var(--display);
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.cats a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* ---------- Section scaffolding ---------- */
section { padding: 64px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-head .eyebrow {
  color: var(--gold-dk);
  font-family: var(--display);
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 8px;
}
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.section-head p { color: #5b5648; margin-top: 12px; }

/* ---------- Store / product grid ---------- */
#store { background: var(--paper); }
.store-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 26px; flex-wrap: wrap;
}
.store-toolbar .filters { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}
.chip.active, .chip:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid #eadfc4;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform .15s, box-shadow .15s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.16); }
.card .thumb {
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-2) 100%);
  position: relative;
  display: grid;
  place-items: center;
  padding: 18px;
}
.card .thumb svg { width: 78%; height: 78%; }
.badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 6px;
  font-weight: 700;
}
.badge.sold { background: var(--ink); color: var(--cream); }
.card .body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card .cat-tag { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dk); font-weight: 700; }
.card h3 { font-family: var(--font); font-size: 1.02rem; font-weight: 700; text-transform: none; letter-spacing: 0; }
.card .price { font-family: var(--display); font-size: 1.35rem; color: var(--ink); margin-top: 2px; }
.card .price s { color: #a99; font-size: 0.95rem; margin-right: 8px; font-family: var(--font); }
.card .add {
  margin-top: auto;
  width: 100%;
  background: var(--ink);
  color: var(--cream);
  border: 0;
  border-radius: 10px;
  padding: 11px;
  font-family: var(--display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background .15s;
}
.card .add:hover { background: var(--gold); color: var(--ink); }

/* ---------- Ecwid mount ---------- */
.ecwid-note {
  margin-top: 40px;
  border: 1px dashed var(--gold);
  background: #fffbf0;
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 0.9rem;
  color: #6a6249;
}
.ecwid-note strong { color: var(--ink); }
#my-store-CONNECT { margin-top: 30px; }

/* ---------- Fundraiser band ---------- */
.band {
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--cream);
}
.band .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.band .feat { text-align: center; padding: 18px; }
.band .feat .ic {
  width: 58px; height: 58px; margin: 0 auto 14px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(199,154,59,0.15);
  border: 1px solid var(--gold);
}
.band h3 { color: var(--gold-lt); font-size: 1.25rem; margin-bottom: 6px; }
.band p { color: #cfc8b5; font-size: 0.95rem; margin: 0; }

/* ---------- Featured bundle ---------- */
.bundle .wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center; }
.bundle .art {
  background: linear-gradient(160deg, var(--ink) 0%, #000 100%);
  border-radius: 20px;
  padding: 40px;
  display: grid; place-items: center;
  box-shadow: var(--shadow);
}
.bundle .art svg { width: 70%; }
.bundle h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.bundle ul { list-style: none; padding: 0; margin: 18px 0 24px; }
.bundle li { padding: 6px 0 6px 28px; position: relative; color: #4a463b; }
.bundle li::before { content: "▸"; color: var(--gold-dk); position: absolute; left: 4px; font-weight: 800; }
.bundle .pricing { display: flex; align-items: baseline; gap: 14px; margin-bottom: 22px; }
.bundle .pricing .now { font-family: var(--display); font-size: 2.4rem; color: var(--ink); }
.bundle .pricing .was { color: #a99; text-decoration: line-through; }

/* ---------- About ---------- */
.about { background: var(--cream-2); }
.about .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.about h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 16px; }
.about p { color: #4a463b; margin: 0 0 14px; }
.about .emblem { justify-self: center; }
.about .emblem img { width: min(320px, 70vw); filter: drop-shadow(0 14px 30px rgba(0,0,0,0.25)); }

/* ---------- Newsletter / contact ---------- */
.signup { background: var(--gold); color: var(--ink); text-align: center; }
.signup h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.signup p { max-width: 52ch; margin: 12px auto 24px; }
.signup form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.signup input {
  padding: 13px 18px; border-radius: 999px; border: 2px solid var(--ink);
  min-width: 280px; font-size: 1rem;
}

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: #b8b095;
  padding: 50px 0 26px;
  border-top: 3px solid var(--gold);
}
footer .grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
footer h4 {
  font-family: var(--display); color: var(--gold-lt); letter-spacing: 0.08em;
  text-transform: uppercase; font-size: 0.95rem; margin: 0 0 14px;
}
footer a { display: block; padding: 4px 0; color: #c9c2ad; font-size: 0.92rem; }
footer a:hover { color: var(--gold-lt); }
footer .brand-foot { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
footer .brand-foot img { width: auto; height: 50px; }
footer .brand-foot strong { color: var(--cream); font-family: var(--display); letter-spacing: 0.05em; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 34px; padding-top: 20px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 0.82rem; color: #8a836f;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%) translateY(140%);
  background: var(--ink); color: var(--cream);
  border: 1px solid var(--gold);
  padding: 13px 22px; border-radius: 999px;
  font-weight: 600; box-shadow: var(--shadow);
  transition: transform .3s ease; z-index: 100;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-cta, .stats { justify-content: center; }
  .hero-emblem { order: -1; }
  .bundle .wrap, .about .wrap { grid-template-columns: 1fr; }
  .band .grid { grid-template-columns: 1fr; }
  footer .grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .main-nav.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ink-2); padding: 16px 22px; gap: 10px; border-bottom: 3px solid var(--gold);
  }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  footer .grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; }
}
@media (max-width: 360px) {
  .product-grid { grid-template-columns: 1fr; }
}
