/* ===== CSS RESET & ROOT ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #C9952A;
  --primary-dark: #A67820;
  --primary-light: #E0B84A;
  --accent: #4ECDC4;
  --accent-dark: #3BAEA5;
  --bg-dark: #0A1628;
  --bg-card: #0F2035;
  --bg-card-2: #152540;
  --text: #F5F5F5;
  --text-muted: #8A9BB0;
  --border: #1E3450;
  --border-light: #2A4A6E;
  --success: #4CAF50;
  --error: #E74C3C;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
  --font-head: 'Tajawal', 'Fraunces', serif;
  --font-body: 'Tajawal', 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

/* RTL */
[dir="rtl"] { direction: rtl; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.header-brand {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.header-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.header-nav a:hover { color: var(--text); background: var(--bg-card); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.lang-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.lang-toggle:hover { border-color: var(--primary); color: var(--primary); }
.cart-btn {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.cart-btn:hover { border-color: var(--primary); background: var(--bg-card-2); }
.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--primary);
  color: var(--bg-dark);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-badge:empty { display: none; }

/* Mobile hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 4px;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.6) 60%, rgba(10,22,40,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,149,42,0.15);
  border: 1px solid rgba(201,149,42,0.4);
  color: var(--primary-light);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.hero-heading {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
  max-width: 600px;
}
.hero-heading span { color: var(--primary); }
.hero-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--bg-dark);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), transform 0.15s ease;
  cursor: pointer;
  border: none;
}
.hero-cta:hover { background: var(--primary-light); transform: translateY(-2px); }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== CATEGORIES ===== */
.categories {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px 0;
}
.cat-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cat-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition);
}
.cat-btn:hover { border-color: var(--primary); color: var(--primary); }
.cat-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--bg-dark);
}

/* ===== PRODUCT GRID ===== */
.products-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 24px 80px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  border-color: var(--primary);
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-card-2);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-cat-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(10,22,40,0.8);
  backdrop-filter: blur(6px);
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(201,149,42,0.3);
}
[dir="rtl"] .product-cat-badge { right: auto; left: 12px; }
.product-info { padding: 16px; }
.product-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.4;
}
.product-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}
.stars { color: var(--primary); font-size: 13px; letter-spacing: 1px; }
.rating-count { font-size: 11px; color: var(--text-muted); margin-inline-start: 4px; }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.product-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}
.product-price small { font-size: 13px; font-weight: 500; color: var(--text-muted); }
.add-cart-btn {
  background: var(--primary);
  color: var(--bg-dark);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform 0.15s ease;
  white-space: nowrap;
}
.add-cart-btn:hover { background: var(--primary-light); transform: scale(1.05); }
.add-cart-btn.added { background: var(--success); }

/* ===== TRUST SECTION ===== */
.trust-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 24px;
}
.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.trust-heading {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 36px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item { text-align: center; }
.trust-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: rgba(201,149,42,0.1);
  border: 1px solid rgba(201,149,42,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg { width: 22px; height: 22px; color: var(--primary); }
.trust-item h3 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.trust-item p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.newsletter-heading { font-size: 28px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.newsletter-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-input {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-input:focus { border-color: var(--primary); }
.newsletter-input::placeholder { color: var(--text-muted); }
.newsletter-submit {
  background: var(--primary);
  color: var(--bg-dark);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
}
.newsletter-submit:hover { background: var(--primary-light); }
.newsletter-success {
  display: none;
  background: rgba(76,175,80,0.15);
  border: 1px solid rgba(76,175,80,0.4);
  color: var(--success);
  font-size: 14px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  max-width: 460px;
  margin: 0 auto;
}

/* ===== FAQ ===== */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.faq-heading { font-size: 28px; font-weight: 800; color: var(--text); margin-bottom: 28px; text-align: center; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 18px 0;
  text-align: start;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-icon { flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-bottom: 0;
}
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 18px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 60px 24px 24px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.footer-about { font-size: 13px; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 13px; transition: color var(--transition); }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy { font-size: 12px; color: var(--text-muted); }
.footer-disclaimer { font-size: 11px; color: var(--text-muted); max-width: 400px; }

/* ===== CART DRAWER ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 100%;
  height: 100%;
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  z-index: 201;
  transition: right 0.35s ease;
  display: flex;
  flex-direction: column;
}
[dir="rtl"] .cart-drawer { right: auto; left: -420px; border-left: none; border-right: 1px solid var(--border); }
[dir="rtl"] .cart-drawer.open { left: 0; }
.cart-drawer.open { right: 0; }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-title { font-size: 18px; font-weight: 700; color: var(--text); }
.cart-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color var(--transition);
}
.cart-close-btn:hover { color: var(--text); }
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-empty { text-align: center; padding: 48px 0; }
.cart-empty-icon { font-size: 48px; margin-bottom: 12px; color: var(--text-muted); }
.cart-empty-text { font-size: 15px; color: var(--text-muted); margin-bottom: 4px; }
.cart-empty-hint { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }
.cart-browse-btn {
  display: inline-block;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
}
.cart-browse-btn:hover { border-color: var(--primary); color: var(--primary); }
.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-card-2);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 4px; line-height: 1.3; }
.cart-item-price { font-size: 14px; font-weight: 700; color: var(--primary); }
.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 11px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color var(--transition);
  align-self: flex-start;
}
.cart-item-remove:hover { color: var(--error); }
.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cart-total-label { font-size: 14px; font-weight: 600; color: var(--text); }
.cart-total-value { font-size: 22px; font-weight: 800; color: var(--primary); }
.paypal-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: #FFC439;
  color: #003087;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  margin-bottom: 8px;
}
.paypal-checkout-btn:hover { background: #e6b030; transform: translateY(-1px); }
.cart-checkout-btn {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: var(--primary);
  color: var(--bg-dark);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
  text-align: center;
  text-decoration: none;
}
.cart-checkout-btn:hover { background: var(--primary-light); }

/* ===== CHECKOUT MODAL ===== */
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  padding: 16px;
}
.checkout-overlay.open { opacity: 1; pointer-events: auto; }
.checkout-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.checkout-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: var(--bg-card);
  z-index: 1;
}
.checkout-modal-title { font-size: 18px; font-weight: 700; color: var(--text); }
.checkout-modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color var(--transition);
}
.checkout-modal-close:hover { color: var(--text); }
.checkout-modal-body { padding: 24px; }
.checkout-success {
  text-align: center;
  padding: 40px 24px;
  display: none;
}
.checkout-success.show { display: block; }
.checkout-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(76,175,80,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout-success h3 { font-size: 20px; font-weight: 700; color: var(--success); margin-bottom: 8px; }
.checkout-success p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.checkout-success-id { font-weight: 700; color: var(--primary); font-size: 15px; margin: 12px 0; }
.checkout-success-close {
  display: inline-block;
  margin-top: 20px;
  background: var(--primary);
  color: var(--bg-dark);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.checkout-success-close:hover { background: var(--primary-light); }
.checkout-form { display: none; }
.checkout-form.show { display: block; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 12px; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-input {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.form-input:focus { border-color: var(--primary); }
.form-input::placeholder { color: var(--text-muted); }
.form-error { font-size: 11px; color: var(--error); margin-top: 4px; display: none; }
.form-input.error { border-color: var(--error); }
.form-input.error + .form-error { display: block; }
.form-checkbox-group { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.form-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
  flex-shrink: 0;
}
.form-checkbox-label { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.form-checkbox-label a { color: var(--primary); text-decoration: none; }
.form-divider {
  text-align: center;
  position: relative;
  margin: 4px 0 16px;
  color: var(--text-muted);
  font-size: 12px;
}
.form-divider::before, .form-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: var(--border);
}
.form-divider::before { left: 0; }
.form-divider::after { right: 0; }

/* ===== PAGE SECTIONS ===== */
.page-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}
.page-section h1 { font-size: 32px; font-weight: 800; color: var(--text); margin-bottom: 24px; }
.page-section p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 24px;
  transition: color var(--transition);
}
.back-link:hover { color: var(--primary-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 20px; }
  .hero-stat-value { font-size: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero-heading { font-size: 28px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .product-info { padding: 12px; }
  .product-name { font-size: 13px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}