:root {
  --navy: #08090b;
  --blue: #17191d;
  --blue-2: #101115;
  --yellow: #e24585;
  --pink: #e24585;
  --millard-yellow: #f9b323;
  --white: #f7f8fb;
  --muted: rgba(247, 248, 251, .74);
  --line: rgba(255, 255, 255, .16);
  --panel: rgba(8, 9, 11, .82);
  --shadow: 0 28px 80px rgba(0, 0, 0, .34);
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 0%, rgba(226, 69, 133, .18), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(226, 69, 133, .12), transparent 30%),
    linear-gradient(135deg, #050608 0%, #15171b 46%, #08090b 100%);
  min-height: 100vh;
}

body.larsson-products-page {
  background:
    linear-gradient(180deg, rgba(8, 9, 11, .2), rgba(8, 9, 11, .36)),
    url("productos/nuestrosproductos.jpg") center / cover fixed no-repeat,
    linear-gradient(135deg, #050608 0%, #15171b 46%, #08090b 100%);
}

body.larsson-category-page {
  background:
    linear-gradient(180deg, rgba(8, 9, 11, .18), rgba(8, 9, 11, .3)),
    url("detalle-productos/background-prod.jpg") center bottom / cover fixed no-repeat,
    linear-gradient(135deg, #050608 0%, #15171b 46%, #08090b 100%);
}

body.larsson-about-page {
  background:
    linear-gradient(180deg, rgba(8, 9, 11, .22), rgba(8, 9, 11, .36)),
    url("sobre-larsson/fondo-sobrelarsson.png") center center / 100% 100vh fixed no-repeat,
    linear-gradient(135deg, #050608 0%, #15171b 46%, #08090b 100%);
}

body.larsson-contact-page {
  background: #050608;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  /* clip recorta el desbordamiento horizontal SIN crear un contenedor de
     scroll (hidden anulaba el position:sticky del efecto hoja sobre hoja).
     Se deja hidden como reserva para navegadores antiguos. */
  overflow-x: hidden;
  overflow-x: clip;
  padding-top: 70px;
}

.larsson-topbar {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  z-index: 9999;
  border-bottom: 2px solid var(--yellow);
  background: linear-gradient(90deg, rgba(8, 9, 11, .98), rgba(22, 24, 28, .98));
  backdrop-filter: blur(18px);
}

.larsson-nav {
  width: min(1420px, calc(100% - 48px));
  min-height: 70px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(20px, 3vw, 54px);
}

.larsson-brand {
  display: inline-flex;
  align-items: center;
  width: clamp(220px, 19vw, 340px);
  min-width: 220px;
  margin-left: clamp(-20px, -1vw, -8px);
}

.larsson-brand img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 64px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(22px, 3.2vw, 54px);
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 25px 0;
  color: rgba(247, 248, 251, .88);
  transition: color .2s ease, transform .2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0;
  transform: translateX(-50%) scale(.7);
  box-shadow: 0 0 18px rgba(226, 69, 133, .68);
  transition: opacity .2s ease, transform .2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--white);
  transform: translateY(-1px);
}

.nav-links a.is-active::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  animation: larssonPulse 1.8s ease-in-out infinite;
}

.nav-side {
  display: flex;
  align-items: center;
  gap: 14px;
}

.millard-link {
  padding: 8px 13px;
  border: 1px solid rgba(249, 179, 35, .58);
  border-radius: 999px;
  color: var(--millard-yellow);
  background: rgba(249, 179, 35, .08);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  text-shadow: 0 0 6px rgba(249, 179, 35, .34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 0 8px rgba(249, 179, 35, .22), 0 0 16px rgba(249, 179, 35, .1);
  transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
  animation: millardGlow 2.8s ease-in-out infinite;
}

.nav-links .millard-link {
  padding: 8px 13px;
  color: var(--millard-yellow);
  border: 1px solid rgba(249, 179, 35, .58);
  border-radius: 999px;
  background: rgba(249, 179, 35, .08);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  text-shadow: 0 0 6px rgba(249, 179, 35, .34);
}

.millard-link:hover,
.nav-links .millard-link:hover,
.nav-links .millard-link:focus-visible {
  color: var(--navy);
  border-color: var(--millard-yellow);
  background: var(--millard-yellow);
  box-shadow: 0 0 0 2px rgba(249, 179, 35, .2), 0 0 18px rgba(249, 179, 35, .34);
  transform: translateY(-1px);
  animation: none;
}

.category-subnav {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 9998;
  width: 100%;
  padding: 8px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.4vw, 42px);
  border-bottom: 1px solid rgba(226, 69, 133, .2);
  background: rgba(8, 9, 11, .46);
  backdrop-filter: blur(10px);
}

body.larsson-category-page .page {
  padding-top: 108px;
}

.category-subnav a {
  position: relative;
  color: var(--yellow);
  font-size: clamp(11px, .86vw, 14px);
  font-weight: 500;
  letter-spacing: .03em;
  white-space: nowrap;
  transition: color .2s ease, transform .2s ease, text-shadow .2s ease;
}

.category-subnav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--yellow);
  transform: translateX(-50%);
  transition: width .22s ease;
}

.category-subnav a:hover,
.category-subnav a:focus-visible,
.category-subnav a.is-current {
  color: var(--white);
  text-shadow: 0 0 18px rgba(226, 69, 133, .58);
  transform: translateY(-1px);
}

.category-subnav a:hover::after,
.category-subnav a:focus-visible::after,
.category-subnav a.is-current::after {
  width: 100%;
}

.floating-cta {
  position: fixed;
  right: 30px;
  top: 82px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
  padding: 12px 22px;
  background: rgba(226, 69, 133, .94);
  color: var(--navy);
  font-size: 13px;
  line-height: 1;
  font-weight: 650;
  letter-spacing: .18em;
  text-transform: uppercase;
  backdrop-filter: blur(14px) saturate(1.25);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .32), 0 1px 0 rgba(255, 255, 255, .58) inset;
  animation: cta-pulse 4.2s ease-in-out infinite;
  text-shadow: none;
}

.floating-cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, .34), rgba(255, 255, 255, 0));
  z-index: -1;
}

.floating-cta::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -60%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .9), transparent);
  transform: skewX(-18deg);
  animation: shine 4.2s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.floating-cta:hover,
.floating-cta:focus-visible {
  transform: translateY(-4px) scale(1.06);
  color: var(--navy);
  background: rgba(226, 69, 133, .98);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .36), 0 0 0 4px rgba(255, 255, 255, .16), 0 0 28px rgba(226, 69, 133, .36);
  outline: 0;
}

.hero {
  min-height: clamp(560px, 75vh, 760px);
  display: grid;
  align-items: center;
  padding: clamp(70px, 8vw, 120px) 24px;
  position: relative;
}

.larsson-contact-page .contact-hero {
  min-height: calc(100vh - 72px);
  padding-top: clamp(56px, 6vw, 90px);
  padding-bottom: clamp(56px, 6vw, 90px);
  background: url("contacto/fondocontacto.png") 36% center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(226, 69, 133, .16), transparent 34%),
    linear-gradient(90deg, rgba(8, 9, 11, .92), rgba(8, 9, 11, .62), rgba(8, 9, 11, .9));
  pointer-events: none;
}

.larsson-contact-page .contact-hero::before {
  background:
    linear-gradient(90deg,
      rgba(0, 0, 0, .48) 0%,
      rgba(0, 0, 0, .26) 38%,
      rgba(7, 7, 9, .78) 55%,
      rgba(7, 7, 9, .96) 100%);
}

.hero-inner,
.section-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6vw, 92px);
  line-height: .95;
  font-weight: 950;
  letter-spacing: -.02em;
  text-shadow: 0 12px 34px rgba(0, 0, 0, .32);
}

.accent {
  color: var(--yellow);
}

.pink {
  color: var(--pink);
}

.hero-copy {
  max-width: 760px;
  color: rgba(247, 248, 251, .88);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.58;
}

.hero-panel {
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 26px;
  padding: 28px;
  background:
    radial-gradient(circle at 28% 18%, rgba(226, 69, 133, .18), transparent 36%),
    radial-gradient(circle at 75% 72%, rgba(226, 69, 133, .16), transparent 34%),
    rgba(255, 255, 255, .07);
  box-shadow: var(--shadow);
  display: grid;
  align-content: end;
}

.hero-panel strong {
  display: block;
  max-width: 13ch;
  color: var(--white);
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: .95;
  letter-spacing: -.02em;
}

.section {
  padding: clamp(58px, 7vw, 96px) 24px;
}

.section.is-tight {
  padding-top: clamp(38px, 5vw, 70px);
  padding-bottom: clamp(38px, 5vw, 70px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(280px, .85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.section-title {
  margin: 0;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.01em;
}

.section-lead {
  margin: 0;
  color: rgba(247, 248, 251, .8);
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.6;
}

.home-products-lead {
  text-shadow:
    0 2px 3px rgba(0, 0, 0, .98),
    0 6px 14px rgba(0, 0, 0, .92),
    0 14px 34px rgba(0, 0, 0, .76);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.value-card,
.product-card,
.support-card,
.faq-item,
.contact-card {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
}

.value-card {
  min-height: 220px;
  padding: 24px;
  display: grid;
  align-content: space-between;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(226, 69, 133, .62);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .3), 0 0 36px rgba(226, 69, 133, .2);
}

.larsson-value-grid .value-card {
  min-height: 270px;
  grid-template-rows: 102px 1fr;
  align-content: stretch;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.larsson-value-grid .value-card::before {
  content: none;
}

.larsson-value-grid .value-icon {
  width: min(74px, 34%);
  height: 70px;
  object-fit: contain;
  align-self: center;
  justify-self: center;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, .34));
}

.larsson-value-grid .value-card > div {
  align-self: start;
  text-align: center;
  min-height: 0;
}

.icon-dot {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--yellow);
  font-weight: 900;
}

.value-card h3,
.product-card h3,
.support-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.05;
}

.value-card p,
.product-card p,
.support-card p {
  margin: 0;
  color: rgba(247, 248, 251, .76);
  font-size: 14px;
  line-height: 1.55;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.larsson-products-section {
  background:
    linear-gradient(90deg, rgba(8, 9, 11, .18), rgba(8, 9, 11, .06), rgba(8, 9, 11, .2)),
    url("home/nuestrosproductos.jpg") center / cover no-repeat;
}

.product-card {
  min-height: 250px;
  padding: 24px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  position: relative;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, filter .28s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 12%, var(--card-color, rgba(226, 69, 133, .32)), transparent 45%);
  opacity: .9;
}

.product-card > * {
  position: relative;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(226, 69, 133, .68);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .34), 0 0 34px rgba(226, 69, 133, .28);
  filter: saturate(1.08) brightness(1.04);
  outline: 0;
}

.product-art {
  min-height: 108px;
  border: 1px dashed rgba(255, 255, 255, .22);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.larsson-home-products-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: minmax(320px, 1fr);
  align-items: stretch;
}

.larsson-home-products-grid .product-card {
  min-height: 0;
  height: 100%;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 20px;
  align-items: end;
  align-self: stretch;
  background:
    var(--product-image, linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03))),
    radial-gradient(circle at 18% 12%, var(--card-color, rgba(226, 69, 133, .32)), transparent 44%),
    linear-gradient(145deg, rgba(24, 25, 30, .96), rgba(8, 9, 11, .98));
  background-size: cover, auto, cover;
  background-position: center;
}

.larsson-home-products-grid .product-card::before {
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .04) 58%, rgba(0, 0, 0, .5) 100%);
  opacity: 1;
}

.larsson-home-products-grid .product-card h3,
.larsson-home-products-grid .product-card p {
  text-shadow: 0 4px 14px rgba(0, 0, 0, .72);
}

.larsson-home-products-grid .product-card h3 {
  font-size: clamp(14px, 1.12vw, 18px);
  line-height: 1.08;
}

.larsson-home-products-grid .product-card > div {
  transform: translateY(8px);
}

.larsson-home-products-grid .product-card p {
  line-height: 1.28;
}

.product-card-wiper {
  --product-image: url("home/limpiaparabrisas-nuestrosproductos.jpg");
}

.product-card-lighting {
  --product-image: url("home/iluminacion-nuestrosproductos%20.jpg");
}

.product-card-spark {
  --product-image: url("home/bujias-nuestrosproductos%20.jpg");
}

.product-card-adhesives {
  --product-image: url("home/adhesivosselladores.jpg");
}

.product-card-care {
  --product-image: url("home/cuidadomantenimiento.jpg");
}

.larsson-home-products-grid .product-card:nth-child(1) {
  grid-column: auto;
  grid-row: auto;
}

.larsson-home-products-grid .product-card:nth-child(2) {
  grid-column: auto;
  grid-row: auto;
}

.larsson-home-products-grid .product-card:nth-child(3) {
  grid-column: auto;
  grid-row: auto;
}

.larsson-home-products-grid .product-card:nth-child(4) {
  grid-column: auto;
  grid-row: auto;
}

.larsson-home-products-grid .product-card:nth-child(5) {
  grid-column: auto;
  grid-row: auto;
}

.larsson-home-products-grid .product-art {
  display: none;
}

.products-intro {
  padding: clamp(48px, 6vw, 86px) 24px clamp(18px, 3vw, 38px);
}

.products-intro-grid {
  width: min(1560px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(320px, .82fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
}

.products-intro .eyebrow {
  margin-bottom: 12px;
}

.products-intro h1 {
  margin: 0;
  max-width: 780px;
  color: var(--white);
  font-size: clamp(28px, 2.55vw, 48px);
  line-height: .98;
  font-weight: 850;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .34);
}

.products-intro h1 .accent {
  color: var(--yellow);
}

.products-intro .hero-copy {
  max-width: 760px;
  margin-top: clamp(8px, 1.6vw, 24px);
  transform: translateX(clamp(-72px, -4vw, -24px));
  font-size: clamp(15px, 1.2vw, 18px);
  text-shadow: 0 7px 24px rgba(0, 0, 0, .98), 0 3px 10px rgba(0, 0, 0, .92), 0 1px 2px rgba(0, 0, 0, 1);
}

.product-catalog {
  padding: 12px 0 clamp(42px, 5vw, 72px);
}

.product-catalog-grid {
  width: 100%;
  padding: 0 clamp(10px, 1.4vw, 24px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
}

.catalog-card {
  min-height: clamp(330px, 27vw, 460px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  padding: clamp(16px, 1.6vw, 24px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  background:
    var(--catalog-image, linear-gradient(145deg, rgba(34, 36, 42, .95), rgba(8, 9, 11, .96))),
    radial-gradient(circle at 20% 14%, var(--card-color, rgba(226, 69, 133, .4)), transparent 48%),
    linear-gradient(145deg, rgba(34, 36, 42, .95), rgba(8, 9, 11, .96));
  background-size: cover, auto, cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 22px 58px rgba(0, 0, 0, .28);
  cursor: pointer;
  text-align: left;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, filter .24s ease;
}

.catalog-card::after {
  display: none;
}

.catalog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .06) 48%, rgba(0, 0, 0, .66) 100%);
  pointer-events: none;
}

.catalog-card:hover,
.catalog-card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(226, 69, 133, .7);
  box-shadow: 0 30px 76px rgba(0, 0, 0, .38), 0 0 42px rgba(226, 69, 133, .22);
  outline: 0;
}

.catalog-card-media {
  display: none;
}

.catalog-card-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .54);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  background: rgba(255, 255, 255, .08);
  z-index: 2;
}

.catalog-card-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  grid-row: 2;
  align-self: end;
  padding-bottom: clamp(4px, .8vw, 10px);
  transform: translateY(clamp(4px, .7vw, 10px));
}

.catalog-card-copy span {
  color: rgba(247, 248, 251, .7);
  font-size: clamp(10px, .82vw, 12px);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 2px;
  transform: translateY(20px);
}

.catalog-card-copy h2 {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(39px, 3.7vw, 66px);
  line-height: 1.02;
  font-weight: 300;
  text-shadow: 0 8px 18px rgba(0, 0, 0, .35);
}

.catalog-card-copy p {
  margin: 2px 0 0;
  max-width: 25ch;
  color: rgba(247, 248, 251, .78);
  font-size: clamp(12px, .9vw, 14px);
  line-height: 1.42;
}

.catalog-wiper .catalog-card-media,
.catalog-heavy .catalog-card-media,
.catalog-rear .catalog-card-media {
  display: none;
}

.catalog-wiper {
  --catalog-image: url("productos/limpiaparabrisas.jpg");
}

.catalog-lighting {
  --catalog-image: url("productos/iluminacion%20.jpg");
}

.catalog-spark {
  --catalog-image: url("productos/bujias.jpg");
}

.catalog-adhesives {
  --catalog-image: url("productos/adhesivosselladores.jpg");
}

.catalog-care {
  --catalog-image: url("productos/cuidadomantenimiento.jpg");
}

.category-hero {
  padding: clamp(70px, 8vw, 118px) 24px clamp(36px, 5vw, 66px);
}

.category-hero-grid {
  width: min(1420px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(380px, .9fr);
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
}

.category-visual-slot {
  min-height: clamp(420px, 48vw, 660px);
  border: 1px solid rgba(226, 69, 133, .24);
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 24%, rgba(226, 69, 133, .18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .018)),
    rgba(0, 0, 0, .32);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

.category-hero {
  padding-top: clamp(42px, 5.4vw, 78px);
}

.wipers-category-page .category-visual-slot {
  background:
    url("detalle-productos/cat-limpiaparabrisas.png") center / cover no-repeat,
    rgba(0, 0, 0, .18);
}

.adhesives-category-page .category-visual-slot {
  background:
    url("detalle-productos/cat-adhesivos.png") center / cover no-repeat,
    rgba(0, 0, 0, .18);
}

.care-category-page .category-visual-slot {
  background:
    url("detalle-productos/cat-cuidadoymantenimiento.png") center / cover no-repeat,
    rgba(0, 0, 0, .18);
}

.lighting-category-page .category-visual-slot {
  background:
    url("detalle-productos/cat-iluminacion.png") center / cover no-repeat,
    rgba(0, 0, 0, .18);
}

.spark-category-page .category-visual-slot {
  background:
    url("detalle-productos/cat-bujias.png") center / cover no-repeat,
    rgba(0, 0, 0, .18);
}

.category-copy {
  justify-self: end;
  width: min(560px, 100%);
}

.category-copy .eyebrow {
  margin-bottom: 22px;
  color: var(--yellow);
  font-size: clamp(16px, 1.35vw, 23px);
  font-weight: 400;
  letter-spacing: .14em;
}

.category-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(21px, 2.1vw, 34px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0;
  text-shadow: 0 12px 34px rgba(0, 0, 0, .4);
}

.category-hero p:not(.eyebrow) {
  margin: 28px 0 0;
  max-width: 760px;
  color: rgba(247, 248, 251, .82);
  font-size: clamp(13px, 1vw, 17px);
  line-height: 1.5;
}

.category-panel {
  border: 1px solid rgba(226, 69, 133, .34);
  border-radius: 26px;
  padding: clamp(22px, 3vw, 38px);
  background:
    radial-gradient(circle at 92% 10%, rgba(226, 69, 133, .2), transparent 34%),
    rgba(14, 16, 20, .72);
  box-shadow: var(--shadow);
}

.category-panel strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(34px, 4vw, 62px);
  line-height: .92;
}

.category-panel span {
  display: block;
  margin-top: 14px;
  color: rgba(247, 248, 251, .76);
  font-size: 14px;
  line-height: 1.5;
}

.advantage-grid {
  width: min(1420px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 520px);
  justify-content: end;
  gap: 10px;
}

.category-copy .advantage-grid {
  width: 100%;
  margin: clamp(16px, 2vw, 28px) 0 0;
  grid-template-columns: 1fr;
  justify-content: stretch;
}

.advantage-card {
  min-height: 0;
  border: 0;
  border-radius: 0;
  padding: 6px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  background: transparent;
  box-shadow: none;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.advantage-card::before {
  content: none;
}

.advantage-card:hover {
  transform: translateX(4px);
  border-color: transparent;
  box-shadow: none;
}

.advantage-icon {
  width: 40px;
  height: 40px;
  border-radius: 0;
  display: grid;
  place-items: center;
  align-self: center;
  color: var(--yellow);
  background: transparent;
  box-shadow: none;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.advantage-card p {
  margin: 0;
  color: var(--yellow);
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: clamp(13px, .95vw, 16px);
  line-height: 1.25;
  font-weight: 700;
  align-self: center;
}

.category-products-grid {
  width: min(1420px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
}

.wiper-products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-hero + .section.is-tight {
  padding-top: clamp(14px, 2vw, 28px);
  padding-bottom: clamp(28px, 4vw, 54px);
}

.category-hero + .section.is-tight .section-inner {
  text-align: center;
  margin-bottom: clamp(18px, 2vw, 28px);
}

.category-product-card {
  min-height: 0;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(226, 69, 133, .28);
  border-radius: 20px;
  padding: clamp(16px, 1.4vw, 22px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background:
    var(--category-product-image, linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025))),
    linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025)),
    rgba(8, 9, 11, .7);
  background-size: 100% 100%, auto, auto;
  background-position: center, center, center;
  background-repeat: no-repeat;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  cursor: pointer;
}

.category-product-card.is-wiper-product {
  aspect-ratio: 1 / 1.48;
}

.category-product-card.is-display-product {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 81%, rgba(0, 0, 0, .88) 86%, rgba(0, 0, 0, .92) 100%),
    var(--category-product-image, linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025))),
    linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025)),
    rgba(8, 9, 11, .7);
  background-size: cover, cover, auto, auto;
  background-position: center, center, center, center;
}

.category-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(226, 69, 133, .76);
  box-shadow: 0 24px 58px rgba(0, 0, 0, .3), 0 0 34px rgba(226, 69, 133, .18);
}

.category-product-card h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(13px, .92vw, 17px);
  line-height: 1.1;
  text-align: center;
}

.category-product-card p {
  margin: 8px 0 0;
  color: var(--yellow);
  font-size: clamp(11px, .78vw, 14px);
  line-height: 1.25;
  font-weight: 400;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .72), 0 0 14px rgba(0, 0, 0, .48);
}

.larsson-product-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 42px);
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(10px);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.larsson-product-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.larsson-product-modal-card {
  width: min(1500px, 96vw);
  display: grid;
  grid-template-columns: minmax(360px, .74fr) minmax(420px, 1fr);
  align-items: stretch;
  gap: clamp(34px, 5vw, 86px);
  padding: clamp(18px, 2vw, 28px);
  border-radius: 22px;
  border: 1px solid rgba(226, 69, 133, .28);
  background:
    radial-gradient(circle at 86% 16%, rgba(226, 69, 133, .12), transparent 28%),
    linear-gradient(135deg, rgba(8, 9, 11, .96), rgba(18, 19, 23, .92));
  box-shadow: 0 30px 90px rgba(0, 0, 0, .54);
  overflow: visible;
}

.larsson-product-modal-visual {
  min-height: clamp(520px, 78vh, 820px);
  border-radius: 16px;
  background:
    var(--modal-image, radial-gradient(circle at 50% 36%, rgba(226, 69, 133, .22), transparent 34%));
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .34);
}

.larsson-product-modal-visual.is-contain {
  background-size: contain;
  background-position: center;
  background-color: rgba(0, 0, 0, .72);
}

.larsson-product-modal-copy {
  align-self: start;
  padding: clamp(8px, 1.6vw, 20px) 0;
}

.larsson-product-modal-copy h2 {
  margin: 0 0 26px;
  color: var(--yellow);
  font-size: clamp(20px, 1.8vw, 32px);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.larsson-product-modal-copy h3 {
  margin: 34px 0 14px;
  color: var(--yellow);
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.larsson-product-modal-copy p,
.larsson-product-modal-copy li {
  color: var(--white);
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 400;
  line-height: 1.65;
}

.larsson-product-modal-copy ul {
  margin: 0;
  padding-left: 20px;
}

.larsson-product-modal-copy .modal-format-note {
  margin: 18px 0 0;
  color: var(--yellow);
  font-weight: 600;
  line-height: 1.4;
}

.larsson-product-modal-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .48);
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.structure-grid {
  width: min(1420px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.structure-grid span {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: 12px 14px;
  color: rgba(247, 248, 251, .78);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.product-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(9px);
}

.product-modal-dialog {
  width: min(1180px, calc(100vw - 40px));
  position: relative;
  z-index: 1;
}

.product-modal-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
  z-index: 3;
}

.product-detail-card {
  min-height: min(720px, calc(100dvh - 56px));
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
  background:
    radial-gradient(circle at 12% 8%, var(--card-color, rgba(226, 69, 133, .38)), transparent 42%),
    linear-gradient(145deg, rgba(38, 40, 45, .96), rgba(8, 9, 11, .98));
  box-shadow: 0 34px 100px rgba(0, 0, 0, .48);
}

.product-detail-visual {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 70px);
  border-right: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
}

.product-detail-image {
  width: min(360px, 72%);
  aspect-ratio: 1;
  border: 1px dashed rgba(255, 255, 255, .26);
  border-radius: 26px;
  display: grid;
  place-items: center;
  color: rgba(247, 248, 251, .62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.product-detail-copy {
  padding: clamp(34px, 5vw, 72px);
  display: grid;
  align-content: center;
  gap: clamp(18px, 2vw, 28px);
}

.product-detail-copy .eyebrow {
  margin: 0;
}

.product-detail-copy h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 76px);
  line-height: .95;
  font-weight: 950;
  text-shadow: 0 12px 28px rgba(0, 0, 0, .36);
}

.product-detail-copy p {
  margin: 0;
  color: rgba(247, 248, 251, .86);
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.58;
}

.product-detail-copy p strong {
  color: var(--yellow);
}

body.product-modal-open {
  overflow: hidden;
}

.about-editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 1.4vw, 20px);
  counter-reset: aboutStory;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.about-story {
  counter-increment: aboutStory;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  padding: clamp(20px, 2.7vw, 36px);
  background:
    radial-gradient(circle at 8% 12%, rgba(226, 69, 133, .18), transparent 30%),
    radial-gradient(circle at 92% 88%, rgba(226, 69, 133, .1), transparent 32%),
    rgba(0, 0, 0, .64);
  box-shadow: 0 22px 58px rgba(0, 0, 0, .26);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.about-intro {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  margin-left: 0;
}

.about-intro h1 {
  max-width: 980px;
  margin: 0;
  color: var(--white);
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: clamp(18px, 2.1vw, 30px);
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.about-intro p:not(.eyebrow) {
  max-width: 1040px;
  margin: 0;
  color: rgba(247, 248, 251, .84);
  font-size: clamp(13px, 1vw, 17px);
  line-height: 1.62;
  font-weight: 300;
}

.about-story:first-child {
  min-height: 100%;
}

.about-story::before {
  content: none;
}

.about-story::after {
  content: "";
  position: absolute;
  inset: auto 24px 0 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 69, 133, .5), transparent);
  opacity: .55;
}

.about-story h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.14;
}

.about-accordion {
  display: block;
  padding: clamp(8px, 1vw, 14px) clamp(16px, 2vw, 28px);
}

.about-accordion summary {
  min-height: 38px;
  display: block;
  position: relative;
  padding: 8px 54px 4px 0;
  margin: 0;
  color: var(--white);
  font-size: clamp(13px, .95vw, 16px);
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.about-accordion summary span {
  display: inline;
}

.about-accordion summary::-webkit-details-marker {
  display: none;
}

.about-accordion summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(226, 69, 133, .5);
  border-radius: 50%;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--yellow);
  font-size: 22px;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform .22s ease, background .22s ease, color .22s ease;
}

.about-accordion[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: var(--yellow);
  color: var(--navy);
}

.about-accordion-content {
  display: grid;
  gap: 14px;
  margin-top: 8px;
  padding: 2px 54px 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  animation: accordionReveal .24s ease both;
}

.about-story p {
  margin: 0;
  max-width: none;
  color: rgba(247, 248, 251, .88);
  font-size: clamp(13px, .95vw, 16px);
  line-height: 1.65;
}

.about-story p + p {
  margin-top: 14px;
}

.about-accordion-content p + p {
  margin-top: 0;
}

.brand-larsson {
  color: var(--yellow);
  font-weight: 500;
}

.brand-millard {
  color: var(--millard-yellow);
  font-weight: 500;
}

.quality-process {
  display: grid;
  grid-template-columns: minmax(280px, .65fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  padding: clamp(24px, 3.2vw, 44px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 12%, rgba(226, 69, 133, .18), transparent 30%),
    radial-gradient(circle at 92% 88%, rgba(226, 69, 133, .1), transparent 32%),
    rgba(0, 0, 0, .64);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .32);
  backdrop-filter: blur(12px);
}

.about-quality-section {
  padding-top: clamp(26px, 3.5vw, 52px);
  padding-bottom: clamp(26px, 3.5vw, 52px);
}

.quality-title {
  font-size: clamp(26px, 3vw, 48px);
  margin-bottom: clamp(18px, 2vw, 30px);
}

.quality-steps {
  display: grid;
  gap: 14px;
}

.quality-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(8, 9, 11, .58);
}

.quality-step strong {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #17191d;
  font-size: 24px;
  font-weight: 650;
}

.quality-step h3 {
  margin: 0 0 7px;
  color: var(--yellow);
  font-size: 18px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.quality-step p {
  margin: 0;
  color: rgba(247, 248, 251, .78);
  line-height: 1.55;
}

.sales-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 36px);
  margin-top: 26px;
}

.sales-support-panel {
  margin-top: 24px;
  padding: clamp(22px, 2.7vw, 36px) clamp(22px, 2.7vw, 36px) clamp(22px, 2.7vw, 36px) clamp(34px, 4vw, 64px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 12%, rgba(226, 69, 133, .18), transparent 30%),
    radial-gradient(circle at 92% 88%, rgba(226, 69, 133, .1), transparent 32%),
    rgba(0, 0, 0, .64);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .3);
  backdrop-filter: blur(12px);
}

.sales-support-panel .sales-support-grid {
  margin-top: 0;
}

.sales-display-image {
  width: 100%;
  height: auto;
  max-height: clamp(260px, 34vw, 520px);
  margin: clamp(22px, 3vw, 42px) 0 clamp(22px, 2.5vw, 34px);
  border-radius: 22px;
  display: block;
  object-fit: contain;
  object-position: center;
  background: rgba(0, 0, 0, .34);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.larsson-about-page .section-head .section-lead {
  text-shadow: 0 3px 10px rgba(0, 0, 0, .78), 0 10px 28px rgba(0, 0, 0, .48);
}

.sales-support-card {
  min-height: 0;
  border: 0;
  border-radius: 0;
  padding: 0 0 0 22px;
  display: grid;
  align-content: start;
  position: relative;
  background: transparent;
}

.sales-support-card::before {
  content: "";
  position: absolute;
  top: .25em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(226, 69, 133, .58);
}

.sales-support-card h3 {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.05;
  text-transform: uppercase;
}

.sales-support-card p {
  margin: 0;
  color: rgba(247, 248, 251, .8);
  line-height: 1.55;
}

.about-market-cta {
  margin-top: clamp(-28px, -2vw, -14px);
  background:
    linear-gradient(90deg, rgba(8, 9, 11, .58), rgba(8, 9, 11, .22), rgba(8, 9, 11, .58)),
    url("sobre-larsson/hablemos.jpg") center / cover no-repeat;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  background: rgba(255, 255, 255, .08);
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.button.primary {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
  font-weight: 650;
}

.button.glass {
  background: rgba(0, 0, 0, .48);
  border-color: rgba(247, 248, 251, .34);
  color: var(--white);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
}

.button.glass:hover,
.button.glass:focus-visible {
  background: rgba(0, 0, 0, .62);
  border-color: rgba(226, 69, 133, .72);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .32), 0 0 26px rgba(226, 69, 133, .28);
  outline: 0;
}

.wide-button {
  width: 100%;
}

.cta-row:has(.wide-button) {
  width: 100%;
  align-items: stretch;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.bestseller-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.larsson-bestsellers-section {
  background:
    radial-gradient(circle at 85% 10%, rgba(226, 69, 133, .12), transparent 28%),
    rgba(255, 255, 255, .018);
}

.larsson-bestsellers-section .section-head,
.larsson-quality-section .section-head {
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.larsson-bestsellers-section .section-lead,
.larsson-quality-section .section-lead {
  max-width: 760px;
}

.larsson-bestsellers-section .bestseller {
  padding-top: clamp(44px, 5vw, 78px);
}

.bestseller {
  aspect-ratio: 1;
  min-height: 0;
  border-radius: 16px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .06) 0%, rgba(0, 0, 0, .14) 46%, rgba(0, 0, 0, .68) 100%),
    var(--bestseller-image, linear-gradient(135deg, rgba(226, 69, 133, .18), rgba(0, 0, 0, .2)));
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, .14);
  display: grid;
  align-content: end;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, filter .28s ease;
}

.bestseller:hover,
.bestseller:focus-visible {
  transform: translateY(-8px) scale(1.018);
  border-color: rgba(226, 69, 133, .72);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .34), 0 0 36px rgba(226, 69, 133, .32);
  filter: saturate(1.1) brightness(1.05);
  outline: 0;
}

.bestseller:nth-child(1) {
  --bestseller-image: url("home/wipershome.png");
}

.bestseller:nth-child(2) {
  --bestseller-image: url("home/rtvsiliconehome.png");
}

.bestseller:nth-child(3) {
  --bestseller-image: url("home/threadlockerhome.png");
}

.bestseller:nth-child(4) {
  --bestseller-image: url("home/epoxyhome.png");
}

.bestseller:nth-child(5) {
  --bestseller-image: url("home/handcleanerhome.png");
}

.bestseller strong {
  color: var(--yellow);
  letter-spacing: .12em;
  text-shadow: 0 3px 4px rgba(0, 0, 0, .95), 0 8px 18px rgba(0, 0, 0, .9), 0 0 26px rgba(0, 0, 0, .72);
}

.bestseller span {
  text-shadow: 0 3px 4px rgba(0, 0, 0, .95), 0 8px 18px rgba(0, 0, 0, .9), 0 0 26px rgba(0, 0, 0, .72);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 36px);
}

.support-card {
  padding: 28px;
  min-height: 230px;
}

.larsson-quality-section {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .24), rgba(0, 0, 0, .08), rgba(0, 0, 0, .24)),
    url("home/calidadlarsson.jpg") center / cover no-repeat;
}

.larsson-sales-section .support-card {
  min-height: 0;
  padding: 0 0 0 22px;
  display: grid;
  align-content: start;
  position: relative;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.larsson-sales-section .support-card::before {
  content: "";
  position: absolute;
  top: .25em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(226, 69, 133, .58);
}

.larsson-sales-section .support-card h3 {
  padding: 0;
  margin: 0 0 10px;
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.05;
}

.larsson-sales-section .support-card p {
  padding: 0;
  margin: 0;
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.55;
}

.larsson-social-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(226, 69, 133, .13), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, .026), rgba(255, 255, 255, .008));
}

.larsson-faq-section {
  background:
    linear-gradient(90deg, rgba(8, 9, 11, .28), rgba(8, 9, 11, .14), rgba(8, 9, 11, .34)),
    url("home/faq.png") center / cover no-repeat;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border-color: rgba(247, 248, 251, .22);
  background: rgba(0, 0, 0, .42);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .2);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  background: rgba(0, 0, 0, .48);
  color: var(--white);
  border: 1px solid rgba(247, 248, 251, .24);
  border-radius: 18px;
  font-weight: 650;
  letter-spacing: .05em;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
  background: rgba(0, 0, 0, .62);
  border-color: rgba(226, 69, 133, .72);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .28), 0 0 26px rgba(226, 69, 133, .22);
  outline: 0;
}

.faq-item[open] summary {
  border-color: rgba(226, 69, 133, .64);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: rgba(0, 0, 0, .58);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-answer {
  padding: 20px 22px 24px;
  background: #24262b;
  color: var(--white);
  font-size: 15px;
  line-height: 1.65;
}

.faq-brand-larsson {
  color: var(--yellow);
}

.faq-brand-millard {
  color: var(--millard-yellow);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .62fr) minmax(560px, 1fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: stretch;
}

.contact-form-card {
  width: min(680px, 100%);
  justify-self: end;
  padding: clamp(38px, 5.4vw, 74px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 10%, rgba(226, 69, 133, .14), transparent 34%),
    linear-gradient(145deg, rgba(8, 9, 11, .76), rgba(22, 24, 28, .7));
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: rgba(247, 248, 251, .76);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(226, 69, 133, .42);
  border-radius: 12px;
  padding: 17px 20px;
  background: rgba(0, 0, 0, .22);
  color: var(--white);
  font: inherit;
  outline: 0;
}

.field select {
  background-color: rgba(8, 9, 11, .95);
}

.field select option {
  background: #08090b;
  color: var(--white);
}

.field select optgroup {
  background: #08090b;
  color: var(--yellow);
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--white);
  background: rgba(8, 9, 11, .42);
  box-shadow: 0 0 0 3px rgba(226, 69, 133, .16), 0 0 26px rgba(226, 69, 133, .14);
}

.field textarea {
  min-height: 190px;
  resize: vertical;
}

.phone-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
}

.phone-row input:first-child {
  padding-left: 11px;
  padding-right: 8px;
}

.field-captcha .g-recaptcha {
  min-height: 78px;
}

.privacy-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(247, 248, 251, .82);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
}

.privacy-consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--yellow);
  cursor: pointer;
}

.privacy-consent a {
  color: var(--yellow);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.submit-btn {
  margin-top: 16px;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.submit-btn::after {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -42%;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .76), transparent);
  transform: skewX(-18deg);
  transition: left .55s ease;
}

.submit-btn:hover,
.submit-btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .28), 0 0 28px rgba(226, 69, 133, .28);
  outline: 0;
}

.submit-btn:hover::after,
.submit-btn:focus-visible::after {
  left: 120%;
}

.form-confirmation {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.form-confirmation.is-open {
  opacity: 1;
  pointer-events: auto;
}

.form-confirmation-card {
  width: min(480px, 100%);
  border: 1px solid rgba(226, 69, 133, .45);
  border-radius: 22px;
  padding: 36px;
  background: linear-gradient(145deg, rgba(8, 9, 11, .98), rgba(22, 24, 28, .96));
  box-shadow: var(--shadow);
  text-align: center;
  transform: translateY(14px) scale(.98);
  transition: transform .24s ease;
}

.form-confirmation.is-open .form-confirmation-card {
  transform: translateY(0) scale(1);
}

.form-confirmation-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
}

.form-confirmation-close {
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
}

.footer-social {
  border-top: 2px solid var(--yellow);
  padding: 50px 24px 34px;
}

.social-grid {
  width: min(320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  text-align: center;
}

.social-circle {
  width: 78px;
  height: 78px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .26);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.social-circle img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  display: block;
}

.final-cta {
  padding: 58px 24px;
  text-align: center;
}

body.larsson-products-page .final-cta {
  padding-top: 30px;
}

.larsson-more-section {
  background:
    linear-gradient(90deg, rgba(8, 9, 11, .34), rgba(8, 9, 11, .14), rgba(8, 9, 11, .36)),
    url("home/sabermas2.jpg") center / cover no-repeat;
}

.larsson-legal-page {
  background:
    radial-gradient(circle at 16% 6%, rgba(226, 69, 133, .2), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, .08), transparent 28%),
    linear-gradient(145deg, #141519 0%, #0b0c10 50%, #17191d 100%);
}

.larsson-legal-hero {
  min-height: auto;
  padding: clamp(76px, 9vw, 132px) 24px clamp(34px, 5vw, 68px);
}

.legal-shell,
.legal-document-card {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.legal-shell {
  display: grid;
  gap: 16px;
}

.legal-shell h1 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: clamp(26px, 3.4vw, 48px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-shadow: 0 16px 30px rgba(0, 0, 0, .42);
}

.legal-shell p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(15px, 1.1vw, 19px);
  line-height: 1.65;
  font-weight: 300;
}

.legal-content-section {
  padding: 0 0 clamp(48px, 7vw, 96px);
}

.legal-document-card {
  display: grid;
  gap: 34px;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(226, 69, 133, .28);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(36, 38, 43, .92), rgba(14, 15, 19, .94));
  box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
}

.legal-block {
  display: grid;
  gap: 14px;
}

.legal-block + .legal-block {
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.legal-block h2,
.legal-block h3 {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  text-transform: uppercase;
}

.legal-block h2 {
  color: var(--yellow);
  font-size: clamp(16px, 1.35vw, 24px);
  font-weight: 500;
  letter-spacing: .08em;
}

.legal-block h3 {
  margin-top: 12px;
  color: var(--white);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 500;
  letter-spacing: .06em;
}

.legal-block p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.72;
  font-weight: 300;
}

.legal-block a {
  color: var(--yellow);
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.final-cta .button {
  min-width: min(360px, 100%);
}

.footer {
  border-top: 2px solid var(--yellow);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .08), transparent 34%),
    linear-gradient(135deg, #24262b 0%, #17191d 46%, #0b0c10 100%);
  padding: clamp(30px, 4vw, 54px) 28px 14px;
  display: grid;
  justify-content: stretch;
  gap: clamp(24px, 3vw, 40px);
  color: var(--white);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .08em;
  text-transform: none;
}

.footer-links {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 70px);
  text-align: center;
}

.footer-link-group {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer-link-title {
  margin-bottom: 6px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(247, 248, 251, .78);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .02em;
  transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--yellow);
  transform: translateY(-1px);
  outline: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@keyframes shine {
  0%, 52% {
    left: -55%;
  }
  68%, 100% {
    left: 120%;
  }
}

@keyframes accordionReveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cta-pulse {
  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.08);
  }
}

@keyframes millardGlow {
  0%,
  100% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 0 7px rgba(249, 179, 35, .18), 0 0 14px rgba(249, 179, 35, .1);
    filter: brightness(1);
  }

  50% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 0 10px rgba(249, 179, 35, .34), 0 0 20px rgba(249, 179, 35, .18);
    filter: brightness(1.08);
  }
}

@keyframes larssonPulse {
  50% {
    transform: translateX(-50%) scale(1.28);
    opacity: .72;
  }
}

@media (max-width: 980px) {
  .larsson-nav,
  .hero-grid,
  .section-head,
  .contact-layout,
  .about-editorial,
  .products-intro-grid,
  .category-hero-grid,
  .quality-process,
  .product-detail-card {
    grid-template-columns: 1fr;
  }

  .larsson-home-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .larsson-home-products-grid .product-card {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    min-height: 250px;
  }

  .about-story:first-child {
    grid-row: auto;
  }

  .nav-links {
    order: 3;
    grid-column: 1 / -1;
    flex-wrap: wrap;
    padding-bottom: 10px;
  }

  .value-grid,
  .product-grid,
  .support-grid,
  .bestseller-strip,
  .product-catalog-grid,
  .category-products-grid,
  .sales-support-grid,
  .structure-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-card {
    overflow: visible;
  }

  .product-detail-visual {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

}

@media (max-width: 640px) {
  .larsson-nav,
  .hero-inner,
  .section-inner {
    width: min(100% - 28px, 1280px);
  }

  .floating-cta {
    top: auto;
    right: 14px;
    bottom: 14px;
  }

  .value-grid,
  .product-grid,
  .support-grid,
  .bestseller-strip,
  .social-grid,
  .product-catalog-grid {
    grid-template-columns: 1fr;
  }

  .products-intro-grid,
  .product-catalog-grid,
  .category-hero-grid,
  .advantage-grid,
  .category-products-grid,
  .sales-support-grid,
  .structure-grid {
    width: min(100% - 20px, 1280px);
  }

  .advantage-grid,
  .category-products-grid,
  .sales-support-grid,
  .structure-grid {
    grid-template-columns: 1fr;
  }

  .sales-support-grid {
    grid-template-rows: none;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-links,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: center;
  }
}

h1,
h2,
h3,
.section-title,
.hero-panel strong,
.products-intro h1,
.category-hero h1,
.category-panel strong,
.catalog-card-copy h2,
.category-product-card h3,
.about-story h2,
.quality-step h3,
.sales-support-card h3,
.value-card h3,
.product-card h3,
.support-card h3,
.bestseller strong,
.form-confirmation-card h2 {
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .045em;
}

p,
.hero-copy,
.section-lead,
.products-intro .hero-copy,
.catalog-card-copy p,
.category-hero p:not(.eyebrow),
.category-panel span,
.advantage-card p,
.about-story p,
.quality-step p,
.sales-support-card p,
.value-card p,
.product-card p,
.support-card p,
.faq-answer,
.contact-form input,
.contact-form textarea,
.form-confirmation-card p {
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-weight: 300;
}

h1,
h2,
h3,
.section-title,
.eyebrow,
.hero-copy,
.section-lead,
.value-card p,
.product-card p,
.support-card p,
.bestseller p,
.catalog-card-copy p,
.about-story p,
.quality-step p,
.sales-support-card p {
  text-shadow: 0 3px 12px rgba(0, 0, 0, .52);
}

h1,
.products-intro h1,
.category-hero h1 {
  font-size: clamp(28px, 3.45vw, 52px);
  line-height: 1;
}

.category-hero .category-copy h1 {
  font-size: clamp(19px, 1.85vw, 30px);
  line-height: 1.08;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
}

.category-hero .category-copy > .eyebrow {
  margin-bottom: 34px;
}

.category-hero .category-copy > p:not(.eyebrow) {
  margin-top: 38px;
}

.category-copy .advantage-card {
  align-items: center;
}

.category-copy .advantage-icon {
  width: 46px;
  height: 46px;
  font-size: 38px;
  line-height: 1;
  align-self: start;
  position: relative;
  top: 15px;
  transform: none;
}

.category-copy .advantage-card p {
  color: var(--white);
  font-weight: 600;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.22;
  align-self: center;
}

.category-products-grid .category-product-card {
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding-bottom: clamp(10px, 1vw, 16px);
}

.category-products-grid .category-product-card h3 {
  font-size: clamp(11px, .78vw, 14px);
  line-height: 1.1;
  font-weight: 400;
}

.category-products-grid .category-product-card p {
  margin-top: 4px;
}

.lighting-category-page .category-products-grid .category-product-card {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, .8) 100%),
    var(--category-product-image, linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025))),
    linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025)),
    rgba(8, 9, 11, .7);
  background-size: cover, 100% 100%, auto, auto;
  background-position: center, center, center, center;
  background-repeat: no-repeat;
}

.lighting-category-page .category-products-grid .category-product-card h3,
.lighting-category-page .category-products-grid .category-product-card p {
  text-shadow: 0 3px 10px rgba(0, 0, 0, .86), 0 0 18px rgba(0, 0, 0, .72);
}

@media (max-width: 980px) {
  .category-subnav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-inline: 18px;
    scrollbar-width: none;
  }

  .category-subnav::-webkit-scrollbar {
    display: none;
  }

  .larsson-product-modal-card {
    grid-template-columns: 1fr;
  }

  .larsson-product-modal-visual {
    min-height: 420px;
  }
}

.products-intro h1 {
  font-size: clamp(22px, 2.05vw, 34px);
  line-height: 1.08;
}

.larsson-home-hero h1 {
  max-width: 980px;
  font-size: clamp(24px, 2.6vw, 40px);
  line-height: 1.08;
  text-shadow:
    0 2px 3px rgba(0, 0, 0, .98),
    0 8px 22px rgba(0, 0, 0, .82),
    0 18px 44px rgba(0, 0, 0, .62);
}

.larsson-home-hero .eyebrow,
.larsson-home-hero .hero-copy {
  text-shadow:
    0 2px 3px rgba(0, 0, 0, .94),
    0 8px 20px rgba(0, 0, 0, .78),
    0 16px 36px rgba(0, 0, 0, .58);
}

.larsson-home-hero {
  background: url("hero/Fondo.jpg") right center / cover no-repeat;
}

.larsson-home-hero::before {
  background:
    radial-gradient(circle at 72% 26%, rgba(226, 69, 133, .08), transparent 32%),
    linear-gradient(90deg, rgba(8, 9, 11, .24), rgba(8, 9, 11, .06), rgba(8, 9, 11, .18));
}

.larsson-about-hero h1 {
  font-size: clamp(24px, 2.8vw, 42px);
  line-height: 1.08;
}

.section-title {
  font-size: clamp(22px, 2.35vw, 34px);
}

body .quality-title {
  font-size: clamp(18px, 1.85vw, 28px);
  margin-bottom: clamp(18px, 2vw, 30px);
}

.larsson-home-hero h1 {
  font-size: clamp(20px, 2.05vw, 31px);
  line-height: 1.12;
}

.larsson-stacked-head {
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.larsson-stacked-head .section-lead {
  max-width: 760px;
}

.larsson-products-section .home-products-lead {
  color: rgba(255, 255, 255, .96);
  text-shadow:
    0 1px 1px rgba(0, 0, 0, 1),
    0 3px 5px rgba(0, 0, 0, .98),
    0 8px 18px rgba(0, 0, 0, .95),
    0 18px 42px rgba(0, 0, 0, .82);
}

.catalog-card-copy h2 {
  color: var(--yellow);
  font-size: clamp(39px, 3.7vw, 66px);
  line-height: 1.02;
  font-weight: 300;
}

.catalog-card-copy h2 .accent {
  color: var(--yellow);
}

body.larsson-products-page .catalog-card-copy {
  gap: 8px;
  transform: translateY(14px);
}

body.larsson-products-page .catalog-card-copy span {
  display: block;
  position: relative;
  top: 12px;
  margin-bottom: 10px;
  transform: none;
}

body.larsson-products-page .catalog-card-copy h2 {
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  color: var(--yellow) !important;
  font-size: clamp(12px, 1vw, 18px) !important;
  line-height: .96;
  font-weight: 300 !important;
  letter-spacing: .015em;
}

body.larsson-products-page .catalog-card-copy h2 .accent {
  color: var(--yellow) !important;
  font-size: inherit;
  font-weight: inherit;
}


/* --- Ajustes responsive añadidos (07/09/2026): la columna del formulario de
   contacto imponía un ancho mínimo mayor que el móvil (minmax con suelo de
   contenido). Se fuerza minmax(0,1fr) y min-width:0 en los hijos. --- */
@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-layout > * {
    min-width: 0;
    max-width: 100%;
  }

  .contact-form-card {
    justify-self: stretch;
    width: 100%;
  }
}


@media (max-width: 640px) {
  /* El widget de reCAPTCHA mide 304px fijos: se reduce el padding de la
     tarjeta y se escala el widget para que quepa en pantallas estrechas. */
  .contact-form-card {
    padding: 26px 18px;
  }

  .contact-form {
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
  }

  .field-captcha .g-recaptcha {
    transform: scale(.82);
    transform-origin: 0 0;
  }
}

@media (max-width: 420px) {
  .field-captcha .g-recaptcha {
    transform: scale(.72);
  }

  .field-captcha {
    min-height: 62px;
  }
}


/* --- Menú hamburguesa en móvil (07/09/2026): la barra fija con los enlaces
   en varias filas ocupaba ~1/3 de la pantalla y tapaba el contenido. En
   pantallas ≤980px los enlaces se pliegan en un panel desplegable. --- */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 10px 4px;
  justify-self: end;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px 0;
  border-radius: 2px;
  background: var(--white);
  transition: transform .25s ease, opacity .2s ease;
}

.larsson-nav.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.larsson-nav.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.larsson-nav.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 980px) {
  .larsson-nav {
    grid-template-columns: auto 1fr;
    min-height: 70px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .nav-links {
    display: none;
    order: 0;
    grid-column: auto;
    padding-bottom: 0;
  }

  .larsson-nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 10px 22px 20px;
    background: linear-gradient(180deg, rgba(8, 9, 11, .98), rgba(22, 24, 28, .99));
    border-bottom: 2px solid var(--yellow);
    box-shadow: 0 22px 40px rgba(0, 0, 0, .5);
  }

  .larsson-nav.nav-open .nav-links a {
    padding: 13px 0;
  }

  .larsson-nav.nav-open .nav-links .millard-link {
    margin: 10px auto 0;
  }

  .larsson-nav.nav-open .nav-links .lang-picker {
    margin: 12px auto 0;
  }
}


/* --- Hero de la home en móvil (07/09/2026): con cover anclado a la derecha
   se veía solo el chorro rosa brillante y el texto se perdía. Se reencuadra
   a la zona oscura del panal (~25% de la imagen, la misma que queda detrás
   del texto en escritorio) y se refuerza el velo para asegurar contraste. --- */
@media (max-width: 820px) {
  .larsson-home-hero {
    background-position: 25% center;
  }

  .larsson-home-hero::before {
    background:
      linear-gradient(180deg,
        rgba(8, 9, 11, .66) 0%,
        rgba(8, 9, 11, .42) 46%,
        rgba(8, 9, 11, .58) 100%);
  }
}


/* --- Botón flotante "Quiero Larssön" más discreto en móvil (07/09/2026):
   la píldora ocupaba media pantalla y tapaba los botones del hero. --- */
@media (max-width: 640px) {
  .floating-cta {
    padding: 9px 14px;
    font-size: 11px;
    letter-spacing: .08em;
    background: rgba(226, 69, 133, .9);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
    animation: none;
  }
}


/* --- Indicador "+" en las preguntas frecuentes (07/09/2026): el mismo
   circulito rosa de los acordeones de "Sobre Larssön". Gira a "×" al abrir. --- */
.faq-item summary {
  position: relative;
  padding-right: 66px;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(226, 69, 133, .5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--yellow);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform .22s ease, background .22s ease, color .22s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: var(--yellow);
  color: var(--navy);
}

@media (max-width: 640px) {
  .faq-item summary {
    padding-right: 58px;
  }

  .faq-item summary::after {
    width: 28px;
    height: 28px;
    font-size: 18px;
    right: 14px;
  }
}


/* --- Títulos de los acordeones "Sobre Larssön" en móvil (07/09/2026):
   con el interlineado prieto de escritorio, el subrayado rosa de cada línea
   caía sobre la línea siguiente y parecía un tachado. Se da aire al
   interlineado y se acerca un poco el subrayado. --- */
@media (max-width: 820px) {
  .about-accordion summary {
    line-height: 1.85;
    text-underline-offset: 4px;
  }
}


/* --- Tarjetas de categorías de la home en anchuras intermedias (07/09/2026):
   el diseño mantiene 5 columnas hasta 980px y en portátiles las tarjetas
   quedaban tan estrechas que los textos se desalineaban y desbordaban.
   Escalón de 3 columnas entre 981 y 1500px. --- */
@media (max-width: 1500px) and (min-width: 981px) {
  /* 6 pistas y tarjetas de 2: fila de 3 arriba y fila de 2 CENTRADA abajo */
  .larsson-home-products-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .larsson-home-products-grid .product-card:nth-child(n) {
    grid-column: span 2;
    grid-row: auto;
    min-height: 280px;
  }

  .larsson-home-products-grid .product-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
}

/* En cualquier anchura: que los títulos largos nunca se salgan de la tarjeta */
.larsson-home-products-grid .product-card h3 {
  overflow-wrap: break-word;
}

.larsson-home-products-grid .product-card p {
  font-size: clamp(13px, .95vw, 16px);
}


/* --- Alineación de títulos en las tarjetas de categorías (07/09/2026):
   cada descripción ocupa distinto número de líneas y, al anclarse todo al
   pie de la tarjeta, los títulos quedaban a alturas distintas. Se reserva
   una zona de descripción uniforme (en líneas, unidad lh) por tramo. --- */
@media (min-width: 1501px) {
  .larsson-home-products-grid .product-card p {
    min-height: 5lh;
  }
}


@media (max-width: 1500px) and (min-width: 981px) {
  .larsson-home-products-grid .product-card p {
    min-height: 3lh;
  }
}


/* --- Tarjetas de categorías: zona de texto uniforme y legible (07/09/2026).
   1) Título con zona fija de 2 líneas anclada ARRIBA: todos los títulos
      arrancan en la misma línea, tengan 1 o 2 líneas.
   2) Velo inferior más oscuro para que el texto no se pierda sobre la foto.
   3) Más altura de tarjeta para que la foto conserve aire. --- */
@media (min-width: 981px) {
  .larsson-home-products-grid .product-card h3 {
    min-height: 2lh;
  }

  .larsson-home-products-grid .product-card::before {
    background: linear-gradient(180deg,
      transparent 0%,
      rgba(0, 0, 0, .06) 40%,
      rgba(0, 0, 0, .62) 66%,
      rgba(4, 4, 6, .92) 100%);
    opacity: 1;
  }
}

@media (min-width: 1501px) {
  .larsson-home-products-grid {
    grid-template-rows: minmax(430px, 1fr);
  }
}

@media (max-width: 1500px) and (min-width: 981px) {
  .larsson-home-products-grid .product-card:nth-child(n) {
    min-height: 360px;
  }
}


/* --- SIEMPRE 5 tarjetas en fila desde 981px (07/09/2026): con las zonas de
   texto uniformes ya caben bien; el escalón 3+2 de portátil se retira.
   Tipografía compacta en anchuras justas para que nada desborde. --- */
@media (max-width: 1500px) and (min-width: 981px) {
  .larsson-home-products-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-template-rows: minmax(380px, 1fr);
    gap: 14px;
  }

  .larsson-home-products-grid .product-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    min-height: 380px;
  }

  .larsson-home-products-grid .product-card h3 {
    font-size: clamp(12px, 1.05vw, 16px);
    letter-spacing: .01em;
  }

  .larsson-home-products-grid .product-card p {
    font-size: clamp(12px, .9vw, 14px);
    min-height: 5lh;
  }
}
