@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg: #121212;
  --bg-alt: #1a1a1a;
  --bg-card: #1e1e1e;
  --text: #f0f0f0;
  --text-light: #a0a0a0;
  --text-muted: #6b6b6b;
  --border: #2a2a2a;
  --border-light: #222222;
  --accent: #f5a623;
  --accent-hover: #ffbe45;
  --accent-glow: rgba(245, 166, 35, .2);
  --accent-subtle: rgba(245, 166, 35, .08);
  --red: #ef4444;
  --green: #22c55e;
  --blue: #3b82f6;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 1px 3px rgba(0,0,0,.3), 0 4px 12px rgba(0,0,0,.2);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.4);
  --glow: 0 0 20px var(--accent-glow);
  --glow-sm: 0 0 10px var(--accent-glow);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .6; }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 15px var(--accent-glow); }
  50% { box-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(99,102,241,.15); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.92); }
  to { opacity: 1; transform: scale(1); }
}

.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HEADER ── */
.site-header {
  background: rgba(18,18,18,.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
}
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.header-nav a:hover { color: var(--text); background: var(--accent-subtle); }
.header-nav a.active { color: var(--text); font-weight: 600; }
.header-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

/* ── HERO (shop) ── */
.hero {
  padding: 80px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  animation: fadeIn .8s ease;
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.hero p { color: var(--text-light); font-size: 16px; max-width: 500px; margin: 0 auto; }

/* ── SHIPPING BAR ── */
.info-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

/* ── BRAND GRID ── */
.brands-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
}
.brands-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
  text-align: center;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: all .35s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}
.brand-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, var(--accent-subtle) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
}
.brand-card:hover {
  border-color: var(--accent);
  box-shadow: var(--glow), var(--shadow-lg);
  transform: translateY(-4px);
}
.brand-card:hover::before { opacity: 1; }
.brand-logo-img {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.brand-card:hover .brand-logo-img { filter: drop-shadow(0 0 6px rgba(0,0,0,.1)); }
.brand-logo-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.brand-card .brand-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.brand-card .brand-count {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

/* ── PRODUCTS SECTION ── */
.products-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 64px;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}
.back-link:hover { color: var(--accent-hover); }
.back-link svg { width: 16px; height: 16px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  background: var(--bg-card);
  position: relative;
}
.product-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 0;
  padding: 1px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow-sm), var(--shadow-lg);
}
.product-card:hover::after { opacity: 1; }
.product-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-img .img-placeholder {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--border);
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(8px);
}
.badge-sale { background: rgba(239,68,68,.85); color: #fff; box-shadow: 0 0 12px rgba(239,68,68,.3); }
.badge-stock { background: rgba(34,197,94,.85); color: #fff; box-shadow: 0 0 12px rgba(34,197,94,.3); }
.badge-premium { background: rgba(217,119,6,.85); color: #fff; box-shadow: 0 0 12px rgba(217,119,6,.3); }
.badge-classic { background: rgba(100,116,139,.85); color: #fff; }

.product-info { padding: 20px; position: relative; z-index: 1; }
.product-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.product-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.product-material {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.product-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
}
.product-old-price {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-sale { color: var(--red); }

/* ── CHECKOUT PAGE ── */
.checkout-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 32px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  animation: fadeInUp .6s ease;
}
.checkout-form h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.form-group input, .form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text);
  background: var(--bg-card);
  outline: none;
  transition: all .3s ease;
  font-family: inherit;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--accent);
  box-shadow: var(--glow-sm);
}
.form-group input::placeholder { color: var(--text-muted); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Phone input with flag */
.phone-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  transition: all .3s ease;
  overflow: hidden;
}
.phone-input-wrapper:focus-within {
  border-color: var(--accent);
  box-shadow: var(--glow-sm);
}
.phone-prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 10px 10px 14px;
  font-size: 13px;
  color: var(--text-light);
  border-right: 1px solid var(--border);
  background: var(--bg-alt);
  cursor: default;
  flex-shrink: 0;
  white-space: nowrap;
  font-weight: 500;
}
.phone-prefix .flag { font-size: 18px; line-height: 1; }
.phone-input-wrapper input {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 10px 14px !important;
  flex: 1;
  min-width: 0;
}

.order-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  height: fit-content;
  position: sticky;
  top: 80px;
}
.order-summary h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.summary-products-list { margin-bottom: 0; }
.summary-product-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.summary-product-item:last-child { border-bottom: none; }
.summary-product-img {
  width: 56px;
  height: 56px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.summary-product-img img { width: 100%; height: 100%; object-fit: cover; }
.summary-product-info { flex: 1; min-width: 0; }
.summary-product-name { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.summary-product-detail { font-size: 11px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.summary-product-price { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.summary-divider { height: 1px; background: var(--border); margin: 16px 0; }
.promo-section { margin: 0; }
.promo-input-row { display: flex; gap: 8px; }
.promo-input-row input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--bg-alt);
  color: var(--text);
  transition: all .3s ease;
}
.promo-input-row input:focus { border-color: var(--accent); outline: none; box-shadow: var(--glow-sm); }
.promo-msg { font-size: 12px; margin-top: 6px; min-height: 18px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--text-light);
}
.summary-row.total {
  font-weight: 700;
  font-size: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: 12px;
  color: var(--text);
}
.partners-checkout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: .8px;
  text-transform: uppercase;
  text-align: center;
}
.partner-pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 8px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 9px;
  font-weight: 600;
  color: var(--text);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  font-family: inherit;
  letter-spacing: .5px;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--accent);
  color: #121212;
  width: 100%;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 24px var(--accent-glow);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent-hover); box-shadow: var(--glow-sm); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-danger { background: rgba(239,68,68,.1); color: var(--red); border: 1px solid rgba(239,68,68,.2); }
.btn-danger:hover { background: rgba(239,68,68,.2); box-shadow: 0 0 12px rgba(239,68,68,.15); }
.btn-accent { background: var(--blue); color: #fff; }
.btn-accent:hover { background: #2563eb; }

/* ── TRACKING PAGE ── */
.track-hero {
  padding: 72px 24px;
  text-align: center;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  animation: fadeIn .6s ease;
}
.track-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.track-hero p { color: var(--text-light); font-size: 15px; margin-bottom: 36px; }
.search-box {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  transition: all .3s ease;
}
.search-box:focus-within { border-color: var(--accent); box-shadow: var(--glow); }
.search-box input {
  flex: 1;
  border: none;
  padding: 16px 20px;
  font-size: 15px;
  color: var(--text);
  outline: none;
  background: transparent;
  font-family: inherit;
}
.search-box input::placeholder { color: var(--text-muted); }
.search-box button {
  padding: 16px 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-box button:hover { background: var(--accent-hover); }
.search-box button svg { width: 16px; height: 16px; }

.tracking-result {
  max-width: 700px;
  margin: 40px auto;
  padding: 0 24px;
  display: none;
  animation: fadeInUp .5s ease;
}
.tracking-result.visible { display: block; }
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.status-banner {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}
.status-banner.status-registered { background: linear-gradient(135deg, #374151, #1f2937); }
.status-banner.status-in-transit { background: linear-gradient(135deg, var(--blue), #1d4ed8); }
.status-banner.status-out-for-delivery { background: linear-gradient(135deg, #ea580c, #c2410c); }
.status-banner.status-delivered { background: linear-gradient(135deg, var(--green), #16a34a); }
.status-banner.status-delayed { background: linear-gradient(135deg, var(--red), #dc2626); }
.status-banner.status-returned { background: linear-gradient(135deg, #374151, #1f2937); }
.status-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.status-icon svg { width: 22px; height: 22px; stroke: #fff; fill: none; }
.status-info h2 { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; }
.status-info p { font-size: 13px; opacity: .85; }

.progress-section { padding: 24px 28px; border-bottom: 1px solid var(--border); }
.progress-steps { display: flex; justify-content: space-between; position: relative; }
.progress-steps::before {
  content: '';
  position: absolute;
  top: 15px; left: 5%; right: 5%;
  height: 2px;
  background: var(--border);
}
.progress-steps::after {
  content: '';
  position: absolute;
  top: 15px; left: 5%;
  height: 2px;
  background: var(--accent);
  box-shadow: var(--glow-sm);
  transition: width .6s cubic-bezier(.4,0,.2,1);
}
.progress-steps[data-progress="0"]::after { width: 0%; }
.progress-steps[data-progress="1"]::after { width: 22.5%; }
.progress-steps[data-progress="2"]::after { width: 45%; }
.progress-steps[data-progress="3"]::after { width: 67.5%; }
.progress-steps[data-progress="4"]::after { width: 90%; }

.step { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; flex: 1; }
.step-dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: all .3s ease;
}
.step-dot svg { width: 12px; height: 12px; stroke: transparent; fill: none; stroke-width: 3; }
.step.active .step-dot { border-color: var(--accent); background: var(--accent); box-shadow: var(--glow); }
.step.active .step-dot svg { stroke: #fff; }
.step.done .step-dot { border-color: var(--green); background: var(--green); box-shadow: 0 0 10px rgba(34,197,94,.3); }
.step.done .step-dot svg { stroke: #fff; }
.step-label { font-size: 10px; color: var(--text-muted); text-align: center; font-weight: 500; }
.step.active .step-label { color: var(--accent-hover); font-weight: 600; }
.step.done .step-label { color: var(--green); font-weight: 600; }

.details-grid { display: grid; grid-template-columns: 1fr 1fr; }
.detail-item { padding: 18px 28px; border-bottom: 1px solid var(--border); }
.detail-item:nth-child(odd) { border-right: 1px solid var(--border); }
.detail-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-muted); margin-bottom: 4px; font-weight: 600; }
.detail-value { font-size: 14px; font-weight: 600; color: var(--text); }

.timeline-section { padding: 24px 28px; }
.timeline-section h3 { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 20px; }
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 4px; bottom: 4px; width: 1px; background: var(--border); }
.timeline-event { position: relative; padding-bottom: 24px; }
.timeline-event:last-child { padding-bottom: 0; }
.timeline-event::before { content: ''; position: absolute; left: -24px; top: 6px; width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
.timeline-event:first-child::before { background: var(--accent); width: 10px; height: 10px; left: -25px; top: 5px; box-shadow: var(--glow-sm); }
.timeline-event .ev-date { font-size: 11px; color: var(--text-muted); }
.timeline-event .ev-title { font-size: 13px; font-weight: 600; color: var(--text); margin-top: 2px; }
.timeline-event .ev-location { font-size: 12px; color: var(--text-light); margin-top: 2px; display: flex; align-items: center; gap: 4px; }
.timeline-event .ev-location svg { width: 12px; height: 12px; flex-shrink: 0; }

.not-found { text-align: center; padding: 56px 24px; display: none; }
.not-found.visible { display: block; }
.not-found h3 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.not-found p { color: var(--text-light); font-size: 14px; }

/* ── ADMIN ── */
.admin-login { max-width: 400px; margin: 80px auto; padding: 0 24px; animation: fadeInUp .5s ease; }
.login-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 44px 36px;
  text-align: center;
}
.login-card h2 { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.login-card .subtitle { color: var(--text-light); font-size: 13px; margin-bottom: 28px; }
.lock-icon {
  width: 60px; height: 60px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.lock-icon svg { width: 24px; height: 24px; stroke: var(--text-light); }

.admin-container { max-width: 1100px; margin: 0 auto; padding: 32px 24px; display: none; }
.admin-container.visible { display: block; animation: fadeInUp .5s ease; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.admin-header h2 { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; }
.admin-tabs { display: flex; gap: 4px; margin-bottom: 24px; background: var(--bg-alt); border-radius: var(--radius); padding: 4px; border: 1px solid var(--border); }
.admin-tab { flex: 1; padding: 10px 16px; border: none; background: none; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; color: var(--text-muted); cursor: pointer; border-radius: var(--radius-sm); transition: all .3s ease; }
.admin-tab:hover { color: var(--text); }
.admin-tab.active { background: var(--bg); color: var(--text); font-weight: 600; box-shadow: 0 1px 3px rgba(0,0,0,.08); }

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.stat-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  transition: all .3s ease;
}
.stat-card:hover { border-color: var(--accent); box-shadow: var(--glow-sm); }
.stat-card .stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); font-weight: 600; display: flex; align-items: center; gap: 8px; }
.stat-card .stat-value { font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 700; margin-top: 4px; }
.stat-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }

.table-container { background: var(--bg-card); border-radius: var(--radius); overflow-x: auto; border: 1px solid var(--border); }
.table-header { padding: 16px 24px; border-bottom: 1px solid var(--border); }
.table-header h3 { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; }
table { width: 100%; border-collapse: collapse; min-width: 900px; }
table th { text-align: left; padding: 10px 18px; font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); font-weight: 600; border-bottom: 1px solid var(--border); background: var(--bg-alt); }
table td { padding: 14px 18px; font-size: 13px; border-bottom: 1px solid var(--border); vertical-align: middle; }
table tr:last-child td { border-bottom: none; }
table tr { transition: background .2s ease; }
table tr:hover td { background: var(--accent-subtle); }
.badge { display: inline-flex; padding: 4px 12px; border-radius: 100px; font-size: 11px; font-weight: 600; }
.badge-blue { background: #dbeafe; color: #1d4ed8; }
.badge-green { background: #dcfce7; color: #15803d; }
.badge-orange { background: #ffedd5; color: #c2410c; }
.badge-red { background: #fee2e2; color: #dc2626; }
.badge-gray { background: var(--bg-alt); color: var(--text-light); }
.actions-cell { display: flex; gap: 6px; white-space: nowrap; }
.empty-state { padding: 56px 24px; text-align: center; color: var(--text-muted); }
.empty-state svg { width: 40px; height: 40px; stroke: var(--border); margin-bottom: 12px; }

.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(8px); z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.visible { display: flex; }
.modal { background: var(--bg-card); border-radius: var(--radius); width: 100%; max-width: 500px; max-height: 90vh; overflow-y: auto; border: 1px solid var(--border); animation: scaleIn .3s ease; }
.modal-header { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.modal-header h3 { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 700; }
.modal-close { width: 32px; height: 32px; border: none; background: var(--bg-alt); border-radius: 50%; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text-light); transition: var(--transition); }
.modal-close:hover { background: rgba(239,68,68,.15); color: var(--red); }
.modal-body { padding: 24px; }
.modal-body .form-group input, .modal-body .form-group select {
  background: var(--bg-alt);
}
.modal-footer { padding: 16px 24px; border-top: 1px solid var(--border); display: flex; gap: 10px; justify-content: flex-end; }

.error-msg { color: var(--red); font-size: 13px; margin-top: 8px; display: none; }
.error-msg.visible { display: block; }

.payment-badge {
  font-size: 10px;
  font-weight: 600;
  background: #dbeafe;
  color: #1d4ed8;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.paypal-payment-box {
  padding: 20px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  font-size: 13px;
  color: #1e3a5f;
  line-height: 1.6;
}
.paypal-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.paypal-logo { height: 24px; }
.paypal-payment-box p { margin: 0 0 8px; }
.paypal-payment-box ul { margin: 0 0 8px; padding-left: 20px; }
.paypal-payment-box li { margin-bottom: 4px; }
.paypal-note { font-size: 12px; color: #475569; margin-top: 8px; }
.btn-paypal {
  background: #0070ba;
  width: 100%;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
}
.btn-paypal:hover { background: #005ea6; }

.terms-checkbox { margin-top: 20px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

/* ── PRODUCT DETAIL MODAL ── */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.product-modal-overlay.visible { display: flex; }
.product-modal {
  background: var(--bg-card);
  border-radius: var(--radius);
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  animation: scaleIn .3s ease;
}
.product-modal-img {
  aspect-ratio: 1;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius) 0 0 var(--radius);
}
.product-modal-img img { width: 100%; height: 100%; object-fit: cover; }
.product-modal-img .product-badge { top: 16px; left: 16px; }
.product-modal-body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: var(--transition);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.product-modal-close:hover { background: #fee2e2; color: var(--red); }
.pm-brand { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); font-weight: 600; margin-bottom: 6px; }
.pm-name { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.pm-subtitle { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.pm-material { font-size: 13px; color: var(--text-light); padding: 12px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.pm-material svg { width: 16px; height: 16px; stroke: var(--text-muted); flex-shrink: 0; }
.pm-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 24px; }
.pm-price { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; }
.pm-old-price { font-size: 16px; color: var(--text-muted); text-decoration: line-through; }
.pm-price-sale { color: var(--red); }
.btn-add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  font-family: inherit;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.btn-add-cart:hover { background: var(--accent-hover); box-shadow: 0 6px 24px var(--accent-glow); transform: translateY(-2px); }
.btn-add-cart svg { width: 20px; height: 20px; }
.btn-add-cart.added { background: var(--green); pointer-events: none; box-shadow: 0 4px 16px rgba(34,197,94,.3); }
.pm-shipping { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 12px; letter-spacing: .5px; }

.btn-share-link {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; padding: 10px; margin-top: 8px;
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: 10px;
  color: var(--text-light); font-size: 13px; font-family: inherit; font-weight: 500;
  cursor: pointer; transition: all .2s;
}
.btn-share-link:hover { background: var(--bg); color: var(--text); border-color: var(--accent); box-shadow: var(--glow-sm); }

/* ── CART ICON ── */
.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-light);
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.cart-btn:hover { color: var(--accent-hover); }
.cart-btn svg { width: 20px; height: 20px; }
.cart-badge {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 18px;
  height: 18px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 100px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 0 8px var(--accent-glow);
}
.cart-badge.visible { display: flex; }

/* ── CART SIDEBAR ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
  z-index: 300;
  display: none;
  opacity: 0;
  transition: opacity .3s ease;
}
.cart-overlay.visible { display: block; opacity: 1; }
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  z-index: 301;
  display: flex;
  flex-direction: column;
  transition: right .35s cubic-bezier(.4,0,.2,1);
}
.cart-sidebar.visible { right: 0; }
.cart-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-sidebar-header h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
}
.cart-sidebar-close {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--bg-alt);
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
}
.cart-sidebar-close:hover { background: rgba(239,68,68,.15); color: var(--red); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; padding: 60px 24px; color: var(--text-muted); font-size: 14px; }
.cart-empty svg { width: 48px; height: 48px; stroke: var(--border); margin-bottom: 12px; display: block; margin-left: auto; margin-right: auto; }
.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-alt);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 13px; font-weight: 600; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-material { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; }
.cart-item-price { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; }
.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  transition: var(--transition);
  align-self: flex-start;
}
.cart-item-remove:hover { color: var(--red); }
.cart-item-remove svg { width: 16px; height: 16px; }
.cart-sidebar-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.cart-total-label { font-size: 14px; font-weight: 600; }
.cart-total-value { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; }
.cart-shipping-note { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 10px; }
.cart-pricing-rows { margin-bottom: 12px; }
.cart-pricing-row { display: flex; justify-content: space-between; font-size: 13px; padding: 4px 0; color: var(--text-light); }
.cart-pricing-discount { color: var(--green); font-weight: 600; }

@media (max-width: 768px) {
  .product-modal { grid-template-columns: 1fr; max-width: 440px; }
  .product-modal-img { aspect-ratio: 4/3; border-radius: var(--radius) var(--radius) 0 0; }
  .product-modal-body { padding: 24px 20px; }
}

/* ── HOMEPAGE ── */
.home-hero {
  padding: 120px 24px 100px;
  text-align: center;
  background: #121212;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
  z-index: 0;
  pointer-events: none;
  filter: saturate(0) brightness(.8);
}
.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(18,18,18,.55) 0%, rgba(18,18,18,.7) 100%);
  z-index: 1;
  pointer-events: none;
}
.home-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.01) 0%, transparent 70%);
  pointer-events: none;
  opacity: .3;
  z-index: 0;
}
.home-hero-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.home-hero-tag {
  display: inline-block;
  padding: 7px 20px;
  background: rgba(255,255,255,.12);
  color: #fff;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp .6s ease .1s both;
}
.home-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.08;
  margin-bottom: 20px;
  animation: fadeInUp .6s ease .2s both;
  color: #ffffff;
}
.home-hero p {
  color: rgba(255,255,255,.75);
  font-size: 17px;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 40px;
  animation: fadeInUp .6s ease .3s both;
}
.home-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  animation: fadeInUp .6s ease .4s both;
}
.btn-hero { padding: 16px 40px; font-size: 15px; width: auto; border-radius: var(--radius); }
.home-hero .btn-outline { color: #fff; border-color: rgba(255,255,255,.4); }
.home-hero .btn-outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.1); }

.home-brands {
  border-bottom: 1px solid var(--border);
  padding: 56px 24px;
}
.home-brands-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.home-brands-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 36px;
}
.home-brands-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}
.home-brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all .35s ease;
  opacity: .5;
}
.home-brand-item:hover { opacity: 1; color: var(--text); }
.home-brand-item img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all .35s ease;
}
.home-brand-item:hover img { filter: grayscale(0%); }

.home-offer {
  padding: 100px 24px;
  text-align: center;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.home-offer-inner { max-width: 900px; margin: 0 auto; }
.home-offer-tag {
  display: inline-block;
  padding: 5px 16px;
  background: #dcfce7;
  color: #15803d;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.home-offer h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.home-offer-sub {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 48px;
}
.offer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  position: relative;
  transition: all .35s ease;
}
.offer-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.offer-card-best {
  border-color: var(--accent);
  box-shadow: var(--glow);
  background: linear-gradient(180deg, var(--accent-subtle) 0%, var(--bg-card) 100%);
}
.offer-card-best:hover { box-shadow: 0 0 30px var(--accent-glow); }
.offer-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #121212;
  padding: 5px 18px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 12px var(--accent-glow);
}
.offer-card-icon {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.offer-card-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
}
.offer-card-detail {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
}
.offer-card-note {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 600;
}
.home-offer-note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.home-features {
  padding: 100px 24px;
  border-bottom: 1px solid var(--border);
}
.home-features-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.feature-card {
  text-align: center;
  transition: all .35s ease;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all .35s ease;
}
.feature-card:hover .feature-icon { box-shadow: var(--glow); border-color: var(--accent); }
.feature-icon svg { width: 24px; height: 24px; stroke: var(--text); }
.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

.home-cta {
  padding: 100px 24px;
  text-align: center;
  background: var(--accent);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.home-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,.08) 0%, transparent 50%);
}
.home-cta-inner { max-width: 500px; margin: 0 auto; position: relative; z-index: 1; }
.home-cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}
.home-cta p { opacity: .8; font-size: 15px; margin-bottom: 36px; }
.home-cta .btn-primary { background: #121212; color: var(--accent); box-shadow: 0 4px 16px rgba(0,0,0,.3); }
.home-cta .btn-primary:hover { background: #16161e; box-shadow: 0 6px 24px rgba(0,0,0,.4); }

@media (max-width: 768px) {
  .home-hero { padding: 80px 24px 60px; }
  .home-hero h1 { font-size: 36px; letter-spacing: -1px; }
  .home-hero-actions { flex-direction: column; align-items: center; }
  .btn-hero { width: 100%; max-width: 320px; }
  .home-brands-grid { gap: 32px; }
  .home-brand-item img { height: 40px; }
  .offer-cards { grid-template-columns: 1fr; max-width: 340px; margin-left: auto; margin-right: auto; }
  .home-features-inner { grid-template-columns: 1fr 1fr; }
  .home-offer h2 { font-size: 28px; }
}
@media (max-width: 480px) {
  .home-features-inner { grid-template-columns: 1fr; }
  .home-brands-grid { gap: 24px; }
}

/* ── FEATURED PRODUCTS ── */
.home-featured {
  padding: 72px 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.home-featured-inner { max-width: 1100px; margin: 0 auto; }
.home-featured-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
}
.home-featured-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text);
}
.home-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.featured-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: all .3s ease;
}
.featured-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--glow); }
.featured-card-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #111;
}
.featured-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.featured-card:hover .featured-card-img img { transform: scale(1.05); }
.featured-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--accent);
  color: #121212;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.featured-card-info {
  padding: 16px;
}
.featured-brand {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  font-weight: 600;
}
.featured-card-info h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 6px 0 10px;
  line-height: 1.3;
}
.featured-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.featured-cta {
  text-align: center;
  margin-top: 40px;
}
.featured-cta-text {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 16px;
}
.featured-cta-brands {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.featured-cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all .25s ease;
}
.featured-cta-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--glow-sm);
  transform: translateY(-2px);
}
.featured-see-all {
  display: inline-block;
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: opacity .2s;
}
.featured-see-all:hover { opacity: .7; }
@media (max-width: 768px) {
  .home-featured-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .featured-cta-btn { padding: 10px 20px; font-size: 13px; }
}
@media (max-width: 560px) {
  .home-featured-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
  .featured-card-info { padding: 12px; }
  .featured-card-info h3 { font-size: 13px; }
}

/* ── BRAND LOGOS DARK MODE ── */
.home-brand-item img { filter: invert(1) brightness(2); }

/* ── PURCHASE PROTECTION ── */
.purchase-protection {
  padding: 48px 24px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  margin-top: 60px;
}
.purchase-protection-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  justify-content: center;
}
.protection-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
}
.protection-item svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}
.protection-item strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.protection-item p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}
.protection-refund svg { color: #3b82f6; }
.protection-refund strong { color: #1d4ed8; }
.protection-refund p { color: #475569; }
.terms-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.terms-link:hover { border-bottom-color: #3b82f6; }

@media (max-width: 700px) {
  .purchase-protection-inner { flex-direction: column; gap: 24px; }
}

/* ── FOOTER ── */
.site-footer {
  text-align: center;
  padding: 36px 24px;
  color: var(--text-muted);
  font-size: 12px;
  border-top: 1px solid var(--border);
  margin-top: 60px;
  background: var(--bg-alt);
}
.purchase-protection + .site-footer { margin-top: 0; }
.footer-brand { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--text-light); letter-spacing: 2px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero h1 { font-size: 32px; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .checkout-container { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .details-grid { grid-template-columns: 1fr; }
  .detail-item:nth-child(odd) { border-right: none; }
  .header-inner { padding: 0 16px; }
  .info-bar { flex-direction: column; gap: 4px; text-align: center; }
}
@media (max-width: 480px) {
  .brand-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .step-label { display: none; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all .7s cubic-bezier(.4,0,.2,1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
