/* ============================================
   آواز - فروشگاه تخصصی ساز و تجهیزات موسیقی
   AVAZ Music Store - Premium Persian RTL Design
   Vazirmatn Font + Pure CSS (No CDN Required)
   ============================================ */

/* --- Vazirmatn Font Fallback (System + Tahoma) ---
   اگر CDN در دسترس نبود، از Tahoma و فونت‌های سیستمی استفاده می‌شود
   برای تجربه کامل، می‌توانید فونت وزیرمتن را دانلود و در fonts/ قرار دهید
*/
@font-face {
  font-family: 'Vazirmatn';
  src: local('Vazirmatn'), local('Tahoma');
  font-weight: 400;
}

/* --- CSS Variables --- */
:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --primary-soft: #334155;
  --gold: #c8a97a;
  --gold-light: #e8d5b7;
  --gold-dark: #a68c5b;
  --gold-glow: rgba(200,169,122,0.15);
  --accent: #f59e0b;
  --accent-soft: #fef3c7;
  --danger: #ef4444;
  --danger-soft: #fef2f2;
  --success: #10b981;
  --success-soft: #ecfdf5;
  --bg: #f8f7f5;
  --bg-card: #ffffff;
  --text: #0f172a;
  --text-soft: #64748b;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(15,23,42,0.06);
  --shadow-md: 0 8px 32px rgba(15,23,42,0.10);
  --shadow-lg: 0 16px 48px rgba(15,23,42,0.14);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Vazirmatn', Tahoma, 'Segoe UI', sans-serif;
  direction: rtl;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }

/* --- Utilities --- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.grid { display: grid; }
.hidden { display: none !important; }
.text-center { text-align: center; }
.dir-ltr { direction: ltr; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--border-light); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 99px; }

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
.top-bar {
  background: var(--primary);
  color: #cbd5e1;
  font-size: 12.5px;
  padding: 7px 0;
  position: relative;
  z-index: 100;
}
.top-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.top-bar__links { display: flex; align-items: center; gap: 20px; }
.top-bar__links a:hover { color: var(--gold); }
.top-bar__contact { display: flex; align-items: center; gap: 16px; }
.top-bar__contact span { display: flex; align-items: center; gap: 5px; }

.header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 1px 0 rgba(15,23,42,0.04);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; }
.header__right { display: flex; align-items: center; gap: 28px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo__mark {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 20px; font-weight: 800;
  letter-spacing: -1px;
  box-shadow: 0 4px 16px rgba(15,23,42,0.15);
}
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name { font-size: 20px; font-weight: 800; color: var(--primary); letter-spacing: -0.5px; }
.logo__tagline { font-size: 11px; color: var(--text-muted); letter-spacing: 0.5px; }

/* Navigation */
.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  padding: 8px 14px;
  font-size: 14px; font-weight: 500;
  color: var(--text-soft);
  border-radius: 10px;
  transition: var(--transition);
  position: relative;
}
.nav__link:hover { color: var(--primary); background: var(--border-light); }
.nav__link.active { color: var(--primary); background: var(--gold-glow); font-weight: 600; }
.nav__link.active::after {
  content: ''; position: absolute; bottom: -14px; right: 50%; transform: translateX(50%);
  width: 20px; height: 2px; background: var(--gold); border-radius: 99px;
}

/* Search Bar - Header */
.search-box {
  position: relative;
  display: flex; align-items: center;
  background: var(--border-light);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0 14px 0 6px;
  width: 320px;
  transition: var(--transition);
}
.search-box:focus-within { background: #fff; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
.search-box input {
  flex: 1; border: none; background: transparent; outline: none;
  padding: 10px 8px; font-size: 13.5px; color: var(--text);
}
.search-box input::placeholder { color: var(--text-muted); }
.search-box__btn {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; flex-shrink: 0;
  transition: var(--transition);
}
.search-box__btn:hover { background: var(--gold); }
.search-results {
  position: absolute; top: calc(100% + 8px); right: 0; left: 0;
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  box-shadow: var(--shadow-lg); max-height: 420px; overflow-y: auto;
  z-index: 50; padding: 8px; display: none;
}
.search-results.open { display: block; }
.search-result-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 10px; transition: var(--transition);
}
.search-result-item:hover { background: var(--border-light); }
.search-result-item__img {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--border-light); display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.search-result-item__info { flex: 1; min-width: 0; }
.search-result-item__name { font-size: 13.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-result-item__meta { font-size: 12px; color: var(--text-muted); }
.search-result-item__price { font-size: 13px; font-weight: 700; color: var(--primary); }

/* Header Actions */
.header__actions { display: flex; align-items: center; gap: 8px; }
.action-btn {
  position: relative;
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--text-soft);
  background: var(--border-light);
  transition: var(--transition);
}
.action-btn:hover { background: var(--gold-glow); color: var(--primary); }
.action-btn__badge {
  position: absolute; top: -4px; left: -4px;
  min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--danger); color: #fff;
  font-size: 11px; font-weight: 700;
  border-radius: 99px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
  line-height: 1;
}
.action-btn--cart { background: var(--primary); color: #fff; }
.action-btn--cart:hover { background: var(--primary-light); color: var(--gold); }
.mobile-menu-btn { display: none; }

/* Mega Category Bar */
.cat-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 80;
}
.cat-bar__inner { display: flex; align-items: center; gap: 4px; padding: 8px 0; overflow-x: auto; scrollbar-width: none; }
.cat-bar__inner::-webkit-scrollbar { display: none; }
.cat-bar__link {
  white-space: nowrap;
  padding: 7px 16px;
  font-size: 13.5px; font-weight: 500;
  color: var(--text-soft);
  border-radius: 99px;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.cat-bar__link:hover { border-color: var(--gold); color: var(--primary); background: var(--gold-glow); }

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #334155 100%);
  overflow: hidden;
  border-radius: 0 0 32px 32px;
  margin-bottom: 32px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,169,122,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(245,158,11,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(200,169,122,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '♪ ♫ ♪ ♫ ♪';
  position: absolute; bottom: 20px; left: 30px;
  font-size: 48px; opacity: 0.04; color: #fff;
  letter-spacing: 20px; pointer-events: none;
  font-weight: 300;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  align-items: center; gap: 40px;
  padding: 56px 20px 60px;
  max-width: 1280px; margin: 0 auto;
}
.hero__content { animation: heroIn 0.8s ease-out; }
@keyframes heroIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,169,122,0.15);
  border: 1px solid rgba(200,169,122,0.25);
  color: var(--gold-light);
  font-size: 12.5px; font-weight: 600;
  padding: 6px 14px; border-radius: 99px; margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.hero__badge-dot { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 8px #22c55e; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
.hero__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900; line-height: 1.15;
  color: #fff; margin-bottom: 16px;
  letter-spacing: -1px;
}
.hero__title span { color: var(--gold); position: relative; }
.hero__title span::after {
  content: ''; position: absolute; bottom: 6px; right: 0; left: 0; height: 8px;
  background: rgba(200,169,122,0.2); border-radius: 99px; z-index: -1;
}
.hero__desc { font-size: 16px; color: #94a3b8; line-height: 1.8; margin-bottom: 32px; max-width: 520px; }
.hero__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: 12px;
  font-size: 14px; font-weight: 600;
  transition: var(--transition); white-space: nowrap; line-height: 1;
}
.btn--primary {
  background: var(--gold); color: #1a1a2e;
  box-shadow: 0 4px 20px rgba(200,169,122,0.35);
}
.btn--primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,169,122,0.45); }
.btn--ghost {
  background: rgba(255,255,255,0.08); color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.25); }
.btn--dark { background: var(--primary); color: #fff; }
.btn--dark:hover { background: var(--primary-soft); }
.btn--light { background: #fff; color: var(--primary); border: 1px solid var(--border); }
.btn--light:hover { border-color: var(--gold); color: var(--gold-dark); }
.btn--sm { padding: 9px 18px; font-size: 13px; border-radius: 10px; }
.btn:disabled { opacity: 0.5; pointer-events: none; }

.hero__visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  animation: heroIn 0.8s 0.15s ease-out both;
}
.hero__card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 20px;
  width: 100%; max-width: 420px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}
.hero__card-img {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-radius: 16px;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 96px; position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.hero__card-img::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,169,122,0.15) 0%, transparent 60%);
}
.hero__card-info { padding: 16px 4px 4px; display: flex; align-items: center; justify-content: space-between; }
.hero__card-name { color: #fff; font-size: 15px; font-weight: 700; }
.hero__card-brand { color: var(--gold); font-size: 13px; }
.hero__card-price { color: #fff; font-size: 16px; font-weight: 800; }
.hero__stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 16px;
}
.hero__stat {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 14px; text-align: center;
}
.hero__stat-num { font-size: 20px; font-weight: 800; color: var(--gold); line-height: 1; }
.hero__stat-label { font-size: 11.5px; color: #94a3b8; margin-top: 4px; }

/* Trust Bar */
.trust-bar {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
  margin-top: -20px; position: relative; z-index: 2; margin-bottom: 36px;
}
.trust-item {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 18px 20px; display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow);
}
.trust-item__icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
}
.trust-item__title { font-size: 13.5px; font-weight: 700; color: var(--primary); }
.trust-item__desc { font-size: 12px; color: var(--text-muted); }

/* =====================================================
   SECTION HEADERS
   ===================================================== */
.section { padding: 12px 0 36px; }
.section__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.section__title { font-size: 22px; font-weight: 800; color: var(--primary); display: flex; align-items: center; gap: 10px; }
.section__title::before { content: ''; width: 4px; height: 24px; background: var(--gold); border-radius: 99px; }
.section__subtitle { font-size: 13.5px; color: var(--text-muted); margin-top: 4px; }
.section__link { font-size: 13.5px; font-weight: 600; color: var(--gold-dark); display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.section__link:hover { color: var(--primary); gap: 10px; }

/* Banner */
.promo-banner {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fbbf24 100%);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  margin-bottom: 36px; overflow: hidden; position: relative;
}
.promo-banner::before {
  content: '♫'; position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
  font-size: 120px; opacity: 0.06; pointer-events: none;
}
.promo-banner__label { font-size: 12px; font-weight: 700; color: #92400e; letter-spacing: 1px; }
.promo-banner__title { font-size: 20px; font-weight: 800; color: #78350f; margin: 4px 0 6px; }
.promo-banner__desc { font-size: 13.5px; color: #92400e; }
.promo-banner__code {
  background: #fff; border: 2px dashed #f59e0b; border-radius: 12px;
  padding: 10px 20px; font-size: 15px; font-weight: 800; color: var(--primary);
  letter-spacing: 2px; direction: ltr;
}

/* =====================================================
   CATEGORY CARDS
   ===================================================== */
.cat-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; }
.cat-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 14px; text-align: center;
  transition: var(--transition); cursor: pointer;
  position: relative; overflow: hidden;
}
.cat-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, var(--gold-glow) 100%);
  opacity: 0; transition: var(--transition);
}
.cat-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cat-card:hover::before { opacity: 1; }
.cat-card__icon {
  width: 56px; height: 56px; margin: 0 auto 12px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; position: relative; z-index: 1;
}
.cat-card__name { font-size: 13.5px; font-weight: 700; color: var(--primary); position: relative; z-index: 1; }
.cat-card__count { font-size: 11.5px; color: var(--text-muted); margin-top: 2px; position: relative; z-index: 1; }

/* =====================================================
   PRODUCT CARDS
   ===================================================== */
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.product-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
  display: flex; flex-direction: column; position: relative;
}
.product-card:hover { border-color: #e2e8f0; box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-card__top { position: absolute; top: 10px; right: 10px; left: 10px; display: flex; justify-content: space-between; z-index: 2; }
.badge {
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 99px; line-height: 1.4;
}
.badge--discount { background: var(--danger); color: #fff; }
.badge--new { background: var(--success); color: #fff; }
.badge--bestseller { background: var(--primary); color: var(--gold-light); }
.badge--out { background: #64748b; color: #fff; }
.product-card__actions {
  display: flex; flex-direction: column; gap: 6px;
}
.icon-btn {
  width: 36px; height: 36px; border-radius: 10px;
  background: #fff; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--text-soft);
  transition: var(--transition); box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.icon-btn:hover { border-color: var(--gold); color: var(--gold-dark); background: var(--gold-glow); }
.icon-btn.active { background: var(--danger); border-color: var(--danger); color: #fff; }
.product-card__image {
  aspect-ratio: 1/1; background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}
.product-card__image::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,169,122,0.08) 0%, transparent 60%);
}
.product-card__body { padding: 14px 14px 16px; flex: 1; display: flex; flex-direction: column; }
.product-card__brand { font-size: 11px; font-weight: 600; color: var(--gold-dark); letter-spacing: 0.5px; margin-bottom: 2px; }
.product-card__name { font-size: 13.5px; font-weight: 600; color: var(--primary); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 40px; }
.product-card__rating { display: flex; align-items: center; gap: 6px; margin: 8px 0; }
.stars { display: flex; gap: 1px; font-size: 12px; color: #f59e0b; }
.rating-count { font-size: 11.5px; color: var(--text-muted); }
.product-card__price { margin-top: auto; }
.price__original { font-size: 12px; color: var(--text-muted); text-decoration: line-through; }
.price__current { font-size: 16px; font-weight: 800; color: var(--primary); }
.price__discount { font-size: 11px; font-weight: 700; color: var(--danger); background: var(--danger-soft); padding: 2px 6px; border-radius: 6px; margin-right: 6px; }
.stock { font-size: 11.5px; font-weight: 600; display: flex; align-items: center; gap: 4px; margin-top: 6px; }
.stock--in { color: var(--success); }
.stock--low { color: #f59e0b; }
.stock--out { color: var(--danger); }
.stock__dot { width: 6px; height: 6px; border-radius: 50%; }
.stock--in .stock__dot { background: var(--success); }
.stock--low .stock__dot { background: #f59e0b; }
.stock--out .stock__dot { background: var(--danger); }
.product-card__btn {
  width: 100%; margin-top: 12px;
  padding: 10px; border-radius: 10px;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: var(--transition);
}
.btn--add-cart { background: var(--primary); color: #fff; }
.btn--add-cart:hover { background: var(--primary-soft); }
.btn--add-cart:disabled { background: var(--border); color: var(--text-muted); }
.btn--quick { background: var(--border-light); color: var(--primary); margin-top: 6px; }
.btn--quick:hover { background: var(--gold-glow); color: var(--gold-dark); }

/* =====================================================
   FILTERS & SHOP LAYOUT
   ===================================================== */
.shop-layout { display: grid; grid-template-columns: 280px 1fr; gap: 24px; align-items: start; }
.filters {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; position: sticky; top: 80px;
}
.filters__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.filters__title { font-size: 15px; font-weight: 800; }
.filters__clear { font-size: 12px; color: var(--danger); font-weight: 600; }
.filter-group { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border-light); }
.filter-group:last-child { border: none; margin: 0; padding: 0; }
.filter-group__title { font-size: 13.5px; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between; }
.filter-option { display: flex; align-items: center; gap: 8px; padding: 6px 0; cursor: pointer; }
.filter-option input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--gold); cursor: pointer; }
.filter-option label { font-size: 13px; color: var(--text-soft); cursor: pointer; flex: 1; }
.filter-option__count { font-size: 11px; color: var(--text-muted); background: var(--border-light); padding: 2px 7px; border-radius: 99px; }
.price-range { display: flex; align-items: center; gap: 8px; }
.price-range input { flex: 1; padding: 8px 10px; border: 1px solid var(--border); border-radius: 10px; font-size: 13px; outline: none; }
.price-range input:focus { border-color: var(--gold); }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.shop-toolbar__count { font-size: 13.5px; color: var(--text-soft); }
.shop-toolbar__count strong { color: var(--primary); }
.sort-select { padding: 9px 14px; border: 1px solid var(--border); border-radius: 10px; font-size: 13px; background: #fff; outline: none; min-width: 160px; }
.view-toggle { display: flex; gap: 6px; }
.view-toggle button { width: 38px; height: 38px; border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; background: #fff; color: var(--text-soft); }
.view-toggle button.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* =====================================================
   PRODUCT DETAIL
   ===================================================== */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); padding: 16px 0 8px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb__sep { opacity: 0.4; }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; padding: 16px 0 40px; }
.gallery { position: sticky; top: 80px; align-self: start; }
.gallery__main {
  aspect-ratio: 1/1; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center; font-size: 120px;
  position: relative; overflow: hidden;
}
.gallery__main-zoom { position: absolute; bottom: 14px; left: 14px; width: 40px; height: 40px; background: #fff; border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; box-shadow: var(--shadow); }
.gallery__thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; }
.gallery__thumb {
  width: 72px; height: 72px; border-radius: 12px; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 28px;
  background: #fff; cursor: pointer; flex-shrink: 0; transition: var(--transition);
}
.gallery__thumb.active { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
.detail-info__brand { font-size: 12px; font-weight: 700; color: var(--gold-dark); letter-spacing: 0.5px; }
.detail-info__title { font-size: 26px; font-weight: 800; color: var(--primary); line-height: 1.3; margin: 6px 0 10px; }
.detail-info__meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.detail-info__price-box { background: var(--border-light); border-radius: var(--radius); padding: 20px; margin-bottom: 20px; }
.detail-info__price-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.detail-info__current { font-size: 28px; font-weight: 900; color: var(--primary); }
.detail-info__original { font-size: 16px; color: var(--text-muted); text-decoration: line-through; }
.detail-info__discount-badge { background: var(--danger); color: #fff; font-size: 13px; font-weight: 700; padding: 4px 12px; border-radius: 99px; }
.detail-info__installment { font-size: 12.5px; color: var(--success); font-weight: 600; margin-top: 8px; }
.qty-selector { display: flex; align-items: center; gap: 0; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; width: fit-content; }
.qty-selector button { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; font-size: 18px; background: var(--border-light); color: var(--primary); font-weight: 700; }
.qty-selector span { width: 48px; text-align: center; font-size: 16px; font-weight: 700; }
.detail-actions { display: flex; gap: 12px; margin-top: 20px; }
.detail-actions .btn { flex: 1; padding: 15px; font-size: 14px; }
.detail-features { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 24px; }
.detail-feature { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-soft); background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; }
.detail-feature__icon { width: 36px; height: 36px; border-radius: 10px; background: var(--gold-glow); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }

.tabs { margin-top: 40px; }
.tabs__nav { display: flex; gap: 4px; border-bottom: 2px solid var(--border); margin-bottom: 24px; overflow-x: auto; }
.tabs__btn { padding: 12px 20px; font-size: 14px; font-weight: 600; color: var(--text-muted); border-bottom: 2px solid transparent; margin-bottom: -2px; white-space: nowrap; transition: var(--transition); }
.tabs__btn.active { color: var(--primary); border-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--border-light); }
.specs-table td { padding: 12px 16px; font-size: 13.5px; }
.specs-table td:first-child { color: var(--text-muted); width: 200px; font-weight: 500; background: var(--border-light); border-radius: 8px 0 0 8px; }
.review-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 12px; }
.review-item__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.review-item__author { font-size: 14px; font-weight: 700; }
.review-item__date { font-size: 12px; color: var(--text-muted); }
.review-item__text { font-size: 13.5px; color: var(--text-soft); line-height: 1.8; }

/* =====================================================
   CART & CHECKOUT
   ===================================================== */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start; padding: 24px 0 40px; }
.cart-items { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.cart-item { display: flex; gap: 16px; padding: 20px; border-bottom: 1px solid var(--border-light); align-items: center; }
.cart-item:last-child { border: none; }
.cart-item__img { width: 80px; height: 80px; border-radius: 12px; background: var(--border-light); display: flex; align-items: center; justify-content: center; font-size: 32px; flex-shrink: 0; }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name { font-size: 14px; font-weight: 700; color: var(--primary); }
.cart-item__brand { font-size: 12px; color: var(--text-muted); }
.cart-item__price { font-size: 15px; font-weight: 800; color: var(--primary); margin-top: 4px; }
.cart-item__actions { display: flex; align-items: center; gap: 12px; }
.cart-summary { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; position: sticky; top: 80px; }
.cart-summary__title { font-size: 16px; font-weight: 800; margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; font-size: 13.5px; padding: 8px 0; }
.summary-row--total { font-size: 16px; font-weight: 800; border-top: 2px solid var(--border); margin-top: 8px; padding-top: 12px; }
.summary-row--discount { color: var(--success); }
.coupon-box { display: flex; gap: 8px; margin: 16px 0; }
.coupon-box input { flex: 1; padding: 10px 14px; border: 1px solid var(--border); border-radius: 10px; font-size: 13px; outline: none; }
.coupon-box input:focus { border-color: var(--gold); }
.checkout-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.form-group label span { color: var(--danger); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: 10px;
  font-size: 13.5px; outline: none; transition: var(--transition); background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.payment-methods { display: grid; gap: 10px; margin-top: 12px; }
.payment-method {
  border: 2px solid var(--border); border-radius: 12px; padding: 14px 16px;
  display: flex; align-items: center; gap: 12px; cursor: pointer; transition: var(--transition);
}
.payment-method.active { border-color: var(--gold); background: var(--gold-glow); }
.payment-method__icon { width: 44px; height: 44px; border-radius: 10px; background: #fff; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.payment-method__name { font-size: 13.5px; font-weight: 700; }
.payment-method__desc { font-size: 11.5px; color: var(--text-muted); }

/* =====================================================
   WISHLIST / ACCOUNT / ORDERS
   ===================================================== */
.wishlist-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.account-layout { display: grid; grid-template-columns: 260px 1fr; gap: 24px; align-items: start; padding: 24px 0 40px; }
.account-sidebar { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; position: sticky; top: 80px; }
.account-sidebar__header { padding: 24px 20px; text-align: center; border-bottom: 1px solid var(--border); background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: #fff; }
.account-sidebar__avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 10px; border: 3px solid rgba(255,255,255,0.2); }
.account-sidebar__name { font-size: 15px; font-weight: 700; }
.account-sidebar__phone { font-size: 12px; opacity: 0.7; direction: ltr; }
.account-nav a { display: flex; align-items: center; gap: 10px; padding: 13px 20px; font-size: 13.5px; color: var(--text-soft); border-bottom: 1px solid var(--border-light); transition: var(--transition); }
.account-nav a:hover { background: var(--border-light); color: var(--primary); }
.account-nav a.active { background: var(--gold-glow); color: var(--primary); font-weight: 700; border-right: 3px solid var(--gold); }
.account-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.order-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; }
.order-card__header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: var(--border-light); flex-wrap: wrap; gap: 8px; }
.order-card__id { font-size: 13px; font-weight: 700; }
.order-card__date { font-size: 12px; color: var(--text-muted); }
.status-badge { font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 99px; }
.status--pending { background: #fef3c7; color: #92400e; }
.status--paid { background: #dbeafe; color: #1e40af; }
.status--processing { background: #e0e7ff; color: #3730a3; }
.status--shipped { background: #fce7f3; color: #9d174d; }
.status--delivered { background: var(--success-soft); color: #065f46; }
.status--cancelled { background: var(--danger-soft); color: #991b1b; }
.order-card__body { padding: 16px 20px; }

/* =====================================================
   ADMIN PANEL
   ===================================================== */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px; background: var(--primary); color: #cbd5e1;
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 50;
  display: flex; flex-direction: column; overflow-y: auto;
}
.admin-sidebar__logo { padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; gap: 10px; }
.admin-sidebar__logo-mark { width: 36px; height: 36px; background: var(--gold); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-weight: 800; font-size: 14px; }
.admin-sidebar__logo-text { font-size: 15px; font-weight: 800; color: #fff; }
.admin-sidebar__logo-sub { font-size: 11px; color: #64748b; }
.admin-nav { padding: 12px 0; flex: 1; }
.admin-nav__section { font-size: 11px; font-weight: 700; color: #475569; letter-spacing: 1px; padding: 16px 20px 8px; }
.admin-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; font-size: 13.5px; color: #94a3b8;
  transition: var(--transition); border-right: 3px solid transparent;
}
.admin-nav a:hover { color: #fff; background: rgba(255,255,255,0.04); }
.admin-nav a.active { color: #fff; background: rgba(200,169,122,0.12); border-color: var(--gold); }
.admin-nav a .nav-badge { margin-right: auto; background: var(--danger); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 99px; min-width: 20px; text-align: center; }
.admin-main { margin-right: 260px; flex: 1; background: var(--bg); min-height: 100vh; }
.admin-header {
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 14px 28px; display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 30; gap: 16px; flex-wrap: wrap;
}
.admin-header__title { font-size: 18px; font-weight: 800; color: var(--primary); }
.admin-header__actions { display: flex; align-items: center; gap: 10px; }
.admin-content { padding: 24px 28px; }

/* Admin Stats */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 24px; }
.stat-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; display: flex; align-items: center; gap: 16px; position: relative; overflow: hidden;
}
.stat-card::before { content: ''; position: absolute; top: 0; right: 0; width: 4px; height: 100%; border-radius: 0 16px 16px 0; }
.stat-card--sales::before { background: var(--gold); }
.stat-card--orders::before { background: #3b82f6; }
.stat-card--customers::before { background: var(--success); }
.stat-card--products::before { background: #8b5cf6; }
.stat-card__icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.stat-card__value { font-size: 22px; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-card__label { font-size: 12.5px; color: var(--text-muted); margin-top: 2px; }
.stat-card__change { font-size: 11.5px; font-weight: 600; margin-top: 4px; display: flex; align-items: center; gap: 4px; }
.stat-card__change--up { color: var(--success); }
.stat-card__change--down { color: var(--danger); }

/* Admin Table */
.admin-table-wrap { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.admin-table-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--border); flex-wrap: wrap; gap: 12px; }
.admin-table-header h3 { font-size: 15px; font-weight: 800; }
.table-search { display: flex; align-items: center; gap: 8px; background: var(--border-light); border-radius: 10px; padding: 0 12px; }
.table-search input { border: none; background: transparent; outline: none; padding: 9px 6px; font-size: 13px; width: 200px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: right; font-size: 12px; font-weight: 700; color: var(--text-muted); padding: 12px 16px; border-bottom: 2px solid var(--border); background: var(--border-light); white-space: nowrap; }
.admin-table td { padding: 12px 16px; font-size: 13px; border-bottom: 1px solid var(--border-light); vertical-align: middle; }
.admin-table tr:hover td { background: #f8fafc; }
.table-img { width: 44px; height: 44px; border-radius: 10px; background: var(--border-light); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.table-actions { display: flex; gap: 6px; }
.table-actions button { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; border: 1px solid var(--border); background: #fff; transition: var(--transition); }
.table-actions button:hover { border-color: var(--gold); color: var(--gold-dark); }

/* Custom Chart (CSS-only) */
.chart-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.chart-box__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.chart-box__title { font-size: 14px; font-weight: 800; }
.chart-bars { display: flex; align-items: flex-end; gap: 8px; height: 140px; padding-top: 10px; }
.chart-bar { flex: 1; border-radius: 8px 8px 0 0; position: relative; transition: var(--transition); min-width: 0; }
.chart-bar:hover { opacity: 0.85; transform: scaleY(1.02); }
.chart-bar__label { position: absolute; bottom: -20px; right: 50%; transform: translateX(50%); font-size: 10px; color: var(--text-muted); white-space: nowrap; }
.chart-bar__value { position: absolute; top: -18px; right: 50%; transform: translateX(50%); font-size: 10px; font-weight: 700; color: var(--primary); white-space: nowrap; }

/* =====================================================
   MODAL & TOAST & OVERLAY
   ===================================================== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(15,23,42,0.55); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; z-index: 200; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff; border-radius: var(--radius-lg); max-width: 720px; width: 100%;
  max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn { from{opacity:0;transform:scale(0.96) translateY(10px)} to{opacity:1;transform:scale(1) translateY(0)} }
.modal__header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); position: sticky; top: 0; background: #fff; z-index: 1; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.modal__title { font-size: 16px; font-weight: 800; }
.modal__close { width: 36px; height: 36px; border-radius: 10px; background: var(--border-light); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.modal__body { padding: 24px; }
.toast-container { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 300; display: flex; flex-direction: column; gap: 8px; align-items: center; pointer-events: none; }
.toast {
  background: var(--primary); color: #fff; padding: 12px 20px; border-radius: 12px;
  font-size: 13.5px; font-weight: 600; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 8px;
  animation: toastIn 0.3s ease; pointer-events: auto;
}
.toast--success { background: #065f46; }
.toast--error { background: #991b1b; }
@keyframes toastIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
.cart-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; width: 420px; max-width: 100vw;
  background: #fff; z-index: 150; transform: translateX(-100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__overlay { position: fixed; inset: 0; background: rgba(15,23,42,0.4); z-index: 149; display: none; }
.cart-drawer__overlay.open { display: block; }
.mobile-nav {
  position: fixed; inset: 0; z-index: 120; display: none;
}
.mobile-nav.open { display: block; }
.mobile-nav__overlay { position: absolute; inset: 0; background: rgba(15,23,42,0.5); backdrop-filter: blur(2px); }
.mobile-nav__panel { position: absolute; top: 0; right: 0; bottom: 0; width: 300px; background: #fff; overflow-y: auto; animation: slideInRight 0.3s ease; }
@keyframes slideInRight { from{transform:translateX(100%)} to{transform:translateX(0)} }
.mobile-nav__header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.mobile-nav a { display: flex; align-items: center; gap: 12px; padding: 14px 20px; font-size: 14px; font-weight: 500; color: var(--text-soft); border-bottom: 1px solid var(--border-light); }
.mobile-nav a.active { color: var(--primary); background: var(--gold-glow); font-weight: 700; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background: var(--primary); color: #94a3b8; margin-top: 40px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 32px; padding: 48px 0 32px; }
.footer__brand-name { font-size: 20px; font-weight: 800; color: #fff; }
.footer__brand-desc { font-size: 13px; line-height: 1.8; margin: 12px 0 16px; color: #64748b; }
.footer__social { display: flex; gap: 8px; }
.footer__social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 16px; color: #94a3b8; transition: var(--transition); }
.footer__social a:hover { background: var(--gold); color: var(--primary); border-color: var(--gold); }
.footer__col-title { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.footer__links a { display: block; font-size: 13px; color: #64748b; padding: 5px 0; transition: var(--transition); }
.footer__links a:hover { color: var(--gold); }
.footer__contact-item { display: flex; gap: 10px; font-size: 13px; padding: 6px 0; }
.footer__contact-item span:first-child { color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 16px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: #475569; }
.footer__payments { display: flex; gap: 8px; align-items: center; }
.footer__pay-badge { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 6px 12px; font-size: 11px; color: #64748b; }

/* =====================================================
   EMPTY STATE
   ===================================================== */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state__icon { font-size: 56px; margin-bottom: 16px; opacity: 0.5; }
.empty-state__title { font-size: 18px; font-weight: 800; color: var(--primary); }
.empty-state__desc { font-size: 13.5px; color: var(--text-muted); margin: 8px 0 20px; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .cat-grid { grid-template-columns: repeat(4,1fr); }
  .shop-layout { grid-template-columns: 240px 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav, .search-box, .cat-bar { display: none; }
  .mobile-menu-btn { display: flex !important; }
  .header__inner { padding: 10px 0; }
  .hero__inner { grid-template-columns: 1fr; padding: 32px 20px 36px; }
  .hero__visual { order: -1; }
  .trust-bar { grid-template-columns: repeat(2,1fr); }
  .cat-grid { grid-template-columns: repeat(3,1fr); gap: 10px; }
  .product-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .product-detail { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .account-layout { grid-template-columns: 1fr; }
  .account-sidebar { position: static; }
  .admin-sidebar { transform: translateX(100%); transition: transform 0.3s ease; }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-right: 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .wishlist-grid { grid-template-columns: 1fr; }
  .promo-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .product-card__image { font-size: 48px; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .hero__title { font-size: 28px; }
  .trust-bar { grid-template-columns: 1fr; }
}

/* --- Animations --- */
.animate-in { animation: animateIn 0.5s ease both; }
@keyframes animateIn { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
.stagger > * { animation: animateIn 0.5s ease both; }
.stagger > *:nth-child(1){animation-delay:0.05s} .stagger > *:nth-child(2){animation-delay:0.1s}
.stagger > *:nth-child(3){animation-delay:0.15s} .stagger > *:nth-child(4){animation-delay:0.2s}
.stagger > *:nth-child(5){animation-delay:0.25s} .stagger > *:nth-child(6){animation-delay:0.3s}
.stagger > *:nth-child(7){animation-delay:0.35s} .stagger > *:nth-child(8){animation-delay:0.4s}
