:root {
  --primary: #d8962f;
  --primary-dark: #b87a20;
  --primary-light: rgba(216, 150, 47, 0.12);
  --bg: #f8f6f3;
  --surface: #ffffff;
  --text: #19191e;
  --muted: #6b7280;
  --border: #e5e7eb;
  --dark: #19191e;
}

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

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a {
  transition: color 0.2s;
}

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

/* ── ALERT BANNER ── */
.alert-banner {
  background: linear-gradient(90deg, #b87a20, #d8962f, #e8a840, #d8962f, #b87a20);
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
  color: #19191e;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #19191e;
  border-bottom: 1px solid rgba(216, 150, 47, 0.2);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  flex-shrink: 0;
  line-height: 1;
}

.brand span {
  color: #ffffff;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cart-badge {
  display: inline-flex;
  min-width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  padding: 0 0.4rem;
  background: var(--primary);
  color: #19191e;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  border: none;
  background: transparent;
  padding: 0.5rem;
  cursor: pointer;
  flex-shrink: 0;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-nav-overlay {
  display: none;
}

.desktop-cta {
  flex-shrink: 0;
}

/* ── BUTTONS ── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, opacity 0.2s;
  white-space: nowrap;
  line-height: 1;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--primary);
  color: #19191e;
  box-shadow: 0 4px 16px rgba(216, 150, 47, 0.35);
}

.button-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 28px rgba(216, 150, 47, 0.45);
}

.button-secondary {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(216, 150, 47, 0.3);
}

.button-secondary:hover {
  background: rgba(216, 150, 47, 0.2);
  box-shadow: none;
}

.button-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.button-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

/* ── HERO ── */
.hero {
  background: url('images/hero-banner.png') center center / cover no-repeat;
  padding: 5rem 0 4.5rem;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,22,0.82) 0%, rgba(25,20,10,0.72) 60%, rgba(17,17,22,0.65) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(216, 150, 47, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  display: flex;
  flex-direction: column;
}

.eyebrow {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  background: rgba(216, 150, 47, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(216, 150, 47, 0.25);
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: #ffffff;
  letter-spacing: -0.025em;
}

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

.hero-text > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stats strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.hero-stats span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 1.2rem;
  object-fit: contain;
  filter: drop-shadow(0 8px 40px rgba(216, 150, 47, 0.18));
}

.hero-brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.brand-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(216, 150, 47, 0.18);
  border-radius: 18px;
  padding: 1.1rem 0.75rem;
  text-align: center;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  cursor: default;
}

.brand-card:hover {
  background: rgba(216, 150, 47, 0.1);
  border-color: rgba(216, 150, 47, 0.4);
  transform: translateY(-3px);
}

.brand-card-icon {
  font-size: 2rem;
  margin-bottom: 0.4rem;
  display: block;
  line-height: 1;
}

.brand-card-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  display: block;
  line-height: 1.2;
}

.brand-card-price {
  font-size: 0.68rem;
  color: var(--primary);
  font-weight: 600;
  display: block;
  margin-top: 0.3rem;
}

/* ── SECTIONS ── */
.section {
  padding: 4rem 0;
}

.section-light {
  background: #fdfaf6;
}

.section-trust {
  background: #19191e;
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--muted);
  font-size: 1rem;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.section-header-row .section-header {
  margin-bottom: 0;
}

/* ── GRID ── */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

/* ── CATEGORY CARD ── */
.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.6rem;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: block;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(216, 150, 47, 0.18);
  border-color: rgba(216, 150, 47, 0.4);
}

.category-card-icon {
  font-size: 2.4rem;
  margin-bottom: 0.85rem;
  display: block;
  line-height: 1;
}

.category-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.category-card p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── PRODUCT CARD ── */
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 0.4s ease forwards;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(25, 25, 30, 0.1);
  border-color: rgba(216, 150, 47, 0.35);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}

.product-card-image {
  display: block;
  width: 100%;
  height: 175px;
  background: linear-gradient(135deg, rgba(216, 150, 47, 0.1), rgba(25, 25, 30, 0.05));
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.3rem;
}

.product-card-body h3 {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}

.product-card-body p {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── CARD (generic) ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--muted);
  line-height: 1.7;
}

/* ── TAG ── */
.tag {
  display: inline-block;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border: 1px solid rgba(216, 150, 47, 0.2);
  margin-bottom: 0.6rem;
}

/* ── PRODUCT FOOTER ── */
.product-footer {
  margin-top: auto;
  padding-top: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.product-footer strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}

/* ── TRUST SECTION ── */
.trust-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.trust-card {
  border-radius: 20px;
  padding: 1.75rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(216, 150, 47, 0.15);
  transition: border-color 0.25s, background 0.25s;
}

.trust-card:hover {
  border-color: rgba(216, 150, 47, 0.35);
  background: rgba(216, 150, 47, 0.06);
}

.trust-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

.trust-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.trust-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

/* ── SOCIAL PROOF ── */
.social-proof {
  background: linear-gradient(135deg, #111116 0%, #1e1810 100%);
  padding: 4rem 0;
  border-top: 1px solid rgba(216, 150, 47, 0.12);
  border-bottom: 1px solid rgba(216, 150, 47, 0.12);
}

.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.rating-block {
  text-align: center;
  flex-shrink: 0;
}

.rating-score {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.03em;
}

.rating-stars {
  color: var(--primary);
  font-size: 1.3rem;
  margin: 0.5rem 0;
  letter-spacing: 0.1em;
}

.rating-block p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.stat-grid {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  flex: 1;
  justify-content: space-around;
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-item span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.3rem;
  display: block;
}

/* ── REVIEWS ── */
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.review-card:hover {
  box-shadow: 0 12px 36px rgba(25, 25, 30, 0.08);
  border-color: rgba(216, 150, 47, 0.25);
}

.review-card-stars {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0.85rem;
  letter-spacing: 0.05em;
}

.review-card > p {
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.review-card-author {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  display: block;
}

/* ── SHOP PAGE ── */
.shop-hero {
  background: #19191e;
  padding: 3rem 0;
}

.shop-hero .section-header h2,
.shop-hero .section-header p {
  color: #ffffff;
}

.shop-hero .section-header p {
  opacity: 0.6;
}

.shop-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.filter-button {
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-button:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-button.active {
  background: var(--primary);
  color: #19191e;
  border-color: var(--primary);
}

.filter-search input {
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-size: 0.9rem;
  width: min(340px, 100%);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.filter-search input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(216, 150, 47, 0.12);
}

.product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  transition: opacity 0.25s;
}

.product-grid.loading {
  opacity: 0.5;
  pointer-events: none;
}

.product-loader {
  display: none;
  margin-top: 2rem;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-weight: 600;
  color: var(--muted);
  font-size: 0.9rem;
}

.loader-ring {
  width: 22px;
  height: 22px;
  border: 3px solid rgba(216, 150, 47, 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ── PRODUCT DETAIL ── */
.product-detail {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.product-detail-image {
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
  background: linear-gradient(135deg, rgba(216, 150, 47, 0.12), rgba(25, 25, 30, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.product-detail-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  display: grid;
  gap: 0.85rem;
}

.product-detail-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.product-detail-card > strong {
  font-size: 1.7rem;
  color: var(--primary);
  font-weight: 800;
}

.product-detail-card > p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.product-detail-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.product-detail-list li {
  background: rgba(216, 150, 47, 0.07);
  border: 1px solid rgba(216, 150, 47, 0.15);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
}

.product-detail-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 800;
  flex-shrink: 0;
}

.product-detail-card select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fafafa;
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.product-detail-card select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(216, 150, 47, 0.12);
}

/* ── CART ── */
.cart-page {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.4fr 0.6fr;
}

.cart-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
}

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

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

.cart-item-details {
  display: grid;
  gap: 0.4rem;
}

.cart-item-controls {
  display: grid;
  gap: 0.6rem;
  align-items: start;
}

.cart-item-controls input {
  width: 80px;
  padding: 0.5rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  text-align: center;
  background: #fafafa;
  color: var(--text);
}

.checkout-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.checkout-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.checkout-card input,
.checkout-card textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fafafa;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.checkout-card input:focus,
.checkout-card textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(216, 150, 47, 0.12);
}

.checkout-card label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.checkout-card button {
  width: 100%;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.summary-row:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

/* ── CONTACT ── */
.contact-grid {
  gap: 2rem;
}

/* ── FAQ ── */
.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.6rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
  border-color: rgba(216, 150, 47, 0.3);
  box-shadow: 0 8px 24px rgba(25, 25, 30, 0.06);
}

.faq-item h3 {
  font-weight: 700;
  margin-bottom: 0.65rem;
  font-size: 1rem;
  color: var(--text);
}

.faq-item p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ── FOOTER ── */
.site-footer {
  background: #19191e;
  padding: 4.5rem 0 2rem;
}

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

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.footer-brand > p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
  max-width: 280px;
}

.footer-brand > a {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: opacity 0.2s;
}

.footer-brand > a:hover {
  opacity: 0.8;
}

.footer-flags {
  font-size: 1.35rem;
  margin-top: 1.25rem;
  letter-spacing: 0.3rem;
  line-height: 1;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ── VARIANT SELECTOR ── */
.variant-selector {
  display: grid;
  gap: 0.75rem;
}

.variant-selector-label {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.variant-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.65rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fafafa;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  text-align: left;
}

.variant-btn:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.variant-btn.active {
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(216, 150, 47, 0.18);
}

.variant-btn-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  display: block;
  line-height: 1.4;
}

.variant-btn-price {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin-top: 0.2rem;
}

/* ── CART VARIANT BADGE ── */
.cart-variant-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid rgba(216, 150, 47, 0.25);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

/* ── PRICE FROM ── */
.price-from {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  display: block;
  line-height: 1.2;
  margin-bottom: 1px;
}

/* ── UTILITY ── */
.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .mobile-toggle {
    display: flex;
  }

  .desktop-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 82vw);
    height: 100vh;
    flex-direction: column;
    padding: 5rem 1.75rem 1.75rem;
    justify-content: flex-start;
    background: #19191e;
    gap: 1.25rem;
    box-shadow: -10px 0 60px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(.4,0,.2,1);
    z-index: 200;
    border-left: 1px solid rgba(216, 150, 47, 0.15);
  }

  .nav-links a {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
  }

  .site-header.nav-open .nav-links {
    transform: translateX(0);
  }

  .mobile-nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s;
  }

  .site-header.nav-open .mobile-nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3.5rem 0 3rem;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .cart-page {
    grid-template-columns: 1fr;
  }

  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .shop-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-search {
    width: 100%;
  }

  .filter-search input {
    width: 100%;
  }

  .social-proof-inner {
    flex-direction: column;
    text-align: center;
  }

  .stat-grid {
    justify-content: center;
    gap: 1.5rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* ── 2 colonnes produits sur mobile ── */
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .product-card-image {
    height: 120px;
  }

  .product-card-body {
    padding: 0.75rem;
    gap: 0.2rem;
  }

  .product-card-body h3 {
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .product-card-body p {
    font-size: 0.72rem;
    display: none;
  }

  .product-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding-top: 0.6rem;
  }

  .product-footer strong {
    font-size: 0.88rem;
  }

  .product-footer .button-sm {
    padding: 0.5rem 0.85rem;
    font-size: 0.78rem;
    width: 100%;
    justify-content: center;
  }

  .tag {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
  }
}

/* ── FEATURED HEROES (Netflix / Prime Video) ── */
.featured-heroes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.featured-card {
  background: var(--surface);
  border: 2px solid rgba(216, 150, 47, 0.25);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
}

.featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(216, 150, 47, 0.22);
  border-color: rgba(216, 150, 47, 0.55);
}

.featured-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.featured-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.featured-card:hover .featured-card-image img {
  transform: scale(1.06);
}

.featured-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: var(--primary);
  color: #19191e;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(216, 150, 47, 0.4);
}

.featured-card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.featured-card-body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.featured-card-body p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.featured-card-body strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  margin-top: 0.25rem;
}

.featured-card-body .button {
  margin-top: auto;
  padding-top: 1rem;
}

@media (max-width: 600px) {
  .featured-heroes {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .featured-card-image {
    height: 140px;
  }

  .featured-card-body {
    padding: 0.9rem;
    gap: 0.3rem;
  }

  .featured-card-body h3 {
    font-size: 1rem;
  }

  .featured-card-body p {
    font-size: 0.78rem;
  }

  .featured-card-body strong {
    font-size: 0.95rem;
  }

  .featured-card-body .button {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }
}
