/* ============================================================
   WAKE UP APPAREL — Main Stylesheet
   Self-hosted, no platform restrictions
   ============================================================ */

:root {
  --black: #0a0a0a;
  --off-black: #111111;
  --dark: #1a1a1a;
  --mid: #2a2a2a;
  --border: #333333;
  --muted: #888888;
  --light: #cccccc;
  --white: #f5f5f5;
  --red: #cc2222;
  --red-dark: #991818;
  --gold: #c9a84c;
  --gold-dark: #a07838;
  --success: #2a9d2a;
  --font-heading: 'Oswald', 'Impact', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --transition: all 0.2s ease;
  --radius: 4px;
  --shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.1;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
p { margin-bottom: 1rem; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--tight { padding: 40px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-dark { background: var(--mid); color: var(--white); border: 1px solid var(--border); }
.btn-dark:hover { background: var(--border); }
.btn-full { width: 100%; }
.btn-lg { padding: 18px 48px; font-size: 1.1rem; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ── Header / Nav ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo span { color: var(--red); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-icon {
  position: relative;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
  transition: var(--transition);
  color: var(--white);
}
.cart-icon:hover { background: var(--mid); }
.cart-count {
  position: absolute;
  top: 0; right: 0;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  display: none;
}
.cart-count.visible { display: flex; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: var(--transition); }
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  gap: 16px;
}
.mobile-nav a {
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--light);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--off-black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(204,34,34,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: var(--gold);
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 em { color: var(--red); font-style: normal; }
.hero-sub {
  font-size: 1.1rem;
  color: var(--light);
  max-width: 500px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Announcement Bar ── */
.announcement-bar {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Section Headers ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--muted); max-width: 500px; margin: 0 auto; font-size: 1rem; }
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ── Product Grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--off-black);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.product-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(204,34,34,0.15);
}
.product-card-image {
  position: relative;
  aspect-ratio: 1;
  background: var(--dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card-image img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.product-badge.gold { background: var(--gold); color: var(--black); }
.product-card-body { padding: 20px; }
.product-card-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--white);
}
.product-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.product-card-price .original {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 0.9rem;
  margin-right: 8px;
}
.product-card-actions { padding: 0 20px 20px; }

/* ── Product Detail ── */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; padding: 60px 0; }
.product-images { position: sticky; top: 90px; }
.product-main-image {
  aspect-ratio: 1;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbnails { display: flex; gap: 12px; }
.product-thumbnail {
  width: 80px;
  height: 80px;
  border: 2px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.product-thumbnail:hover, .product-thumbnail.active { border-color: var(--red); }
.product-info h1 { font-size: 2.2rem; margin-bottom: 16px; }
.product-price { font-size: 1.8rem; color: var(--gold); font-weight: 700; margin-bottom: 24px; }
.product-description { color: var(--light); margin-bottom: 32px; line-height: 1.7; }

/* Size Selector */
.size-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: block;
}
.size-options { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.size-btn {
  width: 52px;
  height: 52px;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
}
.size-btn:hover { border-color: var(--white); }
.size-btn.selected { border-color: var(--red); background: var(--red); color: #fff; }
.size-btn.sold-out { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }

/* Quantity */
.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.qty-btn {
  width: 44px;
  height: 44px;
  background: var(--mid);
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { background: var(--border); }
.qty-display {
  width: 52px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  padding: 0 8px;
  background: var(--dark);
  color: var(--white);
  border: none;
  height: 44px;
}
.add-to-cart-row { display: flex; gap: 12px; margin-bottom: 32px; }

/* ── Cart Sidebar ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: var(--off-black);
  border-left: 1px solid var(--border);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}
.cart-sidebar.open { transform: translateX(0); }
.cart-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}
.cart-sidebar-header h3 { font-size: 1.1rem; }
.cart-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.cart-close:hover { background: var(--mid); }
.cart-items { flex: 1; overflow-y: auto; padding: 24px; }
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--dark);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-family: var(--font-heading); font-size: 0.9rem; margin-bottom: 4px; }
.cart-item-meta { font-size: 0.8rem; color: var(--muted); margin-bottom: 8px; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }
.cart-item-qty button {
  width: 24px; height: 24px;
  background: var(--mid);
  border: none;
  color: var(--white);
  cursor: pointer;
  border-radius: 2px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.cart-item-qty button:hover { background: var(--border); }
.cart-item-price { font-weight: 700; color: var(--gold); white-space: nowrap; }
.cart-remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 1.1rem; transition: var(--transition); padding: 4px; }
.cart-remove:hover { color: var(--red); }
.cart-empty { text-align: center; padding: 60px 24px; color: var(--muted); }
.cart-empty svg { margin: 0 auto 16px; opacity: 0.3; }
.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}
.cart-total span:last-child { color: var(--gold); }

/* ── Checkout ── */
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; padding: 60px 0; }
.checkout-form-section { background: var(--off-black); border: 1px solid var(--border); border-radius: 8px; padding: 32px; margin-bottom: 24px; }
.checkout-form-section h3 { font-size: 1rem; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-group input, .form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--red);
  background: var(--mid);
}
.form-group input::placeholder { color: var(--muted); }
.form-group select option { background: var(--dark); }
.stripe-element-wrapper {
  padding: 12px 16px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  min-height: 44px;
}
.stripe-element-wrapper.focused { border-color: var(--red); }

/* Order Summary Sidebar */
.order-summary {
  background: var(--off-black);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  position: sticky;
  top: 90px;
}
.order-summary h3 { font-size: 1rem; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.order-item { display: flex; gap: 16px; margin-bottom: 16px; align-items: center; }
.order-item-img { width: 64px; height: 64px; border-radius: var(--radius); background: var(--dark); border: 1px solid var(--border); overflow: hidden; flex-shrink: 0; }
.order-item-img img { width: 100%; height: 100%; object-fit: cover; }
.order-item-name { font-size: 0.85rem; font-weight: 600; }
.order-item-meta { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }
.order-item-price { margin-left: auto; font-weight: 700; color: var(--gold); white-space: nowrap; font-size: 0.9rem; }
.order-divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }
.order-line { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--muted); margin-bottom: 8px; }
.order-total-line { display: flex; justify-content: space-between; font-family: var(--font-heading); font-size: 1.1rem; margin-top: 8px; }
.order-total-line span:last-child { color: var(--gold); }

/* ── Features Bar ── */
.features-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feature-item {
  background: var(--off-black);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.feature-icon { font-size: 1.5rem; flex-shrink: 0; }
.feature-title { font-family: var(--font-heading); font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 2px; }
.feature-desc { font-size: 0.8rem; color: var(--muted); }

/* ── About / Mission ── */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.mission-text h2 { margin-bottom: 24px; }
.mission-text h2 em { color: var(--red); font-style: normal; }
.mission-text p { color: var(--light); margin-bottom: 16px; }
.mission-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mission-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(204,34,34,0.05) 20px,
    rgba(204,34,34,0.05) 40px
  );
}
.mission-text-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px;
}
.mission-big-text {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  color: rgba(255,255,255,0.1);
  letter-spacing: -0.02em;
}
.mission-big-text span { color: var(--red); opacity: 1; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--off-black);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--gold); }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { color: var(--light); font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { font-family: var(--font-heading); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; }
.testimonial-location { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }

/* ── Newsletter / CTA ── */
.newsletter { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 0;
}
.newsletter-text h2 { margin-bottom: 8px; }
.newsletter-text h2 em { color: var(--red); font-style: normal; }
.newsletter-text p { color: var(--muted); margin: 0; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  background: var(--off-black);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
}
.newsletter-form input:focus { outline: none; border-color: var(--red); }
.newsletter-form input::placeholder { color: var(--muted); }

/* ── Footer ── */
.site-footer {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--red); border-color: var(--red); }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: var(--light); font-size: 0.9rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--white); }

/* ── Shop Page ── */
.shop-header { padding: 60px 0 40px; border-bottom: 1px solid var(--border); }
.shop-header h1 { margin-bottom: 8px; }
.shop-header p { color: var(--muted); }
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; padding: 40px 0; }
.shop-filters { position: sticky; top: 90px; }
.filter-group { margin-bottom: 32px; }
.filter-group h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--light);
  transition: var(--transition);
  border-radius: var(--radius);
}
.filter-option:hover { color: var(--white); }
.filter-option input[type="checkbox"] { accent-color: var(--red); width: 16px; height: 16px; }
.shop-main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.shop-count { color: var(--muted); font-size: 0.9rem; }
.shop-sort select {
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  cursor: pointer;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--off-black);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(204,34,34,0.08) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; text-align: center; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--muted); font-size: 1rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.8rem; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--border); }

/* ── Toast / Notifications ── */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 12px; pointer-events: none; }
.toast {
  background: var(--dark);
  border: 1px solid var(--border);
  border-left: 4px solid var(--success);
  border-radius: var(--radius);
  padding: 14px 20px;
  min-width: 280px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: all;
  transform: translateX(120%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  font-size: 0.9rem;
}
.toast.show { transform: translateX(0); }
.toast.error { border-left-color: var(--red); }
.toast-icon { font-size: 1.1rem; }
.toast-msg { flex: 1; }

/* ── Utility ── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-red { color: var(--red); }
.text-muted { color: var(--muted); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--muted);
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Loading Spinner ── */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-bar { grid-template-columns: repeat(2, 1fr); }
  .mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 24px; }
  .product-detail { grid-template-columns: 1fr; gap: 40px; }
  .product-images { position: static; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-filters { position: static; display: none; }
  .shop-filters.open { display: block; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .features-bar { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cart-sidebar { width: 100vw; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .hero { min-height: 80vh; }
  h1 { font-size: 2.2rem; }
}
