:root {
  --orange: #FF5500;
  --orange-dim: #cc4400;
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --card: #141414;
  --border: #222;
  --text: #e8e8e8;
  --muted: #888;
  --white: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--orange);
  text-align: center;
  padding: 8px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.topbar span { opacity: 0.9; }
.topbar span:nth-child(2)::before,
.topbar span:nth-child(2)::after { content: ' | '; opacity: 0.5; }

/* ── NAV ── */
/*nav {*/
/*  background: rgba(10,10,10,0.97);*/
/*  backdrop-filter: blur(12px);*/
/*  position: sticky;*/
/*  top: 0;*/
/*  z-index: 100;*/
/*  border-bottom: 1px solid var(--border);*/
/*  padding: 0 40px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: space-between;*/
/*  height: 64px;*/
/*}*/
/*.nav-logo {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 10px;*/
/*  text-decoration: none;*/
/*}*/
/*.nav-logo .logo-icon {*/
/*  width: 44px; height: 44px;*/
/*  background: var(--orange);*/
/*  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  font-size: 20px;*/
/*}*/
/*.nav-logo .logo-text {*/
/*  font-family: 'Black Ops One', cursive;*/
/*  font-size: 16px;*/
/*  color: var(--white);*/
/*  line-height: 1.1;*/
/*}*/
/*.nav-logo .logo-text span { display: block; font-size: 10px; letter-spacing: 3px; color: var(--muted); font-family: 'Barlow Condensed', sans-serif; font-weight: 600; }*/
/*.nav-links {*/
/*  display: flex;*/
/*  gap: 32px;*/
/*  list-style: none;*/
/*}*/
/*.nav-links a {*/
/*  color: var(--muted);*/
/*  text-decoration: none;*/
/*  font-family: 'Barlow Condensed', sans-serif;*/
/*  font-weight: 600;*/
/*  font-size: 14px;*/
/*  letter-spacing: 1.5px;*/
/*  text-transform: uppercase;*/
/*  transition: color 0.2s;*/
/*}*/
/*.nav-links a:hover, .nav-links a.active { color: var(--white); }*/
/*.nav-links a.active { color: var(--orange); }*/
/*.nav-right {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 16px;*/
/*}*/
/*.nav-icon {*/
/*  background: none;*/
/*  border: none;*/
/*  color: var(--text);*/
/*  cursor: pointer;*/
/*  font-size: 18px;*/
/*  padding: 6px;*/
/*  transition: color 0.2s;*/
/*  position: relative;*/
/*}*/
.nav-icon:hover { color: var(--orange); }
.cart-badge {
  position: absolute;
  top: 0; right: 0;
  width: 14px; height: 14px;
  background: var(--orange);
  border-radius: 50%;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}
.btn-shop {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 10px 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s;
  text-decoration: none;
}
.btn-shop:hover { background: var(--orange-dim); }

/* ── HERO ── */
.hero {
  min-height: 88vh;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(255,85,0,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 30% 80%, rgba(255,85,0,0.06) 0%, transparent 60%),
    linear-gradient(135deg, #0a0a0a 0%, #111 100%);
}
.hero-lava {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to top, rgba(255,85,0,0.08), transparent);
}
/* lightning lines */
.hero-bg::before, .hero-bg::after {
  content: '';
  position: absolute;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(255,85,0,0.6), transparent);
  animation: lightning 3s infinite;
}
.hero-bg::before { height: 300px; top: 10%; left: 58%; animation-delay: 0s; }
.hero-bg::after  { height: 200px; top: 30%; left: 72%; animation-delay: 1.4s; }
@keyframes lightning {
  0%,90%,100% { opacity: 0; }
  92% { opacity: 1; }
  94% { opacity: 0.3; }
  96% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 80px 60px;
  max-width: 600px;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before { content: '>>>'; opacity: 0.6; }
.hero-title {
  font-family: 'Black Ops One', cursive;
  font-size: clamp(72px, 8vw, 120px);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0;
  animation: fadeUp 0.8s ease both;
}
.hero-title .orange { color: var(--orange); display: block; }
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  margin: 24px 0 36px;
  font-weight: 400;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 16px 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-primary:hover { background: var(--orange-dim); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

.hero-badges {
  display: flex;
  gap: 32px;
  margin-top: 52px;
  animation: fadeUp 0.8s 0.45s ease both;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-badge .icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.hero-badge-text strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-badge-text span {
  font-size: 11px;
  color: var(--muted);
}

/* hero product mockup */
.hero-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero-shield {
  position: absolute;
  width: 500px; height: 500px;
  opacity: 0.12;
  border: 3px solid var(--orange);
  clip-path: polygon(50% 0%, 100% 20%, 100% 80%, 50% 100%, 0% 80%, 0% 20%);
}
.hero-tshirt-group {
  position: relative;
  display: flex;
  gap: -40px;
  animation: floatY 4s ease-in-out infinite;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.tshirt-card {
  width: 220px; height: 260px;
  background: var(--card);
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Black Ops One', cursive;
  font-size: 15px;
  text-align: center;
  color: var(--white);
  padding: 20px;
  overflow: hidden;
}
.tshirt-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,85,0,0.06), transparent);
}
.tshirt-card:nth-child(2) {
  transform: translateX(-30px) rotate(3deg);
  z-index: 2;
}
.tshirt-card:nth-child(1) {
  transform: translateX(30px) rotate(-3deg);
  z-index: 1;
}
.tshirt-text { line-height: 1.1; }
.tshirt-text .highlight { color: var(--orange); display: block; }
.roach-emblem {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0.6;
}

/* social sidebar */
.hero-social {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
}
.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--orange); color: var(--orange); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── TICKER ── */
.ticker {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.ticker::before, .ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.ticker::before { left: 0; background: linear-gradient(to right, var(--dark2), transparent); }
.ticker::after  { right: 0; background: linear-gradient(to left,  var(--dark2), transparent); }
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
  gap: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ticker-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.ticker-item.hot { color: var(--orange); }

/* ── SECTIONS ── */
section { padding: 20px 0px; }

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.section-title {
  font-family: 'Black Ops One', cursive;
  font-size: clamp(28px, 3vw, 36px);
  text-transform: uppercase;
  color: var(--white);
}
.view-all {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 8px 16px;
  transition: all 0.2s;
}
.view-all:hover { color: var(--orange); border-color: var(--orange); }

/* ── COLLECTIONS GRID ── */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}
.col-card {
  background: var(--card);
  border: 1px solid var(--border);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s;
}
.col-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}
.col-card-bg {
  position: absolute;
  inset: 0;
  font-size: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.08;
  transition: opacity 0.25s;
}
.col-card:hover .col-card-bg { opacity: 0.14; }
.col-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
}
.col-card-label {
  position: relative;
  z-index: 1;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
}

/* ── ABOUT BRAND ── */
.about-brand {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 60px;
}
.about-left h2 {
  font-family: 'Black Ops One', cursive;
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.about-left p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.feature-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
}
.about-center {
  text-align: center;
}
.brand-emblem {
  width: 240px; height: 240px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.emblem-ring {
  position: absolute;
  width: 240px; height: 240px;
  border: 2px solid rgba(255,85,0,0.3);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}
.emblem-ring::before {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  top: -4px; left: 50%;
  transform: translateX(-50%);
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.emblem-inner {
  width: 180px; height: 180px;
  background: var(--card);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Black Ops One', cursive;
  text-align: center;
  padding: 20px;
  position: relative;
}
.emblem-inner .roach { font-size: 48px; line-height: 1; }
.emblem-inner .name { font-size: 10px; letter-spacing: 3px; color: var(--orange); margin-top: 6px; }
.emblem-glow {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,85,0,0.15), transparent 70%);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.08); opacity: 0.6; } }

.about-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-box {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
}
.stat-num {
  font-family: 'Black Ops One', cursive;
  font-size: 32px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── PRODUCTS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  position: relative;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s;
  overflow: hidden;
}
.product-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
}
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  z-index: 2;
}
.product-badge.limited { background: #cc0000; }
.product-wishlist {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  background: rgba(10,10,10,0.8);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s;
}
.product-wishlist:hover { color: var(--orange); border-color: var(--orange); }
.product-img {
  aspect-ratio: 1;
  background: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}
.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,85,0,0.04), transparent);
}
.product-tshirt-label {
  font-family: 'Black Ops One', cursive;
  font-size: 11px;
  text-align: center;
  color: rgba(255,255,255,0.6);
  position: absolute;
  bottom: 20px;
  left: 0; right: 0;
  letter-spacing: 1px;
}
.product-info {
  padding: 14px 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.product-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 4px;
}
.product-price {
  font-family: 'Black Ops One', cursive;
  font-size: 18px;
  color: var(--orange);
}
.add-cart-btn {
  width: 36px; height: 36px;
  background: var(--orange);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.add-cart-btn:hover { background: var(--orange-dim); }

/* ── DROP BANNER ── */
.drop-banner {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
  overflow: hidden;
}
.drop-left {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}
.drop-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.drop-title {
  font-family: 'Black Ops One', cursive;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.drop-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 32px;
}
.countdown {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}
.count-box {
  background: var(--card);
  border: 1px solid var(--border);
  text-align: center;
  min-width: 72px;
  padding: 12px 16px;
  position: relative;
}
.count-box::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
}
.count-num {
  font-family: 'Black Ops One', cursive;
  font-size: 32px;
  color: var(--white);
  line-height: 1;
}
.count-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.drop-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(255,85,0,0.1), transparent);
}
.drop-hoodie {
  font-size: 120px;
  line-height: 1;
  filter: drop-shadow(0 0 40px rgba(255,85,0,0.3));
  position: relative;
  z-index: 1;
}
.drop-hoodie-text {
  position: absolute;
  font-family: 'Black Ops One', cursive;
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  text-align: center;
  transform: rotate(-5deg);
  letter-spacing: 3px;
  z-index: 0;
}

/* ── FOOTER ── */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
}
.footer-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.trust-item {
  padding: 30px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  font-size: 28px;
  opacity: 0.7;
  flex-shrink: 0;
}
.trust-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.trust-sub { font-size: 12px; color: var(--muted); }

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 60px 60px 40px;
}
.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 220px;
}
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--orange); }
.social-row {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.newsletter-form {
  display: flex;
  margin-bottom: 20px;
}
.newsletter-input {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--white);
  padding: 10px 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  outline: none;
}
.newsletter-input::placeholder { color: var(--muted); }
.newsletter-btn {
  background: var(--orange);
  border: none;
  color: #fff;
  padding: 10px 14px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-btn:hover { background: var(--orange-dim); }
.payment-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pay-badge {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 4px 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--muted);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 60px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .collections-grid { grid-template-columns: repeat(4, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-trust { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  section { padding: 10px 0px; }
  .hero-content { padding: 60px 24px 40px; }
  .hero-visual { display: none; }
  .hero-title { font-size: 64px; }
  .hero-badges { flex-direction: column; gap: 16px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-center { display: none; }
  .about-right { grid-template-columns: repeat(2, 1fr); }
  .collections-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .drop-banner { grid-template-columns: 1fr; }
  .drop-right { display: none; }
  .footer-main { grid-template-columns: 1fr; padding: 40px 24px; }
  .footer-trust { grid-template-columns: 1fr 1fr; }
  .footer-bottom { padding: 20px 24px; }
}