:root {
  --bg: #0b0b0c;
  --bg-alt: #151517;
  --fg: #f4f4f2;
  --fg-dim: #a8a8ac;
  --accent: #d81e2c; /* bootleg-red */
  --accent-2: #2b4bd8; /* bootleg-blue */
  --border: #2a2a2d;
  --max: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

a { color: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header.site {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 11, 12, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--fg);
}
.logo span { color: var(--accent); }

nav.site a {
  text-decoration: none;
  color: var(--fg-dim);
  margin-left: 24px;
  font-size: 14px;
  font-weight: 600;
}
nav.site a:hover { color: var(--fg); }

.btn-etsy {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
}

/* Hero */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.hero h1 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  letter-spacing: -1px;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.hero h1 .accent { color: var(--accent); }

.hero p {
  color: var(--fg-dim);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 28px;
}

.hero .cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 16px;
}
.hero .cta:hover { background: #b8121f; }

/* Section headings */
.section-head {
  text-align: center;
  margin: 0 0 40px;
}
.section-head h2 {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 0 0 8px;
}
.section-head p { color: var(--fg-dim); margin: 0; }

/* Product grid */
.shop { padding: 80px 0; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--accent); }

.card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: #000;
}

.card .body {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.3;
}

.card .price {
  color: var(--accent);
  font-weight: 800;
  font-size: 18px;
  margin: 0 0 14px;
}

/* Buy links — one button per live sales channel, so a product available on
   more than one shows all of them, not just Etsy. */
.buy-links {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card a.shop-link {
  text-align: center;
  text-decoration: none;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  padding: 10px;
  border-radius: 4px;
  font-size: 14px;
}
.card a.shop-link:hover { background: #b8121f; }

/* Second+ channel buttons read as secondary (outline) so the grid doesn't
   turn into a wall of solid red when a product has 2+ channels live. */
.card a.shop-link.alt {
  background: transparent;
  color: var(--fg) !important;
  border: 1px solid var(--border);
}
.card a.shop-link.alt:hover { border-color: var(--accent); color: var(--accent) !important; }

/* Coming soon pill — for a product with real art/mockup already shown but no
   live purchase link yet (still in Printify review, or waiting on a channel
   to publish it). Distinct from .card.soon, which has no image at all. */
.status-pill {
  margin-top: auto;
  text-align: center;
  padding: 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--fg-dim);
  background: var(--bg);
  border: 1px dashed var(--border);
}

/* Coming soon card (no image yet) */
.card.soon .body { justify-content: center; align-items: center; text-align: center; min-height: 220px; }
.card.soon h3 { font-size: 18px; }
.card.soon p { color: var(--fg-dim); font-size: 14px; margin: 8px 0 0; }

/* About */
.about {
  padding: 70px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.about .wrap { max-width: 720px; text-align: center; }
.about p { color: var(--fg-dim); font-size: 17px; }
.about strong { color: var(--fg); }

/* Footer */
footer.site {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
  color: var(--fg-dim);
  font-size: 13px;
}
footer.site a { color: var(--fg-dim); text-decoration: underline; }
footer.site a:hover { color: var(--fg); }
