/* ═══════════════════════════════════════════════════════════
   Pleasantrees Wholesale Menu — Full Design System
   ═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }


/* ═══════════════════════════════════════════════════════════
   INDEX PAGE
   ═══════════════════════════════════════════════════════════ */

.index-page {
  min-height: 100vh;
  background: #0f0f0f;
  position: relative;
  overflow: hidden;
}

.deco-leaf {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 320px;
  height: 320px;
  opacity: 0.6;
  pointer-events: none;
}

/* ── Header ──────────────────────────────────────────────── */
.index-header {
  text-align: center;
  padding: 4rem 2rem 2.5rem;
  color: #ffffff;
}

.header-pre {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.75rem;
}

.index-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.header-rule {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 0 auto 1rem;
}

.header-sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
}

/* ── Brand card grid ─────────────────────────────────────── */
.index-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.25rem;
}

.brand-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.brand-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.brand-card:hover .card-img { transform: scale(1.05); }

.card-img--pattern {
  background: var(--card-bg);
  /* Subtle topographic pattern via repeating gradients */
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 40px);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.5) 40%,
    rgba(0,0,0,0.2) 100%
  );
}

.card-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  color: #ffffff;
}

.card-logo {
  max-height: 40px;
  max-width: 160px;
  margin-bottom: 0.75rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.card-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  letter-spacing: 0.01em;
}

.card-tagline {
  font-size: 0.8rem;
  font-weight: 300;
  opacity: 0.6;
  font-style: italic;
  margin-bottom: 1rem;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-count {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.5;
}

.card-cta {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  transition: all 0.2s;
}
.brand-card:hover .card-cta {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
}


/* ═══════════════════════════════════════════════════════════
   LOGIN PAGE
   ═══════════════════════════════════════════════════════════ */

.login-page {
  min-height: 100vh;
  background: #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card {
  text-align: center;
  color: #ffffff;
  padding: 3rem 2.5rem;
  max-width: 380px;
  width: 100%;
}

.login-pre {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.75rem;
}

.login-card h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.login-rule {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 0 auto 2rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.login-error {
  font-size: 0.8rem;
  color: #ff6b6b;
  background: rgba(255,107,107,0.1);
  border: 1px solid rgba(255,107,107,0.2);
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.login-form input[type="password"] {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-family: inherit;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #ffffff;
  outline: none;
  transition: border-color 0.2s;
  text-align: center;
}
.login-form input[type="password"]::placeholder {
  color: rgba(255,255,255,0.3);
}
.login-form input[type="password"]:focus {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
}

.login-form button {
  padding: 0.7rem 2rem;
  font-size: 0.8rem;
  font-family: inherit;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.login-form button:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}


/* ═══════════════════════════════════════════════════════════
   BRAND PAGE
   ═══════════════════════════════════════════════════════════ */

/* ── Top nav ─────────────────────────────────────────────── */
.top-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.5rem;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 200;
}

.nav-home {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
  transition: all 0.15s;
}
.nav-home:hover { background: #f3f4f6; color: #111827; }

.nav-pills {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0.2rem 0;
}
.nav-pills::-webkit-scrollbar { display: none; }

.pill {
  flex-shrink: 0;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  transition: all 0.15s;
  white-space: nowrap;
}
.pill:hover { background: #f3f4f6; color: #111827; border-color: #d1d5db; }
.pill.active {
  background: var(--brand-accent);
  color: var(--brand-text-on-bg);
  border-color: var(--brand-accent);
  font-weight: 600;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-bg);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--brand-bg) 0%,
    rgba(0,0,0,0.6) 100%
  );
}

/* Brand-specific hero patterns for brands without images */
.brand--pleasantrees .hero-overlay {
  background:
    radial-gradient(ellipse at 20% 80%, rgba(248,241,235,0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--brand-bg) 0%, #1a2830 100%);
}
.brand--death-row-cannabis .hero-overlay {
  background:
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,22,22,0.03) 20px, rgba(255,22,22,0.03) 21px),
    linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}
.brand--level .hero-overlay {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%),
    linear-gradient(135deg, #475bb2 0%, #38488e 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--brand-text-on-bg);
  padding: 2.5rem 2rem;
}

.hero-logo {
  max-height: 70px;
  max-width: 280px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.hero-content h1 {
  font-family: var(--brand-font);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-tagline {
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.65;
  font-style: italic;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.75rem 2rem;
  border-radius: 8px;
}

.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
}
.stat-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
}
.stat-divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.15);
}

/* ── Excise tax notice ──────────────────────────────────── */
.excise-notice {
  text-align: center;
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #6b7280;
  background: #fffbeb;
  border-bottom: 1px solid #fde68a;
}
.excise-flag {
  color: #b45309;
  font-weight: 700;
  font-size: 0.75rem;
  margin-left: 2px;
}
.excise-footnote {
  font-size: 0.75rem;
  color: #b45309;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

/* ── Category quick-nav ──────────────────────────────────── */
.cat-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: var(--brand-bg-light);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }

.cat-nav-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #4b5563;
  white-space: nowrap;
  transition: all 0.15s;
}
.cat-nav-item:hover {
  background: rgba(0,0,0,0.05);
  color: var(--brand-accent);
}
.cat-nav-item svg {
  width: 18px;
  height: 18px;
  opacity: 0.6;
}

/* ── Controls bar (search/filter/sort/print) ────────────── */
.controls-bar {
  background: var(--brand-bg-light);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0.75rem 1.5rem;
}

.controls-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.control-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-group {
  flex: 1;
  min-width: 180px;
  position: relative;
}
.search-group svg {
  position: absolute;
  left: 0.65rem;
  color: #9ca3af;
  pointer-events: none;
}
.search-group input {
  width: 100%;
  padding: 0.5rem 0.75rem 0.5rem 2.1rem;
  font-size: 0.8rem;
  font-family: inherit;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #ffffff;
  outline: none;
  transition: border-color 0.15s;
  color: #1a1a1a;
}
.search-group input:focus {
  border-color: var(--brand-accent);
}
.search-group input::placeholder {
  color: #9ca3af;
}

.filter-group select,
.sort-group select {
  padding: 0.5rem 0.75rem;
  font-size: 0.78rem;
  font-family: inherit;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #ffffff;
  color: #374151;
  cursor: pointer;
  outline: none;
}
.filter-group select:focus,
.sort-group select:focus {
  border-color: var(--brand-accent);
}

.btn-print {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-text-on-bg);
  background: var(--brand-accent);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-print:hover {
  background: var(--brand-accent-hover);
}
.btn-print svg {
  width: 16px;
  height: 16px;
}

.results-count {
  max-width: 1100px;
  margin: 0.5rem auto 0;
  font-size: 0.75rem;
  color: #6b7280;
}

/* ── Menu main area ──────────────────────────────────────── */
.menu-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

/* ── Category sections ───────────────────────────────────── */
.cat-section {
  margin-bottom: 3rem;
}

.cat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid var(--brand-accent);
}

.cat-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-accent);
  color: var(--brand-text-on-bg);
  border-radius: 8px;
  flex-shrink: 0;
}
.cat-icon svg { width: 20px; height: 20px; }

.cat-header h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cat-count {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* ── Product line cards ──────────────────────────────────── */
.pl-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.pl-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.pl-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: var(--brand-bg-light);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.pl-header h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
}

.pl-count {
  font-size: 0.75rem;
  color: #9ca3af;
  background: rgba(0,0,0,0.04);
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
}

/* ── Tables ──────────────────────────────────────────────── */
.pl-table-wrap { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

thead th {
  padding: 0.65rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  background: #fafafa;
  border-bottom: 1px solid #e5e7eb;
  white-space: nowrap;
}

td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid #f3f4f6;
  white-space: nowrap;
}

.num { text-align: right; }
thead th.num { text-align: right; }

tbody tr { transition: background 0.1s; }
tbody tr:hover { background: #fafbff; }
tbody tr:last-child td { border-bottom: none; }

/* Strain name */
.strain-name {
  font-weight: 600;
  color: #111827;
  font-size: 0.88rem;
}

/* I/S/H badges */
.ish-badge {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.ish-indica {
  background: #ede9fe;
  color: #6d28d9;
}
.ish-sativa {
  background: #fef3c7;
  color: #b45309;
}
.ish-hybrid {
  background: #d1fae5;
  color: #047857;
}
.ish-na {
  font-size: 0.75rem;
  color: #d1d5db;
}

/* Price */
.price {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* Quantity */
.qty {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* THC */
.thc-val {
  font-weight: 700;
  color: var(--brand-accent);
  font-variant-numeric: tabular-nums;
}
.thc-na { color: #d1d5db; }

/* Date columns */
.col-date {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* ── Footer ──────────────────────────────────────────────── */
.menu-footer {
  text-align: center;
  padding: 2rem 1rem;
  background: #fafafa;
  border-top: 1px solid #e5e7eb;
}
.menu-footer p {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 0.3rem;
}
.menu-footer a {
  font-size: 0.75rem;
  color: var(--brand-accent);
  opacity: 0.6;
  transition: opacity 0.15s;
}
.menu-footer a:hover { opacity: 1; }


/* ═══════════════════════════════════════════════════════════
   BRAND-SPECIFIC OVERRIDES
   ═══════════════════════════════════════════════════════════ */

/* Clout King — dark tables */
.brand--clout-king .pl-card { border-color: #1f2937; background: #111827; }
.brand--clout-king .pl-header { background: #1a2332; border-color: #2d3a4d; }
.brand--clout-king .pl-header h3 { color: #e5e7eb; }
.brand--clout-king thead th { background: #0f172a; color: #94a3b8; border-color: #1e293b; }
.brand--clout-king td { border-color: #1e293b; color: #cbd5e1; }
.brand--clout-king tbody tr:hover { background: #1e293b; }
.brand--clout-king .strain-name { color: #f1f5f9; }
.brand--clout-king .price { color: #e2e8f0; }
.brand--clout-king .qty { color: #e2e8f0; }
.brand--clout-king .cat-header { border-color: #4d65ff; }
.brand--clout-king .cat-header h2 { color: #e5e7eb; }
.brand--clout-king .cat-count { color: #64748b; }
.brand--clout-king .menu-main { background: #0a0a0a; }
.brand--clout-king .menu-footer { background: #0f0f0f; border-color: #1e293b; }
.brand--clout-king .menu-footer p { color: #475569; }
.brand--clout-king .cat-nav { background: #111827; border-color: #1e293b; }
.brand--clout-king .cat-nav-item { color: #94a3b8; }
.brand--clout-king .cat-nav-item:hover { background: rgba(255,255,255,0.05); color: #4d65ff; }
.brand--clout-king .pl-count { background: rgba(255,255,255,0.06); color: #64748b; }
.brand--clout-king .thc-val { color: #4d65ff; }
.brand--clout-king .excise-notice { background: #1a1f2e; color: #94a3b8; border-color: #2d3a4d; }
.brand--clout-king .excise-flag { color: #fbbf24; }
.brand--clout-king .excise-footnote { color: #fbbf24; }
.brand--clout-king .controls-bar { background: #111827; border-color: #1e293b; }
.brand--clout-king .search-group input { background: #1a2332; border-color: #2d3a4d; color: #e5e7eb; }
.brand--clout-king .search-group input::placeholder { color: #64748b; }
.brand--clout-king .filter-group select,
.brand--clout-king .sort-group select { background: #1a2332; border-color: #2d3a4d; color: #cbd5e1; }
.brand--clout-king .results-count { color: #64748b; }

/* Death Row — dark with red accents */
.brand--death-row-cannabis .pl-card { border-color: #292929; background: #1f1f1f; }
.brand--death-row-cannabis .pl-header { background: #262626; border-color: #333; }
.brand--death-row-cannabis .pl-header h3 { color: #e5e7eb; }
.brand--death-row-cannabis thead th { background: #1a1a1a; color: #9ca3af; border-color: #333; }
.brand--death-row-cannabis td { border-color: #292929; color: #d1d5db; }
.brand--death-row-cannabis tbody tr:hover { background: #262626; }
.brand--death-row-cannabis .strain-name { color: #f3f4f6; }
.brand--death-row-cannabis .price, .brand--death-row-cannabis .qty { color: #e5e7eb; }
.brand--death-row-cannabis .cat-header { border-color: #ff1616; }
.brand--death-row-cannabis .cat-header h2 { color: #f3f4f6; }
.brand--death-row-cannabis .cat-count { color: #6b7280; }
.brand--death-row-cannabis .menu-main { background: #141414; }
.brand--death-row-cannabis .menu-footer { background: #111; border-color: #292929; }
.brand--death-row-cannabis .menu-footer p { color: #4b5563; }
.brand--death-row-cannabis .cat-nav { background: #1a1a1a; border-color: #292929; }
.brand--death-row-cannabis .cat-nav-item { color: #9ca3af; }
.brand--death-row-cannabis .cat-nav-item:hover { background: rgba(255,22,22,0.08); color: #ff1616; }
.brand--death-row-cannabis .pl-count { background: rgba(255,255,255,0.06); color: #6b7280; }
.brand--death-row-cannabis .thc-val { color: #ff4444; }
.brand--death-row-cannabis .excise-notice { background: #1f1a1a; color: #9ca3af; border-color: #3a2929; }
.brand--death-row-cannabis .excise-flag { color: #fbbf24; }
.brand--death-row-cannabis .excise-footnote { color: #fbbf24; }
.brand--death-row-cannabis .controls-bar { background: #1a1a1a; border-color: #292929; }
.brand--death-row-cannabis .search-group input { background: #262626; border-color: #333; color: #e5e7eb; }
.brand--death-row-cannabis .search-group input::placeholder { color: #6b7280; }
.brand--death-row-cannabis .filter-group select,
.brand--death-row-cannabis .sort-group select { background: #262626; border-color: #333; color: #d1d5db; }
.brand--death-row-cannabis .results-count { color: #6b7280; }

/* Broke Boyz — high contrast */
.brand--broke-boyz .hero-content h1 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.brand--broke-boyz .hero-tagline {
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.4;
}

/* Binske — dark charcoal with coral accent */
.brand--binske .hero-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.brand--binske .pl-card { border-color: #3a3a3a; background: #2a2a2a; }
.brand--binske .pl-header { background: #333333; border-color: #444; }
.brand--binske .pl-header h3 { color: #e5e7eb; }
.brand--binske thead th { background: #252525; color: #9ca3af; border-color: #3a3a3a; }
.brand--binske td { border-color: #3a3a3a; color: #d1d5db; }
.brand--binske tbody tr:hover { background: #333333; }
.brand--binske .strain-name { color: #f3f4f6; }
.brand--binske .price, .brand--binske .qty { color: #e5e7eb; }
.brand--binske .cat-header { border-color: #e8917a; }
.brand--binske .cat-header h2 { color: #f3f4f6; }
.brand--binske .cat-count { color: #6b7280; }
.brand--binske .menu-main { background: #222222; }
.brand--binske .menu-footer { background: #1e1e1e; border-color: #3a3a3a; }
.brand--binske .menu-footer p { color: #4b5563; }
.brand--binske .cat-nav { background: #2d2d2d; border-color: #3a3a3a; }
.brand--binske .cat-nav-item { color: #9ca3af; }
.brand--binske .cat-nav-item:hover { background: rgba(232,145,122,0.08); color: #e8917a; }
.brand--binske .thc-val { color: #e8917a; }
.brand--binske .excise-notice { background: #2a2520; color: #9ca3af; border-color: #3a3530; }
.brand--binske .excise-flag { color: #fbbf24; }
.brand--binske .excise-footnote { color: #fbbf24; }

/* Death Row — Bungee display */
.brand--death-row-cannabis .hero-content h1 {
  font-family: 'Bungee', sans-serif;
  font-size: 2.6rem;
  letter-spacing: 0.04em;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .index-header h1 { font-size: 2rem; }
  .brand-grid { grid-template-columns: 1fr; }
  .brand-card { min-height: 200px; }
  .hero { min-height: 220px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-stats { padding: 0.5rem 1.25rem; gap: 1rem; }
  .stat-num { font-size: 1.1rem; }
  .menu-main { padding: 1rem; }
  td, thead th { padding: 0.5rem 0.65rem; }
  .cat-nav { justify-content: flex-start; }
  .controls-inner { flex-direction: column; align-items: stretch; }
  .search-group { min-width: 100%; }
  .filter-group, .sort-group { flex: 1; }
  .filter-group select, .sort-group select { flex: 1; }
  .actions-group { justify-content: center; }
}

@media (max-width: 480px) {
  .top-nav { padding: 0.5rem 0.75rem; gap: 0.5rem; }
  .pill { font-size: 0.7rem; padding: 0.3rem 0.65rem; }
  .nav-home span { display: none; }
  .hero-content h1 { font-size: 1.6rem; }
  .hero-tagline { font-size: 0.85rem; }
  table { font-size: 0.78rem; }
}


/* ═══════════════════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════════════════ */

@media print {
  .top-nav, .cat-nav, .menu-footer, .controls-bar { display: none; }
  .hero { min-height: auto; padding: 1.5rem; print-color-adjust: exact; }
  .hero-stats { display: none; }
  .cat-section { break-inside: avoid; }
  .pl-card { break-inside: avoid; box-shadow: none; border: 1px solid #ddd; }
  thead th { background: #f3f4f6 !important; color: #1a1a1a !important; }
  .brand--clout-king td,
  .brand--death-row-cannabis td { color: #1a1a1a !important; }
  .brand--clout-king .pl-card,
  .brand--death-row-cannabis .pl-card { background: #fff !important; }
}
