/* ============================================================
   VIJAY SPORTS - Decathlon-inspired stunning theme
   ============================================================ */

:root {
  --primary: #0082c3;
  --primary-dark: #006ba1;
  --primary-light: #e6f3fa;
  --accent: #ffba00;
  --accent-dark: #e6a700;
  --success: #46a610;
  --danger: #cb2828;
  --dark: #1a2026;
  --gray-900: #1a2026;
  --gray-800: #2d343b;
  --gray-700: #4d555c;
  --gray-600: #6e767e;
  --gray-500: #9197a0;
  --gray-400: #c5cad0;
  --gray-300: #e1e4e8;
  --gray-200: #eef0f2;
  --gray-100: #f7f8fa;
  --white: #ffffff;
  --bg: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--gray-900);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
input, select, textarea { font-family: inherit; }

/* ============================================================
   TOP ANNOUNCEMENT BAR
============================================================ */
.announce {
  background: var(--dark);
  color: var(--white);
  font-size: 13px;
  padding: 8px 0;
  text-align: center;
}
.announce span { margin: 0 14px; opacity: 0.85; }

/* ============================================================
   HEADER
============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--primary);
  flex-shrink: 0;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0,130,195,0.3);
}
.logo small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 1px;
  margin-top: -2px;
}

.nav { display: flex; gap: 4px; }
.nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-800);
  transition: all 0.15s;
}
.nav a:hover { background: var(--primary-light); color: var(--primary); }
.nav a.active { background: var(--primary); color: white; }

.search-box {
  flex: 1;
  position: relative;
  max-width: 480px;
}
.search-box input {
  width: 100%;
  height: 44px;
  padding: 0 16px 0 44px;
  border: 2px solid var(--gray-200);
  background: var(--gray-100);
  border-radius: 24px;
  font-size: 14px;
  outline: none;
  transition: all 0.15s;
}
.search-box input:focus { border-color: var(--primary); background: white; }
.search-box::before {
  content: "🔍";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  pointer-events: none;
}

.header-actions { display: flex; gap: 8px; align-items: center; }
.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: var(--gray-100);
  position: relative;
  transition: all 0.15s;
}
.icon-btn:hover { background: var(--primary-light); }
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  padding: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: all 0.15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(0,130,195,0.3);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,130,195,0.4); }
.btn-accent {
  background: var(--accent);
  color: var(--dark);
}
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-outline {
  border: 2px solid var(--gray-300);
  color: var(--gray-900);
  background: white;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-block { width: 100%; }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 540px;
  background: linear-gradient(135deg, #003b6e 0%, #0082c3 50%, #00aae0 100%);
  color: white;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,186,0,0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15) 0%, transparent 50%);
}
.hero-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--accent); }
.hero p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat strong {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
}
.hero-stat span { opacity: 0.8; font-size: 14px; }

.hero-visual {
  position: relative;
  height: 420px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
}
.hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s;
  position: relative;
}
.hero-card:hover { transform: scale(1.04); }
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card:nth-child(1) { transform: rotate(-3deg); }
.hero-card:nth-child(1):hover { transform: rotate(-3deg) scale(1.04); }
.hero-card:nth-child(4) { transform: rotate(3deg); }
.hero-card:nth-child(4):hover { transform: rotate(3deg) scale(1.04); }
.hero-card-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--white);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

/* ============================================================
   SECTIONS
============================================================ */
.section { padding: 60px 24px; }
.section-inner { max-width: 1400px; margin: 0 auto; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 20px;
}
.section-head h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
}
.section-head p { color: var(--gray-600); font-size: 16px; margin-top: 6px; }
.section-head .link {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}

.bg-light { background: var(--gray-100); }

/* ============================================================
   SPORT CATEGORIES GRID
============================================================ */
.sport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.sport-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  background: var(--gray-200);
}
.sport-card:hover { transform: translateY(-6px); }
.sport-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.sport-card:hover img { transform: scale(1.08); }
.sport-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0) 100%);
}
.sport-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: white;
  z-index: 1;
}
.sport-card-content h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 4px;
}
.sport-card-content span { font-size: 13px; opacity: 0.9; }

/* ============================================================
   PRODUCT CARDS
============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}
.product-image {
  aspect-ratio: 1;
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.product-card:hover .product-image img { transform: scale(1.05); }
.product-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--danger);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
}
.product-tag.new { background: var(--success); }
.product-tag.bestseller { background: var(--accent); color: var(--dark); }
.product-fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  font-size: 18px;
  z-index: 2;
  transition: all 0.15s;
}
.product-fav:hover { background: var(--primary-light); }
.product-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 4px;
}
.product-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 6px;
  color: var(--gray-900);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}
.product-cat { font-size: 12px; color: var(--gray-500); margin-bottom: 10px; }
.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}
.product-price {
  font-size: 18px;
  font-weight: 900;
  color: var(--gray-900);
}
.product-mrp {
  font-size: 13px;
  color: var(--gray-500);
  text-decoration: line-through;
}
.product-discount {
  background: var(--success);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}
.product-stock {
  font-size: 11px;
  margin-top: 6px;
  font-weight: 600;
}
.product-stock.in { color: var(--success); }
.product-stock.out { color: var(--danger); }
.product-stock.low { color: var(--accent-dark); }

/* ============================================================
   BRAND STRIP
============================================================ */
.brand-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
  padding: 32px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.brand-pill {
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--gray-700);
  padding: 16px;
  border-radius: 8px;
  transition: all 0.15s;
  letter-spacing: 0.3px;
}
.brand-pill:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* ============================================================
   FEATURES BAR
============================================================ */
.features-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 32px 0;
}
.feature {
  display: flex;
  align-items: center;
  gap: 16px;
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.feature h4 { font-size: 15px; font-weight: 800; margin-bottom: 2px; }
.feature p { font-size: 13px; color: var(--gray-600); }

/* ============================================================
   PROMO BANNER
============================================================ */
.promo-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #ff8c00 100%);
  border-radius: var(--radius-xl);
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
  color: var(--dark);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}
.promo-banner h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.05;
  margin-bottom: 16px;
}
.promo-banner p { font-size: 16px; margin-bottom: 24px; max-width: 460px; }
.promo-banner-img {
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.promo-banner-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   FILTERS SIDEBAR + PRODUCTS
============================================================ */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}
.filters {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  padding: 20px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.filter-group { padding: 12px 0; border-bottom: 1px solid var(--gray-200); }
.filter-group:last-child { border-bottom: none; }
.filter-group h4 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filter-list {
  max-height: 240px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 4px;
}
.filter-list::-webkit-scrollbar { width: 6px; }
.filter-list::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
.filter-list label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-700);
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 4px;
}
.filter-list label:hover { background: var(--primary-light); color: var(--primary); }
.filter-list input { accent-color: var(--primary); }
.filter-list .count { color: var(--gray-500); font-size: 12px; margin-left: auto; }

.range-input {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.range-input input {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-size: 13px;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 18px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.toolbar select {
  padding: 8px 12px;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-size: 13px;
  background: white;
  cursor: pointer;
}
.results-count { font-size: 14px; color: var(--gray-700); font-weight: 600; }

/* ============================================================
   PAGINATION
============================================================ */
.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.pagination button {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--gray-300);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.15s;
}
.pagination button:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
}
.pagination button.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.pagination button:disabled { opacity: 0.4; cursor: not-allowed; }

/* ============================================================
   PRODUCT DETAIL PAGE
============================================================ */
.pd-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  margin-top: 24px;
}
.pd-gallery { position: sticky; top: calc(var(--header-h) + 20px); }
.pd-main-img {
  aspect-ratio: 1;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
}
.pd-main-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs { display: flex; gap: 10px; }
.pd-thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  border: 2px solid var(--gray-200);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.15s;
  background: var(--gray-100);
}
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb.active { border-color: var(--primary); }
.pd-thumb:hover { border-color: var(--primary); }

.pd-info h1 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin: 8px 0 12px;
}
.pd-brand {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
}
.pd-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--gray-600);
}
.pd-stars { color: var(--accent); font-size: 15px; }
.pd-price-block {
  background: var(--gray-100);
  padding: 24px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.pd-price {
  font-size: 38px;
  font-weight: 900;
  color: var(--gray-900);
  display: inline-block;
}
.pd-mrp {
  font-size: 18px;
  color: var(--gray-500);
  text-decoration: line-through;
  margin-left: 12px;
}
.pd-discount {
  background: var(--success);
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  margin-left: 12px;
  vertical-align: middle;
}
.pd-tax { font-size: 13px; color: var(--gray-600); margin-top: 4px; }

.pd-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.qty-control {
  display: flex;
  align-items: center;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  overflow: hidden;
}
.qty-control button {
  width: 44px;
  height: 48px;
  font-size: 18px;
  font-weight: 700;
  background: white;
  color: var(--gray-700);
}
.qty-control button:hover { background: var(--gray-100); }
.qty-control input {
  width: 48px;
  height: 48px;
  text-align: center;
  border: none;
  font-size: 16px;
  font-weight: 700;
  outline: none;
}

.pd-meta {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}
.pd-meta-row {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-700);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-200);
}
.pd-meta-row strong { width: 140px; color: var(--gray-900); }

.pd-features {
  background: var(--primary-light);
  border-radius: var(--radius);
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.pd-features .feature-icon {
  width: 40px;
  height: 40px;
  background: white;
  font-size: 20px;
}
.pd-features h4 { font-size: 13px; }
.pd-features p { font-size: 12px; }

/* ============================================================
   CART
============================================================ */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
.cart-list {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid var(--gray-200);
  align-items: center;
}
.cart-item:last-child { border-bottom: none; }
.cart-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--gray-100);
}
.cart-item-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.cart-item-info .brand { font-size: 12px; color: var(--gray-500); margin-bottom: 8px; }
.cart-item-info .price { font-size: 16px; font-weight: 800; }
.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.cart-item-remove {
  font-size: 13px;
  color: var(--danger);
  font-weight: 600;
}
.cart-item-remove:hover { text-decoration: underline; }

.cart-summary {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  padding: 24px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.cart-summary h3 { font-size: 18px; font-weight: 800; margin-bottom: 20px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  color: var(--gray-700);
}
.summary-row.total {
  border-top: 2px solid var(--gray-200);
  padding-top: 16px;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 900;
  color: var(--gray-900);
}

.empty-state {
  text-align: center;
  padding: 80px 24px;
}
.empty-state .icon { font-size: 64px; margin-bottom: 20px; }
.empty-state h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.empty-state p { color: var(--gray-600); margin-bottom: 24px; }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--dark);
  color: var(--gray-300);
  padding: 60px 24px 30px;
  margin-top: 80px;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-col h4 {
  color: white;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 6px 0; }
.footer-col a { color: var(--gray-400); font-size: 14px; transition: color 0.15s; }
.footer-col a:hover { color: white; }
.footer-brand { font-size: 24px; font-weight: 900; color: white; margin-bottom: 16px; }
.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   PAGE HEADER
============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
  padding: 40px 24px;
  border-bottom: 1px solid var(--gray-200);
}
.page-header-inner { max-width: 1400px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--primary); }
.page-header h1 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

/* ============================================================
   LOADING / SKELETON
============================================================ */
.skeleton {
  background: linear-gradient(90deg, var(--gray-200) 0%, var(--gray-100) 50%, var(--gray-200) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--gray-200);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 60px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .shop-layout { grid-template-columns: 240px 1fr; }
  .pd-layout { grid-template-columns: 1fr; }
  .pd-gallery { position: relative; top: auto; }
  .cart-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 800px) {
  .nav { display: none; }
  .header-inner { gap: 12px; padding: 0 12px; }
  .hero-inner { grid-template-columns: 1fr; padding: 40px 20px; }
  .hero-visual { display: none; }
  .promo-banner { grid-template-columns: 1fr; padding: 40px 24px; }
  .promo-banner-img { height: 220px; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .product-info { padding: 12px; }
  .product-name { font-size: 13px; }
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 40px 16px; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item img { width: 80px; height: 80px; }
  .cart-item-actions { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; }
}

/* ============================================================
   UTIL
============================================================ */
.fade-in { animation: fadeIn 0.4s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.scroll-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 0 16px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scroll-row::-webkit-scrollbar { display: none; }
.scroll-row > * {
  flex: 0 0 240px;
  scroll-snap-align: start;
}
