/* =============================================
   Suhani Electricals - Vinay Adora Products
   Main Stylesheet - Mobile First, App-Like
   ============================================= */

/* --- Google Fonts loaded in header.php --- */

:root {
  --primary: #E8A200;
  --primary-dark: #C48900;
  --primary-light: #FFF3D6;
  --secondary: #1A1A2E;
  --secondary-light: #16213E;
  --accent: #E94560;
  --bg: #F5F0EB;
  --card-bg: #FFFFFF;
  --text: #1A1A2E;
  --text-light: #6B7280;
  --text-muted: #9CA3AF;
  --success: #10B981;
  --success-bg: #DCFCE7;
  --danger: #EF4444;
  --danger-bg: #FEE2E2;
  --warning: #F59E0B;
  --info: #3B82F6;
  --border: #E5E1DC;
  --border-light: #F0ECE7;
  --shadow: 0 2px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-sm: 0 1px 8px rgba(0,0,0,0.05);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --topbar-h: 60px;
  --search-h: 70px;
  --bottomnav-h: 64px;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.5;
}

a { color: var(--primary-dark); text-decoration: none; }
a:hover { color: var(--primary); }

img { max-width: 100%; height: auto; }

/* ===== TOP NAVIGATION BAR ===== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  padding: 0 16px;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.logo { display: flex; align-items: center; gap: 10px; }

.logo-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--secondary); font-size: 16px;
}

.logo-text { color: #fff; font-size: 15px; font-weight: 600; line-height: 1.2; }
.logo-text small {
  display: block; font-size: 10px; color: var(--primary);
  font-weight: 400; letter-spacing: 1px; text-transform: uppercase;
}

.top-bar-actions { display: flex; gap: 8px; align-items: center; }

.btn-icon {
  width: 38px; height: 38px; border-radius: 10px; border: none;
  background: rgba(255,255,255,0.1); color: #fff; font-size: 18px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.btn-icon:hover { background: var(--primary); color: var(--secondary); }

.btn-login {
  background: var(--primary); color: var(--secondary);
  font-size: 12px; font-weight: 600; padding: 0 14px;
  border-radius: 10px; height: 38px; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font); transition: all 0.2s;
}
.btn-login:hover { background: var(--primary-dark); transform: scale(1.02); }

.user-badge {
  display: flex; align-items: center; gap: 8px; color: #fff;
  font-size: 12px; font-weight: 500;
}
.user-badge .avatar {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--primary); color: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}

/* ===== SEARCH BAR ===== */
.search-section {
  position: fixed;
  top: var(--topbar-h); left: 0; right: 0;
  z-index: 999; background: var(--bg);
  padding: 12px 16px; border-bottom: 1px solid var(--border);
}

.search-bar {
  display: flex; align-items: center;
  background: var(--card-bg); border-radius: 12px;
  padding: 0 16px; height: 46px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  gap: 10px; transition: all 0.3s;
}
.search-bar:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,162,0,0.15);
}
.search-bar svg { flex-shrink: 0; color: var(--text-light); }
.search-bar input {
  flex: 1; border: none; outline: none; font-size: 14px;
  font-family: var(--font); background: transparent; color: var(--text);
}
.search-bar input::placeholder { color: #B0A89F; }

/* ===== MAIN CONTENT ===== */
.main-content {
  margin-top: calc(var(--topbar-h) + var(--search-h));
  padding-bottom: calc(var(--bottomnav-h) + 20px);
  min-height: 100vh;
}

/* ===== HERO BANNER ===== */
.hero-banner {
  margin: 0 16px 20px; border-radius: var(--radius);
  overflow: hidden; position: relative; height: 180px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 60%, var(--primary-dark) 100%);
  box-shadow: var(--shadow-lg);
}
.hero-banner img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.hero-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 24px;
  background: linear-gradient(to right, rgba(26,26,46,0.9) 0%, rgba(26,26,46,0.4) 100%);
}
.hero-overlay h1 {
  font-family: var(--font-display); color: #fff;
  font-size: 24px; line-height: 1.2; margin-bottom: 6px;
}
.hero-overlay h1 span { color: var(--primary); }
.hero-overlay p { color: rgba(255,255,255,0.7); font-size: 12px; font-weight: 300; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--primary); color: var(--secondary);
  font-size: 10px; font-weight: 700; padding: 4px 10px;
  border-radius: 20px; margin-top: 10px; width: fit-content;
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 14px; padding: 0 16px;
}
.section-header h2 { font-size: 18px; font-weight: 700; color: var(--text); }
.section-header a { font-size: 13px; color: var(--primary-dark); font-weight: 500; }

/* ===== CATEGORY PILLS (Horizontal Scroll) ===== */
.category-scroll {
  display: flex; gap: 10px; overflow-x: auto;
  padding: 0 16px 12px; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.category-scroll::-webkit-scrollbar { display: none; }

.cat-pill {
  flex-shrink: 0; scroll-snap-align: start;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 10px 16px;
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; transition: all 0.3s; min-width: 140px;
  text-decoration: none; color: var(--text);
}
.cat-pill:hover, .cat-pill.active {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary-light), #FFF);
  box-shadow: 0 2px 12px rgba(232,162,0,0.15);
}
.cat-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.cat-info h4 { font-size: 12px; font-weight: 600; white-space: nowrap; }
.cat-info span { font-size: 10px; color: var(--text-light); }

/* ===== SERIES GRID (Wallpiece cards) ===== */
.series-grid {
  padding: 0 16px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px;
}
.series-card {
  background: var(--card-bg); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  cursor: pointer; transition: all 0.3s; border: 1px solid transparent;
  text-decoration: none; color: var(--text);
}
.series-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg); border-color: var(--primary);
}
.series-card .card-img {
  width: 100%; height: 120px; object-fit: cover; background: #E8E2DA; display: block;
}
.series-card .card-body { padding: 12px; }
.series-card .card-body h4 { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.series-card .card-body p { font-size: 10px; color: var(--text-light); margin-bottom: 6px; }
.card-tag {
  display: inline-block; font-size: 9px; font-weight: 600;
  color: var(--primary-dark); background: var(--primary-light);
  padding: 2px 8px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.3px;
}
.card-tag.new { background: var(--success-bg); color: #166534; }

/* ===== PRODUCT CARDS ===== */
.product-card {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 14px; margin: 0 16px 10px;
  display: flex; gap: 14px;
  box-shadow: var(--shadow-sm); border: 1px solid transparent;
  transition: all 0.2s; cursor: pointer; align-items: center;
}
.product-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(232,162,0,0.12);
}
.product-img {
  width: 70px; height: 70px; border-radius: var(--radius-sm);
  background: var(--border-light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img .placeholder-icon { font-size: 28px; opacity: 0.3; }

.product-info { flex: 1; min-width: 0; }
.product-info h4 {
  font-size: 13px; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px;
}
.product-code { font-size: 11px; color: var(--text-light); margin-bottom: 4px; }
.product-spec { font-size: 10px; color: var(--text-light); display: flex; gap: 6px; flex-wrap: wrap; }
.product-spec span {
  background: var(--border-light); padding: 2px 6px; border-radius: 4px;
}
.product-spec span.new-tag { background: var(--success-bg); color: #166534; font-weight: 600; }

.product-price { text-align: right; flex-shrink: 0; }
.sale-price { font-size: 16px; font-weight: 700; color: var(--primary-dark); }
.mrp { font-size: 11px; color: var(--text-light); text-decoration: line-through; }
.discount { font-size: 10px; color: var(--success); font-weight: 600; }

.dlt-section { margin-top: 4px; padding-top: 4px; border-top: 1px dashed var(--border); }
.dlt-label { font-size: 9px; color: var(--text-muted); }
.dlt-price { font-size: 12px; color: var(--accent); font-weight: 600; }

.btn-add-quote {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--primary); color: var(--secondary);
  border: none; font-size: 18px; font-weight: 700;
  cursor: pointer; flex-shrink: 0; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.btn-add-quote:hover { background: var(--primary-dark); transform: scale(1.1); }
.btn-add-quote.added { background: var(--success); color: #fff; }

.stock-badge {
  font-size: 9px; font-weight: 600; padding: 2px 6px;
  border-radius: 4px; display: inline-block; margin-top: 2px;
}
.stock-badge.in-stock { background: var(--success-bg); color: #166534; }
.stock-badge.out-stock { background: var(--danger-bg); color: #991B1B; }

.color-chips { display: flex; gap: 4px; margin-top: 4px; }
.color-chip {
  width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid var(--border);
}

/* ===== NO RESULTS ===== */
.no-results {
  text-align: center; padding: 60px 20px; color: var(--text-light);
}
.no-results .icon { font-size: 48px; margin-bottom: 16px; opacity: 0.5; }
.no-results h3 { font-size: 16px; margin-bottom: 8px; color: var(--text); }
.no-results p { font-size: 13px; }

/* ===== WHATSAPP FAB ===== */
.fab-whatsapp {
  position: fixed; bottom: calc(var(--bottomnav-h) + 16px); right: 16px;
  width: 52px; height: 52px; border-radius: 16px;
  background: #25D366; color: #fff; border: none; font-size: 24px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 100; transition: all 0.3s;
}
.fab-whatsapp:hover { transform: scale(1.08); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }

/* ===== BOTTOM NAVIGATION ===== */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--card-bg); height: var(--bottomnav-h);
  display: flex; justify-content: space-around; align-items: center;
  border-top: 1px solid var(--border); z-index: 1000;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.06);
}
.nav-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 3px; cursor: pointer; padding: 6px 12px;
  border-radius: 12px; transition: all 0.2s; text-decoration: none;
}
.nav-item svg { width: 22px; height: 22px; color: var(--text-light); }
.nav-item span { font-size: 10px; color: var(--text-light); font-weight: 500; }
.nav-item.active svg { color: var(--primary-dark); }
.nav-item.active span { color: var(--primary-dark); font-weight: 600; }
.nav-item.active { background: var(--primary-light); }
.nav-item .badge {
  position: absolute; top: -2px; right: -2px;
  background: var(--accent); color: #fff; font-size: 8px;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}

/* ===== QUOTATION CART BAR ===== */
.cart-bar {
  display: none; position: fixed;
  bottom: var(--bottomnav-h); left: 0; right: 0;
  background: var(--secondary); color: #fff;
  padding: 12px 16px; z-index: 999;
  justify-content: space-between; align-items: center;
}
.cart-bar.show { display: flex; }
.cart-info { font-size: 13px; }
.cart-info strong { color: var(--primary); }
.btn-quote {
  background: var(--primary); color: var(--secondary);
  border: none; padding: 8px 20px; border-radius: 10px;
  font-size: 13px; font-weight: 700; font-family: var(--font); cursor: pointer;
}
.btn-quote:hover { background: var(--primary-dark); }

/* ===== MODAL (Bottom Sheet) ===== */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 2000;
  justify-content: center; align-items: flex-end;
  backdrop-filter: blur(4px);
}
.modal-overlay.show { display: flex; }

.modal-sheet {
  background: var(--card-bg);
  border-radius: 24px 24px 0 0; width: 100%; max-width: 480px;
  padding: 32px 24px 40px; animation: slideUp 0.3s ease-out;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

.modal-handle {
  width: 40px; height: 4px; background: var(--border);
  border-radius: 2px; margin: 0 auto 24px;
}
.modal-sheet h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.modal-sheet > p { font-size: 13px; color: var(--text-light); margin-bottom: 24px; }

/* ===== FORMS ===== */
.input-group { margin-bottom: 16px; }
.input-group label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
}
.input-group input, .input-group select, .input-group textarea {
  width: 100%; height: 48px; border: 1px solid var(--border);
  border-radius: 12px; padding: 0 16px; font-size: 14px;
  font-family: var(--font); transition: all 0.2s; background: #FAFAF8;
}
.input-group textarea { height: auto; padding: 12px 16px; min-height: 100px; resize: vertical; }
.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,162,0,0.15); background: #fff;
}

/* ===== BUTTONS ===== */
.btn-primary {
  width: 100%; height: 50px; border: none; border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--secondary); font-size: 15px; font-weight: 700;
  font-family: var(--font); cursor: pointer; transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(232,162,0,0.3);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 30px rgba(232,162,0,0.4); }

.btn-secondary {
  width: 100%; height: 46px; border: 1.5px solid var(--border);
  border-radius: 12px; background: var(--card-bg); color: var(--text);
  font-size: 14px; font-weight: 600; font-family: var(--font);
  cursor: pointer; transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--primary); background: var(--primary-light); }

.btn-sm {
  padding: 6px 14px; font-size: 12px; font-weight: 600;
  border: none; border-radius: 8px; cursor: pointer;
  font-family: var(--font); transition: all 0.2s;
}
.btn-success { background: var(--success); color: #fff; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-warning { background: var(--warning); color: var(--secondary); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; font-size: 12px; color: var(--text-light);
  overflow-x: auto; white-space: nowrap;
}
.breadcrumb a { color: var(--primary-dark); font-weight: 500; }
.breadcrumb .sep { color: var(--border); }

/* ===== PAGINATION ===== */
.pagination {
  display: flex; justify-content: center; gap: 6px;
  padding: 20px 16px;
}
.pagination a, .pagination span {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 500; transition: all 0.2s;
  text-decoration: none;
}
.pagination a {
  background: var(--card-bg); color: var(--text); border: 1px solid var(--border);
}
.pagination a:hover { border-color: var(--primary); background: var(--primary-light); }
.pagination .active {
  background: var(--primary); color: var(--secondary); border: none; font-weight: 700;
}

/* ===== ALERTS ===== */
.alert {
  padding: 12px 16px; border-radius: 12px; margin: 0 16px 16px;
  font-size: 13px; font-weight: 500;
}
.alert-success { background: var(--success-bg); color: #166534; }
.alert-danger { background: var(--danger-bg); color: #991B1B; }
.alert-warning { background: #FEF3C7; color: #92400E; }
.alert-info { background: #DBEAFE; color: #1E40AF; }

/* ===== LOADING SPINNER ===== */
.spinner {
  width: 40px; height: 40px; border-radius: 50%;
  border: 3px solid var(--border); border-top-color: var(--primary);
  animation: spin 0.8s linear infinite; margin: 40px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== ANIMATIONS ===== */
.fade-in {
  animation: fadeIn 0.5s ease-out forwards; opacity: 0; transform: translateY(10px);
}
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }
.fade-in:nth-child(1) { animation-delay: 0.05s; }
.fade-in:nth-child(2) { animation-delay: 0.1s; }
.fade-in:nth-child(3) { animation-delay: 0.15s; }
.fade-in:nth-child(4) { animation-delay: 0.2s; }
.fade-in:nth-child(5) { animation-delay: 0.25s; }
.fade-in:nth-child(6) { animation-delay: 0.3s; }
.fade-in:nth-child(7) { animation-delay: 0.35s; }
.fade-in:nth-child(8) { animation-delay: 0.4s; }

/* ===== CATALOG SCROLL CARDS ===== */
.catalog-scroll {
  display: flex; flex-direction: column; gap: 10px;
  padding: 0 16px 16px;
}

.catalog-card {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 16px; display: flex; gap: 14px; align-items: flex-start;
  box-shadow: var(--shadow-sm); border: 1px solid transparent;
  transition: all 0.3s; cursor: pointer; text-decoration: none; color: var(--text);
  position: relative; overflow: hidden;
}
.catalog-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--accent); border-radius: 0 4px 4px 0;
}
.catalog-card:hover {
  border-color: var(--accent, var(--primary));
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.catalog-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 15%, white), color-mix(in srgb, var(--accent) 5%, white));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}

.catalog-info { flex: 1; min-width: 0; }
.catalog-info h3 { font-size: 16px; font-weight: 700; margin-bottom: 2px; color: var(--accent); }
.catalog-tag { font-size: 11px; color: var(--text-light); font-weight: 500; margin-bottom: 3px; }
.catalog-desc { font-size: 10px; color: var(--text-muted); margin-bottom: 8px; }

.catalog-series {
  display: flex; flex-wrap: wrap; gap: 4px;
}
.catalog-series span {
  font-size: 9px; font-weight: 600; padding: 2px 7px;
  background: var(--border-light); border-radius: 4px;
  color: var(--text-light); letter-spacing: 0.2px;
}
.catalog-series span.new {
  background: var(--success-bg); color: #166534;
}

.catalog-arrow {
  font-size: 22px; color: var(--text-muted); font-weight: 300;
  align-self: center; flex-shrink: 0; transition: all 0.3s;
}
.catalog-card:hover .catalog-arrow {
  color: var(--accent, var(--primary)); transform: translateX(3px);
}

/* ===== QUICK STATS ===== */
.quick-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; margin: 0 16px 20px; border-radius: var(--radius);
  overflow: hidden; background: var(--border);
  box-shadow: var(--shadow-sm);
}
.stat-item {
  background: var(--card-bg); text-align: center; padding: 14px 8px;
}
.stat-num {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: var(--primary-dark); line-height: 1;
}
.stat-label {
  font-size: 9px; color: var(--text-muted); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px;
}

/* ===== BROWSE BY TYPE GRID ===== */
.type-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; padding: 0 16px 20px;
}
.type-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 8px;
  text-align: center; text-decoration: none; color: var(--text);
  transition: all 0.3s; cursor: pointer;
}
.type-card:hover {
  border-color: var(--primary); background: var(--primary-light);
  transform: translateY(-2px); box-shadow: var(--shadow);
}
.type-icon { font-size: 22px; display: block; margin-bottom: 4px; }
.type-name { font-size: 11px; font-weight: 600; display: block; margin-bottom: 2px; }
.type-count { font-size: 9px; color: var(--text-muted); display: block; }

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .main-content { max-width: 720px; margin-left: auto; margin-right: auto; }
  .hero-banner { height: 220px; }
  .hero-overlay h1 { font-size: 32px; }
  .series-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .product-card { margin: 0 16px 12px; }
  .bottom-nav { max-width: 720px; left: 50%; transform: translateX(-50%); border-radius: 20px 20px 0 0; }
}

@media (min-width: 1024px) {
  .main-content { max-width: 960px; }
  .series-grid { grid-template-columns: repeat(4, 1fr); }
  .bottom-nav { max-width: 960px; }
  .hero-banner { height: 260px; }
}

/* ===== PRINT STYLES ===== */
@media print {
  .top-bar, .search-section, .bottom-nav, .fab-whatsapp, .cart-bar, .btn-add-quote { display: none !important; }
  .main-content { margin-top: 0; padding-bottom: 0; }
  .product-card { box-shadow: none; border: 1px solid #ddd; }
}
