﻿/* Wristband King Australia - premium dark storefront */
:root {
  --bg: #0a0a0c;
  --bg-elevated: #121216;
  --bg-card: #16161c;
  --bg-card-hover: #1c1c24;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f6fb;
  --text-muted: #a0a7b8;
  --text-dim: #7a8296;
  --primary: #a53692;
  --primary-hot: #c44aad;
  --accent: #c44aad;
  --accent-2: #e11d48;
  --gold: #f5c451;
  --success: #34d399;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --header-h: 72px;
  --topbar-h: 40px;
  --max: 1200px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --display: "Outfit", var(--font);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(139, 92, 246, 0.22), transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(34, 211, 238, 0.12), transparent 45%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(244, 63, 94, 0.08), transparent 50%);
  background-attachment: fixed;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--primary-hot);
}

h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Sticky chrome: topbar + main header stay on scroll */
.site-chrome {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10, 10, 12, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Top bar */
.topbar {
  background: transparent;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.topbar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding-block: 0.45rem;
}

.topbar a {
  color: var(--text);
  font-weight: 500;
  transition: color 0.15s ease;
}

.topbar a:hover {
  color: var(--primary-hot); /* crown purple */
}

.topbar-left,
.topbar-right {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}

.topbar .pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-muted);
}

.topbar .pill strong {
  color: var(--gold);
  font-weight: 600;
}

/* Header (sticks with .site-chrome parent) */
.site-header {
  position: relative;
  z-index: 1;
  background: transparent;
  border-bottom: none;
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* Full brand mark: pink crown + white wordmark (~40% smaller) */
.logo img,
.site-logo {
  height: 48px !important;
  width: auto !important;
  max-width: min(240px, 50vw) !important;
  object-fit: contain !important;
  object-position: left center;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  display: block;
  padding: 0 !important;
}

.site-logo-sm,
.site-footer .logo img,
.site-footer .site-logo {
  height: 34px !important;
  max-width: min(168px, 45vw) !important;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav a:hover {
  color: var(--primary-hot); /* crown purple */
  background: rgba(165, 54, 146, 0.12);
}

.nav a.active {
  color: var(--primary-hot);
  background: rgba(165, 54, 146, 0.16);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 0.75rem 1.35rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
  line-height: 1.2;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #a53692, #c44aad);
  box-shadow: 0 10px 28px rgba(165, 54, 146, 0.35);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: 0 14px 34px rgba(165, 54, 146, 0.5);
}

.btn-accent {
  color: #071018;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 10px 28px rgba(251, 191, 36, 0.28);
}

.btn-accent:hover {
  color: #071018;
}

.btn-ghost {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--primary-hot);
  background: rgba(139, 92, 246, 0.1);
}

.btn-danger {
  color: #fff;
  background: linear-gradient(135deg, #f43f5e, #e11d48);
}

.btn-sm {
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

.cart-btn {
  position: relative;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cart-btn:hover {
  border-color: var(--accent);
}

.cart-count {
  min-width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: var(--accent-2);
  color: #fff;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  font-size: 1.25rem;
}

/* Hero — tighter so it does not dominate the fold */
.hero {
  padding: 1.5rem 0 1.25rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 999px;
  padding: 0.32rem 0.75rem;
  margin-bottom: 0.65rem;
}

.hero h1 {
  font-size: clamp(1.65rem, 3.4vw, 2.55rem);
  margin-bottom: 0.55rem;
  line-height: 1.12;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #a78bfa, #22d3ee 60%, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 52ch;
  margin-bottom: 0.55rem;
  line-height: 1.45;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.85rem 0 0.65rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.hero-meta strong {
  color: var(--text);
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 5/4;
  max-height: 360px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(7, 9, 15, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
  max-width: 220px;
  box-shadow: var(--shadow);
}

.hero-badge strong {
  display: block;
  color: var(--accent);
  font-size: 0.9rem;
}

.hero-badge span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* Trust strip */
.trust-strip {
  padding: 0.15rem 0 0.85rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.1rem;
  display: flex;
  flex-direction: row;
  gap: 0.9rem;
  align-items: flex-start;
  min-height: 110px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.trust-card-body {
  min-width: 0;
  flex: 1;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  flex-shrink: 0;
  color: #fff;
  background: linear-gradient(135deg, rgba(165, 54, 146, 0.45), rgba(165, 54, 146, 0.18));
  border: 1px solid rgba(196, 74, 173, 0.35);
}

.trust-card h3 {
  font-size: 0.98rem;
  margin: 0 0 0.35rem;
  line-height: 1.25;
  color: var(--text);
}

.trust-card p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.trust-card p a {
  color: var(--text-muted);
}

.trust-card p a:hover {
  color: var(--primary-hot);
}

/* Sections */
.section {
  padding: 2.25rem 0;
}

.section-after-band {
  padding-top: 2rem;
}

/* Dark slate band so Shop by category stands out from the black page */
.section-band {
  margin-top: 0.35rem;
  padding: 1.75rem 0 2rem;
  background:
    linear-gradient(180deg, rgba(165, 54, 146, 0.08) 0%, transparent 42%),
    #141418;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 40px rgba(0, 0, 0, 0.28);
}

.section-kicker {
  margin: 0 0 0.35rem !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-hot);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.section-head h2 {
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  margin: 0;
}

.section-head p {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
  max-width: 50ch;
}

/* Category cards */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.section-categories .cat-card {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.section-categories .cat-card:hover {
  border-color: rgba(196, 74, 173, 0.45);
  transform: translateY(-3px);
}

.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.2s ease, border-color 0.2s ease;
  color: var(--text);
}

.cat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.45);
  color: var(--text);
}

.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity 0.2s ease, transform 0.35s ease;
}

.cat-card:hover img {
  opacity: 0.7;
  transform: scale(1.04);
}

.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(7, 9, 15, 0.92) 85%);
}

.cat-card-body {
  position: relative;
  z-index: 1;
  padding: 1.35rem;
}

.cat-card-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
}

.cat-card-body p {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.1rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.product-card-media {
  background: #fff;
  aspect-ratio: 1.15;
  display: grid;
  place-items: center;
  padding: 0.75rem;
  position: relative;
}

.product-card-media img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.product-card-body {
  padding: 1rem 1.05rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.product-card .tag {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.15);
  color: var(--primary-hot);
  border: 1px solid rgba(139, 92, 246, 0.25);
}

.product-card .tag.printed {
  background: rgba(34, 211, 238, 0.12);
  color: var(--accent);
  border-color: rgba(34, 211, 238, 0.25);
}

.product-card .tag.plastic {
  background: rgba(251, 191, 36, 0.12);
  color: var(--gold);
  border-color: rgba(251, 191, 36, 0.25);
}

.product-card h3 {
  font-size: 1rem;
  margin: 0;
  min-height: 2.6em;
}

.product-card h3 a {
  color: var(--text);
}

.product-card h3 a:hover {
  color: var(--primary-hot);
}

.price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gold);
}

.price small {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 500;
  margin-left: 0.25rem;
}

.product-card-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.35rem;
}

/* Filters */
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  align-items: center;
}

.filter-btn {
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--text);
  border-color: var(--primary);
  background: rgba(139, 92, 246, 0.15);
}

/* About / content panels */
.panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.panel-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: stretch;
}

.panel h2 {
  font-size: 1.65rem;
}

.panel p,
.panel li {
  color: var(--text-muted);
}

.panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
  min-height: 280px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.contact-list li {
  display: flex;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-list span {
  color: var(--text-dim);
  min-width: 5.5rem;
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.review {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.review .stars {
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.review p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Forms */
.form {
  display: grid;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

input,
select,
textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font: inherit;
  padding: 0.75rem 0.9rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin: 0;
}

.form-success {
  display: none;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.35);
  color: var(--success);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-weight: 600;
}

.form-success.show {
  display: block;
}

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.gallery {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1rem;
}

.gallery-main {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.gallery-main img {
  max-height: 420px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.85rem;
  flex-wrap: wrap;
}

.thumbs button {
  width: 68px;
  height: 68px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: #fff;
  padding: 4px;
  cursor: pointer;
  overflow: hidden;
}

.thumbs button.active,
.thumbs button:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.35);
}

.thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-info .tag {
  margin-bottom: 0.75rem;
}

.product-info h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.product-info .price {
  font-size: 1.75rem;
  margin: 0.5rem 0 1rem;
}

.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.75rem 0 1.25rem;
}

.color-swatch {
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
  color: var(--text-muted);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.color-swatch.active,
.color-swatch:hover {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(34, 211, 238, 0.12);
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.qty-row input {
  width: 90px;
}

.desc-box {
  margin-top: 1.25rem;
  white-space: pre-line;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Cart */
.cart-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1.25rem;
  align-items: start;
}

.cart-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 4px;
}

.cart-item h3 {
  font-size: 0.98rem;
  margin: 0 0 0.25rem;
}

.cart-item .meta {
  color: var(--text-dim);
  font-size: 0.85rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  color: var(--text-muted);
}

.summary-row.total {
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
  padding-top: 0.85rem;
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 700;
}

.summary-row.total span:last-child {
  color: var(--gold);
}

/* Page hero */
.page-hero {
  padding: 2.5rem 0 1.25rem;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 60ch;
  margin: 0;
}

.breadcrumb {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

/* Guidelines */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.guide-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.guide-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.guide-card p,
.guide-card li {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.guide-card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.site-footer h4 {
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  color: var(--text);
}

.site-footer p,
.site-footer a {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.pay-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.pay-methods span {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.3rem 0.55rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--bg-elevated);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 200;
  background: var(--bg-card);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: var(--text);
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transform: translateY(120%);
  opacity: 0;
  transition: 0.25s ease;
  max-width: min(360px, calc(100vw - 2rem));
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.muted {
  color: var(--text-muted);
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .panel-grid,
  .product-detail,
  .cart-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .cat-grid,
  .reviews,
  .guide-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(7, 9, 15, 0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 0.75rem;
    gap: 0.25rem;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 0.85rem 1rem;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .header-actions .btn-primary {
    display: none;
  }
}

@media (max-width: 640px) {
  .trust-grid,
  .cat-grid,
  .reviews,
  .guide-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 72px 1fr;
  }

  .cart-item .cart-item-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .hero {
    padding-top: 1.1rem;
    padding-bottom: 1rem;
  }
}
