/*
Theme Name:  Aqualaf Child
Theme URI:   https://aqualaf.com.ar
Author:      Agencia Croma
Author URI:  https://agenciacroma.com.ar
Description: Child theme for Aqualaf. All customizations, overrides and brand-specific adjustments go here. Inherits all parent theme functionality.
Version:     1.0.0
Template:    aqualaf-theme
Requires at least: 6.4
Requires PHP: 8.1
License:     Proprietary
Text Domain: aqualaf-child
*/

/* =========================================================
   Child Theme Overrides
   Add your custom CSS below — this loads after the parent.
   ========================================================= */

:root {
  --aq-content-max: var(--container-wide);
  --aq-content-gutter: var(--gutter);
}

main.site-main .container {
  padding-inline: var(--aq-content-gutter);
}

main.site-main .container--wide {
  max-width: var(--aq-content-max);
}

/* ── Brand Color Override Example ────────────────────────
   Uncomment and adjust to fine-tune brand tokens:

:root {
  --c-accent:      #0991C9;
  --c-accent-dark:  #096484;
}

/* ── Product line landing ──────────────────────────────── */
.aq-line-page {
  background: #f4f6f7;
  color: #081f2b;
}

.aq-line-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #061f2c;
  color: #fff;
}

.aq-line-hero__media {
  position: absolute;
  inset: 0;
  opacity: 0.5;
}

.aq-line-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 31, 44, 0.96), rgba(6, 31, 44, 0.62) 46%, rgba(6, 31, 44, 0.22));
}

.aq-line-hero__media img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  transform: translateY(0) scale(1.04);
  filter: saturate(0.85) contrast(1.04);
}

.aq-line-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(7rem, 12vw, 11rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.aq-line-hero__title {
  max-width: 9ch;
  margin: 0;
  color: #fff;
  font-size: clamp(4rem, 12vw, 12rem);
  font-weight: 300;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.aq-line-hero__lead {
  max-width: 58ch;
  margin: clamp(1.5rem, 3vw, 2.4rem) 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  line-height: 1.7;
}

.aq-line-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.aq-line-hero__meta span,
.aq-line-hero__meta a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0 15px;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aq-line-hero__meta a {
  background: #fff;
  color: #061f2c;
}

.aq-line-story {
  position: relative;
  min-height: 300vh;
  background: #091017;
  color: #fff;
}

.aq-line-story__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.aq-line-story__scene {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s cubic-bezier(.22,1,.36,1);
}

.aq-line-story__scene.is-active {
  opacity: 1;
}

.aq-line-story__image {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
}

.aq-line-story__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(9, 16, 23, 0.08), rgba(9, 16, 23, 0.74) 68%, rgba(9, 16, 23, 0.94));
}

.aq-line-story__image img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  transform: translateY(-6%) scale(1.05);
  filter: saturate(0.86) contrast(1.02);
}

.aq-line-story__copy {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100vw - 32px));
  margin-inline: auto;
  text-align: center;
  transform: translateY(34px);
  opacity: 0;
}

.aq-line-story__copy span {
  display: block;
  margin-bottom: 18px;
  color: #0ba5df;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.aq-line-story__copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 5.8vw, 6.6rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.aq-line-products {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: #fff;
  overflow: hidden;
}

.aq-line-products__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.aq-line-products__head h2 {
  margin: 0;
  color: #061f2c;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 0.95;
  text-transform: uppercase;
}

.aq-line-products__controls {
  display: flex;
  gap: 8px;
}

.aq-line-products__prev,
.aq-line-products__next {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #cbdce5;
  border-radius: 50%;
  background: #fff;
  color: #061f2c;
  cursor: pointer;
}

.aq-line-products__prev span,
.aq-line-products__next span {
  font-size: 28px;
  line-height: 1;
}

.aq-line-products__swiper {
  overflow: visible;
}

.aq-line-products__swiper .swiper-slide {
  width: clamp(220px, 24vw, 330px);
  height: auto;
}

.aq-line-product-card {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.aq-line-product-card .aq-product-card__image {
  background: #fff;
}

@media (max-width: 900px) {
  .aq-line-hero {
    min-height: 86vh;
  }

  .aq-line-story {
    min-height: 240vh;
  }

  .aq-line-products__head {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .aq-line-hero__title {
    font-size: clamp(3.5rem, 18vw, 6rem);
  }

  .aq-line-story__copy h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .aq-line-products__head {
    flex-direction: column;
  }
}
*/

/* ── Logo size override ───────────────────────────────────
.site-header__logo img {
  height: 44px;
}
*/

.site-header__logo img {
  display: block;
  height: 42px !important;
  width: auto;
  filter: brightness(0) invert(1) grayscale(1) contrast(100) !important;
  transition: none !important;
}

.site-header.is-scrolled .site-header__logo img {
  filter: brightness(0) saturate(100%) invert(44%) sepia(96%) saturate(1319%) hue-rotate(164deg) brightness(92%) contrast(94%) !important;
}

.site-header__logo,
.site-header__logo:hover,
.site-header__logo:focus,
.site-header__logo:active {
  color: #ffffff !important;
  opacity: 1 !important;
  transition: none !important;
}

.footer__logo img {
  display: block;
  height: 44px;
  width: auto;
}

.site-footer .footer__cta-label {
  display: block;
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

.loader__logo img {
  display: block;
  height: clamp(48px, 8vw, 76px);
  width: auto;
}

/* ── Home category explorer ───────────────────────────── */
.h-category-explorer {
  padding-block: clamp(4.5rem, 9vw, 8rem);
  background: #f4f3f1;
  color: #111;
}

.h-category-explorer__head {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
}

.h-category-explorer__head h2 {
  margin: 0;
  color: #111;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.08;
}

.h-category-explorer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2.5rem, 5vw, 5rem) clamp(1.25rem, 2.4vw, 2.75rem);
}

.h-category-card {
  display: block;
  min-width: 0;
  color: #111;
  text-align: center;
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.h-category-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  background: #e9e7e3;
  overflow: hidden;
}

.h-category-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-smooth), filter 0.5s var(--ease-smooth);
}

.h-category-card:hover .h-category-card__media img,
.h-category-card:focus-visible .h-category-card__media img {
  transform: scale(1.035);
  filter: contrast(1.02);
}

.h-category-card:focus-visible {
  outline: 2px solid #111;
  outline-offset: 6px;
}

.h-category-card__name {
  display: block;
  margin-top: clamp(1rem, 2vw, 1.5rem);
  color: #111;
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.25;
}

.h-category-explorer__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(3.5rem, 6vw, 5.5rem);
}

.h-category-explorer__cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 13px 24px;
  border: 1px solid #111;
  border-radius: 999px;
  background: transparent;
  color: #062736;
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.5vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.h-category-explorer__cta svg {
  flex: 0 0 auto;
  transition: transform 0.35s var(--ease-expo);
}

.h-category-explorer__cta:hover svg,
.h-category-explorer__cta:focus-visible svg {
  transform: translateX(7px);
}

/* Home statement and institutional film */
.home .h-statement {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  justify-items: center;
  padding-block: clamp(7rem, 16vw, 14rem);
  padding-top: clamp(11rem, 22vw, 20rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
  background: #f4f3f1;
  overflow: hidden;
}

.home .h-statement__inner {
  position: relative;
  z-index: 1;
}

.home .h-statement__text {
  max-width: 12ch;
  margin-inline: auto;
  color: #111;
  font-family: var(--font-sans);
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.02;
}

.home .h-history {
  padding: 0;
  background: #f4f3f1;
}

.home .h-history__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(3rem, 6vw, 6rem);
  padding-block: clamp(5rem, 9vw, 9rem);
}

.home .h-history__media {
  position: relative;
  display: block;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  margin: 0;
  border-radius: 0;
  background: #071a22;
  box-shadow: none;
  overflow: hidden;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.home .h-history__media .h-history__iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  border: 0;
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.home .h-history__video-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 42%, rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.home .h-history__story-link {
  position: absolute;
  top: auto;
  bottom: clamp(90px, 12vh, 140px);
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(78vw, 220px);
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
  color: #fff;
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateX(-50%);
  transition: color 0.3s ease, background 0.3s ease, transform 0.35s var(--ease-expo);
}

.home .h-history__story-link:hover,
.home .h-history__story-link:focus-visible {
  background: #fff;
  color: #062736;
  transform: translate(-50%, -3px);
}

.home .h-history__sound {
  position: absolute;
  right: clamp(20px, 3vw, 54px);
  bottom: clamp(20px, 3vw, 46px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.16);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.home .h-history__sound:hover,
.home .h-history__sound:focus-visible {
  background: #fff;
  color: #062736;
  transform: scale(1.05);
}

.home .h-history__sound-icon {
  width: 22px;
  height: 22px;
}

.home .h-history__sound-icon--on {
  display: none;
}

.home .h-history__media.has-sound .h-history__sound-icon--off {
  display: none;
}

.home .h-history__media.has-sound .h-history__sound-icon--on {
  display: block;
}

.home .h-lines {
  padding-block: clamp(5rem, 9vw, 9rem) clamp(4rem, 7vw, 7rem);
  background: #f4f3f1;
  overflow: hidden;
}

.home .h-lines__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  text-align: left;
}

.home .h-lines__head h2 {
  margin: 0;
  color: #111;
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 3vw, 2.9rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.05;
}

.home .h-lines__swiper {
  width: 100%;
  padding-inline: clamp(18px, 3vw, 56px);
  overflow: visible;
}

.home .h-lines__slide {
  height: auto;
}

.home .h-line-card {
  position: relative;
  display: block;
  height: 100%;
  aspect-ratio: 4 / 7;
  border-radius: 8px;
  background: #102a36;
  color: #fff;
  overflow: hidden;
}

.home .h-line-card__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-smooth), filter 0.5s ease;
}

.home .h-line-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 34%, rgba(0, 0, 0, 0.72) 100%);
}

.home .h-line-card__body {
  position: absolute;
  inset: auto clamp(18px, 2vw, 30px) clamp(20px, 2.5vw, 34px);
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 20px;
  text-align: center;
}

.home .h-line-card__name {
  color: #fff;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.25vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
}

.home .h-line-card__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 300;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.home .h-line-card__link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.35s var(--ease-expo);
}

.home .h-line-card:hover .h-line-card__image,
.home .h-line-card:focus-visible .h-line-card__image {
  transform: scale(1.04);
  filter: contrast(1.03);
}

.home .h-line-card:hover .h-line-card__link svg,
.home .h-line-card:focus-visible .h-line-card__link svg {
  transform: translateX(4px);
}

.home .h-lines__nav {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 0;
  flex: 0 0 auto;
}

.home .h-lines__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.home .h-lines__arrow {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.58);
  border-radius: 50%;
  background: transparent;
  color: #111;
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
}

.home .h-lines__arrow svg {
  width: 20px;
  height: 20px;
}

.home .h-lines__arrow:hover,
.home .h-lines__arrow:focus-visible {
  background: #111;
  color: #fff;
}

.home .h-lines__arrow.swiper-button-disabled {
  opacity: 0.28;
  cursor: default;
}

.home .h-history__content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  column-gap: clamp(2rem, 6vw, 7rem);
  width: min(100%, 1180px);
  max-width: none;
  margin-inline: auto;
}

.home .h-history__eyebrow,
.home .h-history__title {
  grid-column: 1;
}

.home .h-history__text {
  grid-column: 2;
  margin-top: 0;
}

.home .h-history__text + .h-history__text {
  margin-top: 1.25rem;
}

@media (max-width: 767px) {
  .home .h-statement {
    min-height: 68vh;
    padding-top: 10rem;
    padding-bottom: 4.5rem;
  }

  .home .h-history__content {
    grid-template-columns: 1fr;
  }

  .home .h-history__media {
    height: 100svh;
    min-height: 560px;
  }

  .home .h-history__story-link {
    bottom: 96px;
  }

  .home .h-history__sound {
    width: 48px;
    height: 48px;
  }

  .home .h-history__eyebrow,
  .home .h-history__title,
  .home .h-history__text {
    grid-column: 1;
  }

  .home .h-history__text {
    margin-top: 1.5rem;
  }
}

@media (max-width: 900px) {
  .h-category-explorer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .h-category-explorer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .h-category-card__media {
    aspect-ratio: 4 / 4.7;
  }
}

/* ── Product mega menu ─────────────────────────────────── */
.menu-item--has-mega {
  position: static !important;
}

.menu-item--assistance {
  position: relative !important;
}

.aq-assistance-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  display: grid;
  width: 220px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: rgba(235, 233, 225, 0.88);
  box-shadow: 0 18px 46px rgba(2, 16, 22, 0.14);
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 220ms ease, visibility 180ms ease;
  pointer-events: none;
}

.menu-item--assistance:hover .aq-assistance-menu,
.menu-item--assistance:focus-within .aq-assistance-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.primary-nav .aq-assistance-menu a,
.site-header.is-scrolled .primary-nav .aq-assistance-menu a,
.site-header.is-dark .primary-nav .aq-assistance-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: #101718;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav .aq-assistance-menu a::after {
  display: none;
}

.primary-nav .aq-assistance-menu a:hover {
  background: #fff;
  color: #041f2f;
}

.mobile-nav__group {
  display: grid;
}

.mobile-nav__secondary {
  display: block;
  padding: 10px 20px 10px 42px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aq-mega-menu {
  position: absolute;
  top: calc(100% - 24px);
  left: var(--gutter);
  right: var(--gutter);
  z-index: calc(var(--z-floating) + 4);
  padding-top: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-smooth), transform var(--dur-base) var(--ease-expo), visibility var(--dur-base);
}

/* Sin GSAP: fallback hover CSS */
.menu-item--has-mega:hover > .aq-mega-menu,
.menu-item--has-mega:focus-within > .aq-mega-menu,
.menu-item--has-mega.is-mega-open > .aq-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Con GSAP: deshabilitar hover CSS, GSAP controla la animación */
html.has-gsap .aq-mega-menu {
  transition: none;
}

html.has-gsap .menu-item--has-mega:hover > .aq-mega-menu,
html.has-gsap .menu-item--has-mega:focus-within > .aq-mega-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
}

/* Header cuando el mega menú está abierto */
.site-header.is-mega-open {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border-bottom: 1px solid var(--c-border);
}

.site-header.is-mega-open::before {
  opacity: 0 !important;
}

.site-header.is-mega-open .nav-link {
  color: var(--c-text);
}

.site-header.is-mega-open .site-header__logo {
  color: var(--c-text);
}

/* Flecha indicadora en el link de Productos cuando está abierto */
.menu-item--has-mega > a[aria-expanded="true"]::after {
  transform: scaleX(1) !important;
  transform-origin: left !important;
}

.aq-mega-menu__inner {
  display: grid;
  grid-template-columns: minmax(230px, 0.32fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  max-width: var(--container-wide);
  margin-inline: auto;
  border: 1px solid rgba(216,232,240,0.9);
  border-radius: 8px;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 30px 90px rgba(0,15,24,0.18);
  padding: clamp(1.25rem, 3vw, 2rem);
  color: var(--c-text);
}

.aq-mega-menu__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-right: 1px solid var(--c-border);
  padding-right: clamp(1rem, 3vw, 2rem);
}

.aq-mega-menu__intro span {
  color: var(--c-gold);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.aq-mega-menu__intro strong {
  max-width: 12ch;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.4vw, 2.7rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

.primary-nav .aq-mega-menu .aq-mega-menu__intro a,
.aq-mega-menu__intro a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: 999px;
  background: var(--c-gold);
  color: #fff !important;
  padding: 0 16px;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aq-mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}

.aq-mega-menu__col {
  min-width: 0;
}

.primary-nav .aq-mega-menu a,
.site-header.is-scrolled .primary-nav .aq-mega-menu a,
.site-header.is-dark .primary-nav .aq-mega-menu a {
  color: var(--c-text);
  font-family: var(--font-sans);
  letter-spacing: 0;
  text-transform: none;
}

.primary-nav .aq-mega-menu a::after {
  display: none;
}

.primary-nav .aq-mega-menu__heading,
.aq-mega-menu__heading {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--c-text) !important;
  font-size: var(--text-sm) !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.aq-mega-menu__heading span {
  display: grid;
  place-items: center;
  min-width: 26px;
  height: 22px;
  border-radius: 999px;
  background: var(--c-surface);
  color: var(--c-gold);
  font-size: 11px;
}

.aq-mega-menu__col ul {
  display: grid !important;
  gap: 7px !important;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav .aq-mega-menu__col li {
  position: static;
}

.primary-nav .aq-mega-menu__col li a,
.aq-mega-menu__col li a {
  color: var(--c-text-muted) !important;
  font-size: var(--text-sm) !important;
  font-weight: 500 !important;
}

.primary-nav .aq-mega-menu__col li a:hover,
.aq-mega-menu__col li a:hover {
  color: var(--c-gold) !important;
}

@media (max-width: 1023px) {
  .mobile-nav__mega {
    display: grid;
    gap: 1rem;
  }

  .mobile-nav__menu .aq-mega-menu,
  .mobile-nav__mega .aq-mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .mobile-nav__menu .aq-mega-menu__inner {
    display: grid;
    grid-template-columns: 1fr;
    max-height: 48vh;
    overflow: auto;
    border-color: rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
    box-shadow: none;
    padding: 1rem;
  }

  .mobile-nav__menu .aq-mega-menu__intro {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 0 0 1rem;
  }

  .mobile-nav__menu .aq-mega-menu__intro strong {
    color: #fff;
    font-size: 1.3rem;
  }

  .mobile-nav__menu .aq-mega-menu__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .mobile-nav__menu .aq-mega-menu a,
  .mobile-nav__menu .aq-mega-menu__heading,
  .mobile-nav__menu .aq-mega-menu__col li a {
    opacity: 1;
    transform: none;
    color: #fff !important;
    font-family: var(--font-sans);
    font-size: 0.9rem !important;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .mobile-nav__menu .aq-mega-menu__col li a {
    color: rgba(255,255,255,0.7) !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  html body * {
    cursor: auto !important;
  }

  html body a,
  html body button,
  html body [role="button"],
  html body input[type="button"],
  html body input[type="submit"],
  html body .swiper-button-prev,
  html body .swiper-button-next {
    cursor: pointer !important;
  }
}

html body .cursor {
  display: none !important;
}

/* ── WooCommerce catalog ───────────────────────────────── */
.aq-overline {
  margin: 0 0 14px;
  color: var(--c-gold);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.aq-shop,
.aq-single-product {
  background: var(--c-bg);
  color: var(--c-text);
}

.aq-shop-hero {
  padding-block: clamp(8rem, 14vw, 13rem) clamp(3rem, 6vw, 5rem);
  background: #041f2f;
  color: #fff;
}

.aq-shop-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.aq-shop-hero__title {
  max-width: 12ch;
  margin: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.aq-shop-hero__lead {
  max-width: 62ch;
  margin-top: var(--space-4);
  color: rgba(255,255,255,0.76);
  font-size: var(--text-lg);
  line-height: 1.7;
}

.aq-shop-search {
  display: grid;
  grid-template-columns: 1fr 52px;
  min-height: 54px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.aq-shop-search input {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0 16px;
  outline: 0;
}

.aq-shop-search input::placeholder { color: rgba(255,255,255,0.56); }
.aq-shop-search button {
  display: grid;
  place-items: center;
  border: 0;
  background: #fff;
  color: #041f2f;
  cursor: pointer;
}

.aq-shop-body {
  padding-block: clamp(3rem, 7vw, 6rem);
}

.aq-shop-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.aq-shop-filters,
.aq-line-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.aq-chip,
.aq-line-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--c-text);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--dur-base) var(--ease-smooth), color var(--dur-base) var(--ease-smooth), border-color var(--dur-base) var(--ease-smooth);
}

.aq-chip:hover,
.aq-chip.is-active,
.aq-line-strip a:hover {
  border-color: var(--c-gold);
  background: var(--c-gold);
  color: #fff;
}

.aq-shop-sort .woocommerce-ordering {
  margin: 0;
}

.aq-shop-sort select {
  min-height: 40px;
  border: 1px solid var(--c-border);
  border-radius: 4px;
  background: #fff;
  padding-inline: 10px;
}

.aq-line-strip {
  margin-bottom: var(--space-5);
}

.aq-result-count {
  margin-bottom: var(--space-3);
  color: var(--c-text-muted);
  font-size: var(--text-sm);
}

.aq-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.aq-product-card {
  min-width: 0;
}

.aq-product-card__image {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  background: var(--c-surface);
  overflow: hidden;
}

.aq-product-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(1rem, 3vw, 2.25rem);
  transition: transform var(--dur-slow) var(--ease-smooth);
}

.aq-product-card:hover .aq-product-card__image img {
  transform: scale(1.04);
}

.aq-product-card__placeholder,
.aq-product-gallery__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #eef8fe, #d8e8f0);
}

.aq-product-card__body {
  padding-top: 14px;
}

.aq-product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--c-text-muted);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aq-product-card__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.25;
}

.aq-product-card__title a {
  color: inherit;
}

.aq-product-card__cat {
  margin: 8px 0 0;
  color: var(--c-text-muted);
  font-size: var(--text-sm);
}

.aq-pagination {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.aq-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0;
  padding: 0;
}

.aq-pagination .page-numbers li {
  list-style: none;
}

.aq-pagination .page-numbers > li > a,
.aq-pagination .page-numbers > li > span {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  border: 1px solid #dce7ec;
  border-radius: 999px;
  background: #fff;
  color: #041f2f;
  font-size: 0.92rem;
  font-weight: 650;
}

.aq-pagination .page-numbers .current {
  border-color: #1790d0;
  background: #1790d0;
  color: #fff;
}

.aq-pagination .page-numbers .dots {
  min-width: 24px;
  border-color: transparent;
  background: transparent;
  color: #78909b;
}

/* ── WooCommerce single ───────────────────────────────── */
.aq-product-hero {
  padding-block: clamp(8rem, 12vw, 12rem) clamp(4rem, 8vw, 7rem);
}

.aq-product-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.aq-product-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.aq-product-gallery__item {
  display: grid;
  place-items: center;
  margin: 0;
  min-height: 220px;
  aspect-ratio: 1 / 1;
  background: var(--c-surface);
  overflow: hidden;
}

.aq-product-gallery__item.is-main {
  grid-column: 1 / -1;
  aspect-ratio: 4 / 3;
}

.aq-product-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(1rem, 4vw, 3rem);
}

.aq-product-summary {
  position: sticky;
  top: 110px;
}

.aq-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-5);
  color: var(--c-text-muted);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.aq-product-summary__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--c-gold);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.aq-product-summary__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.aq-product-summary__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-4);
}

.aq-product-summary__cats a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--c-text-muted);
  font-size: var(--text-xs);
  font-weight: 600;
}

.aq-product-summary__excerpt {
  margin-top: var(--space-4);
  color: var(--c-text-muted);
  line-height: 1.7;
}

.aq-product-specs {
  display: grid;
  gap: 0;
  margin: var(--space-5) 0 0;
  border-top: 1px solid var(--c-border);
}

.aq-product-specs div {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  padding-block: 14px;
  border-bottom: 1px solid var(--c-border);
}

.aq-product-specs dt {
  color: var(--c-text-muted);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.aq-product-specs dd {
  margin: 0;
  text-align: right;
  font-weight: 600;
}

.aq-product-downloads {
  margin-top: var(--space-5);
}

.aq-product-downloads h2 {
  margin: 0 0 12px;
  font-size: var(--text-lg);
  font-weight: 600;
}

.aq-product-downloads__grid {
  display: grid;
  gap: 10px;
}

.aq-download-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 0 16px;
  color: var(--c-text);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--dur-base) var(--ease-smooth), border-color var(--dur-base) var(--ease-smooth), color var(--dur-base) var(--ease-smooth);
}

.aq-download-btn svg {
  flex: 0 0 auto;
}

.aq-download-btn:hover {
  border-color: var(--c-gold);
  background: var(--c-gold);
  color: #fff;
}

.aq-product-detail,
.aq-related {
  padding-block: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--c-border);
}

.aq-product-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  gap: clamp(2rem, 6vw, 6rem);
}

.aq-product-detail__content {
  max-width: 76ch;
}

.aq-product-attributes table {
  width: 100%;
  border-collapse: collapse;
}

.aq-product-attributes th,
.aq-product-attributes td {
  border-bottom: 1px solid var(--c-border);
  padding: 14px 0;
  text-align: left;
}

.aq-related__head {
  margin-bottom: var(--space-4);
}

.aq-related__head h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  font-weight: 300;
  max-width: 18ch;
}

.aq-related__context {
  margin: 0.55rem 0 0;
  color: #6e6e73;
  font-size: var(--text-sm);
}

.aq-related__link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 1rem;
  border: 1px solid rgba(4, 31, 47, 0.16);
  border-radius: 999px;
  color: #041f2f;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.aq-related__link:hover,
.aq-related__link:focus-visible {
  background: #041f2f;
  border-color: #041f2f;
  color: #fff;
}

.aq-product-grid--related {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.aq-card-shop-scope .aq-product-card {
  display: flex;
  min-height: 100%;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transition: none;
}

.aq-card-shop-scope .aq-product-card:hover {
  transform: none;
  box-shadow: none;
}

.aq-card-shop-scope .aq-product-card__image {
  margin: 0;
  border-radius: 8px;
  background: #fff;
  aspect-ratio: 1;
  overflow: hidden;
}

.aq-card-shop-scope .aq-product-card__image::after {
  border: 0;
}

.aq-card-shop-scope .aq-product-card__image img {
  padding: clamp(1rem, 2.4vw, 2rem);
  object-fit: contain;
}

.aq-card-shop-scope .aq-product-card__body {
  gap: 0;
  padding: clamp(0.75rem, 1.4vw, 1.15rem) 2px 0;
}

.aq-card-shop-scope .aq-product-card__title {
  margin: 0 0 0.25rem;
  color: #1d1d1f;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 400;
  line-height: 1.3;
}

.aq-card-shop-scope .aq-product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.5rem;
  margin: 0 0 0.35rem;
  color: #6e6e73;
  font-size: 0.688rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aq-card-shop-scope .aq-product-card__meta span + span::before {
  content: '·';
  margin-right: 0.4rem;
  color: currentColor;
}

.aq-card-shop-scope .aq-product-card__meta--secondary {
  margin: 0;
  color: #6e6e73;
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.aq-line-more {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  border-top: 1px solid var(--c-border);
}

.aq-line-more__head {
  margin-bottom: var(--space-4);
}

.aq-line-more__head h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  font-weight: 300;
}

.aq-line-more__carousel {
  display: flex;
  gap: clamp(1rem, 1.8vw, 1.5rem);
  margin-inline: calc(var(--space-2) * -1);
  padding: var(--space-2) var(--space-2) var(--space-4);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.aq-line-more__carousel .aq-product-card {
  flex: 0 0 clamp(230px, 24vw, 310px);
  scroll-snap-align: start;
}

.aq-line-more__cta {
  display: flex;
  flex: 0 0 clamp(220px, 22vw, 290px);
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(230px, 24vw, 310px);
  padding: clamp(1rem, 2vw, 1.6rem);
  border-radius: 8px;
  background: #041f2f;
  color: #fff;
  text-decoration: none;
  scroll-snap-align: start;
}

.aq-line-more__cta span {
  margin-bottom: 0.35rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.aq-line-more__cta strong {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 300;
  line-height: 1.1;
}

@media (max-width: 1023px) {
  .aq-shop-hero__grid,
  .aq-product-hero__inner,
  .aq-product-detail__grid {
    grid-template-columns: 1fr;
  }

  .aq-product-summary {
    position: static;
  }

  .aq-product-grid,
  .aq-product-grid--related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .aq-shop-toolbar {
    display: grid;
  }

  .aq-shop-sort {
    width: 100%;
  }

  .aq-shop-sort select {
    width: 100%;
  }

  .aq-product-grid,
  .aq-product-grid--related,
  .aq-product-gallery {
    grid-template-columns: 1fr;
  }

  .aq-product-gallery__item.is-main {
    aspect-ratio: 1 / 1;
  }

  .aq-product-specs div {
    display: grid;
  }

  .aq-product-specs dd {
    text-align: left;
  }
}

/* ── Refined product archive ───────────────────────────── */
.aq-shop-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(7.5rem, 11vw, 10.5rem) clamp(3.5rem, 6vw, 5.5rem);
}

.aq-shop-hero::after {
  content: '';
  position: absolute;
  right: -12vw;
  bottom: -30vw;
  width: min(62vw, 850px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 8vw rgba(255, 255, 255, 0.018), 0 0 0 16vw rgba(255, 255, 255, 0.012);
  pointer-events: none;
}

.aq-shop-hero .container {
  position: relative;
  z-index: 1;
}

.aq-shop-search {
  min-height: 60px;
  border-color: rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.aq-shop-search input {
  padding-left: 22px;
}

.aq-shop-search button {
  width: 48px;
  height: 48px;
  align-self: center;
  border-radius: 50%;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.aq-shop-search button:hover {
  background: var(--c-gold);
  color: #fff;
  transform: scale(0.94);
}

.aq-shop-body {
  padding-block: clamp(2rem, 5vw, 4.5rem) clamp(4rem, 8vw, 7rem);
}

.aq-shop-filter-panel {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  border: 1px solid #dce7ec;
  border-radius: 18px;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: #fff;
  box-shadow: 0 18px 50px rgba(4, 31, 47, 0.06);
}

.aq-shop-filter-panel__heading,
.aq-shop-results-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.aq-shop-filter-panel__heading {
  margin-bottom: 22px;
}

.aq-shop-filter-panel__eyebrow,
.aq-shop-results-head__label {
  margin: 0 0 5px;
  color: var(--c-gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.aq-shop-filter-panel__heading h2 {
  margin: 0;
  color: #041f2f;
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  font-weight: 500;
  line-height: 1.05;
}

.aq-shop-filter-panel__clear {
  border-bottom: 1px solid currentColor;
  color: #526b78;
  font-size: 0.78rem;
  font-weight: 700;
}

.aq-shop-filter-panel__fields {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) minmax(170px, 1fr) minmax(190px, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.aq-shop-filter-field {
  display: grid;
  gap: 8px;
}

.aq-shop-filter-field > span {
  color: #526b78;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.aq-shop-filter-field select {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cadbe3;
  border-radius: 10px;
  padding: 0 40px 0 14px;
  background-color: #f8fbfc;
  color: #041f2f;
  font: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.aq-shop-filter-field select:focus {
  border-color: var(--c-gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(9, 145, 201, 0.12);
}

.aq-shop-filter-panel__submit {
  min-height: 50px;
  border: 0;
  border-radius: 10px;
  padding: 0 22px;
  background: #041f2f;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.aq-shop-filter-panel__submit:hover {
  background: var(--c-gold);
  transform: translateY(-2px);
}

.aq-shop-results-head {
  min-height: 48px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dce7ec;
}

.aq-result-count,
.aq-result-count .woocommerce-result-count {
  margin: 0;
}

.aq-shop-active-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.aq-shop-active-filters span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 11px;
  background: #eaf7fc;
  color: #075f82;
  font-size: 0.7rem;
  font-weight: 700;
}

.aq-product-grid {
  gap: clamp(1.25rem, 2vw, 2rem) clamp(0.9rem, 1.6vw, 1.4rem);
}

.aq-product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.aq-product-card__image {
  position: relative;
  border-radius: 14px;
  background: linear-gradient(145deg, #f6fafc, #eaf2f6);
}

.aq-product-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(4, 31, 47, 0.07);
  border-radius: inherit;
  pointer-events: none;
}

.aq-product-card__image img {
  padding: clamp(1rem, 2.3vw, 2rem);
  transition: transform 500ms cubic-bezier(.22,1,.36,1);
}

.aq-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px 4px 0;
}

.aq-product-card__title {
  font-family: inherit;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  font-weight: 650;
  line-height: 1.35;
}

.aq-product-card__cat {
  margin-top: 6px;
}

.aq-product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  margin-top: 14px;
  color: #075f82;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.aq-product-card__link svg {
  transition: transform 180ms ease;
}

.aq-product-card:hover .aq-product-card__link svg {
  transform: translateX(4px);
}

.aq-pagination .page-numbers > li > a,
.aq-pagination .page-numbers > li > span {
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.aq-pagination .page-numbers a:hover,
.aq-pagination .page-numbers .current {
  border-color: #1790d0;
  background: #1790d0;
  color: #fff;
}

.aq-pagination .page-numbers a:hover {
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .aq-pagination .page-numbers > li > a,
  .aq-pagination .page-numbers > li > span {
    min-width: 38px;
    height: 38px;
    font-size: 0.86rem;
  }
}

@media (max-width: 1023px) {
  .aq-shop-filter-panel__fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .aq-shop-hero {
    padding-block: 7rem 3rem;
  }

  .aq-shop-hero__title {
    font-size: clamp(2.8rem, 15vw, 4.5rem);
  }

  .aq-shop-search {
    min-height: 54px;
  }

  .aq-shop-filter-panel {
    border-radius: 14px;
    padding: 18px;
  }

  .aq-shop-filter-panel__heading,
  .aq-shop-results-head {
    align-items: flex-start;
  }

  .aq-shop-filter-panel__fields {
    grid-template-columns: 1fr;
  }

  .aq-shop-filter-panel__submit {
    width: 100%;
  }

  .aq-shop-results-head {
    display: grid;
  }

  .aq-shop-active-filters {
    justify-content: flex-start;
  }

  .aq-product-grid,
  .aq-product-grid--related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 10px;
  }

  .aq-product-card__body {
    padding-top: 11px;
  }

  .aq-product-card__meta {
    gap: 5px;
    font-size: 0.62rem;
    letter-spacing: 0.07em;
  }

  .aq-product-card__title {
    font-size: 0.92rem;
  }

  .aq-product-card__cat {
    font-size: 0.72rem;
  }

  .aq-product-card__link {
    margin-top: 10px;
    font-size: 0.65rem;
  }
}

@media (max-width: 390px) {
  .aq-product-grid,
  .aq-product-grid--related {
    grid-template-columns: 1fr;
  }
}

/* ── Compact shop archive ──────────────────────────────── */
body.post-type-archive-product .site-header,
body.tax-product_cat .site-header,
body.tax-linea .site-header,
body:has([data-barba-namespace="shop"]) .site-header,
body.post-type-archive-product .site-header.is-scrolled,
body.tax-product_cat .site-header.is-scrolled,
body.tax-linea .site-header.is-scrolled,
body:has([data-barba-namespace="shop"]) .site-header.is-scrolled {
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.post-type-archive-product .site-header__logo img,
body.tax-product_cat .site-header__logo img,
body.tax-linea .site-header__logo img,
body:has([data-barba-namespace="shop"]) .site-header__logo img,
body.post-type-archive-product .site-header.is-scrolled .site-header__logo img,
body.tax-product_cat .site-header.is-scrolled .site-header__logo img,
body.tax-linea .site-header.is-scrolled .site-header__logo img,
body:has([data-barba-namespace="shop"]) .site-header.is-scrolled .site-header__logo img {
  filter: brightness(0) saturate(100%) invert(63%) sepia(87%) saturate(410%) hue-rotate(156deg) brightness(95%) contrast(88%);
}

body.post-type-archive-product .site-header .menu-toggle,
body.tax-product_cat .site-header .menu-toggle,
body.tax-linea .site-header .menu-toggle,
body:has([data-barba-namespace="shop"]) .site-header .menu-toggle,
body.post-type-archive-product .site-header.is-scrolled .menu-toggle,
body.tax-product_cat .site-header.is-scrolled .menu-toggle,
body.tax-linea .site-header.is-scrolled .menu-toggle,
body:has([data-barba-namespace="shop"]) .site-header.is-scrolled .menu-toggle,
body.post-type-archive-product .site-header .header-actions__location,
body.tax-product_cat .site-header .header-actions__location,
body.tax-linea .site-header .header-actions__location,
body:has([data-barba-namespace="shop"]) .site-header .header-actions__location,
body.post-type-archive-product .site-header.is-scrolled .header-actions__location,
body.tax-product_cat .site-header.is-scrolled .header-actions__location,
body.tax-linea .site-header.is-scrolled .header-actions__location,
body:has([data-barba-namespace="shop"]) .site-header.is-scrolled .header-actions__location {
  color: #041f2f;
}

body.post-type-archive-product .site-header .menu-toggle span,
body.tax-product_cat .site-header .menu-toggle span,
body.tax-linea .site-header .menu-toggle span,
body:has([data-barba-namespace="shop"]) .site-header .menu-toggle span {
  color: #041f2f;
  background: #041f2f;
}

.aq-shop .aq-shop-hero {
  padding-block: clamp(6rem, 7vw, 7.25rem) clamp(1.5rem, 3vw, 2.75rem);
  background: #f8f8f7;
  color: #041f2f;
}

.aq-shop .aq-shop-hero::after {
  content: none;
}

.aq-shop .aq-shop-hero__grid {
  display: block;
  align-items: end;
}

.aq-shop .aq-shop-hero__title {
  max-width: none;
  color: #041f2f;
  font-family: inherit;
  font-size: clamp(2.2rem, 3.6vw, 4rem);
  font-weight: 500;
  line-height: 1;
}

.aq-shop .aq-shop-hero__lead {
  display: none;
  margin-top: 14px;
  color: #526b78;
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  line-height: 1.45;
}

.aq-shop .aq-shop-search {
  display: none;
}

.aq-shop .aq-shop-body {
  padding-block: 0 clamp(4rem, 8vw, 7rem);
  background: #f8f8f7;
}

.aq-shop .aq-shop-filter-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: calc(var(--z-overlay) + 8);
  display: grid;
  width: min(520px, 100vw);
  height: 100svh;
  margin: 0;
  grid-template-rows: auto 1fr;
  border: 0;
  border-radius: 0;
  padding: clamp(1.5rem, 3vw, 3rem);
  background: #fff;
  box-shadow: -24px 0 70px rgba(4, 31, 47, 0.18);
  overflow-y: auto;
  transform: translateX(105%);
  transition: transform 260ms cubic-bezier(.22,1,.36,1);
  pointer-events: none;
}

.aq-shop.is-filter-open .aq-shop-filter-panel {
  transform: translateX(0);
  pointer-events: auto;
}

.aq-shop-filter-backdrop {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-overlay) + 7);
  background: rgba(4, 10, 14, 0.52);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.aq-shop.is-filter-open .aq-shop-filter-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.aq-shop .aq-shop-filter-panel__heading {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

.aq-shop .aq-shop-filter-panel__heading h2,
.aq-shop .aq-shop-filter-panel__eyebrow {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.aq-shop .aq-shop-filter-panel__heading h2 {
  display: none;
}

.aq-shop .aq-shop-filter-panel__eyebrow {
  margin: 0;
  color: #041f2f;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0;
}

.aq-shop-filter-panel__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.aq-shop .aq-shop-filter-panel__clear {
  margin-left: 0;
  border-bottom-color: currentColor;
  color: #041f2f;
  font-size: 0.92rem;
  font-weight: 500;
}

.aq-shop-filter-panel__close {
  position: relative;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: #6f6258;
  cursor: pointer;
}

.aq-shop-filter-panel__close span::before,
.aq-shop-filter-panel__close span::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 2px;
  background: currentColor;
}

.aq-shop-filter-panel__close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.aq-shop-filter-panel__close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.aq-shop .aq-shop-filter-field {
  gap: 10px;
}

.aq-shop .aq-shop-filter-field > span {
  color: #041f2f;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.aq-shop .aq-shop-filter-field select,
.aq-shop .aq-shop-filter-field input,
.aq-shop .aq-shop-filter-panel__submit {
  min-height: 54px;
}

.aq-shop .aq-shop-filter-field input {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  background: #f8f8f7;
  color: #041f2f;
  font: inherit;
  outline: 0;
}

.aq-shop .aq-shop-filter-field select {
  border: 0;
  border-bottom: 1px solid #e2ddd7;
  border-radius: 0;
  padding-inline: 0 34px;
  background-color: transparent;
  font-size: 0.95rem;
}

.aq-shop .aq-shop-filter-panel__fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-content: start;
}

.aq-shop .aq-shop-filter-panel__submit {
  margin-top: 12px;
  border-radius: 999px;
  padding-inline: 22px;
  background: #10100f;
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: none;
}

.aq-shop .aq-shop-results-head {
  display: none;
}

.aq-shop-filter-toggle {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: calc(var(--z-overlay) + 6);
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0 18px 0 20px;
  background: rgba(5, 9, 13, 0.94);
  color: #fff;
  box-shadow: 0 16px 40px rgba(4, 31, 47, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateX(-50%);
  cursor: pointer;
}

.aq-shop-filter-toggle span {
  font-size: 0.92rem;
  font-weight: 650;
}

.aq-shop-filter-toggle svg {
  width: 18px;
  height: 18px;
  transform: scaleX(-1);
}

/* ── Editorial product cards ───────────────────────────── */
.aq-shop .aq-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 2vw, 2rem) clamp(1.1rem, 1.8vw, 1.6rem);
}

@media (max-width: 900px) {
  .aq-shop .aq-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 390px) {
  .aq-shop .aq-product-grid {
    grid-template-columns: 1fr;
  }
}

.aq-shop .aq-product-card {
  display: flex;
  min-height: 100%;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transition: none;
}

.aq-shop .aq-product-card:hover {
  transform: none;
  box-shadow: none;
}

.aq-shop .aq-product-card__image {
  position: relative;
  margin: 0;
  border-radius: 8px;
  background: #fff;
  aspect-ratio: 1;
  overflow: hidden;
}

.aq-shop .aq-product-card__image::after {
  border: 0;
}

.aq-shop .aq-product-card__image img {
  padding: clamp(1rem, 2.4vw, 2rem);
  object-fit: contain;
}

.aq-shop .aq-product-card__body {
  gap: 0;
  padding: clamp(0.75rem, 1.4vw, 1.15rem) 2px 0;
}

.aq-product-card__code {
  margin: 0 0 0.35rem;
  color: #041f2f;
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
}

.aq-shop .aq-product-card__title {
  margin: 0 0 0.25rem;
  color: #1d1d1f;
  font-family: inherit;
  font-size: clamp(1.1rem, 1.45vw, 1.35rem);
  font-weight: 500;
  line-height: 1.18;
}

.aq-shop .aq-product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.5rem;
  margin: 0;
  color: #6e6e73;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

.aq-shop .aq-product-card__meta span + span::before {
  content: '·';
  margin-right: 0.4rem;
  color: currentColor;
}

.aq-shop .aq-product-card__meta--secondary {
  margin: 0;
  color: #6e6e73;
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.aq-shop .aq-product-card__cat {
  display: block;
}

.aq-shop .aq-product-card__link {
  display: none;
}

@media (max-width: 767px) {
  .aq-shop .aq-shop-hero {
    padding-block: 5.5rem 1.75rem;
  }

  .aq-shop .aq-product-card__body {
    padding: 13px;
  }

  .aq-product-card__code {
    font-size: 0.75rem;
  }

  .aq-shop .aq-product-card__meta {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }
}

/* Product identity: code first, product name as the visual headline. */
.aq-product-card__body > .aq-product-card__code {
  order: 1;
  margin: 0 0 0.35rem;
  color: #041f2f;
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.aq-product-card__body > .aq-product-card__title {
  order: 2;
  margin: 0 0 0.45rem;
  font-family: inherit;
  font-size: clamp(1.1rem, 1.45vw, 1.35rem);
  font-weight: 500;
  line-height: 1.15;
}

.aq-product-card__body > .aq-product-card__meta {
  order: 3;
  margin: 0;
  color: #6e6e73;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

/* ── Refined single product ────────────────────────────── */
.aq-product-masthead {
  position: relative;
  overflow: hidden;
  padding-block: clamp(7.5rem, 11vw, 10rem) clamp(3rem, 5vw, 4.5rem);
  background: #041f2f;
  color: #fff;
}

.aq-product-masthead::after {
  content: '';
  position: absolute;
  right: -14vw;
  bottom: -34vw;
  width: min(65vw, 900px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: none;
  pointer-events: none;
}

.aq-product-masthead__inner {
  position: relative;
  z-index: 1;
}

.aq-product-masthead__back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.aq-product-masthead__back:hover {
  color: #fff;
  transform: translateX(-4px);
}

.aq-product-masthead__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
}

.aq-product-masthead .aq-overline {
  color: #63c7ef;
}

.aq-product-masthead__title {
  max-width: 14ch;
  margin: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.aq-product-masthead__aside {
  display: grid;
  gap: 18px;
  padding-bottom: 8px;
}

.aq-product-masthead__meta,
.aq-product-masthead__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.aq-product-masthead__meta span,
.aq-product-masthead__meta a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.aq-product-masthead__meta > * + *::before {
  content: '/';
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.3);
}

.aq-product-masthead__cats a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0 13px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  transition: border-color 180ms ease, background 180ms ease;
}

.aq-product-masthead__cats a:hover {
  border-color: var(--c-gold);
  background: var(--c-gold);
}

.aq-single-product .aq-product-hero {
  padding-block: clamp(2rem, 5vw, 4.5rem) clamp(4rem, 8vw, 7rem);
  background: #f4f8fa;
}

.aq-single-product .aq-product-hero__inner {
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.aq-single-product .aq-product-gallery {
  gap: 14px;
}

.aq-single-product .aq-product-gallery__item {
  min-height: 0;
  border: 1px solid #dce7ec;
  border-radius: 16px;
  background: #fff;
}

.aq-single-product .aq-product-gallery__item.is-main {
  aspect-ratio: auto;
  min-height: clamp(460px, 60vw, 760px);
}

.aq-single-product .aq-product-gallery__item:not(.is-main) {
  aspect-ratio: 1 / 1;
  min-height: 230px;
}

.aq-single-product .aq-product-gallery__item img {
  width: 100%;
  height: 100%;
  max-height: 760px;
  object-fit: contain;
  object-position: center;
  padding: clamp(1rem, 3vw, 2.5rem);
}

.aq-single-product .aq-product-gallery__item:not(.is-main) img {
  max-height: 360px;
  padding: clamp(0.75rem, 2vw, 1.5rem);
}

.aq-single-product .aq-product-summary {
  top: 100px;
  border: 1px solid #dce7ec;
  border-radius: 18px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: #fff;
  box-shadow: none;
}

.aq-product-summary__eyebrow {
  margin: 0 0 8px;
  color: var(--c-gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.aq-product-summary__heading {
  margin: 0;
  color: #041f2f;
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  font-weight: 500;
  line-height: 1.08;
}

.aq-single-product .aq-product-summary__excerpt {
  margin-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dce7ec;
}

.aq-single-product .aq-product-specs {
  margin-top: 6px;
  border-top: 0;
}

.aq-single-product .aq-product-specs div {
  padding-block: 15px;
  border-color: #dce7ec;
}

.aq-single-product .aq-product-specs dd {
  max-width: 65%;
  color: #041f2f;
}

.aq-single-product .aq-download-btn {
  border-radius: 10px;
  background: #f8fbfc;
}

.aq-single-product .aq-product-detail {
  background: #fff;
}

.aq-single-product .aq-related {
  background: #f4f8fa;
}

@media (max-width: 1023px) {
  .aq-product-masthead__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .aq-product-masthead__title {
    max-width: 16ch;
  }

  .aq-single-product .aq-product-summary {
    position: static;
  }
}

@media (max-width: 767px) {
  .aq-product-masthead {
    padding-block: 7rem 3rem;
  }

  .aq-product-masthead__back {
    margin-bottom: 2rem;
  }

  .aq-product-masthead__title {
    font-size: clamp(2.7rem, 14vw, 4.5rem);
  }

  .aq-single-product .aq-product-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aq-single-product .aq-product-gallery__item.is-main {
    grid-column: 1 / -1;
    min-height: min(115vw, 560px);
  }

  .aq-single-product .aq-product-gallery__item:not(.is-main) {
    min-height: 0;
  }

  .aq-single-product .aq-product-gallery__item img {
    max-height: none;
    padding: 14px;
  }

  .aq-single-product .aq-product-summary {
    border-radius: 14px;
  }

  .aq-single-product .aq-product-specs dd {
    max-width: none;
  }
}

/* ── Single product editorial showcase ─────────────────── */
.aq-single-product {
  background: #fff;
}

body.single-product .site-header,
body.single-product .site-header.is-scrolled,
body.single-product .site-header.is-dark,
body:has([data-barba-namespace="product"]) .site-header,
body:has([data-barba-namespace="product"]) .site-header.is-scrolled,
body:has([data-barba-namespace="product"]) .site-header.is-dark {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid #dce7ec;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}

body.single-product .site-header__logo img,
body.single-product .site-header.is-scrolled .site-header__logo img,
body.single-product .site-header.is-dark .site-header__logo img,
body:has([data-barba-namespace="product"]) .site-header__logo img,
body:has([data-barba-namespace="product"]) .site-header.is-scrolled .site-header__logo img,
body:has([data-barba-namespace="product"]) .site-header.is-dark .site-header__logo img {
  filter: brightness(0) saturate(100%) invert(63%) sepia(87%) saturate(410%) hue-rotate(156deg) brightness(95%) contrast(88%);
}

body.single-product .site-header .menu-toggle,
body.single-product .site-header.is-scrolled .menu-toggle,
body:has([data-barba-namespace="product"]) .site-header .menu-toggle,
body:has([data-barba-namespace="product"]) .site-header.is-scrolled .menu-toggle {
  color: #000;
}

body.single-product .site-header .menu-toggle span,
body:has([data-barba-namespace="product"]) .site-header .menu-toggle span {
  color: #000;
  background: #000;
}

body.single-product .site-header .header-actions__location,
body.single-product .site-header.is-scrolled .header-actions__location,
body:has([data-barba-namespace="product"]) .site-header .header-actions__location,
body:has([data-barba-namespace="product"]) .site-header.is-scrolled .header-actions__location {
  color: #041f2f;
}

.aq-product-showcase {
  padding-block: clamp(6.5rem, 9vw, 8.5rem) clamp(3rem, 6vw, 5.5rem);
  background: #fff;
  color: #041f2f;
}

.aq-product-showcase__inner {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
}

.aq-product-showcase__nav {
  display: grid;
  gap: 0.65rem;
  width: max-content;
  max-width: 100%;
}

.aq-product-breadcrumb {
  margin: 0;
}

.aq-product-breadcrumb span {
  max-width: min(44ch, 80vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aq-product-showcase__back {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 9px;
  color: #607681;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.aq-product-showcase__back:hover {
  color: #1790d0;
  transform: translateX(-4px);
}

.aq-product-showcase__grid {
  display: grid;
  min-height: clamp(560px, 68vh, 760px);
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2.5rem, 8vw, 8rem);
  align-items: center;
}

.aq-product-showcase__media {
  display: grid;
  gap: 18px;
  align-self: stretch;
}

.aq-product-showcase__figure {
  display: grid;
  min-height: clamp(500px, 64vh, 780px);
  margin: 0;
  place-items: center;
  background: #fff;
}

.aq-product-showcase__figure img {
  display: block;
  width: min(100%, 720px);
  height: min(68vh, 740px);
  object-fit: contain;
  object-position: center;
}

/* Desktop lens zoom: a movable square shows a localized close-up. */
.aq-product-showcase__figure.has-lens-zoom {
  overflow: hidden;
  cursor: crosshair;
}

.aq-product-zoom-lens {
  position: absolute;
  z-index: 3;
  width: clamp(210px, 17vw, 270px);
  aspect-ratio: 1;
  border: 2px solid #1790d0;
  border-radius: 10px;
  background-color: #fff;
  background-repeat: no-repeat;
  box-shadow: 0 18px 45px rgba(4, 31, 47, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96);
  transition: opacity 120ms ease, transform 120ms ease;
}

.aq-product-zoom-lens.is-visible {
  opacity: 1;
  transform: scale(1);
}

.aq-product-showcase__thumbs {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.aq-product-showcase__thumbs a,
.aq-product-showcase__thumb {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid #dce7ec;
  border-radius: 8px;
  background: #fff;
  padding: 0;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.aq-product-showcase__thumb:hover,
.aq-product-showcase__thumb:focus-visible,
.aq-product-showcase__thumb.is-active {
  border-color: #1790d0;
  box-shadow: 0 8px 22px rgba(4, 31, 47, 0.1);
  outline: 0;
}

.aq-product-showcase__thumb.is-active {
  transform: none;
}

.aq-product-showcase__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-sizing: border-box;
  padding: 14px;
}

.aq-product-showcase__summary {
  display: grid;
  min-width: 0;
  max-width: 620px;
  gap: 24px;
  justify-self: start;
}

.aq-product-showcase__kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  color: #041f2f;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.aq-product-showcase__kicker a {
  color: inherit;
}

.aq-product-showcase__kicker span::before {
  content: '·';
  margin-right: 8px;
  color: #8aa0aa;
}

.aq-product-showcase__code {
  max-width: 100%;
  margin: 0;
  color: #041f2f;
  font-size: clamp(3.8rem, 7.4vw, 7.4rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.aq-product-showcase__name {
  max-width: 34ch;
  margin: 0;
  color: #041f2f;
  font-size: clamp(1.45rem, 2.2vw, 2.3rem);
  font-weight: 450;
  line-height: 1.32;
}

.aq-product-showcase__excerpt {
  max-width: 44rem;
  margin: 0;
  color: #263f4b;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.55;
}

.aq-product-showcase__meta {
  display: grid;
  gap: 0;
  margin: clamp(0.5rem, 2vw, 1.5rem) 0 0;
  border-top: 1px solid #dce7ec;
}

.aq-product-showcase__meta div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  padding-block: 15px;
  border-bottom: 1px solid #dce7ec;
}

.aq-product-showcase__meta dt {
  color: #78909b;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aq-product-showcase__meta dd {
  margin: 0;
  color: #041f2f;
  font-size: 0.95rem;
  line-height: 1.45;
}

.aq-product-showcase__downloads {
  display: grid;
  gap: 10px;
  margin-top: clamp(0.5rem, 2vw, 1.25rem);
}

.aq-product-showcase__download {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid #dce7ec;
  border-radius: 999px;
  padding: 0 18px 0 22px;
  background: #f8fbfc;
  color: #041f2f;
  font-size: 0.9rem;
  font-weight: 750;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.aq-product-showcase__download:hover {
  border-color: #1790d0;
  background: #1790d0;
  color: #fff;
}

.aq-product-showcase__download svg {
  flex: 0 0 auto;
}

.aq-product-panels {
  padding-block: clamp(3rem, 7vw, 7rem);
  background: #fff;
}

.aq-product-panels__list {
  border-top: 1.5px solid #041f2f;
}

.aq-product-panel {
  border-bottom: 1.5px solid #041f2f;
}

.aq-product-panel summary {
  display: grid;
  min-height: clamp(92px, 10vw, 136px);
  grid-template-columns: minmax(0, 1fr) 56px;
  align-items: center;
  gap: 24px;
  color: #041f2f;
  cursor: pointer;
  list-style: none;
}

.aq-product-panel summary::-webkit-details-marker {
  display: none;
}

.aq-product-panel summary span {
  font-size: clamp(2rem, 4vw, 4.15rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.aq-product-panel summary i {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  border: 1px solid #041f2f;
  border-radius: 50%;
}

.aq-product-panel summary i::before,
.aq-product-panel summary i::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #041f2f;
  transform: translate(-50%, -50%);
}

.aq-product-panel summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.aq-product-panel[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.aq-product-panel__content {
  width: 100%;
  max-width: none;
  padding: 0 0 clamp(2rem, 4vw, 3.25rem);
}

.aq-product-specs--panel {
  margin: 0;
  border-top: 0;
}

.aq-single-product .aq-product-specs--panel div {
  display: grid;
  grid-template-columns: minmax(180px, 0.22fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 3rem);
  padding-block: 18px;
  border-bottom: 1px solid #dce7ec;
}

.aq-product-specs--panel dt {
  color: #607681;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aq-single-product .aq-product-specs--panel dd {
  max-width: none;
  margin: 0;
  color: #041f2f;
  font-size: 1rem;
  line-height: 1.55;
  text-align: left;
}

.aq-product-panel__entry {
  margin-top: 28px;
  color: #263f4b;
}

.aq-product-panel .aq-product-downloads__grid {
  width: 100%;
  max-width: none;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.aq-product-panel .aq-download-btn {
  min-height: 58px;
  justify-content: space-between;
  border-color: #dce7ec;
  border-radius: 999px;
  background: #f8fbfc;
}

.aq-product-panel .aq-download-btn span {
  order: 1;
}

.aq-product-panel .aq-download-btn svg {
  order: 2;
}

@media (max-width: 1023px) {
  .aq-product-showcase__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .aq-product-showcase__figure {
    min-height: min(82vw, 620px);
  }

  .aq-product-showcase__figure img {
    height: min(70vw, 620px);
  }

  .aq-product-showcase__summary {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .aq-product-showcase {
    padding-block: 6rem 3rem;
  }

  .aq-product-showcase__grid {
    min-height: 0;
  }

  .aq-product-showcase__figure {
    min-height: 78vw;
  }

  .aq-product-showcase__figure img {
    height: 72vw;
  }

  .aq-product-showcase__code {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .aq-product-showcase__meta div,
  .aq-single-product .aq-product-specs--panel div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .aq-product-panel summary {
    min-height: 86px;
    grid-template-columns: minmax(0, 1fr) 42px;
  }

  .aq-product-panel summary span {
    font-size: clamp(1.7rem, 9vw, 2.7rem);
  }

  .aq-product-panel summary i {
    width: 38px;
    height: 38px;
  }
}

/* Single product uses the global content width, but its hero needs a tighter
   internal grid so image, specs and downloads read as one composition. */
.aq-single-product .aq-product-showcase__inner {
  max-width: min(100%, 1360px);
  margin-inline: auto;
}

.aq-single-product .aq-product-showcase__grid {
  min-height: clamp(520px, 58vh, 700px);
  grid-template-columns: minmax(0, 7fr) minmax(360px, 4fr);
  gap: clamp(2rem, 4.6vw, 5rem);
}

.aq-single-product .aq-product-showcase__figure {
  min-height: clamp(460px, 56vh, 680px);
}

.aq-single-product .aq-product-showcase__figure img {
  width: min(100%, 620px);
  height: min(58vh, 650px);
}

.aq-single-product .aq-product-showcase__summary {
  max-width: 500px;
}

.aq-single-product .aq-product-showcase__code {
  font-size: clamp(3.5rem, 6.2vw, 6.2rem);
}

.aq-single-product .aq-product-showcase__figure--compact-composite {
  min-height: clamp(390px, 46vh, 560px);
  overflow: hidden;
}

.aq-single-product .aq-product-showcase__figure--compact-composite img,
.aq-single-product .aq-product-showcase__figure img[src*="33035-AQ4000-DUCHA"] {
  width: min(100%, 620px);
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1023px) {
  .aq-single-product .aq-product-showcase__inner {
    max-width: none;
  }

  .aq-single-product .aq-product-showcase__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .aq-single-product .aq-product-showcase__summary {
    max-width: none;
  }
}

/* ── Product availability map ──────────────────────────── */
.aq-availability {
  padding-block: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid #dce7ec;
  background: #fff;
}

.aq-availability__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.aq-availability__head h2 {
  max-width: 13ch;
  margin: 0;
  color: #041f2f;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.aq-availability__head > p {
  margin: 0;
  color: #526b78;
  font-size: 1rem;
  line-height: 1.7;
}

.aq-availability__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid #dce7ec;
  border-radius: 18px;
  background: #f4f8fa;
  box-shadow: none;
}

.aq-availability__stores {
  max-height: 650px;
  overflow-y: auto;
  padding: 12px;
  background: #fff;
}

.aq-store-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 18px 16px;
  outline: none;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.aq-store-card + .aq-store-card {
  margin-top: 6px;
}

.aq-store-card:hover,
.aq-store-card:focus-visible,
.aq-store-card.is-active {
  border-color: #b9dce9;
  background: #eef9fd;
}

.aq-store-card.is-active {
  transform: translateX(3px);
}

.aq-store-card__number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #041f2f;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
}

.aq-store-card h3 {
  margin: 0;
  color: #041f2f;
  font-size: 1rem;
  font-weight: 750;
}

.aq-store-card p {
  margin: 6px 0 0;
  color: #526b78;
  font-size: 0.84rem;
  line-height: 1.5;
}

.aq-store-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 12px;
}

.aq-store-card__actions a {
  color: #087ba8;
  font-size: 0.72rem;
  font-weight: 800;
}

.aq-availability__map {
  min-height: 560px;
  background: #edf1f2;
  z-index: 1;
}

.aq-availability__map .leaflet-tile-pane {
  filter: grayscale(1) saturate(0.25) contrast(0.92) brightness(1.04);
}

.aq-availability__map .leaflet-control-zoom {
  overflow: hidden;
  border: 1px solid rgba(4, 31, 47, 0.1);
  border-radius: 10px;
  box-shadow: none;
}

.aq-availability__map .leaflet-control-zoom a {
  width: 34px;
  height: 34px;
  border: 0;
  background: rgba(255, 255, 255, 0.94);
  color: #526b78;
  font: 400 19px/34px sans-serif;
}

.aq-availability__map .leaflet-control-zoom a + a {
  border-top: 1px solid rgba(4, 31, 47, 0.08);
}

.aq-availability__map .leaflet-control-zoom a:hover {
  background: #fff;
  color: #041f2f;
}

.aq-availability__map .leaflet-control-attribution {
  border-radius: 6px 0 0;
  background: rgba(255, 255, 255, 0.72);
  color: #7b8d96;
  font-size: 8px;
  backdrop-filter: blur(6px);
}

.aq-availability__map .leaflet-control-attribution a {
  color: #607681;
}

.aq-map-marker-wrap {
  background: transparent;
  border: 0;
}

.aq-map-marker {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #1790D0;
  box-shadow: 0 0 0 1px rgba(4, 31, 47, 0.12);
  transition: transform 160ms ease, background 160ms ease;
}

.aq-map-marker-wrap:hover .aq-map-marker {
  background: #041f2f;
  transform: scale(1.18);
}

.aq-network-map .leaflet-marker-icon,
.aq-availability__map .leaflet-marker-icon {
  object-fit: contain;
}

.aq-availability .leaflet-popup-content-wrapper {
  border: 1px solid rgba(4, 31, 47, 0.08);
  border-radius: 8px;
  box-shadow: none;
}

.aq-availability .leaflet-popup-content {
  color: #526b78;
  line-height: 1.5;
}

.aq-availability .leaflet-popup-content strong {
  color: #041f2f;
}

@media (max-width: 900px) {
  .aq-availability__head,
  .aq-availability__layout {
    grid-template-columns: 1fr;
  }

  .aq-availability__stores {
    display: grid;
    grid-auto-columns: minmax(280px, 78vw);
    grid-auto-flow: column;
    max-height: none;
    overflow-x: auto;
  }

  .aq-store-card + .aq-store-card {
    margin-top: 0;
  }

  .aq-availability__map {
    min-height: 460px;
  }
}

@media (max-width: 767px) {
  .aq-availability__layout {
    min-height: 0;
    border-radius: 14px;
  }

  .aq-availability__map {
    min-height: 390px;
  }
}

/* ── Commercial network directory ──────────────────────── */
.aq-network-page {
  background: #f4f8fa;
  color: #041f2f;
}

.aq-network-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(8rem, 12vw, 11rem) clamp(3.5rem, 6vw, 5.5rem);
  background: #041f2f;
  color: #fff;
}

.aq-network-hero::after {
  content: '';
  position: absolute;
  right: -15vw;
  bottom: -45vw;
  width: min(72vw, 980px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.aq-network-hero__inner {
  position: relative;
  z-index: 1;
}

.aq-network-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
}

.aq-network-hero h1 {
  max-width: 11ch;
  margin: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.aq-network-hero__grid > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}

.aq-network-directory {
  padding-block: clamp(2rem, 5vw, 4.5rem) clamp(4rem, 8vw, 7rem);
}

.aq-network-filters {
  display: grid;
  grid-template-columns: minmax(250px, 1.4fr) minmax(190px, 0.8fr) minmax(190px, 0.8fr) auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 30px;
  border: 1px solid #d7e3e8;
  border-radius: 16px;
  padding: 18px;
  background: #fff;
}

.aq-network-filter {
  display: grid;
  gap: 7px;
}

.aq-network-filter > span {
  color: #607681;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.aq-network-filter input,
.aq-network-filter select {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cbdce4;
  border-radius: 9px;
  padding: 0 14px;
  background: #f8fbfc;
  color: #041f2f;
  font: inherit;
  outline: none;
}

.aq-network-filter input:focus,
.aq-network-filter select:focus {
  border-color: #0991c9;
  background: #fff;
}

.aq-network-filters__clear {
  min-height: 50px;
  border: 1px solid #cbdce4;
  border-radius: 9px;
  padding: 0 20px;
  background: #fff;
  color: #526b78;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.aq-network-directory__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.aq-network-directory__eyebrow {
  margin: 0 0 4px;
  color: #0991c9;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.aq-network-directory__count {
  margin: 0;
  color: #526b78;
  font-size: 0.9rem;
}

.aq-network-directory__count strong {
  color: #041f2f;
  font-size: 1.15rem;
}

.aq-network-geolocate {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #087ba8;
  font-size: 0.74rem;
  font-weight: 800;
  cursor: pointer;
}

.aq-network-geolocate.is-loading {
  opacity: 0.45;
  pointer-events: none;
}

.aq-network-geolocate.is-active {
  color: #041f2f;
}

.aq-network-directory__layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.42fr) minmax(0, 1fr);
  height: min(74vh, 760px);
  min-height: 600px;
  overflow: hidden;
  border: 1px solid #d7e3e8;
  border-radius: 16px;
  background: #fff;
}

.aq-network-list {
  overflow-y: auto;
  border-right: 1px solid #d7e3e8;
  padding: 10px;
}

.aq-network-store {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 17px 14px;
  outline: none;
  cursor: pointer;
}

.aq-network-store + .aq-network-store {
  border-top-color: #e5ecef;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.aq-network-store:hover,
.aq-network-store:focus-visible,
.aq-network-store.is-active {
  border-color: #b8dce9;
  border-radius: 10px;
  background: #eef9fd;
}

.aq-network-store[hidden] {
  display: none;
}

.aq-network-store__number {
  padding-top: 2px;
  color: #8a9ca5;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.aq-network-store__zone {
  margin: 0 0 5px;
  color: #0991c9;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.aq-network-store__image {
  width: 100%;
  aspect-ratio: 3 / 1.65;
  margin-bottom: 13px;
  overflow: hidden;
  border: 1px solid #dce7ec;
  border-radius: 8px;
  background: #edf2f4;
}

.aq-network-store__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aq-network-store h2 {
  margin: 0;
  color: #041f2f;
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.25;
}

.aq-network-store__address {
  margin: 6px 0 0;
  color: #607681;
  font-size: 0.8rem;
  line-height: 1.45;
}

.aq-network-store__distance {
  margin: 8px 0 0;
  color: #087ba8;
  font-size: 0.72rem;
  font-weight: 800;
}

.aq-network-store__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 13px;
  margin-top: 10px;
}

.aq-network-store__actions a {
  color: #087ba8;
  font-size: 0.68rem;
  font-weight: 800;
}

.aq-network-empty {
  margin: 0;
  padding: 40px 20px;
  color: #607681;
  text-align: center;
}

.aq-network-map {
  min-height: 600px;
  background: #edf1f2;
  z-index: 1;
}

.aq-network-map .leaflet-tile-pane {
  filter: grayscale(1) saturate(0.25) contrast(0.92) brightness(1.04);
}

.aq-network-map .leaflet-control-zoom {
  overflow: hidden;
  border: 1px solid rgba(4, 31, 47, 0.1);
  border-radius: 10px;
  box-shadow: none;
}

.aq-network-map .leaflet-control-zoom a {
  width: 34px;
  height: 34px;
  border: 0;
  background: rgba(255, 255, 255, 0.94);
  color: #526b78;
  font: 400 19px/34px sans-serif;
}

.aq-network-map .leaflet-control-attribution {
  background: rgba(255, 255, 255, 0.72);
  color: #7b8d96;
  font-size: 8px;
}

.aq-user-marker-wrap {
  background: transparent;
  border: 0;
}

.aq-user-marker {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(9, 145, 201, 0.2);
}

.aq-user-marker::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(9, 145, 201, 0.35);
  border-radius: 50%;
}

.aq-user-marker i {
  display: block;
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #0991c9;
}

@media (max-width: 1023px) {
  .aq-network-hero__grid {
    grid-template-columns: 1fr;
  }

  .aq-network-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aq-network-directory__layout {
    grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .aq-network-hero {
    padding-block: 7rem 3rem;
  }

  .aq-network-hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .aq-network-filters {
    grid-template-columns: 1fr;
  }

  .aq-network-directory__head {
    align-items: flex-start;
  }

  .aq-network-directory__layout {
    display: flex;
    height: auto;
    min-height: 0;
    flex-direction: column-reverse;
  }

  .aq-network-list {
    max-height: 560px;
    border-top: 1px solid #d7e3e8;
    border-right: 0;
  }

  .aq-network-map {
    min-height: 430px;
  }
}

/* Full-screen commercial network */
.page-template-red-comercial .site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid #d7e3e8;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}

.page-template-red-comercial .site-header::before {
  opacity: 0;
}

.page-template-red-comercial .site-header .menu-toggle,
.page-template-red-comercial .site-header .menu-toggle::after,
.page-template-red-comercial .site-header .header-actions__location {
  color: #041f2f;
  text-shadow: none;
}

.page-template-red-comercial .site-header__logo img {
  filter: none;
}

.aq-network-page {
  height: 100vh;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
}

.aq-network-directory {
  height: 100%;
  padding: 76px 0 0;
}

.aq-network-directory__shell {
  display: grid;
  height: 100%;
  grid-template-columns: clamp(390px, 31vw, 510px) minmax(0, 1fr);
  overflow: hidden;
  background: #fff;
}

.aq-network-sidebar {
  display: grid;
  min-height: 0;
  grid-template-rows: auto auto auto minmax(0, 1fr);
  border-right: 1px solid #d7e3e8;
  background: rgba(255, 255, 255, 0.98);
}

.aq-network-sidebar__title {
  padding: 24px 26px 18px;
}

.aq-network-sidebar__title .aq-overline {
  margin: 0 0 7px;
  color: #1790d0;
}

.aq-network-sidebar__title h1 {
  margin: 0;
  color: #041f2f;
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 3.2vw, 3.8rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.aq-network-sidebar .aq-network-filters {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0 26px 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.aq-network-sidebar .aq-network-filter--search {
  grid-column: 1 / -1;
}

.aq-network-sidebar .aq-network-filter input,
.aq-network-sidebar .aq-network-filter select,
.aq-network-sidebar .aq-network-filters__clear {
  min-height: 44px;
  border-radius: 7px;
}

.aq-network-sidebar .aq-network-filters__clear {
  grid-column: 1 / -1;
  min-height: 34px;
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: #087ba8;
}

.aq-network-sidebar .aq-network-directory__head {
  margin: 0;
  padding: 14px 26px;
  border-top: 1px solid #e1e9ec;
  border-bottom: 1px solid #e1e9ec;
}

.aq-network-sidebar .aq-network-directory__eyebrow {
  display: none;
}

.aq-network-sidebar .aq-network-list {
  min-height: 0;
  padding: 8px 12px 24px;
  border: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.aq-network-sidebar .aq-network-store {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  padding: 15px 12px;
}

.aq-network-sidebar .aq-network-store__image {
  aspect-ratio: 3 / 1.25;
}

.aq-network-directory__shell > .aq-network-map {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
}

@media (max-width: 900px) {
  .aq-network-page {
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }

  .aq-network-directory {
    height: auto;
    padding-top: 72px;
  }

  .aq-network-directory__shell {
    display: flex;
    height: auto;
    flex-direction: column-reverse;
    overflow: visible;
  }

  .aq-network-sidebar {
    display: block;
    border-top: 1px solid #d7e3e8;
    border-right: 0;
  }

  .aq-network-directory__shell > .aq-network-map {
    height: 58svh;
    min-height: 480px;
  }

  .aq-network-sidebar .aq-network-list {
    max-height: 620px;
  }
}

@media (max-width: 560px) {
  .aq-network-directory__shell > .aq-network-map {
    height: 54svh;
    min-height: 400px;
  }

  .aq-network-sidebar__title,
  .aq-network-sidebar .aq-network-directory__head {
    padding-inline: 20px;
  }

  .aq-network-sidebar .aq-network-filters {
    grid-template-columns: 1fr;
    padding-inline: 20px;
  }

  .aq-network-sidebar .aq-network-filter--search,
  .aq-network-sidebar .aq-network-filters__clear {
    grid-column: auto;
  }
}

/* ── Company page ──────────────────────────────────────── */
.aq-company {
  background: #f3f1ed;
  color: #101718;
}

.aq-company-story {
  position: relative;
  min-height: calc(var(--aq-company-scenes, 3) * 100vh);
  background: #07151c;
  color: #fff;
}

.aq-company-story__sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.aq-company-story__media,
.aq-company-story__image,
.aq-company-story__shade,
.aq-company-story__content,
.aq-company-story__scene {
  position: absolute;
  inset: 0;
}

.aq-company-story__image {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 650ms ease, visibility 650ms ease;
}

.aq-company-story__image.is-active {
  opacity: 1;
  visibility: visible;
}

.aq-company-story__image img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.025);
}

.aq-company-story__shade {
  z-index: 1;
  background: linear-gradient(180deg, rgba(2, 13, 18, 0.28), rgba(2, 13, 18, 0.52));
}

.aq-company-story__content {
  z-index: 2;
}

.aq-company-story__scene {
  display: grid;
  place-content: center;
  padding: 10vw;
  text-align: center;
  opacity: 0;
  visibility: hidden;
}

.aq-company-story__scene.is-active {
  opacity: 1;
  visibility: visible;
}

.aq-company-story__scene p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.aq-company-story__scene h1,
.aq-company-story__scene h2 {
  max-width: 18ch;
  margin: 0 auto;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7.5vw, 8rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.aq-company-story__scene h2 {
  max-width: 20ch;
  font-size: clamp(2.6rem, 6vw, 6.4rem);
}

.aq-company-story__progress {
  position: absolute;
  z-index: 3;
  right: 7vw;
  bottom: 34px;
  left: 7vw;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.aq-company-story__nav {
  position: absolute;
  z-index: 4;
  bottom: 58px;
  left: 50%;
  display: flex;
  max-width: calc(100vw - 32px);
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 7px;
  background: rgba(238, 235, 220, 0.72);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  transform: translateX(-50%);
}

.aq-company-story__nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 999px;
  padding: 0 20px;
  color: #101718;
  font-size: 0.82rem;
  font-weight: 650;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}

.aq-company-story__nav a:first-child,
.aq-company-story__nav a:hover {
  background: #fff;
  color: #041f2f;
}

.aq-company-story__progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
}

.aq-company-intro {
  padding-block: clamp(5rem, 11vw, 10rem);
  background: #f3f1ed;
}

.aq-company-intro__grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: start;
}

.aq-company-intro__label {
  margin: 12px 0 0;
  color: #1790d0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.aq-company-intro h2 {
  max-width: 19ch;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.8vw, 6.4rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.aq-company-video .h-history__media {
  position: relative;
  display: block;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  background: #07151c;
}

.aq-company-video .h-history__iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.aq-company-video .h-history__video-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 42%, rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.aq-company-video .h-history__sound {
  position: absolute;
  right: clamp(20px, 3vw, 54px);
  bottom: clamp(20px, 3vw, 46px);
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.16);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.aq-company-video .h-history__sound-icon {
  width: 22px;
  height: 22px;
}

.aq-company-video .h-history__sound-icon--on,
.aq-company-video .h-history__media.has-sound .h-history__sound-icon--off {
  display: none;
}

.aq-company-video .h-history__media.has-sound .h-history__sound-icon--on {
  display: block;
}

.aq-company-editorial {
  padding-block: clamp(6rem, 12vw, 11rem) clamp(5rem, 10vw, 10rem);
}

.aq-company-feature,
.aq-company-values {
  scroll-margin-top: 110px;
}

.aq-assistance-benefits {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid #cbd2d3;
}

.aq-assistance-benefits > div {
  display: grid;
  grid-template-columns: minmax(100px, 0.3fr) minmax(0, 1fr);
  gap: 20px;
  padding-block: 20px;
  border-bottom: 1px solid #cbd2d3;
}

.aq-assistance-benefits h3,
.aq-assistance-benefits p {
  margin: 0;
}

.aq-assistance-benefits h3 {
  color: #1790d0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.aq-assistance-benefits p {
  color: #485357;
  font-size: 0.9rem;
  line-height: 1.65;
}

.aq-assistance-contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
  padding-top: clamp(6rem, 12vw, 11rem);
  scroll-margin-top: 110px;
}

.aq-assistance-contact__intro h2 {
  max-width: 18ch;
  margin: 12px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.6vw, 4rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.aq-contact-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 28px;
}

.aq-contact-form__field {
  display: grid;
  gap: 8px;
}

.aq-contact-form__field--wide,
.aq-contact-form > button {
  grid-column: 1 / -1;
}

.aq-contact-form label {
  color: #566165;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aq-contact-form input,
.aq-contact-form textarea {
  width: 100%;
  padding: 11px 0 14px;
  border: 0;
  border-bottom: 1px solid #aeb8ba;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #101718;
  transition: border-color 180ms ease;
}

.aq-contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.aq-contact-form input:focus,
.aq-contact-form textarea:focus {
  border-color: #1790d0;
}

.aq-contact-form > button {
  justify-self: start;
  min-width: 180px;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid #101718;
  border-radius: 999px;
  background: transparent;
  color: #101718;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.aq-contact-form > button:hover {
  background: #101718;
  color: #fff;
}

.aq-contact-form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.aq-contact-status {
  max-width: none;
  margin: 0 0 28px;
  padding: 14px 18px;
  border-left: 3px solid #1790d0;
  background: rgba(23, 144, 208, 0.08);
  font-size: 0.88rem;
}

.aq-contact-status--error {
  border-color: #a9433a;
  background: rgba(169, 67, 58, 0.08);
}

@media (max-width: 560px) {
  .aq-assistance-benefits > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .aq-contact-form {
    grid-template-columns: 1fr;
  }

  .aq-contact-form__field--wide,
  .aq-contact-form > button {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .aq-assistance-contact {
    grid-template-columns: 1fr;
  }

  .aq-assistance-contact__intro h2 {
    max-width: 16ch;
  }
}

.aq-company-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.78fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.aq-company-feature + .aq-company-feature {
  margin-top: clamp(6rem, 12vw, 12rem);
}

.aq-company-feature--reverse figure {
  order: 2;
}

.aq-company-feature figure {
  aspect-ratio: 1.45 / 1;
  margin: 0;
  overflow: hidden;
  background: #e7e3de;
}

.aq-company-feature figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(.22,1,.36,1);
}

.aq-company-feature:hover figure img {
  transform: scale(1.025);
}

.aq-company-feature__copy h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.aq-company-feature__copy > p:not(.aq-overline) {
  max-width: 51ch;
  margin: 24px 0 0;
  color: #56666c;
  font-size: 1rem;
  line-height: 1.75;
}

.aq-company-feature__copy a {
  display: inline-flex;
  margin-top: 28px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  color: #0a6f99;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aq-company-values {
  padding-block: clamp(5rem, 9vw, 8rem);
  background: #061f2c;
  color: #fff;
}

.aq-company-values > .container {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.aq-company-values .aq-overline {
  color: #5bc0e8;
}

.aq-company-values__intro h2 {
  max-width: 11ch;
  margin: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.8vw, 5rem);
  font-weight: 300;
  line-height: 1;
}

.aq-company-values__intro > p:last-child {
  max-width: 42ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.aq-company-values__list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 0.65fr) minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.aq-company-values__list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.aq-company-values__list span {
  color: #5bc0e8;
  font-size: 0.68rem;
  font-weight: 800;
}

.aq-company-values__list h3 {
  margin: 0;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 650;
}

.aq-company-values__list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  line-height: 1.55;
}

.aq-company-closing {
  position: relative;
  min-height: min(78vh, 820px);
  overflow: hidden;
  color: #fff;
}

.aq-company-closing > img,
.aq-company-closing__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.aq-company-closing > img {
  object-fit: cover;
}

.aq-company-closing__shade {
  background: linear-gradient(180deg, rgba(3, 16, 22, 0.18), rgba(3, 16, 22, 0.7));
}

.aq-company-closing__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: min(78vh, 820px);
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(3rem, 7vw, 6rem);
}

.aq-company-closing__content p {
  margin: 0 0 14px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.aq-company-closing__content h2 {
  max-width: 14ch;
  margin: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 6.6rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

@media (max-width: 900px) {
  .aq-company-intro__grid,
  .aq-company-feature,
  .aq-company-values > .container {
    grid-template-columns: 1fr;
  }

  .aq-company-feature--reverse figure {
    order: 0;
  }
}

@media (max-width: 767px) {
  .aq-company-story__scene {
    padding: 24px;
  }

  .aq-company-story__scene h1,
  .aq-company-story__scene h2 {
    font-size: clamp(2.8rem, 13vw, 4.6rem);
  }

  .aq-company-story__nav {
    right: 16px;
    bottom: 54px;
    left: 16px;
    max-width: none;
    overflow-x: auto;
    transform: none;
    scrollbar-width: none;
  }

  .aq-company-story__nav::-webkit-scrollbar {
    display: none;
  }

  .aq-company-story__nav a {
    min-height: 38px;
    padding: 0 16px;
    font-size: 0.74rem;
  }

  .aq-company-intro h2 {
    font-size: clamp(2.5rem, 11vw, 4rem);
  }

  .aq-company-feature figure {
    aspect-ratio: 1.15 / 1;
  }


  .aq-company-values__list article {
    grid-template-columns: 34px 1fr;
  }

  .aq-company-values__list p {
    grid-column: 2;
  }

  .aq-company-closing,
  .aq-company-closing__content {
    min-height: 68vh;
  }
}

/* Descargas */
.aq-downloads {
  background: #f3f1ed;
  color: #101718;
}

.aq-downloads-hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  color: #fff;
}

.aq-downloads-hero > img,
.aq-downloads-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.aq-downloads-hero > img {
  display: block;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.aq-downloads-hero__shade {
  background: linear-gradient(180deg, rgba(2, 13, 18, 0.3), rgba(2, 13, 18, 0.54));
}

.aq-downloads-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  height: 100%;
  place-content: center;
  padding: 10vw;
  text-align: center;
}

.aq-downloads-hero__content p,
.aq-downloads-heading > p,
.aq-catalogue-card__copy > p,
.aq-video-card__copy > p {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.aq-downloads-hero__content p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.aq-downloads-hero__content h1 {
  margin: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.aq-downloads-dock {
  position: fixed;
  z-index: 90;
  bottom: clamp(18px, 3vw, 34px);
  left: 50%;
  width: max-content;
  max-width: calc(100vw - 32px);
  transform: translateX(-50%);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.aq-downloads-nav {
  position: relative;
  display: flex;
  min-width: min(520px, calc(100vw - 32px));
  align-items: center;
  gap: 5px;
  padding: 7px 7px 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(222, 220, 211, 0.66);
  box-shadow: 0 12px 38px rgba(2, 16, 22, 0.13);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  transition: opacity 260ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1), visibility 260ms ease;
}

.aq-downloads-nav a {
  display: inline-flex;
  min-width: 0;
  min-height: 44px;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  color: #101718;
  font-size: 0.82rem;
  font-weight: 650;
  white-space: nowrap;
  transition: background 220ms ease, color 220ms ease;
}

.aq-downloads-nav a.is-active,
.aq-downloads-nav a:hover {
  background: #fff;
  color: #041f2f;
}

.aq-downloads-nav__close {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #101718;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.aq-downloads-nav__close:hover {
  background: #fff;
  transform: rotate(5deg);
}

.aq-downloads-nav__close span,
.aq-downloads-nav__close span::after {
  display: block;
  width: 16px;
  height: 1px;
  background: currentColor;
  transform: rotate(45deg);
}

.aq-downloads-nav__close span::after {
  content: '';
  transform: rotate(90deg);
}

.aq-downloads-dock__reopen {
  position: absolute;
  bottom: calc(-1 * clamp(18px, 3vw, 34px));
  left: 50%;
  display: flex;
  width: 68px;
  height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: rgba(222, 220, 211, 0.78);
  color: #101718;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(16px);
  transform: translate(-50%, 100%);
  transition: opacity 240ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1), visibility 240ms ease;
}

.aq-downloads-dock__reopen svg {
  width: 16px;
  height: 16px;
}

.aq-downloads-dock.is-closed .aq-downloads-nav {
  opacity: 0;
  visibility: hidden;
  transform: translateY(calc(100% + 50px));
}

.aq-downloads-dock.is-closed .aq-downloads-dock__reopen {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.aq-downloads-catalogues,
.aq-downloads-videos {
  padding: clamp(6rem, 11vw, 10rem) clamp(24px, 6vw, 96px);
  scroll-margin-top: 80px;
}

.aq-downloads-heading {
  margin-bottom: clamp(4rem, 8vw, 7rem);
  text-align: center;
}

.aq-downloads-heading > p {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  margin-bottom: 14px;
  color: #1790d0;
  text-align: center;
}

.aq-downloads-heading h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 7.2rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.aq-downloads-catalogues__grid {
  display: grid;
  max-width: 1120px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(4rem, 10vw, 9rem);
}

.aq-catalogue-card {
  text-align: center;
}

.aq-catalogue-card__cover {
  position: relative;
  display: block;
  width: min(100%, 390px);
  aspect-ratio: 0.72;
  margin: 0 auto 32px;
  overflow: hidden;
  background: #e5e2dc;
}

.aq-catalogue-card__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.aq-catalogue-card__cover:hover img {
  transform: scale(1.018);
}

.aq-catalogue-card__copy > p,
.aq-video-card__copy > p {
  margin-bottom: 10px;
  color: #6b7477;
}

.aq-catalogue-card__copy h3,
.aq-video-card__copy h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 500;
}

.aq-downloads-button {
  display: inline-flex;
  min-width: 160px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 0 24px;
  border: 1px solid #101718;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 650;
  color: #101718;
  transition: background 180ms ease, color 180ms ease;
}

.aq-downloads-button:hover {
  background: #101718;
  color: #fff;
}

.aq-downloads-videos {
  background: #071f2b;
  color: #fff;
}

.aq-downloads-heading--light > p {
  color: #62c3ea;
}

.aq-downloads-heading--light h2 {
  color: #fff;
}

.aq-downloads-videos__grid {
  display: grid;
  max-width: 1360px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
}

.aq-video-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0b2a38;
}

.aq-video-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(2, 13, 18, 0.38));
}

.aq-video-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.aq-video-card:hover .aq-video-card__media img {
  transform: scale(1.025);
}

.aq-video-card__play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: rgba(4, 23, 31, 0.28);
  color: #fff;
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
}

.aq-video-card__play svg {
  width: 23px;
  height: 23px;
  margin-left: 3px;
}

.aq-video-card__copy {
  padding-top: 24px;
}

.aq-video-card__copy > p {
  color: #62c3ea;
}

.aq-video-card__copy h3 {
  color: #fff;
}

.aq-video-card__copy h3 a {
  color: inherit;
}

@media (max-width: 767px) {
  .aq-downloads-hero {
    min-height: 600px;
  }

  .aq-downloads-dock {
    bottom: 16px;
    width: calc(100vw - 24px);
    max-width: none;
  }

  .aq-downloads-nav {
    width: 100%;
    min-width: 0;
  }

  .aq-downloads-nav a {
    padding-inline: 14px;
  }

  .aq-downloads-dock__reopen {
    bottom: -16px;
  }

  .aq-downloads-catalogues__grid,
  .aq-downloads-videos__grid {
    grid-template-columns: 1fr;
  }

  .aq-downloads-catalogues__grid {
    gap: 5rem;
  }

  .aq-catalogue-card__cover {
    width: min(86vw, 370px);
  }
}

/* Company floating section dock */
.aq-company-dock {
  position: fixed;
  z-index: 90;
  bottom: clamp(18px, 3vw, 34px);
  left: 50%;
  width: max-content;
  max-width: calc(100vw - 32px);
  transform: translateX(-50%);
}

.aq-company-dock .aq-company-story__nav {
  position: relative;
  inset: auto;
  display: flex;
  min-width: min(680px, calc(100vw - 32px));
  max-width: none;
  align-items: center;
  gap: 5px;
  padding: 7px 7px 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(222, 220, 211, 0.66);
  box-shadow: 0 12px 38px rgba(2, 16, 22, 0.13);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  transform: none;
  transition: opacity 260ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1), visibility 260ms ease;
}

.aq-company-dock .aq-company-story__nav a {
  min-width: 0;
  min-height: 44px;
  flex: 1;
  justify-content: center;
  padding: 0 24px;
}

.aq-company-dock .aq-company-story__nav a:first-child {
  background: transparent;
}

.aq-company-dock .aq-company-story__nav a.is-active,
.aq-company-dock .aq-company-story__nav a:hover {
  background: #fff;
  color: #041f2f;
}

.aq-company-nav__close {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #101718;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.aq-company-nav__close:hover {
  background: #fff;
  transform: rotate(5deg);
}

.aq-company-nav__close span,
.aq-company-nav__close span::after {
  display: block;
  width: 16px;
  height: 1px;
  background: currentColor;
  transform: rotate(45deg);
}

.aq-company-nav__close span::after {
  content: '';
  transform: rotate(90deg);
}

.aq-company-dock__reopen {
  position: absolute;
  bottom: calc(-1 * clamp(18px, 3vw, 34px));
  left: 50%;
  display: flex;
  width: 68px;
  height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: rgba(222, 220, 211, 0.78);
  color: #101718;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(16px);
  transform: translate(-50%, 100%);
  transition: opacity 240ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1), visibility 240ms ease;
}

.aq-company-dock__reopen svg {
  width: 16px;
  height: 16px;
}

.aq-company-dock.is-closed .aq-company-story__nav {
  opacity: 0;
  visibility: hidden;
  transform: translateY(calc(100% + 50px));
}

.aq-company-dock.is-closed .aq-company-dock__reopen {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

@media (max-width: 767px) {
  .aq-company-dock {
    bottom: 16px;
    width: calc(100vw - 24px);
    max-width: none;
  }

  .aq-company-dock .aq-company-story__nav {
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    min-width: 0;
    max-width: none;
    overflow: visible;
    transform: none;
  }

  .aq-company-dock .aq-company-story__nav a {
    min-height: 42px;
    padding-inline: 10px;
    font-size: 0.68rem;
  }

  .aq-company-nav__close {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .aq-company-dock__reopen {
    bottom: -16px;
  }

  .aq-company-dock.is-closed .aq-company-story__nav {
    transform: translateY(calc(100% + 50px));
  }
}

/* Home hero inspirado en experiencias editoriales tipo Gessi */
.home .site-header {
  padding-block: clamp(18px, 2vw, 32px);
  background: transparent;
  border-bottom: 0;
}

.home .site-header::before {
  background: linear-gradient(to bottom, rgba(2, 10, 14, 0.5), rgba(2, 10, 14, 0));
}

.home .site-header__inner {
  position: relative;
  max-width: none;
  min-height: 44px;
  padding-inline: clamp(22px, 3.2vw, 64px);
}

.home .site-header__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.home .site-header__logo img {
  height: clamp(34px, 3.2vw, 58px);
  filter: brightness(0) invert(1);
}

.home .primary-nav {
  margin-left: clamp(72px, 7vw, 132px);
}

.home .primary-nav__list,
.home .primary-nav ul {
  gap: clamp(22px, 2vw, 38px);
}

.home .primary-nav a,
.home .header-actions__icon,
.home .menu-toggle {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.home .menu-toggle {
  position: absolute;
  left: clamp(22px, 3.2vw, 64px);
  display: inline-grid;
  width: 42px;
  height: 32px;
}

.home .menu-toggle::after {
  content: 'MENU';
  position: absolute;
  left: calc(100% + 18px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
}

.home .menu-toggle span {
  width: 38px;
  height: 2px;
  background: currentColor;
}

.home .site-header.is-scrolled {
  padding-block: 12px;
}

.home .site-header.is-scrolled .site-header__logo img {
  filter: none;
}

.home .site-header.is-scrolled .primary-nav a,
.home .site-header.is-scrolled .header-actions__icon,
.home .site-header.is-scrolled .menu-toggle,
.home .site-header.is-scrolled .menu-toggle::after {
  color: var(--c-text);
  text-shadow: none;
}

.home .h-hero--gessi {
  height: 100svh;
  min-height: 680px;
  font-family: var(--font-sans);
  font-weight: 300;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #05171d 0%, #083747 52%, #020a0d 100%);
  isolation: isolate;
}

.home .h-hero--gessi::before,
.home .h-hero--gessi::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.home .h-hero--gessi::before {
  background:
    radial-gradient(ellipse at 50% 50%, transparent 0%, transparent 42%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.18), transparent 28%, rgba(0, 0, 0, 0.68));
}

.home .h-hero--gessi::after {
  opacity: 0.16;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.16) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255,255,255,0.12) 25%, transparent 25%);
  background-position: 0 0, 38px 0;
  background-size: 76px 76px;
  mix-blend-mode: soft-light;
}

.home .h-hero--gessi .h-hero__swiper,
.home .h-hero--gessi .h-hero__slide,
.home .h-hero--gessi .h-hero__banner-link {
  height: 100%;
}

.home .h-hero--gessi .h-hero__slide {
  position: relative;
  background: transparent;
}

/* The carousel slides overlap by design. Prevent hidden slides from
   intercepting links that belong to the visible slide. */
.home .h-hero--gessi .h-hero__slide:not(.swiper-slide-active) {
  z-index: 1;
  pointer-events: none;
}

.home .h-hero--gessi .h-hero__slide.swiper-slide-active {
  z-index: 2;
  pointer-events: auto;
}

.home .h-hero--gessi .h-hero__slide:not(.swiper-slide-active) *,
.home .h-hero--gessi .h-hero__slide:not(.swiper-slide-active) a {
  pointer-events: none !important;
}

.home .h-hero--gessi .h-hero__slide::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(ellipse at 50% 54%, transparent 0%, transparent 42%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08), transparent 28%, rgba(0, 0, 0, 0.68));
  pointer-events: none;
}

.home .h-hero--gessi .h-hero__banner-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.home .h-hero--gessi .h-hero__banner-img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  filter: saturate(0.98) contrast(1.04);
  transition: transform 8s cubic-bezier(.22,1,.36,1), filter 1.2s ease;
}

.home .h-hero--gessi .swiper-slide-active .h-hero__banner-img {
  transform: scale(1.01);
}

.home .h-hero--gessi .h-hero__overlay,
.home .h-hero--gessi .h-hero__fallback {
  inset: auto 0 clamp(78px, 9vh, 124px);
  z-index: 10;
  display: flex;
  min-height: auto;
  width: 100%;
  padding: 0 clamp(22px, 5vw, 80px);
  align-items: center;
  justify-content: flex-end;
  background: transparent;
  color: #fff;
  pointer-events: none;
}

.home .h-hero--gessi .h-hero__eyebrow {
  display: none;
}

.home .h-hero--gessi .h-hero__title {
  max-width: min(92vw, 880px);
  margin: 0 auto;
  font-family: var(--font-sans);
  font-size: clamp(2.45rem, 4.1vw, 5.35rem);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

.home .h-hero--gessi .h-hero__lead {
  max-width: min(88vw, 620px);
  margin: clamp(9px, 1vw, 14px) auto 0;
  color: #fff;
  font-size: clamp(0.82rem, 0.86vw, 1rem);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
}

.home .h-hero--gessi .h-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(14px, 1.6vw, 22px);
  pointer-events: auto;
  position: relative;
  z-index: 9;
}

.home .h-hero--gessi .h-hero__cta {
  min-width: min(42vw, 210px);
  justify-content: center;
  margin-top: 0;
  padding: 11px 26px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: clamp(0.78rem, 0.82vw, 0.94rem);
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.home .h-hero--gessi .h-hero__cta:hover {
  background: #fff;
  color: #062736;
  transform: translateY(-2px);
}

.home .h-hero--gessi .h-hero__cta--ghost {
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: transparent;
  box-shadow: none;
}

.home .h-hero--gessi .h-hero__title,
.home .h-hero--gessi .h-hero__lead,
.home .h-hero--gessi .h-hero__cta,
.home .h-hero--gessi .h-hero__cta span {
  font-family: var(--font-sans);
  font-weight: 300;
  color: #fff;
  opacity: 1;
}

.home .h-hero--gessi .h-hero__overlay .h-hero__title,
.home .h-hero--gessi .h-hero__overlay .h-hero__lead,
.home .h-hero--gessi .h-hero__overlay .h-hero__cta,
.home .h-hero--gessi .h-hero__overlay .h-hero__cta span {
  color: #fff !important;
}

.home .h-hero--gessi .h-hero__nav {
  display: none;
}

.home .h-hero--gessi .h-hero__pagination {
  left: clamp(22px, 3.2vw, 64px) !important;
  bottom: clamp(26px, 3vw, 42px);
  transform: none !important;
}

.home .h-hero--gessi .h-hero__pagination .swiper-pagination-bullet {
  width: 34px;
  height: 2px;
  background: rgba(255,255,255,0.48);
}

.home .h-hero--gessi .h-hero__pagination .swiper-pagination-bullet-active {
  width: 58px;
  background: #fff;
}

.home .h-hero__pause {
  position: absolute;
  right: clamp(22px, 3.2vw, 64px);
  bottom: clamp(24px, 3vw, 44px);
  z-index: 6;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255,255,255,0.86);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), background 0.35s ease;
}

.home .h-hero__pause:hover {
  transform: scale(1.06);
  background: rgba(255,255,255,0.12);
}

.home .h-hero__pause-icon--pause {
  width: 13px;
  height: 15px;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.home .h-hero__pause-icon--play {
  display: none;
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
}

.home .h-hero__pause.is-paused .h-hero__pause-icon--pause {
  display: none;
}

.home .h-hero__pause.is-paused .h-hero__pause-icon--play {
  display: block;
}

@media (max-width: 1023px) {
  .home .primary-nav {
    display: none;
  }

  .home .site-header__logo {
    position: static;
    transform: none;
    margin-inline: auto;
  }

  .home .header-actions {
    margin-left: auto;
  }
}

@media (max-width: 767px) {
  .home .h-hero--gessi {
    height: 100svh;
    min-height: 620px;
  }

  .home .h-hero--gessi .h-hero__banner-img {
    object-position: center;
  }

  .home .h-hero--gessi .h-hero__overlay,
  .home .h-hero--gessi .h-hero__fallback {
    bottom: 92px;
    padding-inline: 20px;
  }

  .home .h-hero--gessi .h-hero__title {
    font-size: clamp(2.25rem, 10vw, 3.65rem);
  }

  .home .h-hero--gessi .h-hero__lead {
    font-size: 0.82rem;
  }

  .home .h-hero--gessi .h-hero__cta {
    width: min(100%, 240px);
    min-width: 0;
    padding-block: 10px;
  }

  .home .h-hero--gessi .h-hero__pagination {
    display: none;
  }

  .home .h-hero__pause {
    right: 20px;
    bottom: 24px;
    width: 52px;
    height: 52px;
  }
}

/* Header y menu lateral estilo editorial */
.site-header .primary-nav {
  display: none;
}

.site-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: none;
  min-height: 44px;
  padding-inline: clamp(20px, 3.2vw, 64px);
}

.site-header .menu-toggle {
  position: relative;
  left: auto;
  z-index: calc(var(--z-overlay) + 2);
  display: inline-grid;
  grid-column: 1;
  grid-template-columns: 46px auto;
  gap: 18px;
  align-items: center;
  justify-self: start;
  width: auto;
  height: 44px;
  color: #fff;
}

.site-header .menu-toggle::after {
  content: none;
}

.site-header .menu-toggle span {
  grid-column: 1;
  width: 46px;
  height: 2px;
  background: currentColor;
}

.site-header .menu-toggle span:nth-child(1) {
  align-self: end;
}

.site-header .menu-toggle span:nth-child(2) {
  display: none;
}

.site-header .menu-toggle span:nth-child(3) {
  align-self: start;
}

.site-header .menu-toggle.is-open span:nth-child(1),
.site-header .menu-toggle.is-open span:nth-child(3) {
  width: 28px;
  transform: none;
}

.site-header .menu-toggle__label {
  grid-column: 2;
  grid-row: 1 / span 3;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  color: currentColor;
}

.site-header__logo {
  grid-column: 2;
  position: static;
  justify-self: center;
  transform: none;
}

.site-header__logo img {
  height: clamp(36px, 3.2vw, 58px);
}

.header-actions {
  grid-column: 3;
  justify-self: end;
}

.header-actions__location {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  color: #fff;
  font-size: clamp(0.78rem, 0.9vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
  transition: color 0.3s ease, opacity 0.3s ease;
}

.header-actions__location:hover {
  opacity: 0.72;
}

.site-header.is-scrolled .menu-toggle,
.site-header.is-scrolled .menu-toggle__label,
.site-header.is-scrolled .header-actions__location {
  color: var(--c-text);
  text-shadow: none;
}

.site-header.is-scrolled .site-header__logo img {
  filter: none;
}

.site-header .menu-toggle.is-open {
  opacity: 0;
  pointer-events: none;
}

.mobile-nav {
  inset: 0 auto 0 0;
  z-index: calc(var(--z-overlay) + 1);
  width: min(92vw, 382px);
  min-height: 100dvh;
  display: block;
  padding: 0;
  overflow: hidden;
  background: #fff;
  color: #050505;
  clip-path: none;
  transform: translateX(-101%);
  transition: transform 0.72s cubic-bezier(.22,1,.36,1), box-shadow 0.72s cubic-bezier(.22,1,.36,1);
}

.mobile-nav.is-open {
  clip-path: none;
  transform: translateX(0);
  box-shadow: 26px 0 70px rgba(0, 0, 0, 0.22);
}

.mobile-nav__close {
  display: flex;
  align-items: center;
  gap: 22px;
  width: calc(100% - 28px);
  height: 67px;
  margin-inline: 14px;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  background: transparent;
  color: #050505;
  cursor: pointer;
}

.mobile-nav__close span {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
}

.mobile-nav__close span::before,
.mobile-nav__close span::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.mobile-nav__close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-nav__close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav__close b {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0;
}

.mobile-nav__menu {
  position: relative;
  display: flex;
  min-height: calc(100dvh - 67px);
  padding: 24px 28px 40px;
  flex-direction: column;
  gap: 0;
}

.mobile-nav__menu a {
  opacity: 1;
  transform: none;
}

.mobile-nav__primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  font-family: var(--font-sans);
  font-size: clamp(1.14rem, 3.2vw, 1.42rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  color: #050505 !important;
  opacity: 1;
  transform: none;
}

.mobile-nav__primary span {
  font-size: 1.4rem;
  line-height: 1;
  color: rgba(0, 0, 0, 0.62);
}

.mobile-nav__secondary {
  display: grid;
  gap: 18px;
  margin-top: clamp(42px, 8vh, 68px);
}

.mobile-nav__secondary a,
.mobile-nav__access {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  color: #050505;
}

.mobile-nav__access {
  margin-top: 48px;
}

.mobile-nav__bottom {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 4px;
  border-radius: 4px;
  background: #c9c7c2;
}

.mobile-nav__bottom span {
  display: grid;
  place-items: center;
  min-height: 40px;
  border-radius: 4px;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
}

.mobile-nav__bottom span:first-child {
  background: #fff;
  color: #050505;
}

.mobile-nav.is-open .mobile-nav__menu a {
  opacity: 1;
  transform: none;
}

body .mobile-nav,
body .mobile-nav.is-open {
  background: #fff;
  color: #050505;
}

body .mobile-nav .mobile-nav__menu {
  gap: 0;
}

body .mobile-nav .mobile-nav__menu a.mobile-nav__primary,
body .mobile-nav.is-open .mobile-nav__menu a.mobile-nav__primary {
  min-height: 46px;
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 3.1vw, 1.36rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
  color: #050505 !important;
  opacity: 1;
  transform: none;
}

body .mobile-nav .mobile-nav__primary span {
  color: rgba(0, 0, 0, 0.58);
  font-size: 1.15rem;
}

.mobile-nav.is-mega-panel-open {
  overflow: visible;
  width: min(42vw, 300px);
}

.mobile-nav__mega-panel {
  position: absolute;
  inset: 0 auto 0 100%;
  z-index: 2;
  display: none;
  grid-template-rows: 67px minmax(0, 1fr);
  width: min(430px, calc(100vw - min(42vw, 300px)));
  min-width: min(320px, calc(58vw - 8px));
  background: #fff;
  color: #050505;
  opacity: 0;
  visibility: hidden;
  transform: translateX(24px);
  transition: opacity 0.34s cubic-bezier(.22,1,.36,1), transform 0.42s cubic-bezier(.22,1,.36,1), visibility 0.34s;
  box-shadow: 26px 0 70px rgba(0, 0, 0, 0.16);
}

.mobile-nav.is-mega-panel-open .mobile-nav__mega-panel {
  display: grid;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-nav__mega-panel[aria-hidden="true"] {
  pointer-events: none;
}

.mobile-nav__mega-title {
  display: flex;
  align-items: center;
  width: calc(100% - 28px);
  height: 67px;
  margin-inline: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  color: #050505;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mobile-nav__mega-content {
  min-height: 0;
  overflow: auto;
  padding: 22px 28px 40px;
}

body .mobile-nav__primary.is-mega-active {
  color: #1790d0 !important;
}

body .mobile-nav__primary.is-mega-active span {
  color: #1790d0;
}

.mobile-nav__menu.is-pulsing {
  animation: aq-menu-retract-return 0.42s cubic-bezier(.22,1,.36,1) both;
}

@keyframes aq-menu-retract-return {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  42% {
    opacity: 0.22;
    transform: translateX(-28px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

body .mobile-nav__mega-panel .aq-mega-menu {
  position: static;
  display: block;
  padding: 0;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

body .mobile-nav__mega-panel .aq-mega-menu__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: none;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  color: #050505;
}

body .mobile-nav__mega-panel .aq-mega-menu__intro {
  display: grid;
  gap: 9px;
  border: 0;
  padding: 0 0 20px;
}

body .mobile-nav__mega-panel .aq-mega-menu__intro span {
  color: rgba(0, 0, 0, 0.48);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

body .mobile-nav__mega-panel .aq-mega-menu__intro strong {
  max-width: none;
  color: #050505;
  font-family: var(--font-sans);
  font-size: clamp(1.38rem, 4vw, 1.72rem);
  font-weight: 400;
  line-height: 1.12;
}

body .mobile-nav__mega-panel .aq-mega-menu__intro a {
  display: inline-flex;
  min-height: 38px;
  width: fit-content;
  align-items: center;
  border-radius: 4px;
  background: #050505;
  color: #fff !important;
  padding: 0 14px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

body .mobile-nav__mega-panel .aq-mega-menu__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

body .mobile-nav__mega-panel .aq-mega-menu__col {
  padding: 16px 0 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

body .mobile-nav__mega-panel .aq-mega-menu__heading {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 11px;
  color: #050505 !important;
  font-family: var(--font-sans);
  font-size: 1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.2;
  text-transform: none !important;
}

body .mobile-nav__mega-panel .aq-mega-menu__heading span {
  min-width: 24px;
  height: 22px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.07);
  color: rgba(0, 0, 0, 0.58);
  font-size: 0.72rem;
}

body .mobile-nav__mega-panel .aq-mega-menu__col ul {
  display: grid !important;
  gap: 8px !important;
}

body .mobile-nav__mega-panel .aq-mega-menu__col li a {
  display: block;
  color: rgba(0, 0, 0, 0.62) !important;
  font-family: var(--font-sans);
  font-size: 0.92rem !important;
  font-weight: 400 !important;
  line-height: 1.25;
  letter-spacing: 0;
}

body .mobile-nav__mega-panel .aq-mega-menu__col li a:hover {
  color: #050505 !important;
}

@media (max-width: 767px) {
  .mobile-nav.is-mega-panel-open {
    width: min(44vw, 210px);
  }

  .mobile-nav__mega-panel {
    inset: 0 auto 0 100%;
    width: calc(100vw - min(44vw, 210px));
    min-width: 0;
    grid-template-rows: 67px minmax(0, 1fr);
    box-shadow: 18px 0 48px rgba(0, 0, 0, 0.14);
  }

  .mobile-nav__mega-title {
    display: flex;
  }

  .mobile-nav__mega-content {
    padding: 18px 18px 34px;
  }

  body .mobile-nav .mobile-nav__menu {
    padding-inline: 18px;
  }

  body .mobile-nav .mobile-nav__menu a.mobile-nav__primary,
  body .mobile-nav.is-open .mobile-nav__menu a.mobile-nav__primary {
    font-size: clamp(0.92rem, 4vw, 1.08rem);
  }

  body .mobile-nav__mega-panel .aq-mega-menu__intro strong {
    font-size: clamp(1.1rem, 5vw, 1.34rem);
  }

  body .mobile-nav__mega-panel .aq-mega-menu__heading {
    font-size: 0.9rem !important;
  }

body .mobile-nav__mega-panel .aq-mega-menu__col li a {
    font-size: 0.84rem !important;
  }
}

/* ── Visual mega menu panel ────────────────────────────── */
.aq-mega-menu--visual {
  position: fixed;
  top: 6px;
  left: 6px;
  right: auto;
  bottom: auto;
  z-index: 10000;
  width: min(1060px, calc(100vw - 12px));
  max-height: calc(100vh - 12px);
  padding: 0;
  background: #fff;
  border-radius: 4px;
  transform: translateY(12px);
}

.aq-mega-menu--visual .aq-mega-menu__inner {
  display: grid;
  grid-template-columns: minmax(210px, 250px) minmax(0, 1fr);
  gap: 10px;
  width: 100%;
  height: min(720px, calc(100vh - 12px));
  max-width: none;
  margin: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  box-shadow: none;
  padding: 10px;
  color: #050505;
}

.aq-mega-menu__sidebar {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  background: #fff;
  border-radius: 3px;
  padding: 18px 24px;
}

.aq-mega-menu--visual .aq-mega-menu__sidebar .aq-mega-menu__close,
.aq-mega-menu--visual .aq-mega-menu__sidebar .aq-mega-menu__back {
  flex: 0 0 auto;
}

.aq-mega-menu__close,
.aq-mega-menu__back {
  display: flex;
  align-items: center;
  width: 100%;
  border: 0;
  background: transparent;
  color: #050505;
  padding: 0;
  font-family: var(--font-sans);
  letter-spacing: 0;
  cursor: pointer;
}

.aq-mega-menu__close {
  gap: 16px;
  height: 34px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.aq-mega-menu__close span {
  font-size: 29px;
  font-weight: 200;
  line-height: 1;
}

.aq-mega-menu__back {
  gap: 10px;
  min-height: 62px;
  margin-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 18px;
  font-weight: 400;
  text-align: left;
}

.aq-mega-menu__back span {
  font-size: 22px;
  line-height: 1;
}

.aq-mega-menu__nav {
  display: grid;
  flex: 1 1 auto;
  gap: 0;
  min-height: 0;
  margin-top: 28px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.28) transparent;
}

.aq-mega-menu--visual .aq-mega-menu__nav::-webkit-scrollbar {
  width: 6px;
}

.aq-mega-menu--visual .aq-mega-menu__nav::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.28);
  border-radius: 3px;
}

.primary-nav .aq-mega-menu--visual .aq-mega-menu__nav a,
.aq-mega-menu--visual .aq-mega-menu__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  color: #050505 !important;
  font-family: var(--font-sans);
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
}

.primary-nav .aq-mega-menu--visual .aq-mega-menu__nav a::after {
  display: none;
}

.aq-mega-menu--visual .aq-mega-menu__nav .aq-mega-menu__all {
  position: sticky;
  bottom: 0;
  z-index: 1;
  min-height: 42px;
  margin-top: 8px;
  border-top: 1px solid #e7eef1;
  background: #fff;
  font-weight: 700 !important;
}

.aq-mega-menu--visual .aq-mega-menu__nav a span {
  color: rgba(0, 0, 0, 0.52);
  font-size: 18px;
}

.aq-mega-menu--visual .aq-mega-menu__main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}

.aq-mega-menu--visual .aq-mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(280px, calc((100vh - 32px) / 2));
  gap: 10px;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.aq-mega-menu--visual .aq-mega-menu__main .aq-mega-menu__grid {
  flex: 1 1 auto;
}

.primary-nav .aq-mega-menu--visual .aq-mega-card,
.aq-mega-card {
  position: relative;
  display: grid !important;
  min-height: 280px;
  overflow: hidden;
  border-radius: 3px;
  background: linear-gradient(135deg, #6f514d, #252525);
  color: #fff !important;
  text-decoration: none;
}

.aq-mega-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.38));
  pointer-events: none;
}

.aq-mega-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.96);
  transform: scale(1.01);
  transition: transform 0.7s cubic-bezier(.22,1,.36,1), filter 0.7s cubic-bezier(.22,1,.36,1);
}

.aq-mega-card:hover img {
  filter: saturate(1) contrast(1);
  transform: scale(1.045);
}

.aq-mega-card span {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 1;
  transform: translateX(-50%);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}

body .mobile-nav.is-mega-panel-open {
  width: min(86vw, 980px);
  overflow: hidden;
}

body .mobile-nav.is-mega-panel-open > .mobile-nav__close,
body .mobile-nav.is-mega-panel-open > .mobile-nav__menu {
  opacity: 0;
  pointer-events: none;
}

body .mobile-nav__mega-panel {
  inset: 0;
  width: min(86vw, 980px);
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr;
  background: #fff;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-14px);
  transition: opacity 0.34s cubic-bezier(.22,1,.36,1), transform 0.42s cubic-bezier(.22,1,.36,1), visibility 0.34s;
}

body .mobile-nav.is-mega-panel-open .mobile-nav__mega-panel {
  display: grid;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

body .mobile-nav__mega-title {
  display: none;
}

body .mobile-nav__mega-content {
  padding: 0;
  overflow: hidden;
}

body .mobile-nav__mega-panel .aq-mega-menu--visual {
  position: static;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

body .mobile-nav__mega-panel .aq-mega-menu--visual .aq-mega-menu__inner {
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
  gap: 10px;
  height: 100vh;
  padding: 6px;
}

body .mobile-nav__mega-panel .aq-mega-menu__sidebar {
  padding: 18px 24px;
}

body .mobile-nav__mega-panel .aq-mega-menu--visual .aq-mega-menu__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(260px, calc((100vh - 22px) / 2));
  gap: 10px;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

body .mobile-nav__mega-panel .aq-mega-card {
  min-height: 260px;
}

.aq-mega-menu--visual .aq-mega-menu__sidebar,
.aq-mega-menu--visual .aq-mega-card {
  transition: opacity 0.42s cubic-bezier(.22,1,.36,1), transform 0.48s cubic-bezier(.22,1,.36,1);
}

html:not(.has-gsap) .menu-item--has-mega:not(.is-mega-open) .aq-mega-menu--visual .aq-mega-menu__sidebar,
html:not(.has-gsap) .menu-item--has-mega:not(.is-mega-open) .aq-mega-menu--visual .aq-mega-card,
body .mobile-nav__mega-panel .aq-mega-menu__sidebar,
body .mobile-nav__mega-panel .aq-mega-card {
  opacity: 0;
  transform: translateY(16px);
}

html:not(.has-gsap) .menu-item--has-mega.is-mega-open .aq-mega-menu--visual .aq-mega-menu__sidebar,
html:not(.has-gsap) .menu-item--has-mega:hover .aq-mega-menu--visual .aq-mega-menu__sidebar,
html:not(.has-gsap) .menu-item--has-mega.is-mega-open .aq-mega-menu--visual .aq-mega-card,
html:not(.has-gsap) .menu-item--has-mega:hover .aq-mega-menu--visual .aq-mega-card,
body .mobile-nav.is-mega-panel-open .aq-mega-menu__sidebar,
body .mobile-nav.is-mega-panel-open .aq-mega-card {
  opacity: 1;
  transform: translateY(0);
}

body .mobile-nav.is-mega-panel-open .aq-mega-card:nth-child(1) { transition-delay: 0.05s; }
body .mobile-nav.is-mega-panel-open .aq-mega-card:nth-child(2) { transition-delay: 0.08s; }
body .mobile-nav.is-mega-panel-open .aq-mega-card:nth-child(3) { transition-delay: 0.11s; }
body .mobile-nav.is-mega-panel-open .aq-mega-card:nth-child(4) { transition-delay: 0.14s; }
body .mobile-nav.is-mega-panel-open .aq-mega-card:nth-child(n+5) { transition-delay: 0.17s; }

@media (max-width: 767px) {
  body .mobile-nav.is-mega-panel-open,
  body .mobile-nav__mega-panel {
    width: min(94vw, 520px);
  }

  .aq-mega-menu--visual .aq-mega-menu__inner,
  body .mobile-nav__mega-panel .aq-mega-menu--visual .aq-mega-menu__inner {
    grid-template-columns: minmax(124px, 34vw) minmax(0, 1fr);
    gap: 6px;
    padding: 6px;
  }

  .aq-mega-menu__sidebar,
  body .mobile-nav__mega-panel .aq-mega-menu__sidebar {
    padding: 14px 12px;
  }

  .aq-mega-menu__close {
    gap: 8px;
    font-size: 9px;
  }

  .aq-mega-menu__close span {
    font-size: 24px;
  }

  .aq-mega-menu__back {
    min-height: 54px;
    font-size: 15px;
  }

  .aq-mega-menu--visual .aq-mega-menu__nav {
    margin-top: 18px;
  }

  .primary-nav .aq-mega-menu--visual .aq-mega-menu__nav a,
  .aq-mega-menu--visual .aq-mega-menu__nav a {
    min-height: 34px;
    font-size: 11px !important;
  }

  .aq-mega-menu--visual .aq-mega-menu__grid,
  body .mobile-nav__mega-panel .aq-mega-menu--visual .aq-mega-menu__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(190px, 42vh);
    gap: 6px;
  }

  .primary-nav .aq-mega-menu--visual .aq-mega-card,
  .aq-mega-card,
  body .mobile-nav__mega-panel .aq-mega-card {
    min-height: 190px;
  }

  .aq-mega-card span {
    bottom: 20px;
    font-size: 12px;
  }
}

/* Refuerzo visual del texto del hero */
body.home .h-hero--gessi .h-hero__overlay,
body.home .h-hero--gessi .h-hero__fallback {
  text-shadow: none;
}

body.home .h-hero--gessi .h-hero__overlay::before,
body.home .h-hero--gessi .h-hero__fallback::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -34px;
  z-index: -1;
  width: min(760px, 92vw);
  height: 270px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.32) 38%, transparent 72%);
  pointer-events: none;
}

body.home .h-hero--gessi .h-hero__title,
body.home .h-hero--gessi .h-hero__lead,
body.home .h-hero--gessi .h-hero__cta,
body.home .h-hero--gessi .h-hero__cta span {
  color: #fff !important;
  opacity: 1 !important;
}

body.home .h-hero--gessi .h-hero__title {
  font-weight: 300 !important;
  text-shadow: none;
}

body.home .h-hero--gessi .h-hero__lead {
  font-weight: 300 !important;
}

body.home .h-hero--gessi .h-hero__cta {
  border-color: transparent !important;
  background: rgba(255, 255, 255, 0.16) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  text-shadow: none;
}

body.home .h-hero--gessi .h-hero__cta--ghost {
  border-color: #fff !important;
  background: transparent !important;
  box-shadow: none;
}

@media (max-width: 767px) {
  .site-header__inner {
    grid-template-columns: 1fr auto 1fr;
    padding-inline: 18px;
  }

  .site-header .menu-toggle {
    grid-template-columns: 34px;
    gap: 0;
  }

  .site-header .menu-toggle span {
    width: 34px;
  }

  .site-header .menu-toggle__label {
    display: none;
  }

  .header-actions__location {
    max-width: 112px;
    font-size: 0.7rem;
    line-height: 1.15;
    text-align: right;
  }

  .site-header__logo img {
    height: 36px;
  }
}

/* Header final global */
body .site-header,
body.home .site-header,
body .site-header.is-scrolled,
body.home .site-header.is-scrolled,
body .site-header.is-dark {
  padding-block: clamp(18px, 2vw, 30px);
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: translateY(0);
  transition: transform 0.72s cubic-bezier(.22,1,.36,1), opacity 0.42s ease, padding 0.35s ease;
  will-change: transform;
}

body .site-header.is-hidden,
body.home .site-header.is-hidden {
  opacity: 0;
  transform: translateY(-120%);
  pointer-events: none;
}

body .site-header::before,
body.home .site-header::before,
body .site-header.is-scrolled::before {
  content: none;
}

body .site-header__inner,
body.home .site-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(64px, 1fr) auto minmax(64px, 1fr);
  align-items: center;
  width: 100%;
  max-width: none;
  min-height: 52px;
  margin: 0;
  padding-inline: clamp(22px, 3.2vw, 64px);
}

body .site-header__logo,
body.home .site-header__logo {
  position: static;
  left: auto;
  top: auto;
  z-index: 2;
  grid-column: 2;
  justify-self: center;
  margin: 0;
  transform: none;
}

body .site-header__logo img,
body.home .site-header__logo img,
body .site-header.is-scrolled .site-header__logo img,
body.home .site-header.is-scrolled .site-header__logo img {
  display: block;
  height: clamp(36px, 3vw, 56px);
  width: auto;
  filter: brightness(0) invert(1);
}

body .site-header .primary-nav,
body.home .site-header .primary-nav {
  display: none;
}

body .site-header .menu-toggle,
body.home .site-header .menu-toggle {
  position: static;
  left: auto;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-column: 1;
  justify-self: start;
  width: 46px;
  height: 36px;
  padding: 0;
  gap: 7px;
  color: #fff;
  text-shadow: none;
}

body .site-header .menu-toggle::after,
body.home .site-header .menu-toggle::after,
body .site-header .menu-toggle__label,
body.home .site-header .menu-toggle__label {
  content: none;
  display: none;
}

body .site-header .menu-toggle span,
body.home .site-header .menu-toggle span {
  display: block;
  height: 2px;
  max-width: 46px;
  background: currentColor;
  transform-origin: left center;
  transition: width 0.35s cubic-bezier(.22,1,.36,1), transform 0.35s cubic-bezier(.22,1,.36,1), opacity 0.25s ease;
}

body .site-header .menu-toggle span:nth-child(1),
body.home .site-header .menu-toggle span:nth-child(1) {
  width: 46px;
}

body .site-header .menu-toggle span:nth-child(2),
body.home .site-header .menu-toggle span:nth-child(2) {
  display: block;
  width: 34px;
}

body .site-header .menu-toggle span:nth-child(3),
body.home .site-header .menu-toggle span:nth-child(3) {
  width: 22px;
}

body .site-header .menu-toggle:hover span:nth-child(1),
body.home .site-header .menu-toggle:hover span:nth-child(1) {
  width: 28px;
  transform: translateX(18px);
}

body .site-header .menu-toggle:hover span:nth-child(2),
body.home .site-header .menu-toggle:hover span:nth-child(2) {
  width: 46px;
}

body .site-header .menu-toggle:hover span:nth-child(3),
body.home .site-header .menu-toggle:hover span:nth-child(3) {
  width: 34px;
  transform: translateX(12px);
}

body .header-actions,
body.home .header-actions {
  grid-column: 3;
  justify-self: end;
  margin: 0;
}

body .header-actions__location,
body.home .header-actions__location,
body .site-header.is-scrolled .header-actions__location,
body.home .site-header.is-scrolled .header-actions__location {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 36px;
  max-width: none;
  color: #fff;
  font-size: clamp(0.72rem, 0.82vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
  text-shadow: none;
  white-space: nowrap;
}

body .site-header.is-scrolled .menu-toggle,
body.home .site-header.is-scrolled .menu-toggle {
  color: #fff;
}

body .site-header .menu-toggle.is-open {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  body .site-header,
  body.home .site-header,
  body .site-header.is-scrolled,
  body.home .site-header.is-scrolled {
    padding-block: 16px;
  }

  body .site-header__inner,
  body.home .site-header__inner {
    grid-template-columns: 44px minmax(96px, auto) minmax(92px, 1fr);
    min-height: 42px;
    padding-inline: 18px;
  }

  body .site-header__logo img,
  body.home .site-header__logo img,
  body .site-header.is-scrolled .site-header__logo img,
  body.home .site-header.is-scrolled .site-header__logo img {
    height: 34px;
  }

  body .site-header .menu-toggle,
  body.home .site-header .menu-toggle {
    width: 36px;
    height: 30px;
    gap: 6px;
  }

  body .site-header .menu-toggle span,
  body.home .site-header .menu-toggle span {
    max-width: 36px;
  }

  body .site-header .menu-toggle span:nth-child(1),
  body.home .site-header .menu-toggle span:nth-child(1) {
    width: 36px;
  }

  body .site-header .menu-toggle span:nth-child(2),
  body.home .site-header .menu-toggle span:nth-child(2) {
    width: 27px;
  }

  body .site-header .menu-toggle span:nth-child(3),
  body.home .site-header .menu-toggle span:nth-child(3) {
    width: 18px;
  }

  body .site-header .menu-toggle:hover span:nth-child(1),
  body.home .site-header .menu-toggle:hover span:nth-child(1) {
    width: 22px;
    transform: translateX(14px);
  }

  body .site-header .menu-toggle:hover span:nth-child(2),
  body.home .site-header .menu-toggle:hover span:nth-child(2) {
    width: 36px;
  }

  body .site-header .menu-toggle:hover span:nth-child(3),
  body.home .site-header .menu-toggle:hover span:nth-child(3) {
    width: 27px;
    transform: translateX(9px);
  }

  body .header-actions__location,
  body.home .header-actions__location {
    max-width: 96px;
    font-size: 0.64rem;
    line-height: 1.12;
    white-space: normal;
  }
}

/* Red comercial needs the light header over the full-screen map UI. */
body.page-template-red-comercial .site-header,
body.page-template-red-comercial .site-header.is-scrolled,
body.page-template-red-comercial .site-header.is-dark {
  z-index: calc(var(--z-modal) + 2);
  padding-block: 14px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid #d7e3e8;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}

body.page-template-red-comercial .site-header__logo img,
body.page-template-red-comercial .site-header.is-scrolled .site-header__logo img,
body.page-template-red-comercial .site-header.is-dark .site-header__logo img {
  filter: brightness(0) saturate(100%) invert(63%) sepia(87%) saturate(410%) hue-rotate(156deg) brightness(95%) contrast(88%);
}

body.page-template-red-comercial .site-header .menu-toggle,
body.page-template-red-comercial .site-header.is-scrolled .menu-toggle {
  display: flex !important;
  opacity: 1;
  visibility: visible;
  color: #000;
  pointer-events: auto;
}

body.page-template-red-comercial .site-header .header-actions__location,
body.page-template-red-comercial .site-header.is-scrolled .header-actions__location,
body.page-template-red-comercial .site-header .primary-nav a,
body.page-template-red-comercial .site-header.is-scrolled .primary-nav a {
  color: #041f2f;
}

body.page-template-red-comercial .site-header .menu-toggle span {
  color: #000;
  background: #000;
}

body:has([data-barba-namespace="red-comercial"]) .site-header .menu-toggle,
body:has([data-barba-namespace="red-comercial"]) .site-header.is-scrolled .menu-toggle {
  display: flex !important;
  opacity: 1;
  visibility: visible;
  color: #000;
  pointer-events: auto;
}

body:has([data-barba-namespace="red-comercial"]) .site-header .menu-toggle span {
  color: #000;
  background: #000;
}

body.page-template-red-comercial .mobile-nav,
body.page-template-red-comercial .mobile-nav.is-open {
  z-index: calc(var(--z-modal) + 3);
}

body.page-template-red-comercial .site-header .primary-nav a::after,
body.page-template-red-comercial .site-header.is-scrolled .primary-nav a::after {
  background: #041f2f;
}

@media (max-width: 767px) {
  body.page-template-red-comercial .site-header__inner {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  body.page-template-red-comercial .site-header__logo {
    grid-column: 2;
    justify-self: center;
  }

  body.page-template-red-comercial .header-actions {
    display: none;
  }
}
/* ── Product line editorial landing ───────────────────── */
.aq-line-page {
  background: #081f2b;
  color: #fff;
}

.aq-line-story {
  position: relative;
  min-height: 430vh;
  background: #081f2b;
  color: #fff;
}

.aq-line-story__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.aq-line-story__scene {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s cubic-bezier(.22,1,.36,1);
}

.aq-line-story__scene.is-active {
  opacity: 1;
}

.aq-line-story__image {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
}

.aq-line-story__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(8, 31, 43, 0.06), rgba(8, 31, 43, 0.46) 62%, rgba(8, 31, 43, 0.82)),
    linear-gradient(180deg, rgba(8, 31, 43, 0.54), rgba(8, 31, 43, 0.08) 44%, rgba(8, 31, 43, 0.76));
}

.aq-line-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(0.9) contrast(1.03);
}

.aq-line-story__copy {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100vw - 32px));
  margin-inline: auto;
  text-align: center;
  opacity: 0;
  transform: translateY(52px);
}

.aq-line-story__copy h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-sans);
  font-size: clamp(2.45rem, 6vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.aq-line-story__scene--title .aq-line-story__copy h2 {
  font-size: clamp(4.8rem, 16vw, 16rem);
  font-weight: 300;
  line-height: 0.82;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.aq-line-tech {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.aq-line-tech__mark {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(8, 31, 43, 0.3);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.08);
}

.aq-line-tech__mark--one {
  left: 42%;
  top: 51%;
}

.aq-line-tech__mark--two {
  left: 58%;
  top: 42%;
}

.aq-line-tech__line {
  position: absolute;
  height: 1px;
  transform-origin: left center;
  background: rgba(255, 255, 255, 0.72);
}

.aq-line-tech__line--one {
  left: 42%;
  top: 51%;
  width: 17vw;
  transform: rotate(-16deg);
}

.aq-line-tech__line--two {
  left: 58%;
  top: 42%;
  width: 15vw;
  transform: rotate(13deg);
}

.aq-line-tech__label {
  position: absolute;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(8, 31, 43, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.9);
  padding: 0 13px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aq-line-tech__label--one {
  left: calc(42% + 15vw);
  top: calc(51% - 7vh);
}

.aq-line-tech__label--two {
  left: calc(58% + 13vw);
  top: calc(42% + 6vh);
}

.aq-line-products {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: #fff;
  color: #061f2c;
  overflow: hidden;
}

.aq-line-products__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.aq-line-products__head h2 {
  margin: 0;
  color: #061f2c;
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.aq-line-products__count {
  margin: 12px 0 0;
  color: #8096a3;
  font-size: var(--text-sm);
}

.aq-line-products__controls {
  display: flex;
  gap: 8px;
}

.aq-line-products__prev,
.aq-line-products__next {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #cbdce5;
  border-radius: 50%;
  background: #fff;
  color: #061f2c;
  cursor: pointer;
}

.aq-line-products__prev span,
.aq-line-products__next span {
  font-size: 28px;
  line-height: 1;
}

.aq-line-products__swiper {
  overflow: visible;
}

.aq-line-products__swiper .swiper-slide {
  width: clamp(220px, 24vw, 330px);
  height: auto;
}

.aq-line-product-card {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.aq-line-product-card .aq-product-card__image {
  background: #fff;
}

@media (max-width: 900px) {
  .aq-line-story {
    min-height: 300vh;
  }

  .aq-line-products__head {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .aq-line-hero__title {
    font-size: clamp(3.4rem, 21vw, 6.6rem);
  }

  .aq-line-story__copy h2 {
    font-size: clamp(2rem, 10vw, 3.4rem);
  }

  .aq-line-tech {
    display: none;
  }

  .aq-line-products__head {
    flex-direction: column;
  }
}

/* ── Product line pinned section: final structure ─────── */
.aq-line-pin {
  position: relative;
  min-height: calc((var(--line-steps, 4) + 1) * 100vh);
  background: #081f2b;
  color: #fff;
}

.aq-line-pin__stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #081f2b;
  isolation: isolate;
}

.aq-line-pin__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  margin: 0;
  overflow: hidden;
}

.aq-line-pin__image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 48%, rgba(8, 31, 43, 0.08), rgba(8, 31, 43, 0.44) 58%, rgba(8, 31, 43, 0.86)),
    linear-gradient(180deg, rgba(8, 31, 43, 0.48), rgba(8, 31, 43, 0.08) 43%, rgba(8, 31, 43, 0.78));
  pointer-events: none;
}

.aq-line-pin__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(0.92) contrast(1.04);
}

.aq-line-pin__step {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.aq-line-pin__copy {
  width: min(980px, calc(100vw - 32px));
  margin-inline: auto;
  text-align: center;
  opacity: 0;
  transform: translate3d(0, 150px, 0);
  will-change: transform, opacity;
}

.aq-line-pin__copy h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-sans);
  font-size: clamp(2.45rem, 6vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.aq-line-pin__step--title .aq-line-pin__copy h2 {
  font-size: clamp(4.8rem, 16vw, 16rem);
  font-weight: 300;
  line-height: 0.82;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.aq-line-pin .aq-line-tech {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  will-change: transform, opacity;
}

@media (max-width: 640px) {
  .aq-line-pin {
    min-height: calc((var(--line-steps, 4) + 0.6) * 100vh);
  }

  .aq-line-pin__step--title .aq-line-pin__copy h2 {
    font-size: clamp(3.4rem, 21vw, 6.6rem);
  }

  .aq-line-pin__copy h2 {
    font-size: clamp(2rem, 10vw, 3.4rem);
  }
}

/* Special product-line story header */
body:has(.aq-line-story) .site-header:not(.is-scrolled):not(.is-mega-open),
body .site-header.is-over-line-story:not(.is-mega-open),
body .site-header.is-over-line-story.is-scrolled:not(.is-mega-open) {
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body:has(.aq-line-story) .site-header:not(.is-scrolled):not(.is-mega-open)::before,
body .site-header.is-over-line-story:not(.is-mega-open)::before,
body .site-header.is-over-line-story.is-scrolled:not(.is-mega-open)::before {
  content: none;
}

body:has(.aq-line-story) .site-header:not(.is-scrolled):not(.is-mega-open) .site-header__logo img,
body .site-header.is-over-line-story:not(.is-mega-open) .site-header__logo img,
body .site-header.is-over-line-story.is-scrolled:not(.is-mega-open) .site-header__logo img {
  filter: brightness(0) invert(1);
}

body:has(.aq-line-story) .site-header:not(.is-scrolled):not(.is-mega-open) .menu-toggle,
body:has(.aq-line-story) .site-header:not(.is-scrolled):not(.is-mega-open) .header-actions__location,
body .site-header.is-over-line-story:not(.is-mega-open) .menu-toggle,
body .site-header.is-over-line-story:not(.is-mega-open) .header-actions__location,
body .site-header.is-over-line-story.is-scrolled:not(.is-mega-open) .menu-toggle,
body .site-header.is-over-line-story.is-scrolled:not(.is-mega-open) .header-actions__location {
  color: #fff;
}

body:has(.aq-line-story) .site-header:not(.is-scrolled):not(.is-mega-open) .menu-toggle span,
body .site-header.is-over-line-story:not(.is-mega-open) .menu-toggle span,
body .site-header.is-over-line-story.is-scrolled:not(.is-mega-open) .menu-toggle span {
  background: #fff;
  color: #fff;
}

/* ── Líneas index (page-lineas.php) ───────────────────────── */
.aq-lineas .aq-shop-hero__grid {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.aq-lineas-shoplink {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 0.6rem;
  min-height: 50px;
  padding: 0 1.7rem;
  border: 1px solid #041f2f;
  border-radius: 999px;
  background: #041f2f;
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.aq-lineas-shoplink:hover,
.aq-lineas-shoplink:focus-visible {
  background: #1790d0;
  border-color: #1790d0;
  color: #fff !important;
  transform: translateY(-2px);
}

.aq-lineas-shoplink span {
  transition: transform 0.3s ease;
}

.aq-lineas-shoplink:hover span {
  transform: translateX(4px);
}

/* Line cards reuse .aq-product-card and inherit the shop card design
   as-is (left-aligned meta / title / secondary meta). */

@media (max-width: 720px) {
  .aq-lineas-shoplink {
    margin-top: var(--space-3);
  }
}

/* ── Líneas index: header uses the same light treatment as the shop ── */
body:has([data-barba-namespace="lineas"]) .site-header,
body:has([data-barba-namespace="lineas"]) .site-header.is-scrolled {
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body:has([data-barba-namespace="lineas"]) .site-header__logo img,
body:has([data-barba-namespace="lineas"]) .site-header.is-scrolled .site-header__logo img {
  filter: brightness(0) saturate(100%) invert(63%) sepia(87%) saturate(410%) hue-rotate(156deg) brightness(95%) contrast(88%);
}

body:has([data-barba-namespace="lineas"]) .site-header .menu-toggle,
body:has([data-barba-namespace="lineas"]) .site-header.is-scrolled .menu-toggle,
body:has([data-barba-namespace="lineas"]) .site-header .header-actions__location,
body:has([data-barba-namespace="lineas"]) .site-header.is-scrolled .header-actions__location {
  color: #041f2f;
}

body:has([data-barba-namespace="lineas"]) .site-header .menu-toggle span {
  color: #041f2f;
  background: #041f2f;
}

/* Location pin icon next to "Puntos de venta" in the header */
.header-actions__pin {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

/* Header product search */
.header-product-search {
  display: none;
}

@media (min-width: 1120px) {
  .header-product-search {
    display: grid;
    grid-template-columns: minmax(180px, 260px) 40px;
    max-width: min(300px, 28vw);
    align-items: center;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    padding-left: 18px;
    background: rgba(7, 22, 31, 0.36);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    color: #fff;
    overflow: hidden;
    transition: background 200ms ease, border-color 200ms ease;
  }

  .header-product-search:focus-within {
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(7, 22, 31, 0.52);
  }

  .header-product-search input {
    min-width: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: transparent;
    color: currentColor;
    padding: 0 8px 0 0;
    font-size: 0.94rem;
    font-weight: 400;
    outline: 0;
  }

  .header-product-search input::placeholder {
    color: currentColor;
    opacity: 0.78;
  }

  .header-product-search button {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: currentColor;
    cursor: pointer;
    transition: color 180ms ease;
  }

  .header-product-search button:hover,
  .header-product-search button:focus-visible {
    background: transparent;
    color: #1790d0;
  }

  .site-header.is-scrolled .header-product-search,
  .site-header.is-mega-open .header-product-search,
  body.single-product .site-header .header-product-search,
  body.post-type-archive-product .site-header .header-product-search,
  body.tax-product_cat .site-header .header-product-search,
  body.page-template-red-comercial .site-header .header-product-search,
  body:has([data-barba-namespace="shop"]) .site-header .header-product-search,
  body:has([data-barba-namespace="lineas"]) .site-header .header-product-search {
    border-color: #d3e0e7;
    background: #eef3f6;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    color: #041f2f;
  }

  .site-header.is-scrolled .header-product-search:focus-within,
  .site-header.is-mega-open .header-product-search:focus-within,
  body.single-product .site-header .header-product-search:focus-within,
  body.post-type-archive-product .site-header .header-product-search:focus-within,
  body.tax-product_cat .site-header .header-product-search:focus-within,
  body.page-template-red-comercial .site-header .header-product-search:focus-within,
  body:has([data-barba-namespace="shop"]) .site-header .header-product-search:focus-within,
  body:has([data-barba-namespace="lineas"]) .site-header .header-product-search:focus-within {
    border-color: #1790d0;
    background: #fff;
  }
}

/* Mega menu category hierarchy */
.aq-mega-menu__nav-group {
  display: grid;
  min-width: 0;
}

.aq-mega-menu__subnav {
  display: grid;
  gap: 2px;
  margin: 0 0 8px;
  padding-left: 14px;
}

.aq-mega-menu--visual .aq-mega-menu__nav .aq-mega-menu__nav-link {
  min-width: 0;
}

.aq-mega-menu--visual .aq-mega-menu__subnav .aq-mega-menu__nav-link {
  min-height: 30px;
  color: rgba(5, 5, 5, 0.68) !important;
  font-size: 12px !important;
  font-weight: 450 !important;
}

.aq-mega-menu--visual .aq-mega-menu__nav-group--depth-2 .aq-mega-menu__nav-link {
  min-height: 28px;
  color: rgba(5, 5, 5, 0.56) !important;
  font-size: 11px !important;
}

.aq-mega-menu--visual .aq-mega-menu__subnav .aq-mega-menu__nav-link:hover,
.aq-mega-menu--visual .aq-mega-menu__subnav .aq-mega-menu__nav-link:focus-visible {
  color: #041f2f !important;
}

/* Shop sidebar filters */
.aq-shop .aq-shop-hero .container--wide,
.aq-shop .aq-shop-body .container--wide,
.aq-line-products .container--wide {
  max-width: var(--aq-content-max);
}

.aq-shop-layout {
  display: grid;
  grid-template-columns: minmax(250px, 315px) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}

.aq-shop-sidebar {
  position: sticky;
  top: 92px;
  z-index: 1;
  align-self: start;
}

.aq-shop .aq-shop-filter-panel {
  position: static;
  display: block;
  width: auto;
  height: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  pointer-events: auto;
  transform: none;
  transition: none;
}

.aq-shop .aq-shop-filter-panel__heading {
  margin-bottom: 1.15rem;
  align-items: start;
}

.aq-shop .aq-shop-filter-panel__heading h2 {
  display: block;
  color: #041f2f;
  font-size: 1.25rem;
  font-weight: 650;
  line-height: 1.1;
}

.aq-shop .aq-shop-filter-panel__eyebrow {
  margin-bottom: 0.35rem;
  color: #607681;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aq-shop-filter-panel__close,
.aq-shop-filter-backdrop,
.aq-shop-filter-toggle {
  display: none;
}

.aq-shop .aq-shop-filter-panel__fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.7rem, 3vw, 2.25rem);
}

.aq-shop .aq-shop-filter-field {
  gap: 0.55rem;
}

.aq-shop .aq-shop-filter-field__summary > span {
  color: #041f2f;
  font-size: clamp(1.05rem, 1.25vw, 1.22rem);
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

/* Collapsible filter sections (accordion) */
details.aq-shop-filter-field {
  display: block;
  border: 1px solid #e2ecf0;
  border-radius: 10px;
  padding: 0 12px;
  background: #fff;
}

details.aq-shop-filter-field[open] {
  padding-bottom: 12px;
}

.aq-shop-filter-field__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: auto;
  padding: 0 0 0.75rem;
  list-style: none;
  cursor: default;
  user-select: none;
}

.aq-shop-filter-field__summary::-webkit-details-marker {
  display: none;
}

.aq-shop-filter-field__summary:focus-visible {
  outline: 2px solid #1790d0;
  outline-offset: 2px;
  border-radius: 6px;
}

.aq-shop-filter-field__chevron {
  flex: none;
  color: #6b8592;
  transition: transform 200ms ease, color 200ms ease;
}

details.aq-shop-filter-field[open] .aq-shop-filter-field__chevron {
  transform: rotate(180deg);
  color: #1790d0;
}

details.aq-shop-filter-field > .aq-shop-filter-list {
  margin-top: 2px;
}

.aq-shop .aq-shop-filter-field--sort select {
  margin-top: 2px;
}

.aq-shop .aq-shop-filter-field select,
.aq-shop .aq-shop-filter-field input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #dce7ec;
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  color: #041f2f;
  font: inherit;
  font-size: 0.9rem;
  outline: 0;
}

.aq-shop .aq-shop-filter-field select:focus,
.aq-shop .aq-shop-filter-field input:focus {
  border-color: #1790d0;
  box-shadow: 0 0 0 3px rgba(23, 144, 208, 0.14);
}

.aq-shop-filter-list {
  display: grid;
  gap: 3px;
  max-height: min(52vh, 520px);
  padding: 2px 6px 2px 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: auto;
  touch-action: pan-y;
  scrollbar-width: thin;
  scrollbar-color: rgba(4, 31, 47, 0.24) transparent;
}

.aq-shop-line-list {
  max-height: min(44vh, 420px);
}

.aq-shop-filter-empty {
  margin: 0;
  border-radius: 6px;
  padding: 8px 6px;
  color: #78909b;
  font-size: 0.84rem;
  line-height: 1.35;
}

.aq-shop-filter-option {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  min-height: 36px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 6px 8px;
  color: #263f4b;
  font-size: 0.88rem;
  line-height: 1.25;
  cursor: pointer;
}

.aq-shop-filter-option:hover,
.aq-shop-filter-option:focus-within {
  background: #f4f8fa;
}

.aq-shop .aq-shop-filter-option input[type="radio"] {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  margin: -1px;
  border: 0;
  padding: 0 !important;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.aq-shop-filter-option.is-selected {
  border-color: transparent;
  background: transparent;
  color: #041f2f;
  font-weight: 600;
  box-shadow: inset 2px 0 0 #1790d0;
}

.aq-shop-filter-option span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.aq-shop-filter-option em {
  color: #78909b;
  font-size: 0.72rem;
  font-style: normal;
}

.aq-shop-filter-option.is-selected em {
  color: #1790d0;
  font-weight: 650;
}

.aq-shop-filter-branch {
  display: grid;
  min-width: 0;
}

.aq-shop-filter-branch__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 8px;
  align-items: center;
}

.aq-shop-filter-option--branch-parent {
  margin: 0;
}

.aq-shop-filter-branch__row:hover .aq-shop-filter-option--branch-parent:not(.is-selected) {
  background: #f4f8fa;
}

.aq-shop-filter-branch__name {
  min-width: 0;
  overflow-wrap: anywhere;
}

.aq-shop-filter-branch__toggle {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #607681;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: color 160ms ease, transform 160ms ease;
}

.aq-shop-filter-branch__toggle:hover,
.aq-shop-filter-branch__toggle:focus-visible,
.aq-shop-filter-branch.is-open > .aq-shop-filter-branch__row .aq-shop-filter-branch__toggle {
  color: #1790d0;
  outline: 0;
}

.aq-shop-filter-branch__toggle:hover,
.aq-shop-filter-branch__toggle:focus-visible {
  transform: translateY(-1px);
}

.aq-shop-filter-branch__children {
  position: relative;
  display: grid;
  gap: 2px;
  margin: 3px 0 7px 12px;
  border-left: 1px solid #d7e7ee;
  padding-left: 12px;
}

.aq-shop-filter-branch__children[hidden] {
  display: none;
}

.aq-shop-filter-option--all {
  margin-bottom: 4px;
  font-weight: 650;
}

.aq-shop-filter-option--branch-all {
  min-height: 30px;
  padding-block: 4px;
  color: #607681;
  font-size: 0.8rem;
  font-weight: 500;
}

.aq-shop-filter-option--branch-all:hover,
.aq-shop-filter-option--branch-all:focus-within {
  background: #f8fbfc;
}

.aq-shop-filter-option--depth-1 {
  padding-left: 8px;
}

.aq-shop-filter-option--depth-2 {
  padding-left: 12px;
  color: #526b78;
  font-size: 0.82rem;
}

.aq-shop-filter-option--depth-3 {
  padding-left: 16px;
  color: #607681;
  font-size: 0.78rem;
}

.aq-shop .aq-shop-filter-panel__submit {
  min-height: 48px;
  margin-top: 0.25rem;
  border-radius: 8px;
  background: #041f2f;
  font-size: 0.86rem;
}

.aq-shop .aq-shop-results-head {
  display: flex;
}

.aq-shop-results {
  position: relative;
  min-width: 0;
}

.aq-shop-results > * {
  transition: opacity 220ms ease;
}

.aq-shop.is-ajax-loading .aq-shop-results {
  pointer-events: none;
  cursor: progress;
}

.aq-shop.is-ajax-loading .aq-shop-results > *:not(.aq-shop-skeleton) {
  opacity: 0.4;
}

/* While the skeleton is up, the real results stay out of the way. */
.aq-shop-results.has-skeleton > .aq-product-grid:not(.aq-shop-skeleton),
.aq-shop-results.has-skeleton > .aq-pagination,
.aq-shop-results.has-skeleton > .aq-empty {
  display: none;
}

/* Per-product loading skeleton with the Aqualaf mark */
.aq-skel-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  animation: aqCardEnter 320ms ease both;
}

.aq-skel-card__image {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  background: linear-gradient(100deg, #f1f6f9 40%, #fafcfd 50%, #f1f6f9 60%);
  background-size: 220% 100%;
  overflow: hidden;
  animation: aqSkelShimmer 1.4s ease-in-out infinite;
}

.aq-skel-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../../uploads/2026/06/aq.png') center / clamp(40px, 26%, 64px) no-repeat;
  filter: brightness(0.25);
  opacity: 0.12;
  animation: aqSkelLogoPulse 1.4s ease-in-out infinite;
}

.aq-skel-card__line {
  width: 70%;
  height: 13px;
  margin-top: 14px;
  border-radius: 4px;
  background: #e8eff3;
}

.aq-skel-card__line--short {
  width: 42%;
  height: 11px;
  margin-top: 9px;
  background: #eef4f7;
}

@keyframes aqSkelShimmer {
  0% {
    background-position: 110% 0;
  }
  100% {
    background-position: -110% 0;
  }
}

@keyframes aqSkelLogoPulse {
  0%,
  100% {
    opacity: 0.09;
    transform: scale(0.97);
  }
  50% {
    opacity: 0.2;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .aq-skel-card,
  .aq-skel-card__image,
  .aq-skel-card__image::after {
    animation: none;
  }
}

.aq-shop .aq-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1160px) {
  .aq-shop-layout {
    grid-template-columns: minmax(230px, 280px) minmax(0, 1fr);
  }

  .aq-shop .aq-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .aq-shop-layout {
    grid-template-columns: 1fr;
  }

  .aq-shop-sidebar {
    position: static;
  }

  .aq-shop-filter-list {
    max-height: 280px;
  }
}

/* Embedded technical PDF */
.aq-product-technical {
  padding-block: clamp(3rem, 6vw, 5.5rem);
  border-top: 1px solid #dce7ec;
  border-bottom: 1px solid #dce7ec;
  background: #f8fbfc;
  color: #041f2f;
}

.aq-product-technical__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.aq-product-technical__head h2 {
  margin: 0;
  color: #041f2f;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1.08;
}

.aq-product-technical__download {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid #041f2f;
  border-radius: 999px;
  padding: 0 18px;
  color: #041f2f;
  font-size: 0.82rem;
  font-weight: 750;
  transition: background 180ms ease, color 180ms ease;
}

.aq-product-technical__download:hover,
.aq-product-technical__download:focus-visible {
  background: #041f2f;
  color: #fff;
}

.aq-product-technical__viewer {
  height: min(78vh, 820px);
  min-height: 520px;
  border: 1px solid #dce7ec;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.aq-product-technical__viewer iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

@media (max-width: 767px) {
  .aq-product-technical__head {
    display: grid;
    align-items: start;
  }

  .aq-product-technical__download {
    width: max-content;
  }

  .aq-product-technical__viewer {
    height: 68vh;
    min-height: 430px;
  }
}

/* Shop results heading: title + count */
.aq-shop .aq-shop-hero {
  padding-block: clamp(5.4rem, 6.5vw, 6.75rem) clamp(0.75rem, 2vw, 1.5rem);
}

.aq-shop .aq-shop-results-head {
  display: flex;
  min-height: auto;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: clamp(1.1rem, 2.2vw, 1.75rem);
  padding-bottom: 18px;
  border-bottom: 1px solid #dce7ec;
}

.aq-shop-breadcrumb {
  margin-bottom: 0.55rem;
  color: #78909b;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.35;
}

.aq-shop-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.aq-shop-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.aq-shop-breadcrumb li + li::before {
  content: '/';
  color: #b1c1c8;
  font-weight: 400;
}

.aq-shop-breadcrumb a {
  color: #526b78;
  text-decoration: none;
  transition: color 160ms ease;
}

.aq-shop-breadcrumb a:hover,
.aq-shop-breadcrumb a:focus-visible {
  color: #1790d0;
}

.aq-shop-breadcrumb span {
  color: #879aa4;
}

.aq-shop-results-title {
  margin: 0;
  color: #041f2f;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.aq-shop .aq-result-count {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin: 0;
  border: 1px solid #dce7ec;
  border-radius: 999px;
  padding: 0 14px;
  background: #fff;
  color: #78909b;
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
  line-height: 1.3;
  text-align: right;
}

.aq-shop .aq-result-count .woocommerce-result-count {
  margin: 0;
}

.aq-shop-results-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.aq-shop-ordering {
  position: relative;
  margin: 0;
}

.aq-shop-ordering::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 2px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid #1790d0;
  border-bottom: 1.5px solid #1790d0;
  pointer-events: none;
  transform: translateY(-65%) rotate(45deg);
}

.aq-shop-ordering__select {
  width: 100%;
  min-width: 230px;
  min-height: 36px;
  border: 0;
  border-bottom: 1px solid #dce7ec;
  border-radius: 0;
  padding: 0 24px 0 0;
  background: transparent;
  color: #041f2f;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  outline: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 180ms ease, color 180ms ease;
}

.aq-shop-ordering__select:hover,
.aq-shop-ordering__select:focus {
  border-color: #1790d0;
  color: #1790d0;
}

.aq-shop .aq-shop-active-filters {
  display: none;
}

@media (max-width: 767px) {
  .aq-shop .aq-shop-results-head {
    display: grid;
    align-items: start;
  }

  .aq-shop .aq-result-count {
    width: 100%;
    justify-content: center;
    text-align: left;
  }

  .aq-shop-results-tools,
  .aq-shop-ordering {
    width: 100%;
  }

  .aq-shop-results-tools {
    justify-content: stretch;
  }

  .aq-shop-ordering__select {
    min-width: 0;
  }
}

/* Product menu: ordered hover dropdown */
.menu-item--products-mega {
  position: relative !important;
}

.primary-nav .menu-item--products-mega > .aq-mega-menu--product-dropdown,
.menu-item--products-mega > .aq-mega-menu--product-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  right: auto;
  z-index: 10020;
  width: 274px;
  max-height: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 18px 44px rgba(3, 18, 26, 0.16);
  color: #1f2930;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 180ms ease, visibility 160ms ease;
  pointer-events: none;
}

.primary-nav .menu-item--products-mega > .aq-mega-menu--product-dropdown::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 18px;
}

.menu-item--products-mega:hover > .aq-mega-menu--product-dropdown,
.menu-item--products-mega:focus-within > .aq-mega-menu--product-dropdown,
.menu-item--products-mega.is-mega-open > .aq-mega-menu--product-dropdown,
html.has-gsap .menu-item--products-mega:hover > .aq-mega-menu--product-dropdown,
html.has-gsap .menu-item--products-mega:focus-within > .aq-mega-menu--product-dropdown,
html.has-gsap .menu-item--products-mega.is-mega-open > .aq-mega-menu--product-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.aq-mega-menu--product-dropdown .aq-mega-menu__close,
.aq-mega-menu--product-dropdown .aq-mega-menu__back {
  display: none;
}

.aq-product-dropdown__list,
.aq-product-dropdown__submenu {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

.primary-nav .aq-mega-menu--product-dropdown .aq-product-dropdown__list,
.primary-nav .aq-mega-menu--product-dropdown .aq-product-dropdown__submenu {
  display: grid;
  align-items: stretch;
  gap: 0;
  list-style: none;
}

.aq-product-dropdown__item {
  position: relative;
  min-width: 0;
}

.aq-product-dropdown__item--all {
  margin-top: 4px;
  border-top: 1px solid #e7eef1;
  padding-top: 4px;
}

.aq-product-dropdown__item--all .aq-product-dropdown__link {
  color: #041f2f !important;
  font-weight: 700 !important;
}

.aq-product-dropdown__item--all .aq-product-dropdown__link span::after {
  content: '→';
  margin-left: 0.45rem;
  color: #1790d0;
}

.primary-nav .aq-mega-menu--product-dropdown .aq-product-dropdown__link,
.site-header.is-scrolled .primary-nav .aq-mega-menu--product-dropdown .aq-product-dropdown__link,
.site-header.is-dark .primary-nav .aq-mega-menu--product-dropdown .aq-product-dropdown__link,
.aq-mega-menu--product-dropdown .aq-product-dropdown__link {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 18px 0 28px;
  color: #2f3a40 !important;
  font-family: var(--font-sans);
  font-size: 13px !important;
  font-weight: 450 !important;
  line-height: 1.2;
  letter-spacing: 0 !important;
  text-transform: none !important;
  white-space: nowrap;
  transition: background 140ms ease, color 140ms ease;
}

.primary-nav .aq-mega-menu--product-dropdown .aq-product-dropdown__link::after {
  display: none;
}

.primary-nav .aq-mega-menu--product-dropdown .aq-product-dropdown__item--all > .aq-product-dropdown__link,
.aq-mega-menu--product-dropdown .aq-product-dropdown__item--all > .aq-product-dropdown__link,
body .mobile-nav .mobile-nav__inline-menu .aq-product-dropdown__item--all > .aq-product-dropdown__link {
  color: #041f2f !important;
  font-weight: 700 !important;
}

.aq-mega-menu--product-dropdown .aq-product-dropdown__link b {
  color: currentColor;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.aq-mega-menu--product-dropdown .aq-product-dropdown__link:hover,
.aq-mega-menu--product-dropdown .aq-product-dropdown__link:focus-visible,
.aq-product-dropdown__item:hover > .aq-product-dropdown__link {
  background: #f4f6f7;
  color: #041f2f !important;
}

.aq-product-dropdown__submenu {
  position: absolute;
  top: -10px;
  left: 100%;
  width: 260px;
  min-height: 100%;
  background: #fff;
  box-shadow: 0 18px 44px rgba(3, 18, 26, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: opacity 150ms ease, transform 170ms ease, visibility 150ms ease;
  pointer-events: none;
}

.aq-product-dropdown__item:hover > .aq-product-dropdown__submenu,
.aq-product-dropdown__item:focus-within > .aq-product-dropdown__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.aq-product-dropdown__item--depth-1 .aq-product-dropdown__link,
.aq-product-dropdown__item--depth-2 .aq-product-dropdown__link {
  min-height: 40px;
  font-size: 12.5px !important;
}

body .mobile-nav__mega-panel .aq-mega-menu--product-dropdown {
  position: static;
  width: 100%;
  height: 100%;
  max-height: none;
  padding: 12px;
  background: #fff;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

body .mobile-nav__mega-panel .aq-mega-menu--product-dropdown .aq-mega-menu__close,
body .mobile-nav__mega-panel .aq-mega-menu--product-dropdown .aq-mega-menu__back {
  display: flex;
}

body .mobile-nav__mega-panel .aq-product-dropdown__list {
  padding-top: 12px;
}

body .mobile-nav__mega-panel .aq-product-dropdown__submenu {
  position: static;
  width: auto;
  min-height: 0;
  padding: 0 0 0 14px;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

body .mobile-nav__mega-panel .aq-product-dropdown__link {
  min-height: 40px;
  padding-inline: 8px 10px;
  white-space: normal;
}

/* Mobile hamburger: product accordion */
body .mobile-nav .mobile-nav__inline-menu {
  display: none;
  max-height: min(54vh, 520px);
  margin: 8px 0 18px;
  padding: 0;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

body .mobile-nav .mobile-nav__inline-menu.is-open {
  display: block;
}

body .mobile-nav .mobile-nav__inline-menu .aq-product-dropdown__list,
body .mobile-nav .mobile-nav__inline-menu .aq-product-dropdown__submenu {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

body .mobile-nav .mobile-nav__inline-menu .aq-product-dropdown__submenu {
  position: static;
  width: auto;
  min-height: 0;
  padding-left: 18px;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

body .mobile-nav .mobile-nav__inline-menu .aq-product-dropdown__item:not(.is-submenu-open) > .aq-product-dropdown__submenu {
  display: none;
}

body .mobile-nav .mobile-nav__inline-menu .aq-product-dropdown__item.has-children:hover > .aq-product-dropdown__submenu,
body .mobile-nav .mobile-nav__inline-menu .aq-product-dropdown__item.has-children:focus-within > .aq-product-dropdown__submenu {
  display: grid;
}

body .mobile-nav .mobile-nav__inline-menu .aq-product-dropdown__item {
  position: static;
}

body .mobile-nav .mobile-nav__inline-menu .aq-product-dropdown__link,
body .mobile-nav.is-open .mobile-nav__inline-menu .aq-product-dropdown__link {
  display: flex;
  min-height: 39px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px 0 0;
  color: #111 !important;
  font-family: var(--font-sans);
  font-size: 0.96rem !important;
  font-weight: 450;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
  opacity: 1;
  transform: none;
  white-space: normal;
}

body .mobile-nav .mobile-nav__inline-menu .aq-product-dropdown__item--depth-1 > .aq-product-dropdown__link,
body .mobile-nav .mobile-nav__inline-menu .aq-product-dropdown__item--depth-2 > .aq-product-dropdown__link {
  min-height: 36px;
  color: #526b78 !important;
  font-size: 0.88rem !important;
}

body .mobile-nav .mobile-nav__inline-menu .aq-product-dropdown__link b {
  font-size: 1.08rem;
  font-weight: 400;
  transition: transform 160ms ease;
}

body .mobile-nav .mobile-nav__inline-menu .aq-product-dropdown__item.is-submenu-open > .aq-product-dropdown__link b {
  transform: rotate(90deg);
}

body .mobile-nav .mobile-nav__inline-menu .aq-product-dropdown__item.has-children:hover > .aq-product-dropdown__link b,
body .mobile-nav .mobile-nav__inline-menu .aq-product-dropdown__item.has-children:focus-within > .aq-product-dropdown__link b {
  transform: rotate(90deg);
}

body .mobile-nav .mobile-nav__primary.is-mega-active {
  color: #1790d0 !important;
}

/* Mobile hamburger: assistance secondary links */
body .mobile-nav .mobile-nav__group {
  display: grid;
  gap: 0;
}

body .mobile-nav .mobile-nav__group > .mobile-nav__secondary,
body .mobile-nav.is-open .mobile-nav__group > .mobile-nav__secondary {
  display: flex;
  min-height: 28px;
  align-items: center;
  margin: 0;
  padding: 0 0 0 18px;
  color: #607681 !important;
  font-family: var(--font-sans);
  font-size: 0.82rem !important;
  font-weight: 450;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  opacity: 1;
  transform: none;
}

body .mobile-nav .mobile-nav__group > .mobile-nav__secondary:hover,
body .mobile-nav .mobile-nav__group > .mobile-nav__secondary:focus-visible {
  color: #1790d0 !important;
}

/* Mobile hamburger: product flyout branches to the right on hover devices */
@media (hover: hover) and (pointer: fine) {
  body .mobile-nav.is-open,
  body .mobile-nav .mobile-nav__menu {
    overflow: visible;
  }

  body .mobile-nav .mobile-nav__inline-menu {
    position: relative;
    width: 100%;
    max-height: none;
    overflow: visible;
  }

  body .mobile-nav .mobile-nav__inline-menu .aq-product-dropdown__list {
    position: relative;
    width: calc(100% - 20px);
    overflow: visible;
  }

  body .mobile-nav .mobile-nav__inline-menu .aq-product-dropdown__item {
    position: relative;
  }

  body .mobile-nav .mobile-nav__inline-menu .aq-product-dropdown__submenu,
  body .mobile-nav .mobile-nav__inline-menu .aq-product-dropdown__item:not(.is-submenu-open) > .aq-product-dropdown__submenu {
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 10;
    display: grid;
    width: clamp(220px, 25vw, 290px);
    min-width: 220px;
    padding: 6px 0;
    border: 1px solid rgba(4, 31, 47, 0.08);
    background: #fff;
    box-shadow: 14px 16px 34px rgba(3, 18, 26, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateX(4px);
    transition: opacity 150ms ease, transform 170ms ease, visibility 150ms ease;
    pointer-events: none;
  }

  body .mobile-nav .mobile-nav__inline-menu .aq-product-dropdown__item.has-children:hover > .aq-product-dropdown__submenu,
  body .mobile-nav .mobile-nav__inline-menu .aq-product-dropdown__item.has-children:focus-within > .aq-product-dropdown__submenu,
  body .mobile-nav .mobile-nav__inline-menu .aq-product-dropdown__item.is-submenu-open > .aq-product-dropdown__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
  }

  body .mobile-nav .mobile-nav__inline-menu .aq-product-dropdown__submenu .aq-product-dropdown__submenu {
    left: 100%;
  }

  body .mobile-nav .mobile-nav__inline-menu .aq-product-dropdown__submenu .aq-product-dropdown__link,
  body .mobile-nav.is-open .mobile-nav__inline-menu .aq-product-dropdown__submenu .aq-product-dropdown__link {
    min-height: 38px;
    padding: 0 16px;
    font-size: 0.88rem !important;
  }

  body .mobile-nav .mobile-nav__inline-menu .aq-product-dropdown__item:hover > .aq-product-dropdown__link,
  body .mobile-nav .mobile-nav__inline-menu .aq-product-dropdown__item:focus-within > .aq-product-dropdown__link {
    background: #f3f5f6;
  }
}

/* ── Line page: shop-style category filters ─────────────────── */
.aq-line-shop-layout--full {
  grid-template-columns: 1fr;
}

.aq-line-shop-sidebar {
  top: 96px;
}

.aq-line-filter-panel {
  margin-bottom: 0;
  border: 1px solid #e2ecf0;
  border-radius: 14px;
  padding: clamp(1.1rem, 2vw, 1.5rem);
  box-shadow: 0 14px 40px rgba(4, 31, 47, 0.05);
}

.aq-line-filter-panel .aq-shop-filter-panel__fields {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.aq-line-filter-panel .aq-shop-filter-field__summary > span {
  color: #041f2f;
  font-size: clamp(1.02rem, 1.2vw, 1.18rem);
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.aq-line-filter-panel .aq-shop-filter-option input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.aq-line-products__results {
  min-width: 0;
}

.aq-line-products__no-match {
  margin: 1.5rem 0 0;
  border: 1px dashed #cfdfe7;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  color: #607681;
  font-size: 0.92rem;
  text-align: center;
}

/* ── Product card enter animation (filters + shop AJAX) ─────── */
@keyframes aqCardEnter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.aq-product-card.is-filter-entering {
  animation: aqCardEnter 460ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  .aq-product-card.is-filter-entering {
    animation: none;
  }
}

/* ── Header: technical service button next to store locator ─── */
.header-actions__assistance::before {
  content: '';
  align-self: center;
  width: 1px;
  height: 15px;
  margin-right: 9px;
  background: currentColor;
  opacity: 0.35;
}

@media (max-width: 1023px) {
  body .header-actions .header-actions__assistance {
    display: none;
  }
}

/* ── Líneas index: 5-up grid ─────────────────────────────────── */
.aq-shop .aq-lineas-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1.1rem, 2vw, 1.8rem) clamp(0.9rem, 1.6vw, 1.4rem);
}

@media (max-width: 1400px) {
  .aq-shop .aq-lineas-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1160px) {
  .aq-shop .aq-lineas-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .aq-shop .aq-lineas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 460px) {
  .aq-shop .aq-lineas-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Sticky header: solid, readable surface once scrolled ─────
   The global header block forces `background: transparent` even on
   .is-scrolled, which leaves white text floating over page content
   when the sticky header reappears mid-page. Once scrolled, paint a
   frosted white bar and switch every header element to dark. The
   line-story hero (.is-over-line-story) keeps its transparent
   treatment on purpose. */
body .site-header.is-scrolled:not(.is-over-line-story),
body.home .site-header.is-scrolled:not(.is-over-line-story) {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid #e4edf2;
  box-shadow: 0 10px 34px rgba(4, 31, 47, 0.06);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
}

body .site-header.is-scrolled:not(.is-over-line-story)::before {
  opacity: 0;
}

body .site-header.is-scrolled:not(.is-over-line-story) .menu-toggle,
body .site-header.is-scrolled:not(.is-over-line-story) .menu-toggle span,
body .site-header.is-scrolled:not(.is-over-line-story) .nav-link,
body .site-header.is-scrolled:not(.is-over-line-story) .primary-nav a {
  color: #041f2f;
  text-shadow: none;
}

body .site-header.is-scrolled:not(.is-over-line-story) .header-actions__location {
  color: #041f2f;
  text-shadow: none;
}

body .site-header.is-scrolled:not(.is-over-line-story) .header-product-search {
  border-color: #d3e0e7;
  background: #eef3f6;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #041f2f;
}

/* ── Pagination redesign (shop + lineas) ──────────────────────
   WooCommerce's stylesheet draws bordered boxes around the list and
   each number; these later, higher-specificity rules restore the
   clean pill design everywhere .aq-pagination is used. */
.aq-pagination nav.woocommerce-pagination {
  border: 0;
  padding: 0;
  background: transparent;
}

.aq-pagination ul.page-numbers,
.aq-pagination nav.woocommerce-pagination ul.page-numbers,
.woocommerce nav.woocommerce-pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0 !important;
  list-style: none;
  white-space: normal;
}

.aq-pagination ul.page-numbers li,
.aq-pagination nav.woocommerce-pagination ul.page-numbers li,
.woocommerce nav.woocommerce-pagination ul.page-numbers li {
  margin: 0;
  border: 0 !important;
  overflow: visible;
  list-style: none;
}

.aq-pagination ul.page-numbers li a,
.aq-pagination ul.page-numbers li span,
.aq-pagination nav.woocommerce-pagination ul.page-numbers li a,
.aq-pagination nav.woocommerce-pagination ul.page-numbers li span,
.woocommerce nav.woocommerce-pagination ul.page-numbers li a,
.woocommerce nav.woocommerce-pagination ul.page-numbers li span {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  margin: 0;
  padding: 0 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #35505d;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.aq-pagination ul.page-numbers li a:hover,
.aq-pagination ul.page-numbers li a:focus-visible,
.aq-pagination nav.woocommerce-pagination ul.page-numbers li a:hover,
.woocommerce nav.woocommerce-pagination ul.page-numbers li a:hover,
.woocommerce nav.woocommerce-pagination ul.page-numbers li a:focus {
  border-color: transparent;
  background: #e7f0f5;
  color: #041f2f;
  transform: translateY(-1px);
}

.aq-pagination ul.page-numbers li span.current,
.aq-pagination nav.woocommerce-pagination ul.page-numbers li span.current,
.woocommerce nav.woocommerce-pagination ul.page-numbers li span.current {
  border-color: #041f2f;
  background: #041f2f;
  color: #fff;
}

.aq-pagination ul.page-numbers li span.dots,
.aq-pagination nav.woocommerce-pagination ul.page-numbers li span.dots,
.woocommerce nav.woocommerce-pagination ul.page-numbers li span.dots {
  min-width: 28px;
  padding: 0;
  border-color: transparent;
  background: transparent;
  color: #8aa0ab;
  font-weight: 500;
}

.aq-pagination ul.page-numbers li a.prev,
.aq-pagination ul.page-numbers li a.next,
.aq-pagination nav.woocommerce-pagination ul.page-numbers li a.prev,
.aq-pagination nav.woocommerce-pagination ul.page-numbers li a.next,
.woocommerce nav.woocommerce-pagination ul.page-numbers li a.prev,
.woocommerce nav.woocommerce-pagination ul.page-numbers li a.next {
  border-color: #d8e4ea;
  background: #fff;
  color: #041f2f;
  font-size: 1.05rem;
}

.aq-pagination ul.page-numbers li a.prev:hover,
.aq-pagination ul.page-numbers li a.next:hover,
.woocommerce nav.woocommerce-pagination ul.page-numbers li a.prev:hover,
.woocommerce nav.woocommerce-pagination ul.page-numbers li a.next:hover {
  border-color: #041f2f;
  background: #041f2f;
  color: #fff;
}

@media (max-width: 480px) {
  .aq-pagination ul.page-numbers li a,
  .aq-pagination ul.page-numbers li span,
  .woocommerce nav.woocommerce-pagination ul.page-numbers li a,
  .woocommerce nav.woocommerce-pagination ul.page-numbers li span {
    min-width: 38px;
    height: 38px;
    font-size: 0.88rem;
  }
}

/* ── Mobile polish: header, product hero and filters ───────── */
@media (max-width: 767px) {
  body .site-header,
  body.home .site-header,
  body .site-header.is-scrolled,
  body.home .site-header.is-scrolled {
    padding-block: 12px;
  }

  body .site-header__inner,
  body.home .site-header__inner {
    grid-template-columns: 44px minmax(0, 1fr) 116px;
    min-height: 42px;
    padding-inline: 16px;
  }

  body .site-header__logo,
  body.home .site-header__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    grid-column: 1 / -1;
    justify-self: auto;
    transform: translate(-50%, -50%);
  }

  body .site-header__logo img,
  body.home .site-header__logo img,
  body .site-header.is-scrolled .site-header__logo img,
  body.home .site-header.is-scrolled .site-header__logo img {
    height: 32px;
  }

  body .header-product-search,
  body.home .header-product-search {
    display: none !important;
  }

  body .header-actions,
  body.home .header-actions {
    display: flex;
    grid-column: 3;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    width: 116px;
    min-width: 0;
  }

  body .header-actions__location,
  body.home .header-actions__location,
  body .site-header.is-scrolled .header-actions__location,
  body.home .site-header.is-scrolled .header-actions__location,
  body .header-actions .header-actions__assistance,
  body.home .header-actions .header-actions__assistance {
    display: inline-grid !important;
    flex: 0 0 55px;
    width: 55px;
    max-width: 55px;
    min-height: 38px;
    height: 38px;
    grid-template-rows: 17px auto;
    place-items: center;
    gap: 0;
    border-radius: 999px;
    padding: 0;
    overflow: hidden;
    font-size: 0;
    line-height: 1;
    text-align: center;
    text-shadow: none;
    white-space: nowrap;
  }

  .header-actions__assistance::before {
    content: none !important;
    display: none;
  }

  body .header-actions__location .header-actions__pin,
  body.home .header-actions__location .header-actions__pin {
    width: 16px;
    height: 16px;
    margin: 0;
  }

  body .header-actions__location::after,
  body.home .header-actions__location::after {
    content: 'Venta';
    display: block;
    max-width: 100%;
    overflow: hidden;
    font-size: 0.52rem;
    font-weight: 750;
    letter-spacing: 0.03em;
    line-height: 1;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  body .header-actions__assistance::after,
  body.home .header-actions__assistance::after {
    content: 'Servicio';
  }

  .aq-single-product .aq-product-showcase {
    padding-block: 5.25rem 2.4rem;
  }

  .aq-single-product .aq-product-showcase__inner {
    gap: 1.35rem;
  }

  .aq-single-product .aq-product-showcase__nav {
    width: 100%;
    gap: 0.5rem;
  }

  .aq-product-breadcrumb ol {
    max-width: 100%;
    flex-wrap: nowrap;
    min-width: 0;
  }

  .aq-product-breadcrumb li {
    min-width: 0;
  }

  .aq-product-breadcrumb li:nth-child(n+2):not(:last-child) {
    display: none;
  }

  .aq-product-breadcrumb li:last-child::before {
    content: '/ ... /';
  }

  .aq-product-breadcrumb li:nth-child(2):last-child::before {
    content: '/';
  }

  .aq-product-breadcrumb span {
    max-width: calc(100vw - 120px);
  }

  .aq-single-product .aq-product-showcase__grid {
    gap: 1.7rem;
  }

  .aq-single-product .aq-product-showcase__media {
    gap: 10px;
  }

  .aq-single-product .aq-product-showcase__figure {
    min-height: clamp(220px, 62vw, 330px);
  }

  .aq-single-product .aq-product-showcase__figure img {
    width: min(100%, 340px);
    height: auto;
    max-height: clamp(220px, 58vw, 320px);
  }

  .aq-single-product .aq-product-showcase__figure--compact-composite {
    min-height: clamp(210px, 56vw, 310px);
  }

  .aq-single-product .aq-product-showcase__figure--compact-composite img,
  .aq-single-product .aq-product-showcase__figure img[src*="33035-AQ4000-DUCHA"] {
    width: min(100%, 320px);
    max-height: clamp(190px, 50vw, 280px);
  }

  .aq-product-showcase__thumbs {
    justify-content: flex-start;
    gap: 8px;
    padding-bottom: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .aq-product-showcase__thumbs a,
  .aq-product-showcase__thumb {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
  }

  .aq-single-product .aq-product-showcase__summary {
    gap: 16px;
  }

  .aq-single-product .aq-product-showcase__code {
    font-size: clamp(2.65rem, 15vw, 4.2rem);
    line-height: 0.95;
  }

  .aq-single-product .aq-product-showcase__name {
    font-size: clamp(1.35rem, 6vw, 1.8rem);
  }

  .aq-single-product .aq-product-showcase__meta {
    margin-top: 0.25rem;
  }
}

@media (max-width: 820px) {
  .aq-shop .aq-shop-body {
    padding-bottom: calc(clamp(4rem, 9vw, 6rem) + 74px);
  }

  .aq-shop-layout {
    display: block;
  }

  .aq-shop-sidebar {
    position: static;
  }

  .aq-shop-filter-toggle {
    display: inline-flex;
    bottom: calc(18px + env(safe-area-inset-bottom));
  }

  .aq-shop-filter-backdrop {
    display: block;
  }

  .aq-shop .aq-shop-filter-panel {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    top: auto;
    z-index: calc(var(--z-overlay) + 8);
    display: grid;
    width: 100%;
    height: auto;
    max-height: min(84svh, 720px);
    margin: 0;
    grid-template-rows: auto minmax(0, 1fr);
    border: 0;
    border-radius: 22px 22px 0 0;
    padding: 18px 18px calc(18px + env(safe-area-inset-bottom));
    background: #fff;
    box-shadow: 0 -24px 60px rgba(4, 31, 47, 0.2);
    overflow: hidden;
    transform: translateY(105%);
    transition: transform 260ms cubic-bezier(.22,1,.36,1), visibility 260ms ease;
    visibility: hidden;
    pointer-events: none;
  }

  .aq-shop.is-filter-open .aq-shop-filter-panel {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .aq-shop .aq-shop-filter-panel__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
  }

  .aq-shop .aq-shop-filter-panel__heading h2 {
    display: block;
    margin: 0;
    color: #041f2f;
    font-size: 1.15rem;
    font-weight: 650;
    line-height: 1.1;
  }

  .aq-shop .aq-shop-filter-panel__eyebrow {
    margin: 0 0 0.2rem;
    font-size: 0.66rem;
  }

  .aq-shop-filter-panel__close {
    display: grid;
    flex: 0 0 38px;
    place-items: center;
  }

  .aq-shop .aq-shop-filter-panel__fields {
    gap: 16px;
    overflow-y: auto;
    padding-right: 2px;
    -webkit-overflow-scrolling: touch;
  }

  .aq-shop .aq-shop-filter-field {
    border: 1px solid #e2ecf0;
    border-radius: 10px;
    padding: 12px;
    background: #f8fbfc;
  }

  .aq-shop-filter-list,
  .aq-shop-line-list {
    max-height: none;
  }
}

/* ── Mobile type scale and page-specific header fixes ───────── */
@media (max-width: 767px) {
  .aq-overline,
  .aq-shop-filter-panel__eyebrow,
  .aq-network-directory__eyebrow,
  .aq-network-store__zone {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .aq-shop-results-title,
  .aq-network-sidebar__title h1,
  .aq-downloads-heading h2 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
    line-height: 1.06;
    letter-spacing: 0;
  }

  .aq-product-technical {
    padding-block: 2.4rem;
  }

  .aq-product-technical__head {
    gap: 0.9rem;
    margin-bottom: 1rem;
  }

  .aq-product-technical__head h2 {
    font-size: clamp(1.35rem, 6vw, 1.85rem);
    line-height: 1.12;
    letter-spacing: 0;
  }

  .aq-product-technical__download {
    min-height: 38px;
    padding-inline: 15px;
    font-size: 0.76rem;
  }

  .aq-product-technical__viewer {
    height: min(62vh, 520px);
    min-height: 320px;
  }

  .aq-product-panels {
    padding-block: 2.3rem;
  }

  .aq-product-panel summary {
    min-height: 64px;
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 16px;
  }

  .aq-product-panel summary span {
    font-size: clamp(1.12rem, 5.1vw, 1.55rem);
    font-weight: 500;
    line-height: 1.16;
    letter-spacing: 0;
  }

  .aq-product-panel summary i {
    width: 32px;
    height: 32px;
  }

  .aq-product-panel summary i::before,
  .aq-product-panel summary i::after {
    width: 14px;
    height: 1.5px;
  }

  .aq-product-panel__content {
    padding-bottom: 1.5rem;
  }

  .aq-single-product .aq-product-specs--panel div {
    padding-block: 13px;
  }

  .aq-product-panel .aq-product-downloads__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .aq-product-panel .aq-download-btn {
    min-height: 50px;
    border-radius: 10px;
    font-size: 0.85rem;
  }

  body.page-template-red-comercial .site-header,
  body.page-template-red-comercial .site-header.is-scrolled,
  body:has([data-barba-namespace="red-comercial"]) .site-header,
  body:has([data-barba-namespace="red-comercial"]) .site-header.is-scrolled {
    padding-block: 12px;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid #d7e3e8;
    box-shadow: 0 10px 30px rgba(4, 31, 47, 0.06);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
  }

  body.page-template-red-comercial .site-header__inner,
  body:has([data-barba-namespace="red-comercial"]) .site-header__inner {
    grid-template-columns: 44px minmax(0, 1fr) 116px;
    min-height: 42px;
    padding-inline: 16px;
  }

  body.page-template-red-comercial .site-header__logo,
  body:has([data-barba-namespace="red-comercial"]) .site-header__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    grid-column: 1 / -1;
    justify-self: auto;
    transform: translate(-50%, -50%);
  }

  body.page-template-red-comercial .site-header__logo img,
  body.page-template-red-comercial .site-header.is-scrolled .site-header__logo img,
  body:has([data-barba-namespace="red-comercial"]) .site-header__logo img,
  body:has([data-barba-namespace="red-comercial"]) .site-header.is-scrolled .site-header__logo img {
    height: 32px;
    filter: brightness(0) saturate(100%) invert(44%) sepia(96%) saturate(1319%) hue-rotate(164deg) brightness(92%) contrast(94%) !important;
    opacity: 1;
  }

  body.page-template-red-comercial .site-header .menu-toggle,
  body.page-template-red-comercial .site-header.is-scrolled .menu-toggle,
  body:has([data-barba-namespace="red-comercial"]) .site-header .menu-toggle,
  body:has([data-barba-namespace="red-comercial"]) .site-header.is-scrolled .menu-toggle {
    color: #041f2f;
  }

  body.page-template-red-comercial .site-header .menu-toggle span,
  body:has([data-barba-namespace="red-comercial"]) .site-header .menu-toggle span {
    background: currentColor;
  }

  body.page-template-red-comercial .header-actions,
  body:has([data-barba-namespace="red-comercial"]) .header-actions {
    display: flex !important;
    grid-column: 3;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    width: 116px;
  }

  body.page-template-red-comercial .header-actions__location,
  body.page-template-red-comercial .site-header.is-scrolled .header-actions__location,
  body:has([data-barba-namespace="red-comercial"]) .header-actions__location,
  body:has([data-barba-namespace="red-comercial"]) .site-header.is-scrolled .header-actions__location {
    color: #041f2f;
  }

  body.page-template-red-comercial .aq-network-directory,
  body:has([data-barba-namespace="red-comercial"]) .aq-network-directory {
    padding-top: 66px;
  }
}

/* ── Red comercial: mobile filter drawer ───────────────────── */
body.page-template-red-comercial .site-header__logo img,
body.page-template-red-comercial .site-header.is-scrolled .site-header__logo img,
body:has([data-barba-namespace="red-comercial"]) .site-header__logo img,
body:has([data-barba-namespace="red-comercial"]) .site-header.is-scrolled .site-header__logo img {
  filter: brightness(0) saturate(100%) invert(44%) sepia(96%) saturate(1319%) hue-rotate(164deg) brightness(92%) contrast(94%) !important;
  opacity: 1;
}

.aq-network-filter-toggle,
.aq-network-filter-backdrop,
.aq-network-filters__heading,
.aq-network-filters__apply {
  display: none;
}

@media (max-width: 767px) {
  .aq-network-directory {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .aq-network-filter-toggle {
    position: fixed;
    left: 50%;
    bottom: calc(18px + env(safe-area-inset-bottom));
    z-index: calc(var(--z-overlay) + 6);
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    gap: 13px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 0 18px 0 20px;
    background: rgba(5, 9, 13, 0.94);
    color: #fff;
    box-shadow: 0 16px 40px rgba(4, 31, 47, 0.22);
    transform: translateX(-50%);
  }

  .aq-network-filter-toggle span {
    font-size: 0.92rem;
    font-weight: 650;
  }

  .aq-network-filter-toggle svg {
    width: 18px;
    height: 18px;
    transform: scaleX(-1);
  }

  .aq-network-filter-backdrop {
    position: fixed;
    inset: 0;
    z-index: calc(var(--z-overlay) + 7);
    display: block;
    background: rgba(4, 10, 14, 0.52);
    opacity: 0;
    transition: opacity 220ms ease;
    pointer-events: none;
  }

  .aq-network-directory.is-network-filter-open .aq-network-filter-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .aq-network-sidebar .aq-network-filters {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    top: auto;
    z-index: calc(var(--z-overlay) + 8);
    display: grid;
    width: 100%;
    max-height: min(84svh, 680px);
    margin: 0;
    grid-template-columns: 1fr;
    gap: 14px;
    border: 0;
    border-radius: 22px 22px 0 0;
    padding: 18px 18px calc(18px + env(safe-area-inset-bottom));
    background: #fff;
    box-shadow: 0 -24px 60px rgba(4, 31, 47, 0.2);
    overflow-y: auto;
    transform: translateY(105%);
    transition: transform 260ms cubic-bezier(.22,1,.36,1), visibility 260ms ease;
    visibility: hidden;
    pointer-events: none;
    -webkit-overflow-scrolling: touch;
  }

  .aq-network-directory.is-network-filter-open .aq-network-sidebar .aq-network-filters {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .aq-network-sidebar .aq-network-filters__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
  }

  .aq-network-filters__eyebrow {
    margin: 0 0 0.2rem;
    color: #607681;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .aq-network-filters__heading h2 {
    margin: 0;
    color: #041f2f;
    font-size: 1.15rem;
    font-weight: 650;
    line-height: 1.1;
  }

  .aq-network-filters__close {
    position: relative;
    display: grid;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 0;
    background: transparent;
    color: #607681;
  }

  .aq-network-filters__close span::before,
  .aq-network-filters__close span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background: currentColor;
  }

  .aq-network-filters__close span::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .aq-network-filters__close span::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .aq-network-sidebar .aq-network-filter--search,
  .aq-network-sidebar .aq-network-filters__clear,
  .aq-network-sidebar .aq-network-filters__apply {
    grid-column: auto;
  }

  .aq-network-sidebar .aq-network-filter input,
  .aq-network-sidebar .aq-network-filter select {
    min-height: 46px;
    border-radius: 9px;
  }

  .aq-network-sidebar .aq-network-filters__clear {
    min-height: 36px;
    justify-self: start;
    margin-top: 2px;
  }

  .aq-network-sidebar .aq-network-filters__apply {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 0 18px;
    background: #041f2f;
    color: #fff;
    font-size: 0.84rem;
    font-weight: 750;
  }

  .aq-shop .aq-lineas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 390px) {
  .aq-shop .aq-lineas-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Product mobile zoom and technical preview ─────────────── */
.aq-product-showcase__figure {
  position: relative;
}

.aq-product-image-zoom {
  position: absolute;
  right: clamp(12px, 2vw, 20px);
  bottom: clamp(12px, 2vw, 20px);
  z-index: 2;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border: 1px solid #d6e4eb;
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.92);
  color: #041f2f;
  box-shadow: 0 12px 30px rgba(4, 31, 47, 0.1);
  font-size: 0.78rem;
  font-weight: 750;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.aq-product-image-zoom svg {
  flex: 0 0 auto;
}

.aq-product-technical__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.aq-product-technical__title {
  min-width: 0;
}

.aq-product-technical__title .aq-overline {
  margin-bottom: 0.45rem;
}

.aq-product-technical__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.aq-product-technical__preview,
.aq-product-technical__download {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #041f2f;
  border-radius: 999px;
  padding: 0 18px;
  color: #041f2f;
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.aq-product-technical__preview {
  border-color: #d6e4eb;
  background: #fff;
}

.aq-product-technical__preview:hover,
.aq-product-technical__preview:focus-visible,
.aq-product-technical__download:hover,
.aq-product-technical__download:focus-visible {
  border-color: #041f2f;
  background: #041f2f;
  color: #fff;
}

.aq-product-modal[hidden] {
  display: none !important;
}

.aq-product-modal {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-modal, 1000) + 30);
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 34px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.aq-product-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.aq-product-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 10, 14, 0.78);
  cursor: zoom-out;
}

.aq-product-modal__dialog {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 10, 18, 0.32);
  overflow: hidden;
}

.aq-product-modal__close {
  position: relative;
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #d8e5eb;
  border-radius: 999px;
  background: #fff;
  color: #041f2f;
  cursor: pointer;
}

.aq-product-modal__close span::before,
.aq-product-modal__close span::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.aq-product-modal__close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.aq-product-modal__close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.aq-product-image-modal__dialog {
  display: grid;
  width: min(1280px, 92vw);
  height: min(900px, 90svh);
  grid-template-rows: minmax(0, 1fr);
  padding: clamp(12px, 1.5vw, 20px);
}

.aq-product-image-modal__dialog .aq-product-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 6;
}

.aq-product-image-modal__viewport {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  place-items: center;
  box-sizing: border-box;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  touch-action: none;
  user-select: none;
}

.aq-product-image-modal__viewport.is-magnified {
  cursor: grab;
}

.aq-product-image-modal__viewport.is-dragging {
  cursor: grabbing;
}

.aq-product-image-modal__dialog img {
  position: absolute;
  inset: clamp(24px, 3vw, 44px);
  display: block;
  width: calc(100% - clamp(24px, 3vw, 44px) - clamp(24px, 3vw, 44px));
  height: calc(100% - clamp(24px, 3vw, 44px) - clamp(24px, 3vw, 44px));
  max-width: none;
  max-height: none;
  object-fit: contain;
  transform-origin: center;
  transition: transform 120ms ease-out;
  pointer-events: none;
}

.aq-product-image-modal__viewport.is-dragging img {
  transition: none;
}

.aq-product-image-modal__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 12px;
}

.aq-product-image-modal__controls button {
  display: grid;
  min-width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #d6e4eb;
  border-radius: 999px;
  background: #fff;
  color: #041f2f;
  font: inherit;
  font-size: 1.25rem;
  cursor: pointer;
}

.aq-product-image-modal__controls output {
  min-width: 54px;
  color: #041f2f;
  font-size: 0.78rem;
  font-weight: 750;
  text-align: center;
}

.aq-product-image-modal__controls .aq-product-image-modal__reset {
  width: auto;
  padding: 0 14px;
  font-size: 0.76rem;
}

.aq-product-pdf-modal__dialog {
  display: grid;
  width: min(1120px, 96vw);
  height: min(88svh, 900px);
  grid-template-rows: auto minmax(0, 1fr);
}

.aq-product-pdf-modal__head {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #dce7ec;
  padding: 14px 16px 14px 20px;
}

.aq-product-pdf-modal__head h2 {
  min-width: 0;
  margin: 0;
  color: #041f2f;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 650;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aq-product-pdf-modal__head > div {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.aq-product-pdf-modal__download {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid #041f2f;
  border-radius: 999px;
  padding: 0 14px;
  color: #041f2f;
  font-size: 0.78rem;
  font-weight: 750;
}

.aq-product-pdf-modal__dialog iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

@media (max-width: 767px) {
  .aq-product-image-zoom {
    right: 10px;
    bottom: 10px;
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .aq-product-image-modal__viewport {
    padding: 0;
  }

  .aq-product-image-modal__dialog img {
    inset: 48px 12px 12px;
    width: calc(100% - 24px);
    height: calc(100% - 60px);
  }

  .aq-product-technical__head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0;
  }

  .aq-product-technical__head h2 {
    font-size: clamp(1.3rem, 6vw, 1.75rem);
  }

  .aq-product-technical__actions {
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }

  .aq-product-technical__preview,
  .aq-product-technical__download {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .aq-product-technical__viewer {
    display: none;
  }

  .aq-product-modal {
    padding: 12px;
  }

  .aq-product-image-modal__dialog {
    width: 100%;
    min-height: min(62svh, 520px);
    padding: 16px;
  }

  .aq-product-image-modal__dialog img {
    max-height: 72svh;
  }

  .aq-product-pdf-modal {
    align-items: end;
    padding: 0;
  }

  .aq-product-pdf-modal__dialog {
    width: 100%;
    height: 90svh;
    border-radius: 18px 18px 0 0;
  }

  .aq-product-pdf-modal__head {
    gap: 10px;
    padding: 12px;
  }

  .aq-product-pdf-modal__head h2 {
    font-size: 0.94rem;
  }

  .aq-product-pdf-modal__download {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .aq-product-modal__close {
    width: 36px;
    height: 36px;
  }
}

/* ── Product document refinements ──────────────────────────── */
.aq-product-showcase__download {
  min-height: 52px;
  border-radius: 12px;
  padding: 0 14px 0 16px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(4, 31, 47, 0.02);
}

.aq-product-showcase__download span {
  min-width: 0;
  line-height: 1.2;
}

.aq-product-showcase__download svg {
  width: 17px;
  height: 17px;
  color: #1790d0;
}

.aq-product-showcase__download:hover,
.aq-product-showcase__download:focus-visible {
  border-color: #041f2f;
  background: #041f2f;
  color: #fff;
}

.aq-product-showcase__download:hover svg,
.aq-product-showcase__download:focus-visible svg {
  color: currentColor;
}

.aq-product-panels {
  padding-block: clamp(2.2rem, 5vw, 4.25rem);
}

.aq-product-technical {
  padding-block: clamp(2.5rem, 5vw, 4.75rem);
  border-top: 0;
}

.aq-product-technical__actions {
  gap: 8px;
}

.aq-product-technical__preview,
.aq-product-technical__download {
  gap: 8px;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 16px;
}

.aq-product-technical__preview {
  color: #35505d;
}

.aq-product-technical__download {
  border-color: #041f2f;
  background: #041f2f;
  color: #fff;
}

.aq-product-technical__download:hover,
.aq-product-technical__download:focus-visible {
  border-color: #1790d0;
  background: #1790d0;
  color: #fff;
}

.aq-product-technical__download svg,
.aq-product-technical__preview svg {
  flex: 0 0 auto;
}

@media (max-width: 767px) {
  .aq-product-panels {
    padding-block: 1.9rem 1.4rem;
  }

  .aq-product-technical {
    padding-block: 1.8rem 2.6rem;
  }

  .aq-product-technical__head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.9rem;
    margin-bottom: 1rem;
  }

  .aq-product-technical__actions {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
  }

  .aq-product-technical__preview,
  .aq-product-technical__download {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.74rem;
  }

  .aq-product-technical__viewer {
    display: block;
    height: min(62vh, 520px);
    min-height: 340px;
  }
}

/* ── Product related headings: single-line section labels ───── */
.aq-single-product .aq-related__head h2,
.aq-single-product .aq-line-more__head h2 {
  max-width: none;
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.aq-single-product .aq-related__head .aq-overline,
.aq-single-product .aq-line-more__head .aq-overline,
.aq-single-product .aq-related__context {
  display: none;
}

@media (max-width: 767px) {
  .aq-single-product .aq-related__head h2,
  .aq-single-product .aq-line-more__head h2 {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }
}

/* ── Single product final composition tweaks ───────────────── */
@media (min-width: 1024px) {
  .aq-single-product .aq-product-showcase {
    padding-block: clamp(7.25rem, 8.4vw, 8.4rem) clamp(1.8rem, 2.6vw, 3rem);
  }

  .aq-single-product .aq-product-showcase__inner {
    max-width: min(100%, 1540px);
    gap: clamp(1.4rem, 2.8vw, 2.6rem);
  }

  .aq-single-product .aq-product-showcase__grid {
    min-height: clamp(480px, 55vh, 640px);
    grid-template-columns: minmax(0, 3fr) minmax(380px, 2fr);
    gap: clamp(2rem, 4vw, 4.5rem);
  }

  .aq-single-product .aq-product-showcase__media {
    gap: clamp(1.25rem, 2.4vw, 2.2rem);
  }

  .aq-single-product .aq-product-showcase__figure {
    min-height: clamp(420px, 53vh, 610px);
  }

  .aq-single-product .aq-product-showcase__figure img {
    width: min(100%, 880px);
    height: min(54vh, 620px);
  }

  .aq-single-product .aq-product-showcase__summary {
    width: 100%;
    max-width: 540px;
    justify-self: start;
  }

  .aq-single-product .aq-product-showcase__thumbs {
    width: 100%;
    justify-self: stretch;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
  }

  .aq-single-product .aq-product-showcase__thumbs a,
  .aq-single-product .aq-product-showcase__thumb {
    flex: 0 0 auto;
    width: 144px;
    height: 144px;
    overflow: hidden;
  }

  .aq-single-product .aq-product-showcase__thumbs img {
    padding: 6px;
    transform: none;
  }

  .aq-single-product .aq-product-showcase__figure--compact-composite {
    min-height: clamp(440px, 56vh, 640px);
  }

  .aq-single-product .aq-product-showcase__figure--compact-composite img,
  .aq-single-product .aq-product-showcase__figure img[src*="33035-AQ4000-DUCHA"] {
    width: min(100%, 640px);
    height: auto;
  }
}

@media (min-width: 1280px) {
  .aq-single-product .aq-product-showcase__thumbs {
    justify-content: flex-start;
    gap: 18px;
  }

  .aq-single-product .aq-product-showcase__thumbs a,
  .aq-single-product .aq-product-showcase__thumb {
    width: 160px;
    height: 160px;
  }
}

.aq-single-product .aq-product-showcase__download {
  min-height: 54px;
  align-items: center;
  border-color: #dce7ec;
  border-radius: 12px;
  background: #fff;
  color: #041f2f;
  box-shadow: none;
}

.aq-single-product .aq-product-showcase__download:hover,
.aq-single-product .aq-product-showcase__download:focus-visible {
  border-color: #1790d0;
  background: #f8fbfc;
  color: #041f2f;
  box-shadow: inset 0 0 0 1px rgba(23, 144, 208, 0.2);
}

.aq-single-product .aq-product-showcase__download:hover svg,
.aq-single-product .aq-product-showcase__download:focus-visible svg {
  color: #1790d0;
}

.aq-single-product .aq-product-technical__head {
  grid-template-columns: minmax(0, 1fr);
}

.aq-single-product .aq-related__carousel {
  display: flex;
  gap: clamp(1rem, 1.8vw, 1.5rem);
  margin-inline: calc(var(--space-2) * -1);
  padding: var(--space-2) var(--space-2) var(--space-4);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.aq-single-product .aq-related__carousel::-webkit-scrollbar,
.aq-single-product .aq-line-more__carousel::-webkit-scrollbar {
  display: none;
}

.aq-single-product .aq-line-more__carousel {
  scrollbar-width: none;
}

.aq-product-carousel-shell {
  position: relative;
}

.aq-product-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 1px solid #d6e4eb;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #041f2f;
  box-shadow: 0 14px 36px rgba(4, 31, 47, 0.16);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, opacity 180ms ease;
}

.aq-product-carousel-arrow--prev {
  left: -30px;
}

.aq-product-carousel-arrow--next {
  right: -30px;
}

.aq-product-carousel-arrow:hover,
.aq-product-carousel-arrow:focus-visible {
  border-color: #1790d0;
  background: #1790d0;
  color: #fff;
  outline: 0;
}

.aq-product-carousel-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .aq-product-carousel-arrow {
    width: 46px;
    height: 46px;
  }

  .aq-product-carousel-arrow--prev {
    left: -4px;
  }

  .aq-product-carousel-arrow--next {
    right: -4px;
  }
}

.aq-single-product .aq-related__carousel .aq-product-card {
  flex: 0 0 clamp(260px, 30vw, 430px);
  scroll-snap-align: start;
}

@media (max-width: 767px) {
  .aq-single-product .aq-product-image-zoom {
    display: inline-flex;
  }

  .aq-single-product .aq-related__carousel .aq-product-card {
    flex-basis: min(78vw, 310px);
  }
}

/* ── Single product nav: breadcrumb left, action right ─────── */
@media (min-width: 768px) {
  .aq-single-product .aq-product-showcase__nav {
    display: flex;
    width: 100%;
    max-width: none;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1rem, 4vw, 4rem);
  }

  .aq-single-product .aq-product-showcase__back {
    order: 2;
    flex: 0 0 auto;
  }

  .aq-single-product .aq-product-breadcrumb {
    order: 1;
    min-width: 0;
    margin: 0;
    text-align: left;
  }

  .aq-single-product .aq-product-breadcrumb ol {
    flex-wrap: nowrap;
    justify-content: flex-start;
    min-width: 0;
  }

  .aq-single-product .aq-product-breadcrumb li {
    min-width: 0;
  }

  .aq-single-product .aq-product-breadcrumb span {
    max-width: min(52ch, 52vw);
  }
}

/* ── Shop filters: start directly with filter groups ───────── */
.aq-shop .aq-shop-filter-panel__heading--close-only {
  display: none;
  margin: 0;
}

@media (max-width: 820px) {
  .aq-shop .aq-shop-filter-panel__heading--close-only {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 12px;
  }
}
