@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --bg-primary: #030712;
  --bg-secondary: #0a0f1a;
  --bg-card: rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.08);
  --gold: #c9a44c;
  --gold-light: #e8d5a3;
  --gold-dark: #8b6914;
  --accent: #d4af37;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: rgba(255,255,255,0.06);
  --border-gold: rgba(201,164,76,0.3);
  --red-turkey: #e30a17;
  --shadow-gold: 0 0 30px rgba(201,164,76,0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(3,7,18,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(3,7,18,0.95); padding: 10px 40px; }
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  text-decoration: none;
}
.nav-logo span { font-style: italic; font-weight: 400; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text-secondary); text-decoration: none; font-size: 0.9rem;
  font-weight: 500; transition: var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.cart-btn {
  position: relative; background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-primary); padding: 10px 20px; border-radius: 50px;
  cursor: pointer; font-size: 0.9rem; font-family: inherit; font-weight: 500;
  display: flex; align-items: center; gap: 8px; transition: var(--transition);
}
.cart-btn:hover { border-color: var(--border-gold); background: var(--bg-card-hover); }
.cart-badge {
  background: var(--gold); color: var(--bg-primary); font-size: 0.7rem;
  font-weight: 700; min-width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: absolute; top: -4px; right: -4px;
}
.cart-badge.hidden { display: none; }

/* ========== HERO ========== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; padding: 120px 40px 80px;
  background: radial-gradient(ellipse at 30% 20%, rgba(201,164,76,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(227,10,23,0.04) 0%, transparent 50%),
              var(--bg-primary);
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a44c' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-content {
  max-width: 1200px; width: 100%; display: flex; align-items: center; gap: 60px;
  position: relative; z-index: 1;
}
.hero-text { flex: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(227,10,23,0.15), rgba(201,164,76,0.15));
  border: 1px solid rgba(227,10,23,0.2);
  padding: 8px 20px; border-radius: 50px; font-size: 0.85rem;
  color: var(--gold-light); margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}
.hero-title {
  font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700;
  line-height: 1.15; margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-description {
  font-size: 1.1rem; color: var(--text-secondary); line-height: 1.8;
  margin-bottom: 32px; max-width: 520px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-stats {
  display: flex; gap: 40px; margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.stat-item .stat-value {
  font-size: 1.8rem; font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-item .stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary); padding: 14px 32px; border-radius: 50px;
  font-family: inherit; font-size: 0.95rem; font-weight: 600;
  border: none; cursor: pointer; transition: var(--transition);
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-secondary {
  background: transparent; color: var(--text-primary);
  padding: 14px 32px; border-radius: 50px; font-family: inherit;
  font-size: 0.95rem; font-weight: 500; border: 1px solid var(--border);
  cursor: pointer; transition: var(--transition); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--border-gold); background: var(--bg-card); }

.hero-image {
  flex: 0 0 380px; position: relative;
  animation: fadeInRight 1s ease 0.3s both;
}
.hero-photo-wrapper {
  width: 380px; height: 460px; border-radius: 24px; overflow: hidden;
  position: relative;
  border: 2px solid var(--border-gold);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5), var(--shadow-gold);
}
.hero-photo-wrapper img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
}
.hero-photo-wrapper::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(3,7,18,0.6) 100%);
}
.hero-floating-badge {
  position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary); padding: 10px 24px; border-radius: 50px;
  font-weight: 700; font-size: 0.85rem; white-space: nowrap;
  box-shadow: var(--shadow-gold);
}

/* ========== SECTIONS ========== */
.section { padding: 100px 40px; position: relative; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 6px 16px; border-radius: 50px; font-size: 0.8rem;
  color: var(--gold); margin-bottom: 16px; font-weight: 500;
}
.section-title {
  font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700;
  margin-bottom: 16px;
}
.section-subtitle { color: var(--text-secondary); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ========== ADVANTAGES ========== */
.advantages { background: var(--bg-secondary); }
.advantages-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.advantage-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; transition: var(--transition);
}
.advantage-card:hover {
  border-color: var(--border-gold); transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.advantage-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,164,76,0.15), rgba(201,164,76,0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.advantage-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.advantage-card p { color: var(--text-secondary); font-size: 0.9rem; }
.pricing-card { border-color: var(--border-gold); background: linear-gradient(135deg, rgba(201,164,76,0.08), var(--bg-card)); }
.pricing-tiers { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.tier {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 14px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
}
.tier-label { font-size: 0.85rem; color: var(--text-secondary); }
.tier-price {
  font-size: 0.95rem; font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* ========== QUANTITY CONTROLS ========== */
.item-qty-controls { display: flex; align-items: center; gap: 6px; margin-top: 6px; }
.qty-btn {
  min-width: 28px; height: 28px; border-radius: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-primary); font-size: 0.75rem; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); font-family: inherit; padding: 0 6px;
}
.qty-btn:hover { border-color: var(--gold); background: rgba(201,164,76,0.15); color: var(--gold-light); }
.qty-input {
  width: 64px; height: 28px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  color: var(--text-primary); font-size: 0.9rem; font-weight: 600;
  text-align: center; font-family: inherit; outline: none;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-input:focus { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(201,164,76,0.2); }
.qty-value { font-size: 0.9rem; font-weight: 600; min-width: 20px; text-align: center; }

/* card-level mini qty */
.product-card-qty {
  display: flex; align-items: center; gap: 4px; margin-top: 6px;
}
.qty-btn-sm {
  min-width: 32px; height: 26px; border-radius: 6px;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-secondary); font-size: 0.7rem; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.qty-btn-sm:hover { border-color: var(--gold); color: var(--gold-light); }
.qty-input-sm {
  width: 48px; height: 26px; border-radius: 6px;
  background: rgba(255,255,255,0.08); border: 1px solid var(--border-gold);
  color: var(--gold-light); font-size: 0.85rem; font-weight: 700;
  text-align: center; font-family: inherit; outline: none;
  -moz-appearance: textfield;
}
.qty-input-sm::-webkit-outer-spin-button,
.qty-input-sm::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-input-sm:focus { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(201,164,76,0.2); }

/* modal qty section */
.modal-qty-section { margin-bottom: 20px; }
.modal-qty-label { font-size: 0.9rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 10px; display: block; }
.modal-qty-row { margin-bottom: 12px; }
.modal-qty-input-wrap { display: flex; align-items: center; gap: 8px; }
.modal-qty-input {
  width: 80px; height: 36px; font-size: 1.1rem;
  border-radius: 10px;
}
.modal-quick-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.quick-qty-btn {
  padding: 6px 16px; border-radius: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-secondary); font-size: 0.85rem; font-weight: 500;
  cursor: pointer; font-family: inherit; transition: var(--transition);
}
.quick-qty-btn:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(201,164,76,0.1); }

/* ========== BRANDS ========== */
.brands-strip {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  max-width: 1000px; margin: 0 auto;
}
.brand-item {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  cursor: pointer; transition: var(--transition); padding: 20px 28px;
  border-radius: var(--radius); border: 1px solid transparent;
}
.brand-item:hover { border-color: var(--border-gold); background: var(--bg-card); }
.brand-item.active { border-color: var(--gold); background: rgba(201,164,76,0.08); }
.brand-name {
  font-size: 1rem; font-weight: 600; color: var(--text-secondary);
  transition: var(--transition); text-align: center;
}
.brand-item:hover .brand-name, .brand-item.active .brand-name { color: var(--gold-light); }
.brand-count { font-size: 0.75rem; color: var(--text-muted); }

/* ========== FILTERS ========== */
.filter-bar {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto 40px; justify-content: center;
}
.filter-btn {
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-secondary); padding: 8px 20px; border-radius: 50px;
  font-family: inherit; font-size: 0.85rem; font-weight: 500;
  cursor: pointer; transition: var(--transition);
}
.filter-btn:hover { border-color: var(--border-gold); color: var(--text-primary); }
.filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary); border-color: var(--gold); font-weight: 600;
}

/* ========== PRODUCT GRID ========== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.product-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition); cursor: pointer;
  animation: fadeInUp 0.5s ease both;
}
.product-card:hover {
  border-color: var(--border-gold); transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), var(--shadow-gold);
}
.product-image {
  position: relative; width: 100%; aspect-ratio: 1; overflow: hidden;
  background: #0d1117;
}
.product-image img, .product-image video {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;
}
.product-card:hover .product-image img,
.product-card:hover .product-image video { transform: scale(1.05); }
.product-brand-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(3,7,18,0.8); backdrop-filter: blur(8px);
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.7rem; font-weight: 600; color: var(--gold-light);
  border: 1px solid var(--border-gold);
}
.product-select-btn {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(3,7,18,0.7); backdrop-filter: blur(8px);
  border: 2px solid var(--border); color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); font-size: 1.1rem;
}
.product-select-btn:hover, .product-select-btn.selected {
  background: var(--gold); border-color: var(--gold); color: var(--bg-primary);
}
.product-info { padding: 16px 20px; }
.product-sku { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; margin-bottom: 4px; }
.product-name { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.product-category { font-size: 0.8rem; color: var(--gold); font-weight: 500; }
.product-quality {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.75rem; color: var(--text-muted); margin-top: 8px;
  background: rgba(201,164,76,0.08); padding: 3px 10px; border-radius: 50px;
}

/* ========== CART DRAWER ========== */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px); z-index: 1999; opacity: 0;
  pointer-events: none; transition: var(--transition);
}
.cart-overlay.active { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: -460px; width: 440px; height: 100vh;
  background: var(--bg-secondary); border-left: 1px solid var(--border);
  z-index: 2000; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
}
.cart-drawer.active { right: 0; }
.cart-header {
  padding: 24px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-header h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; }
.cart-close {
  background: none; border: none; color: var(--text-secondary);
  font-size: 1.5rem; cursor: pointer; padding: 4px;
}
.cart-items {
  flex: 1; overflow-y: auto; padding: 16px 24px;
}
.cart-item {
  display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border);
  animation: fadeInUp 0.3s ease;
}
.cart-item-img {
  width: 64px; height: 64px; border-radius: var(--radius-sm);
  overflow: hidden; flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-info .item-name { font-size: 0.85rem; font-weight: 600; }
.cart-item-info .item-sku { font-size: 0.75rem; color: var(--text-muted); }
.cart-item-remove {
  background: none; border: none; color: var(--text-muted);
  cursor: pointer; font-size: 1.1rem; align-self: center; transition: var(--transition);
}
.cart-item-remove:hover { color: var(--red-turkey); }
.cart-empty {
  text-align: center; padding: 60px 20px; color: var(--text-muted);
}
.cart-empty-icon { font-size: 3rem; margin-bottom: 16px; }
.cart-footer {
  padding: 24px; border-top: 1px solid var(--border);
}
.cart-total { display: flex; justify-content: space-between; margin-bottom: 16px; font-weight: 600; }
.order-telegram-btn {
  width: 100%; padding: 16px; border-radius: 50px; border: none;
  background: linear-gradient(135deg, #0088cc, #005fa3);
  color: white; font-family: inherit; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.order-telegram-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,136,204,0.3); }
.order-telegram-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* ========== SCHEDULE BANNER ========== */
.schedule-banner {
  max-width: 800px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(227,10,23,0.1), rgba(201,164,76,0.1));
  border: 1px solid rgba(227,10,23,0.2);
  border-radius: var(--radius); padding: 32px 40px;
  text-align: center;
}
.schedule-banner h3 { font-size: 1.3rem; margin-bottom: 8px; }
.schedule-banner p { color: var(--text-secondary); }
.schedule-banner .day { color: var(--gold-light); font-weight: 700; font-size: 1.1rem; }

/* ========== FOOTER ========== */
.footer {
  padding: 40px; border-top: 1px solid var(--border);
  text-align: center; color: var(--text-muted); font-size: 0.85rem;
}
.footer a { color: var(--gold); text-decoration: none; }

/* ========== MODAL ========== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px); z-index: 3000;
  display: none; align-items: center; justify-content: center; padding: 40px;
}
.modal-overlay.active { display: flex; }
.modal-content {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius); max-width: 700px; width: 100%;
  max-height: 90vh; overflow-y: auto;
}
.modal-image { width: 100%; max-height: 500px; object-fit: contain; background: #0d1117; }
.modal-video { width: 100%; max-height: 500px; background: #0d1117; }
.modal-body { padding: 24px; }
.modal-body h2 { font-size: 1.3rem; margin-bottom: 8px; }
.modal-body .modal-sku { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 12px; }
.modal-body .modal-desc { color: var(--text-secondary); margin-bottom: 20px; }
.modal-close {
  position: absolute; top: 20px; right: 24px; background: rgba(0,0,0,0.6);
  border: none; color: white; font-size: 1.8rem; width: 44px; height: 44px;
  border-radius: 50%; cursor: pointer; display: flex;
  align-items: center; justify-content: center; z-index: 3001;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero-content { flex-direction: column-reverse; text-align: center; }
  .hero-image { flex: none; }
  .hero-photo-wrapper { width: 280px; height: 340px; margin: 0 auto; }
  .hero-title { font-size: 2.4rem; }
  .hero-description { margin: 0 auto 32px; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .nav-links { display: none; }
  .navbar { padding: 12px 20px; }
  .section { padding: 60px 20px; }
  .section-title { font-size: 2rem; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .cart-drawer { width: 100%; right: -100%; }
  .brands-strip { gap: 16px; }
  .brand-item { padding: 12px 16px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .hero-stats { gap: 20px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-info { padding: 10px 12px; }
  .product-name { font-size: 0.8rem; }
}
