/* ============================================================
   VASOSPY — Catalogo Premium
   Sistema visual: editorial oscuro con acento ámbar
   ============================================================ */

:root {
  --ink:        #0D0D0D;
  --ink-soft:   #1A1A1A;
  --ink-muted:  #3A3A3A;
  --cream:      #F5F0E8;
  --cream-dark: #EDE7D9;
  --white:      #FAFAF7;
  --amber:      hsl(334.77deg 90.68% 46.27%);
  --amber-dim:  hsl(335, 90%, 43%);
  --color_secundario:hsl(43.79deg 100% 48.63%);
  --amber-pale: #100f0b;
  --mid:        #8A8680;
  --line:       rgba(0,0,0,0.10);
  --line-dark:  rgba(255,255,255,0.10);
  --whatsapp:   #25D366;
  --radius-sm:  6px;
  --radius:     14px;
  --radius-lg:  22px;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow:     0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg:  0 24px 80px rgba(0,0,0,0.22);
  --transition: 0.22s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul { list-style: none; padding: 0; }

/* ─── Utilities ──────────────────────────────────────────── */
.u-overline {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}
.u-amber { color: var(--amber); }
.u-hidden { display: none !important; }

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 58px;
  padding: 0 18px;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand__logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(212,168,67,0.4);
}
.brand__name {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
}
.brand__tag {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-nav {
  display: none;
  gap: 24px;
}
.header-nav a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(250,250,247,0.55);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.header-nav a:hover { color: var(--white); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--amber);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}
.header-cta:hover {
  background: var(--amber-dim);
  transform: scale(1.03);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: 44px 18px 40px;
}

/* fondo decorativo */
.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__eyebrow {
  color: var(--amber);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(32px, 9vw, 60px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.96;
  color: var(--white);
  margin-bottom: 16px;
}
.hero__title em {
  font-style: normal;
  color: var(--amber);
}

.hero__sub {
  font-size: 14px;
  color: rgba(250,250,247,0.55);
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 46px;
  padding: 0 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), opacity var(--transition), background var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
}
.btn--primary:hover { background: var(--amber-dim); border-color: var(--amber-dim); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(250,250,247,0.25);
}
.btn--outline:hover { border-color: var(--amber); color: var(--amber); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ink-muted); }

.btn--dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn--dark:hover { background: var(--ink-soft); }

.btn--sm { height: 36px; padding: 0 14px; font-size: 12px; }
.btn--full { width: 100%; }

/* contador de productos — franja editorial */
.hero__counter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}
.hero__counter-num {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--white);
  line-height: 1;
}
.hero__counter-meta {
  display: grid;
  gap: 2px;
}
.hero__counter-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(250,250,247,0.5);
}
.hero__counter-note {
  font-size: 11px;
  color: var(--amber);
  font-weight: 600;
}

/* ─── PILLS STRIP (intro beneficios) ───────────────────── */
.strip {
  background: var(--cream-dark);
  border-bottom: 1px solid var(--line);
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.strip::-webkit-scrollbar { display: none; }

.strip__inner {
  display: flex;
  gap: 0;
  min-width: max-content;
}

.strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-right: 1px solid var(--line);
  flex-shrink: 0;
}
.strip__icon {
  font-size: 18px;
  line-height: 1;
}
.strip__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-muted);
  white-space: nowrap;
}

/* ─── SECCIÓN GENÉRICA ───────────────────────────────── */
.section {
  padding: 40px 18px;
}
.section__head {
  margin-bottom: 28px;
}
.section__head h2 {
  font-size: clamp(26px, 7vw, 40px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-top: 8px;
}
.section__head p {
  margin-top: 8px;
  color: var(--mid);
  font-size: 14px;
  max-width: 540px;
}

/* ─── CATÁLOGO ───────────────────────────────────────── */
.catalog-section {
  padding-top: 24px;
  background: var(--cream);
}

/* filtros */
.filters-bar {
  position: sticky;
  top: 58px;
  z-index: 80;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 10px 18px;
  margin: 0 -18px 16px;
}

.filters-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.filters-row::-webkit-scrollbar { display: none; }

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition);
}
.filter-pill:hover {
  border-color: var(--ink-muted);
  color: var(--ink);
}
.filter-pill.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.filter-pill .pill-count {
  font-size: 10px;
  font-weight: 900;
  background: rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 1px 5px;
}
.filter-pill.active .pill-count {
  background: rgba(255,255,255,0.15);
}

/* toolbar: busqueda + selectores adicionales */
.catalog-toolbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-bottom: 12px;
  align-items: center;
}

.search-wrap {
  position: relative;
}
.search-wrap svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mid);
  pointer-events: none;
}
.search-input {
  width: 100%;
  height: 42px;
  padding: 0 12px 0 38px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.search-input:focus { border-color: var(--amber); }
.search-input::placeholder { color: var(--mid); }

.sort-select {
  height: 42px;
  padding: 0 10px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  outline: none;
  cursor: pointer;
  min-width: 140px;
}

/* filtros secundarios */
.filters-secondary {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.tag-pill {
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--mid);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}
.tag-pill:hover { border-color: var(--ink-muted); color: var(--ink); }
.tag-pill.active { background: var(--amber-pale); border-color: var(--amber); color: var(--amber-dim); }

/* estado activo de filtros */
.active-summary {
  font-size: 12px;
  color: var(--mid);
  margin-bottom: 14px;
  min-height: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.active-summary button {
  font-size: 11px;
  font-weight: 700;
  color: var(--amber-dim);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* GRID DE PRODUCTOS */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* CARD */
.product-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(0,0,0,0.15);
}

.card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--cream-dark);
  overflow: hidden;
}
.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .card__img { transform: scale(1.04); }
.card__media.no-img::after {
  content: "📦";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 32px;
  opacity: 0.3;
}

/* badge */
.card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}
.card__badge--amber { background: var(--amber); color: var(--ink); }

/* número editorial detrás del nombre */
.card__index {
  position: absolute;
  bottom: 6px;
  right: 8px;
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(0,0,0,0.06);
  pointer-events: none;
  user-select: none;
}

.card__body {
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.card__cat {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
}
.card__name {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.card__desc {
  display: none; /* visible en desktop */
  font-size: 12px;
  color: var(--mid);
  line-height: 1.4;
}

.card__price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
}
.card__price {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.card__cap {
  font-size: 10px;
  color: var(--mid);
  font-weight: 600;
}

/* swatches */
.card__swatches {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.swatch {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  flex-shrink: 0;
  cursor: pointer;
  transition: transform var(--transition);
}
.swatch:hover, .swatch.active { transform: scale(1.3); border-color: var(--ink); }

/* acciones en card */
.card__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-top: 8px;
}

/* empty state */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.empty-state h3 { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.empty-state p { color: var(--mid); font-size: 14px; }

/* ─── MAYORISTA ──────────────────────────────────────────── */
.wholesale-section {
  background: var(--ink);
  color: var(--white);
}
.wholesale-section .section__head .u-overline { color: var(--amber); }
.wholesale-section .section__head h2 { color: var(--white); }
.wholesale-section .section__head p { color: rgba(250,250,247,0.5); }

.quote-card {
  background: var(--ink-soft);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.quote-card label {
  display: grid;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250,250,247,0.4);
}
.quote-card input {
  height: 44px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line-dark);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.quote-card input:focus { border-color: var(--amber); }
.quote-card input::placeholder { color: rgba(250,250,247,0.25); }

/* ─── PERSONALIZADOS ─────────────────────────────────────── */
.custom-section { background: var(--cream-dark); }

.steps-grid {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.step-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
}
.step-num {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--amber);
  flex-shrink: 0;
  width: 36px;
}
.step-card strong { display: block; font-size: 14px; font-weight: 800; margin-bottom: 4px; }
.step-card p { font-size: 13px; color: var(--mid); line-height: 1.45; margin: 0; }

/* ─── UBICACIÓN ──────────────────────────────────────────── */
.location-section { background: var(--cream); }
.location-map iframe {
  width: 100%;
  min-height: 220px;
  border: 0;
  border-radius: var(--radius);
  margin-top: 20px;
  background: var(--cream-dark);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: #0A0A0A;
  color: var(--white);
  padding: 40px 18px 80px;
}
.footer-grid {
  display: grid;
  gap: 32px;
}
.footer-brand__name {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: hsl(43.79deg 100% 48.63%);
}
.footer-brand__name span { color: var(--amber); }
.footer-brand__desc {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(250,250,247,0.4);
  max-width: 300px;
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(250,250,247,0.3);
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(250,250,247,0.6);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom span, .footer-bottom a {
  font-size: 11px;
  color: rgba(250,250,247,0.25);
}
.footer-bottom a { font-weight: 700; color: rgba(250,250,247,0.4); }

/* ─── FLOATING WA ────────────────────────────────────────── */
.floating-wa {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 28px rgba(37,211,102,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.floating-wa:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 36px rgba(37,211,102,0.45);
}
.floating-wa svg { flex-shrink: 0; }

/* ─── MODAL ──────────────────────────────────────────────── */
.product-modal {
  position: fixed;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);

  width: min(900px, calc(100vw - 18px));
  max-height: calc(100svh - 18px);
  overflow: auto;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: white;
  color: var(--text);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}
.product-modal::backdrop {
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}
.modal-scroll { overflow-y: auto; max-height: calc(100svh - 12px); }

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: rgba(255,255,255,0.9);
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background var(--transition);
  line-height: 1;
}
.modal-close:hover { background: var(--cream-dark); }

.modal-layout { display: grid; }

.modal-media {
  position: relative;
  background: var(--cream-dark);
  aspect-ratio: 4/3;
  overflow: hidden;
}
.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info {
  padding: 22px 20px 28px;
  display: grid;
  gap: 16px;
}
.modal-info h3 {
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-top: 4px;
}
.modal-info p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
}
.modal-price {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--ink);
}

/* modal color picker */
.option-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mid);
  display: block;
  margin-bottom: 8px;
}
.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.color-choice {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 10px 0 6px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}
.color-choice:hover { border-color: var(--ink-muted); }
.color-choice.active {
  border-color: var(--ink);
  background: var(--cream-dark);
}

/* modal opciones cantidad/custom */
.option-row {
  display: grid;
  gap: 10px;
}
.option-row label {
  display: grid;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
}
.option-row input,
.option-row select {
  height: 42px;
  padding: 0 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  outline: none;
  font-size: 14px;
  transition: border-color var(--transition);
}
.option-row input:focus,
.option-row select:focus { border-color: var(--amber); }

/* features list */
.features-list {
  display: grid;
  gap: 6px;
}
.features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-muted);
}
.features-list li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

/* modal wa btn */
.modal-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--whatsapp);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.01em;
  transition: opacity var(--transition), transform var(--transition);
}
.modal-wa-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* ─── MEDIA QUERIES ──────────────────────────────────────── */
@media (min-width: 600px) {
  .site-header { padding: 0 28px; }
  .hero, .section, .site-footer { padding-left: 28px; padding-right: 28px; }
  .filters-bar { margin: 0 -28px 16px; padding: 10px 28px; }

  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .card__actions { grid-template-columns: 1fr 1fr; }
  .card__desc { display: block; }

  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .header-nav { display: flex; }
  .hero { padding: 60px 28px 52px; }

  .modal-layout { grid-template-columns: 1fr 1fr; }
  .modal-media { aspect-ratio: auto; min-height: 100%; }
  .option-row { grid-template-columns: 1fr 1fr; }
  .modal-scroll { display: grid; grid-template-columns: 1fr 1fr; }
  .modal-media { min-height: 520px; }
  .modal-layout { display: contents; }
}

@media (min-width: 1024px) {
  .site-header, .hero, .section, .site-footer {
    padding-left: max(5vw, 40px);
    padding-right: max(5vw, 40px);
  }
  .filters-bar { padding-left: max(5vw, 40px); padding-right: max(5vw, 40px); margin-left: calc(-1 * max(5vw, 40px)); margin-right: calc(-1 * max(5vw, 40px)); }

  .products-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }

  .wholesale-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
  .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}