:root {
  --primary: #0284c7;
  --primary-dark: #0369a1;
  --primary-light: #e0f2fe;
  --accent: #0ea5e9;
  --text: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-muted: #f1f5f9;
  --border: #e2e8f0;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --transition: 250ms cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* ─── HEADER ─── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.header.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo-img { height: 38px; width: auto; }
.nav { display: flex; gap: 0.25rem; }
.nav-link { padding: 0.5rem 1rem; border-radius: var(--radius); font-size: 0.9rem; font-weight: 500; color: var(--text-secondary); transition: all var(--transition); }
.nav-link:hover { color: var(--primary); background: var(--primary-light); }
.nav-link--back { color: var(--text-muted); font-size: 0.85rem; }
.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.search-toggle, .menu-toggle { background: none; border: none; cursor: pointer; padding: 0.5rem; border-radius: var(--radius); color: var(--text-secondary); transition: all var(--transition); }
.search-toggle:hover, .menu-toggle:hover { background: var(--bg-muted); color: var(--primary); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: all var(--transition); }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Search bar */
.search-bar { max-height: 0; overflow: hidden; transition: max-height 300ms ease; background: var(--bg-soft); border-bottom: 1px solid var(--border); }
.search-bar.open { max-height: 80px; }
.search-bar-inner { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 0; }
.search-bar-inner input { flex: 1; border: none; background: none; font-size: 1rem; outline: none; font-family: inherit; color: var(--text); }
.search-bar-inner svg { color: var(--text-muted); flex-shrink: 0; }
.search-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-muted); padding: 0 0.25rem; }

/* ─── HERO ─── */
.hero {
  position: relative; padding: 10rem 0 6rem; overflow: hidden;
  background: linear-gradient(135deg, #0c4a6e 0%, #0284c7 50%, #0ea5e9 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80"><circle cx="40" cy="40" r="1.5" fill="rgba(255,255,255,.08)"/></svg>');
}
.hero-content { position: relative; z-index: 1; max-width: 640px; }
.hero-badge {
  display: inline-block; padding: 0.4rem 1rem; border-radius: 2rem; font-size: 0.8rem; font-weight: 600;
  background: rgba(255,255,255,.15); color: white; letter-spacing: 0.5px; margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(4px);
}
.hero-title { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; color: white; line-height: 1.1; margin-bottom: 1.25rem; letter-spacing: -0.02em; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 2rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.7rem 1.5rem;
  border-radius: var(--radius); font-size: 0.9rem; font-weight: 600; border: none;
  cursor: pointer; transition: all var(--transition); font-family: inherit; text-align: center;
}
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(2,132,199,.35); }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: white; }
.btn-ghost { background: var(--bg-muted); color: var(--text-secondary); }
.btn-ghost:hover { background: var(--border); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.8rem; }

/* ─── SECTIONS ─── */
.section-head { text-align: center; margin-bottom: 3rem; }
.section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.section-sub { font-size: 1.05rem; color: var(--text-secondary); max-width: 520px; margin: 0 auto; }

/* ─── CATEGORIES/FILTER ─── */
.categories { padding: 5rem 0 3rem; }

/* Inline search */
.products-search {
  position: relative; display: flex; align-items: center; gap: 0.75rem;
  background: var(--bg-soft); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 0.75rem 1.1rem;
  margin-bottom: 1.5rem; transition: border-color var(--transition), box-shadow var(--transition);
}
.products-search:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(2,132,199,.1); }
.products-search svg { color: var(--text-muted); flex-shrink: 0; }
.products-search input {
  flex: 1; border: none; background: none; font-size: 0.95rem;
  font-family: inherit; color: var(--text); outline: none;
}
.products-search input::placeholder { color: var(--text-muted); }
.products-search__clear {
  display: none; align-items: center; justify-content: center;
  width: 1.6rem; height: 1.6rem; border: none; background: var(--bg-muted);
  border-radius: 50%; cursor: pointer; color: var(--text-secondary);
  transition: background var(--transition), color var(--transition); flex-shrink: 0;
}
.products-search__clear:hover { background: var(--border); color: var(--danger); }

.filter-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; justify-content: center; }
.filter-pill {
  padding: 0.5rem 1.25rem; border-radius: 2rem; border: 1.5px solid var(--border);
  background: var(--bg); font-size: 0.85rem; font-weight: 500; cursor: pointer;
  transition: all var(--transition); color: var(--text-secondary); font-family: inherit;
}
.filter-pill:hover { border-color: var(--primary); color: var(--primary); }
.filter-pill.active { background: var(--primary); color: white; border-color: var(--primary); }

/* ─── PAGINATION ─── */
.pagination { margin-top: 2.5rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.pagination__inner { display: flex; align-items: center; gap: 0.35rem; flex-wrap: wrap; justify-content: center; }
.page-btn {
  min-width: 2.4rem; height: 2.4rem; padding: 0 0.5rem;
  border: 1.5px solid var(--border); background: var(--bg);
  border-radius: var(--radius); font-size: 0.88rem; font-weight: 600;
  cursor: pointer; color: var(--text-secondary); font-family: inherit;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.page-btn:hover:not([disabled]) { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.page-btn.active { background: var(--primary); color: white; border-color: var(--primary); }
.page-btn[disabled] { opacity: 0.35; cursor: not-allowed; }
.page-btn svg { pointer-events: none; }
.page-ellipsis { min-width: 2rem; text-align: center; color: var(--text-muted); font-size: 0.9rem; line-height: 2.4rem; }
.pagination__info { font-size: 0.8rem; color: var(--text-muted); }

/* ─── PRODUCTS GRID ─── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem; }

.product-card {
  background: var(--bg); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); transition: all var(--transition); cursor: pointer;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-card__img {
  height: 200px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--bg-muted), var(--border));
}
.product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.product-card:hover .product-card__img img { transform: scale(1.06); }
.product-card__badge {
  position: absolute; top: 0.75rem; left: 0.75rem; padding: 0.3rem 0.75rem;
  border-radius: 2rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  background: var(--warning); color: white;
}
.product-card__body { padding: 1.25rem; }
.product-card__section { font-size: 0.75rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.35rem; }
.product-card__name { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.3; }
.product-card__desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 1rem; }
.product-card__footer { padding: 0 1.25rem 1.25rem; display: flex; flex-direction: column; gap: 0.65rem; }
.product-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  min-width: 0;
}
.product-card__actions .qty-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  min-width: 0;
  flex: 1 1 auto;
  max-width: calc(100% - 7.5rem);
}
.product-card__actions .qty-hint {
  display: block;
  font-size: 0.65rem;
  line-height: 1.25;
  color: var(--text-muted);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.product-card__actions .qty-hint--error {
  color: #b91c1c;
  font-size: 0.72rem;
  white-space: normal;
  line-height: 1.3;
}
.product-card__actions .btn { flex-shrink: 0; align-self: center; }
.qty-ctrl { display: flex; align-items: center; gap: 0.1rem; background: var(--bg-muted); border-radius: 0.5rem; padding: 0.2rem 0.35rem; }
.qty-ctrl--inc .qty-inp { width: 3.15rem; min-width: 2.75rem; }
.qty-btn { width: 1.5rem; height: 1.5rem; border: none; background: none; cursor: pointer; font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; border-radius: 0.3rem; color: var(--text); transition: background 0.15s; }
.qty-btn:hover { background: var(--border); }
.qty-inp { width: 2.6rem; text-align: center; border: none; background: transparent; font-size: 0.88rem; font-weight: 700; color: var(--text); font-family: inherit; outline: none; }
.qty-inp::-webkit-inner-spin-button, .qty-inp::-webkit-outer-spin-button { -webkit-appearance: none; }
.qty-unit { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; padding: 0 0.2rem; }
.modal-qty-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.5rem;
}
.product-card__price { font-size: 1.15rem; font-weight: 800; color: var(--primary); }
.product-card__price small { font-size: 0.75rem; font-weight: 500; color: var(--text-muted); }
.product-card__cta { font-size: 0.8rem; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 0.3rem; transition: gap var(--transition); }
.product-card:hover .product-card__cta { gap: 0.6rem; }

/* ─── FEATURED ─── */
.featured { padding: 4rem 0 5rem; background: var(--bg-soft); }
.featured-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.featured-card {
  display: flex; gap: 1.25rem; background: var(--bg); padding: 1.25rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border); transition: all var(--transition); cursor: pointer;
}
.featured-card:hover { box-shadow: var(--shadow); border-color: var(--primary-light); }
.featured-card__img {
  width: 100px; height: 100px; border-radius: var(--radius); flex-shrink: 0; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-muted), var(--border));
}
.featured-card__img img { width: 100%; height: 100%; object-fit: cover; }
.featured-card__info { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.featured-card__section { font-size: 0.7rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.featured-card__name { font-weight: 700; font-size: 0.95rem; margin: 0.25rem 0; }
.featured-card__price { font-size: 0.85rem; color: var(--text-muted); }

/* ─── INQUIRY ─── */
.inquiry { padding: 5rem 0; }
.inquiry-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.inquiry-title { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.inquiry-sub { color: var(--text-secondary); line-height: 1.7; margin-bottom: 2rem; }
.inquiry-contact { display: flex; flex-direction: column; gap: 1rem; }
.inquiry-item { display: flex; align-items: center; gap: 0.75rem; color: var(--text-secondary); }
.inquiry-item svg { color: var(--primary); flex-shrink: 0; }
.inquiry-form {
  background: var(--bg-soft); padding: 2rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.7rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 0.9rem; font-family: inherit; background: var(--bg); color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(2,132,199,.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── FOOTER ─── */
.footer { background: var(--text); color: rgba(255,255,255,.7); padding: 4rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-logo { height: 32px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links h4 { color: white; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.5rem; }
.footer-links a, .footer-links span { font-size: 0.85rem; transition: color var(--transition); }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 0; text-align: center; font-size: 0.8rem; }

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: #25d366; color: white; box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,.5); }

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.5); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  opacity: 0; pointer-events: none; transition: opacity 300ms ease;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-card {
  background: var(--bg); border-radius: var(--radius-lg); max-width: 600px; width: 100%;
  max-height: min(88vh, calc(100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 2rem));
  position: relative;
  transform: translateY(20px); transition: transform 300ms ease;
  display: flex; flex-direction: column; min-height: 0;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
}
.modal-overlay.active .modal-card { transform: translateY(0); }
.modal-close {
  position: absolute; top: max(0.75rem, env(safe-area-inset-top)); right: max(0.75rem, env(safe-area-inset-right));
  background: rgba(255,255,255,.92); border: none;
  width: 44px; height: 44px; min-width: 44px; min-height: 44px; border-radius: 50%; font-size: 1.35rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: var(--text-secondary);
  transition: all var(--transition); z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.modal-close:hover { background: var(--border); color: var(--text); }
.modal-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.modal-img {
  width: 100%;
  height: min(280px, 42vh);
  max-height: 320px;
  object-fit: cover;
  flex-shrink: 0;
}
.modal-info {
  padding: clamp(1rem, 4vw, 2rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  flex: 1;
  min-height: 0;
}
.modal-section { font-size: 0.75rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.modal-name { font-size: clamp(1.15rem, 4vw, 1.5rem); font-weight: 800; margin: 0.5rem 0 1rem; line-height: 1.25; word-break: break-word; }
.modal-desc { color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; font-size: clamp(0.88rem, 2.8vw, 1rem); }
.modal-price { font-size: clamp(1.35rem, 4.5vw, 1.75rem); font-weight: 800; color: var(--primary); margin-bottom: 1.5rem; }
.modal-price small { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); }
.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.modal-actions .btn {
  width: 100%;
  justify-content: center;
  min-height: 48px;
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
}
.modal-qty-row .qty-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
  flex: 1 1 auto;
}
.modal-qty-row .qty-hint {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0;
}
.modal-qty-row .qty-hint--error { color: #b91c1c; }
.modal-qty-row .qty-ctrl {
  flex-wrap: nowrap;
}
.modal-qty-row .qty-btn {
  min-width: 44px;
  min-height: 44px;
  width: auto;
  height: auto;
  padding: 0 0.5rem;
}
.modal-qty-row .qty-inp {
  min-width: 3rem;
  font-size: 1rem;
}
@media (min-width: 540px) {
  .modal-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .modal-actions .btn {
    width: auto;
    flex: 1;
    min-width: 140px;
  }
}
@media (max-width: 539px) {
  .modal-overlay {
    align-items: flex-end;
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .modal-card {
    max-width: 100%;
    border-radius: 1rem 1rem 0 0;
    max-height: min(94dvh, calc(100dvh - env(safe-area-inset-top)));
  }
  .modal-img {
    height: min(220px, 36vh);
  }
}

/* ─── TOAST ─── */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--text); color: white; padding: 0.85rem 1.5rem; border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 500; z-index: 300; box-shadow: var(--shadow-lg);
  transition: transform 300ms ease; pointer-events: none; opacity: 0;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto; }

/* ─── LOADING ─── */
.loading-state { grid-column: 1 / -1; text-align: center; padding: 4rem 0; color: var(--text-muted); }
.spinner {
  width: 36px; height: 36px; border: 3px solid var(--border); border-top-color: var(--primary);
  border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

.empty-state { grid-column: 1 / -1; text-align: center; padding: 4rem 2rem; }
.empty-state svg { color: var(--text-muted); margin-bottom: 1rem; }
.empty-state h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.empty-state p { color: var(--text-muted); font-size: 0.9rem; }

.no-img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary-light), var(--bg-muted));
  color: var(--primary); font-weight: 700; font-size: 1.5rem; text-align: center; padding: 1rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .inquiry-wrapper { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .featured-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 1rem; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg); }
  .nav.open { display: flex; }
  .nav-link { padding: 0.75rem 1rem; }
  .menu-toggle { display: flex; }
  .hero { padding: 8rem 0 4rem; }
  .hero-title { font-size: 2.25rem; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .products-grid { grid-template-columns: 1fr; }
  .filter-bar { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.5rem; }
  .filter-pill { flex-shrink: 0; }
}
