:root {
  --ink: #152238;
  --muted: #64748b;
  --surface: #ffffff;
  --background: #f4f7fb;
  --brand: #165dff;
  --brand-dark: #0d3da8;
  --border: #dbe3ef;
  --shadow: 0 14px 40px rgba(21, 34, 56, 0.1);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--background);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; }

html { scroll-behavior: smooth; }

.home-page {
  --ink: #f4f8ff;
  --muted: #9aabc5;
  --surface: rgba(11, 24, 48, 0.78);
  --background: #040914;
  --brand: #24b7ff;
  --brand-dark: #55d8ff;
  --border: rgba(113, 170, 230, 0.2);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(36, 183, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 183, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 50% -10%, #123264 0, #071225 36%, #040914 72%);
  background-size: 54px 54px, 54px 54px, auto;
}

.home-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 9, 20, 0.92));
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.16;
  pointer-events: none;
}

.ambient--one { top: 4rem; left: -15rem; background: #006eff; }
.ambient--two { top: 30rem; right: -16rem; background: #00d9ff; }

.home-page .site-header {
  position: relative;
  z-index: 2;
  justify-content: flex-start;
  width: calc(100% - 3rem);
  max-width: 1480px;
  margin-top: 0;
  padding: 0.45rem 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .brand img {
  width: 210px;
  filter: drop-shadow(0 0 12px rgba(68, 194, 255, 0.25));
}

.home-page .site-header nav a {
  padding: 0.6rem 1rem;
  border: 1px solid rgba(82, 194, 255, 0.2);
  border-radius: 999px;
  color: #dcecff;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

.home-page .hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.8rem 2rem 1.25rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.8rem;
  color: #7bdcff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38d6ff;
  box-shadow: 0 0 0 6px rgba(56, 214, 255, 0.1), 0 0 18px #38d6ff;
}

.home-page h1 {
  max-width: 1080px;
  margin-bottom: 0.85rem;
  font-size: clamp(2.5rem, 5.5vw, 4.8rem);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.home-page h1 em {
  color: transparent;
  font-style: normal;
  background: linear-gradient(100deg, #e8f6ff 5%, #2dc6ff 55%, #70f0e2);
  -webkit-background-clip: text;
  background-clip: text;
}

.home-page .hero-copy {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.hero-action {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(67, 207, 255, 0.3);
  border-radius: 12px;
  background: rgba(31, 153, 224, 0.1);
  color: #cfefff;
  font-size: 0.85rem;
  font-weight: 750;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.hero-action:hover { transform: translateY(-2px); background: rgba(31, 153, 224, 0.18); }

.home-page .products {
  width: 100%;
  max-width: 1480px;
  padding: 0.35rem 2rem 6rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.1rem;
  padding: 0 0.2rem;
}

.section-heading p { margin: 0 0 0.25rem; color: #49cfff; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.section-heading h2 { margin: 0; font-size: clamp(1.8rem, 4vw, 2.7rem); letter-spacing: -0.035em; }
.section-heading > span { color: #7f91ac; font-size: 0.8rem; }

.home-page .product-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.15rem;
}

.home-page .product-card {
  position: relative;
  border-color: rgba(110, 172, 225, 0.17);
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(17, 36, 68, 0.9), rgba(7, 18, 38, 0.94));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
  isolation: isolate;
}

.home-page .product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  box-shadow: inset 0 0 0 1px rgba(71, 211, 255, 0.48), 0 20px 60px rgba(0, 131, 219, 0.22);
  transition: opacity 200ms ease;
}

.home-page .product-card:hover,
.home-page .product-card:focus-visible { transform: translateY(-7px); border-color: transparent; }
.home-page .product-card:hover::after,
.home-page .product-card:focus-visible::after { opacity: 1; }

.home-page .product-image {
  height: 210px;
  margin: 0.65rem 0.65rem 0;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgba(135, 188, 230, 0.1);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(224,235,246,0.94));
}

.home-page .product-image img {
  height: 180px;
  filter: drop-shadow(0 12px 14px rgba(1, 12, 25, 0.2));
  transition: transform 260ms ease;
}

.home-page .product-card:hover img { transform: scale(1.04); }

.home-page .product-card__body {
  min-height: 112px;
  padding: 1.1rem 1.15rem 1.25rem;
  text-align: left;
}

.home-page .product-card h3 { color: #eef7ff; font-size: 0.98rem; }
.home-page .product-card span { color: #48ceff; font-size: 0.78rem; letter-spacing: 0.02em; }
.home-page .product-card span b { display: inline-block; transition: transform 180ms ease; }
.home-page .product-card:hover span b { transform: translateX(4px); }

.home-page footer {
  border-color: rgba(115, 172, 225, 0.12);
  background: rgba(3, 8, 18, 0.68);
  font-size: 0.82rem;
}

.footer-dot { padding: 0 0.6rem; color: #2fcfff; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 154px;
  height: auto;
}

.site-header nav a {
  font-weight: 650;
  text-decoration: none;
}

.initial-home-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 42px;
  padding: 0.55rem 0.9rem;
  border: 1px solid #c8d8f2;
  border-radius: 7px;
  background: var(--surface);
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero {
  max-width: 900px;
  margin: 3.5rem auto 2rem;
  padding: 0 1.5rem;
  text-align: center;
}

h1 {
  max-width: 780px;
  margin: 0 auto 1rem;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.08;
}

.hero > p:last-child { color: var(--muted); }

.products {
  max-width: 780px;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.6rem;
}

.product-card {
  display: flex;
  grid-column: span 2;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.product-card:nth-last-child(-n + 2) { grid-column: span 3; }

.product-image {
  display: grid;
  height: 165px;
  place-items: center;
  padding: 0.6rem;
  background: #f8fafc;
}

.product-image img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.product-image--pending {
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card__body {
  display: grid;
  flex: 1;
  align-content: end;
  min-height: 86px;
  padding: 1rem 1.1rem 1.15rem;
  text-align: center;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--brand);
}

.product-card h3 { margin: 0; font-size: 0.95rem; line-height: 1.35; }
.product-card span { margin-top: 0.45rem; color: var(--brand); font-weight: 700; }

footer {
  padding: 1.5rem;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--border);
}

.support-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
}

.breadcrumbs { margin-bottom: 1.5rem; color: var(--muted); font-size: 0.92rem; }
.breadcrumbs a { color: var(--brand); font-weight: 700; text-decoration: none; }

.support-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 24px;
  background: linear-gradient(135deg, #eaf1ff, #fff);
}

.support-hero h1 { margin: 0 0 1rem; font-size: clamp(2rem, 5vw, 3.5rem); }
.support-hero p { color: var(--muted); }
.support-hero .eyebrow { margin: 0 0 0.5rem; color: var(--brand); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.support-hero img { width: 100%; max-height: 300px; object-fit: contain; }

.hero-home-link,
.header-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.55rem 0.9rem;
  border: 1px solid #c8d8f2;
  border-radius: 7px;
  background: var(--surface);
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.hero-home-link:hover,
.hero-home-link:focus-visible,
.header-home-link:hover,
.header-home-link:focus-visible {
  border-color: var(--brand);
  background: #edf3ff;
  transform: translateY(-1px);
}

.hero-home-link span,
.header-home-link span { font-size: 1.05rem; line-height: 1; }

.product-sticky-header__actions { display: flex; align-items: center; gap: 0.55rem; }

.sticky-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.55rem 0.75rem;
  border: 1px solid #c8d8f2;
  border-radius: 7px;
  background: var(--surface);
  color: var(--brand-dark);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
}

.support-menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 44px;
  margin-bottom: 1.25rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--brand-dark);
  box-shadow: 0 6px 18px rgba(21, 34, 56, 0.08);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.support-menu-toggle__icon {
  display: grid;
  width: 18px;
  gap: 4px;
}

.support-menu-toggle__icon span { height: 2px; border-radius: 2px; background: currentColor; }

.product-sticky-header { display: none; }
.product-title-short { display: none; }

.quick-search {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 50;
  width: min(88vw, 330px);
  margin: 0;
  padding: 1.25rem 1rem;
  overflow-y: auto;
  border: 0;
  border-right: 1px solid var(--border);
  border-radius: 0;
  background: var(--surface);
  box-shadow: 16px 0 42px rgba(21, 34, 56, 0.18);
  transform: translateX(-105%);
  visibility: hidden;
  transition: transform 260ms cubic-bezier(.22, 1, .36, 1);
}

.support-menu-open .quick-search { transform: translateX(0); visibility: visible; }

.support-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(15, 29, 52, 0.48);
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(3px);
  transition: opacity 220ms ease;
}

.support-menu-open .support-menu-backdrop { opacity: 1; visibility: visible; }

.support-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.25rem 0.35rem 1rem;
  border-bottom: 1px solid var(--border);
}

.support-menu__header span {
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-search h2 { margin: 0.15rem 0 0; font-size: 1.2rem; line-height: 1.2; }

.support-menu-close {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f4f7fb;
  color: var(--ink);
  font: 400 1.6rem/1 sans-serif;
  cursor: pointer;
}

.quick-links { display: grid; gap: 0.35rem; }

.quick-links > a,
.support-menu-group__row > a {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  align-items: center;
  min-height: 48px;
  padding: 0.6rem 0.7rem;
  border-radius: 7px;
  color: #263852;
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.3;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.quick-links > a span,
.support-menu-group__row > a span {
  color: #8492a7;
  font-size: 0.68rem;
  font-weight: 850;
}

.quick-links a:hover,
.quick-links a:focus-visible,
.quick-links a.is-active { background: #edf3ff; color: var(--brand-dark); }

.quick-links > a:hover,
.quick-links > a:focus-visible { transform: translateX(3px); }

.support-menu-group { border-radius: 8px; }

.support-menu-group__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  align-items: center;
}

.support-menu-group__row button {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--brand-dark);
  font: 800 1.2rem/1 sans-serif;
  cursor: pointer;
  transition: background 160ms ease, transform 180ms ease;
}

.support-menu-group__row button:hover,
.support-menu-group__row button:focus-visible { background: #edf3ff; }
.support-menu-group__row button[aria-expanded="true"] { transform: rotate(180deg); }

.support-submenu {
  display: grid;
  gap: 0.15rem;
  margin: 0.15rem 0 0.5rem 2.7rem;
  padding-left: 0.65rem;
  border-left: 2px solid #d9e5fb;
}

.support-submenu[hidden] { display: none; }

.support-submenu a {
  padding: 0.5rem 0.6rem;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.support-section,
.support-section__content h3[id] { scroll-margin-top: 1rem; }
.support-section { margin: 1rem 0; border: 1px solid var(--border); border-radius: 16px; background: var(--surface); box-shadow: 0 8px 24px rgba(21,34,56,.05); }
.support-section summary { cursor: pointer; padding: 1.25rem 1.5rem; color: var(--brand-dark); font-size: 1.05rem; font-weight: 800; }
.support-section__content { padding: 0 1.5rem 1.5rem; color: #334155; }
.support-section__content h3 { margin-top: 1.5rem; color: var(--ink); }
.support-section__content li + li { margin-top: 0.6rem; }
.technical-note { padding: 1rem; border-left: 4px solid var(--brand); border-radius: 8px; background: #eff5ff; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0 2rem;
}

.video-grid--single { grid-template-columns: minmax(0, 1fr); max-width: 720px; }

.youtube-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.support-figure { max-width: 800px; margin: 1rem 0 2rem; }
.support-figure img { display: block; width: 100%; height: auto; }
.support-figure figcaption { margin-top: 0.5rem; color: var(--muted); font-size: 0.88rem; }

.diagnostic-steps {
  display: grid;
  gap: 1.25rem;
  padding: 0;
  list-style: none;
}

.diagnostic-steps li { margin: 0; }

.diagnostic-steps strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--brand-dark);
  text-align: center;
}

.diagnostic-steps span {
  display: block;
  text-align: justify;
}

.recommendation-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  list-style: none;
}

.recommendation-list li {
  margin: 0;
  text-align: justify;
  hyphens: auto;
}

.item-note {
  display: block;
  margin-top: 0.45rem;
  padding-left: 0.8rem;
  border-left: 3px solid var(--brand);
  color: var(--muted);
}

body.support-menu-open { overflow: hidden; }

@media (min-width: 1101px) {
  .site-header {
    position: fixed;
    inset: 0 auto auto max(1.5rem, calc((100vw - 1460px) / 2 + 1.5rem));
    z-index: 31;
    width: 300px;
    height: 142px;
    padding: 0.8rem 1rem;
    justify-content: center;
    background: var(--background);
  }

  .site-header .brand img { width: 250px; max-height: 118px; object-fit: contain; }
  .site-header nav { display: none; }

  .product-sticky-header {
    position: fixed;
    inset: 0 max(0.75rem, calc((100vw - 1460px) / 2 + 0.75rem)) auto max(338px, calc((100vw - 1460px) / 2 + 338px));
    z-index: 30;
    display: flex;
    min-height: 104px;
    padding: 0.65rem 12px 0.9rem;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    background: var(--background);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    transition: transform 240ms cubic-bezier(.22, 1, .36, 1), opacity 180ms ease;
  }

  .product-sticky-header strong {
    display: block;
    flex: 1 1 auto;
    max-width: 760px;
    color: var(--ink);
    font-size: clamp(1.65rem, 2.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.05;
  }

  .product-sticky-header strong span { display: block; }

  .product-sticky-header .header-home-link { flex: 0 0 auto; pointer-events: auto; }
  .product-sticky-header__actions { flex: 0 0 auto; }

  body.product-header-visible .product-sticky-header {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .support-page {
    width: 100%;
    max-width: 1460px;
    padding-left: 350px;
  }

  .support-menu-toggle,
  .support-menu-close,
  .support-menu-backdrop { display: none; }

  .quick-search {
    inset: 150px auto 1.5rem max(1.5rem, calc((100vw - 1460px) / 2 + 1.5rem));
    z-index: 20;
    width: 300px;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(21, 34, 56, 0.1);
    transform: none;
    visibility: visible;
  }

  .support-menu__header { padding-right: 0.35rem; }

  .support-section,
  .support-section__content h3[id] { scroll-margin-top: 118px; }
}

@media (max-width: 1100px) {
  .product-sticky-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 35;
    display: flex;
    min-height: 66px;
    padding: 0.55rem 1rem;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 8px 24px rgba(21, 34, 56, 0.09);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    transition: transform 240ms cubic-bezier(.22, 1, .36, 1), opacity 180ms ease;
    backdrop-filter: blur(12px);
  }

  .product-sticky-header strong {
    max-width: 40vw;
    color: var(--ink);
    font-size: 0.94rem;
    line-height: 1.18;
  }

  .product-sticky-header .product-title-full { display: none; }
  .product-sticky-header .product-title-short { display: block; }

  .product-sticky-header .header-home-link {
    display: inline-flex;
    min-height: 42px;
    padding: 0.55rem 0.7rem;
    pointer-events: auto;
  }
  .product-sticky-header .sticky-menu-toggle { display: inline-flex; pointer-events: auto; }

  body.product-header-visible .product-sticky-header {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .support-section,
  .support-section__content h3[id] { scroll-margin-top: 78px; }
}

@media (max-width: 360px) {
  .product-sticky-header { padding-right: 0.65rem; padding-left: 0.65rem; }
  .product-sticky-header strong { max-width: 46vw; font-size: 0.82rem; }
  .product-sticky-header .header-home-link { width: 42px; padding: 0; }
  .header-home-link__label { display: none; }
  .product-sticky-header .sticky-menu-toggle { padding-right: 0.55rem; padding-left: 0.55rem; }
}

@media (min-width: 701px) {
  .support-section__content p,
  .support-section__content li,
  .support-section__content span {
    text-align: justify;
    hyphens: auto;
  }

  .video-grid--single,
  .support-figure {
    width: 100%;
    max-width: none;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 700px) {
  .support-page { padding: 1.25rem 1rem 4rem; }
  body.support-menu-open .quick-search { transform: translateX(0); visibility: visible; }
  body.support-menu-open .support-menu-backdrop { opacity: 1; visibility: visible; }
  .support-hero { grid-template-columns: 1fr; }
  .support-hero img { order: -1; max-height: 220px; }
  .video-grid { grid-template-columns: 1fr; }
  #programacion .support-section__content p {
    text-align: justify;
    hyphens: auto;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 800px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-card,
  .product-card:nth-last-child(-n + 2) { grid-column: span 1; }
  .home-page .site-header { width: auto; margin: 0 1rem; padding: 0.35rem 0; }
  .home-page .brand img { width: 180px; }
  .home-page .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-page .hero { padding: 0.35rem 1.25rem 1rem; }
  .home-page .products { padding: 0.35rem 1rem 4.5rem; }
}

@media (max-width: 520px) {
  .hero { margin-top: 2rem; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card,
  .product-card:nth-last-child(-n + 2) { grid-column: span 1; }
  .home-page .hero { padding: 0.25rem 1rem 0.85rem; }
  .home-page .product-grid { grid-template-columns: 1fr; }
  .home-page .product-image { height: 230px; }
  .home-page .product-image img { height: 200px; }
  .section-heading { align-items: start; flex-direction: column; gap: 0.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
