/* ============================================================
   SISTEMA DE DISEÑO — PROSONIK
   Negro / blanco / rojo, tipografía industrial acorde al
   logotipo en bloque, y un ecualizador rojo como elemento de
   firma (referencia directa a "sonik" / sonorización).
   ============================================================ */

:root {
  /* Color */
  --black:      #0b0b0c;
  --white:      #ffffff;
  --off-white:  #f4f4f5;
  --gray:       #6b6b70;
  --gray-line:  #e3e3e5;
  --red:        #ed1b25;
  --red-dark:   #c81420;

  /* Tipografía */
  --font-display: 'Oswald', sans-serif;   /* bloque condensado, eco del logotipo */
  --font-body:    'Inter', sans-serif;

  /* Layout */
  --max-width: 1200px;
  --radius: 6px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }

p { color: var(--gray); margin: 0 0 1em; }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-alt { background: var(--off-white); }

/* ---------------- Header / navegación ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  border-bottom: 3px solid var(--red);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo img {
  height: 26px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.main-nav > ul > li {
  position: relative;
}

.main-nav > ul > li > a {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 8px 0;
  color: var(--white);
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.main-nav > ul > li:hover > a,
.main-nav > ul > li > a:focus-visible {
  border-color: var(--red);
  color: var(--red);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #19191b;
  border-top: 2px solid var(--red);
  box-shadow: 0 12px 24px rgba(0,0,0,0.35);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.main-nav > ul > li:hover .dropdown,
.main-nav > ul > li:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 0.92rem;
  color: var(--off-white);
}

.dropdown a:hover,
.dropdown a:focus-visible {
  background: rgba(255,255,255,0.08);
  color: var(--red);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 2px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  border: 2px solid var(--black);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s;
}

.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-ghost { color: var(--black); }
.btn-ghost:hover { border-color: var(--red); color: var(--red); }

.site-header .btn-ghost { color: var(--white); border-color: var(--white); }
.site-header .btn-ghost:hover { border-color: var(--red); color: var(--red); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ---------------- Hero ---------------- */

.hero {
  background: var(--black);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

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

/* ---------------- Focos móviles animados de fondo en el header ---------------- */

.hero-lights {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-lights .foco {
  position: absolute;
  top: -10px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: #2a2a2e;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
  transform-origin: top center;
  animation: barrido-foco 6s ease-in-out infinite alternate;
}

.hero-lights .foco::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--beam-color, rgba(237, 27, 37, 0.6));
  filter: blur(3px);
  opacity: 0.95;
}

.hero-lights .foco::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  width: 130px;
  height: 620px;
  transform: translateX(-50%);
  background: conic-gradient(from 0deg at 50% 0%, transparent 46%, var(--beam-color, rgba(237, 27, 37, 0.35)) 50%, transparent 54%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 8%, transparent 80%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 8%, transparent 80%);
  filter: blur(5px);
  mix-blend-mode: screen;
  opacity: 1;
}

.hero-lights .foco:nth-child(1) { left: 10%;  --beam-color: rgba(255, 50, 60, 1); animation-duration: 7s;   animation-delay: 0s; }
.hero-lights .foco:nth-child(2) { left: 37%;  --beam-color: rgba(255, 255, 255, 0.75); animation-duration: 5.5s; animation-delay: -2.3s; }
.hero-lights .foco:nth-child(3) { left: 64%;  --beam-color: rgba(255, 50, 60, 0.9); animation-duration: 8s;   animation-delay: -4.1s; }
.hero-lights .foco:nth-child(4) { left: 89%;  --beam-color: rgba(255, 255, 255, 0.65); animation-duration: 6.4s; animation-delay: -1.2s; }

@keyframes barrido-foco {
  0%   { transform: rotate(-34deg); }
  100% { transform: rotate(34deg); }
}

/* Temas de color por sección */
.hero-bodas .foco:nth-child(1) { --beam-color: rgba(226, 184, 120, 0.4); }
.hero-bodas .foco:nth-child(2) { --beam-color: rgba(255, 255, 255, 0.28); }
.hero-bodas .foco:nth-child(3) { --beam-color: rgba(226, 184, 120, 0.32); }
.hero-bodas .foco:nth-child(4) { --beam-color: rgba(255, 232, 196, 0.22); }

.hero-fiestas .foco:nth-child(1) { --beam-color: rgba(255, 60, 170, 0.4); }
.hero-fiestas .foco:nth-child(2) { --beam-color: rgba(60, 210, 255, 0.35); }
.hero-fiestas .foco:nth-child(3) { --beam-color: rgba(255, 214, 40, 0.32); }
.hero-fiestas .foco:nth-child(4) { --beam-color: rgba(150, 90, 255, 0.32); }

.hero-sonorizacion .foco:nth-child(1) { --beam-color: rgba(90, 160, 255, 0.4); }
.hero-sonorizacion .foco:nth-child(2) { --beam-color: rgba(255, 255, 255, 0.22); }
.hero-sonorizacion .foco:nth-child(3) { --beam-color: rgba(90, 160, 255, 0.3); }
.hero-sonorizacion .foco:nth-child(4) { --beam-color: rgba(180, 210, 255, 0.2); }

.hero-alquiler .foco:nth-child(1) { --beam-color: rgba(237, 27, 37, 0.4); }
.hero-alquiler .foco:nth-child(2) { --beam-color: rgba(255, 255, 255, 0.24); }
.hero-alquiler .foco:nth-child(3) { --beam-color: rgba(237, 27, 37, 0.3); }
.hero-alquiler .foco:nth-child(4) { --beam-color: rgba(255, 255, 255, 0.18); }

@media (prefers-reduced-motion: reduce) {
  .hero-lights .foco { animation: none; transform: rotate(0deg); }
}

@media (max-width: 720px) {
  .hero-lights .foco::after { width: 160px; }
}

.hero p { color: #c7c7c9; }

.hero .eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--red);
  padding-bottom: 6px;
}

/* ---------------- Imagen de portada (debajo del hero, con parallax via main.js) ---------------- */

.hero-portada {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 320px;
  max-height: 560px;
  overflow: hidden;
  background: var(--black);
}

.hero-portada img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  transform: translateY(-50%);
  display: block;
}

@media (max-width: 720px) {
  .hero-portada {
    height: 45vh;
    min-height: 220px;
    max-height: 380px;
  }
}

.card.product-card { padding: 0; overflow: hidden; }

/* ---------------- Fila de producto (catálogo público): texto izquierda, foto derecha ---------------- */

.product-list { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.product-list-extra[hidden] { display: none !important; }

.btn-ver-mas-grupo {
  display: block;
  margin: 14px auto 0;
  padding: 10px 22px;
  background: none;
  border: 1px solid var(--gray-line);
  border-radius: 999px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .03em;
  color: var(--black);
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease;
}
.btn-ver-mas-grupo:hover { border-color: var(--red); color: var(--red); }

/* ---------------- Resumen compacto de un grupo de productos ---------------- */

.product-resumen {
  margin-top: 20px;
  padding: 22px 24px;
}

.product-resumen-lista {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-resumen-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--off-white);
  border: 1px solid var(--gray-line);
  border-radius: 999px;
  padding: 6px 16px 6px 6px;
  font-family: inherit;
  font-size: 0.86rem;
  color: var(--black);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.product-resumen-chip:hover { border-color: var(--red); }

.product-resumen-chip.activo {
  border-color: var(--red);
  background: #fdecec;
}

.product-resumen-lista li.sin-foto .product-resumen-chip { padding-left: 16px; }

.product-resumen-foto {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gray-line);
}

.product-resumen-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-resumen-nombre { font-weight: 500; }

.product-row {
  align-items: center;
  transition: border-color 0.2s ease;
}

.card.product-row {
  display: flex;
  border: 1px solid var(--gray-line);
}

.product-row:hover { border-color: var(--red); }

.product-row-body {
  flex: 1 1 50%;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.product-row-body h3 { margin-bottom: 8px; font-size: 1.1rem; }
.product-row-body p { margin: 0; font-size: 0.92rem; }

.product-row-media {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  background: var(--off-white);
}

/* Altura SIEMPRE fija — no depende de si el texto es largo ni de si hay miniaturas */
.product-row-media .product-photo { aspect-ratio: auto; height: 380px; flex: none; }

.product-row-thumbs {
  padding: 8px;
  background: var(--white);
}

.product-row .product-thumbs img { width: 38px; height: 38px; }

@media (max-width: 720px) {
  .product-row { flex-direction: column; }
  .product-row-media { max-width: 100%; flex-basis: auto; }
}

/* ---------------- Lightbox: ver la foto grande sin salir de la página ---------------- */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 12, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px;
  cursor: zoom-out;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  cursor: default;
}

.lightbox-cerrar {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
}

.lightbox-cerrar:hover { opacity: 1; }

/* ---------------- Configurador de presupuesto: rejilla y tarjeta seleccionable ---------------- */

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

@media (max-width: 980px) { .selector-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .selector-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .selector-grid { grid-template-columns: 1fr; } }

.select-card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--gray-line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  display: block;
}

.select-card:hover { border-color: #c7c7c9; }

.select-card.sin-stock {
  cursor: not-allowed;
  opacity: .55;
  pointer-events: none;
  background: var(--off-white);
}

.select-card.requiere-bloqueado {
  cursor: not-allowed;
  opacity: .55;
  pointer-events: none;
}

.select-card.is-selected {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}

.select-card input[type="checkbox"].linea-check {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.extra-check {
  width: 16px;
  height: 16px;
  accent-color: var(--red);
  cursor: pointer;
}

.select-card .product-photo { aspect-ratio: 1 / 1; }

.select-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 2px solid var(--gray-line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease;
  z-index: 2;
}

.select-check svg {
  width: 14px;
  height: 14px;
  opacity: 0;
  transition: opacity 0.1s ease;
}

.select-card.is-selected .select-check {
  background: var(--red);
  border-color: var(--red);
}

.select-card.is-selected .select-check svg { opacity: 1; }

.select-body { padding: 14px 16px 16px; }
.select-body h3 { margin: 0 0 4px; font-size: 0.98rem; }
.select-body p { margin: 0 0 8px; font-size: 0.84rem; }
.select-price { font-weight: 600; color: var(--black); font-size: 0.92rem; margin: 0; }

.select-qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-line);
}

.select-qty-label { font-size: 0.78rem; color: var(--gray); text-transform: uppercase; font-family: var(--font-display); letter-spacing: 0.03em; }

.select-qty-controls {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--gray-line);
  border-radius: 999px;
  overflow: hidden;
}

.select-qty-btn {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border: none;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  color: var(--black);
}

.select-qty-btn:hover { background: var(--gray-line); }
.select-qty-btn:disabled { opacity: 0.35; cursor: not-allowed; }

.select-qty-value {
  width: 28px;
  text-align: center;
  font-size: 0.88rem;
  font-family: var(--font-display);
}

/* ---------------- Tarjeta de producto (catálogo dinámico) ---------------- */

.product-card {
  background: var(--white);
  border-top: 3px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.product-card:hover { border-top-color: var(--red); }

.product-photo {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--off-white);
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.product-card:hover .product-photo img { transform: scale(1.05); }

.product-photo-count {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(11, 11, 12, 0.75);
  color: var(--white);
  font-size: 0.72rem;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  padding: 3px 9px;
  border-radius: 999px;
}

.product-thumbs {
  display: flex;
  gap: 5px;
  padding: 10px 22px 0;
  overflow-x: auto;
}

.product-thumbs img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.product-thumbs img { opacity: 0.7; transition: opacity 0.2s ease; cursor: pointer; }
.product-thumbs a:hover img { opacity: 1; }
.product-thumbs a.active img { opacity: 1; outline: 2px solid var(--red); outline-offset: -2px; }

.product-body { padding: 18px 22px 26px; }
.product-body h3 { margin-bottom: 6px; font-size: 1.1rem; }
.product-body p { margin: 0; font-size: 0.9rem; }

/* ---------------- Tarjetas ---------------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2px;
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
}

/* La línea gris entre tarjetas se dibuja con box-shadow en cada tarjeta, no
   con el fondo del contenedor — así, cuando el número de tarjetas no llena
   la última fila (categorías o testimonios, que son dinámicos), las celdas
   vacías no dejan un bloque gris sólido a la vista. */
.card {
  background: var(--white);
  padding: 28px 24px;
  display: block;
  border-top: 3px solid transparent;
  box-shadow: 0 0 0 1px var(--gray-line);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.card:hover { background: #fdecec; border-top-color: var(--red); }

.card h3 { margin-bottom: 8px; font-size: 1.2rem; }
.card p { margin: 0; font-size: 0.92rem; }

/* ---------------- Footer ---------------- */

.site-footer {
  background: var(--black);
  color: #c7c7c9;
  margin-top: 0;
  padding: 56px 0 28px;
  font-size: 0.9rem;
}

.site-footer .logo img { height: 22px; margin-bottom: 16px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer-grid h4 {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: #8a8a8e;
}

/* ---------------- Migas de pan ---------------- */

.breadcrumbs-wrap { background: var(--black); }
.breadcrumbs { padding: 14px 24px; font-size: 0.82rem; color: #9a9a9d; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 6px; color: #45454a; }
.breadcrumbs a { color: #9a9a9d; }
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs li[aria-current="page"] { color: var(--white); }

/* ---------------- FAQ ---------------- */

.faq-item {
  border-bottom: 1px solid var(--gray-line);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.01em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item summary::after {
  content: '+';
  color: var(--red);
  font-size: 1.4rem;
  font-family: var(--font-body);
  margin-left: 16px;
}

.faq-item[open] summary::after { content: '–'; }

.faq-item p { padding-bottom: 20px; margin: 0; }

/* ---------------- Enlace de texto dentro de párrafos ---------------- */

.text-link { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.text-link:hover { color: var(--red-dark); }


@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
    border-top: 1px solid var(--gray-line);
  }

  .main-nav.open { transform: translateX(0); }

  .main-nav ul { flex-direction: column; gap: 4px; width: 100%; }
  .main-nav > ul > li { width: 100%; }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    border-top: none;
    padding: 0 0 0 16px;
  }

  .dropdown a { color: var(--gray); }

  .main-nav > ul > li.open .dropdown { display: block; }

  .nav-toggle { display: block; }

  /* En móvil el fondo del menú es blanco, así que los enlaces y el botón
     "Acceder" no pueden seguir usando el blanco que se usa en el header
     de escritorio (fondo oscuro) — si no, el texto queda invisible. */
  .main-nav > ul > li > a { color: var(--black); }
  .site-header .main-nav .btn-ghost { color: var(--black); border-color: var(--black); }
  .site-header .main-nav .btn-ghost:hover { border-color: var(--red); color: var(--red); }

  .nav-actions { flex-direction: column; align-items: flex-start; margin-top: 20px; gap: 10px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Menú lateral de categorías del configurador de presupuesto */
.enlace-ancla-grupo:hover { background: var(--off-white); }
.enlace-ancla-grupo.activo { background: #fdecec; color: var(--red); font-weight: 600; }

@media (max-width: 860px) {
  .config-layout { display: block !important; }
  .menu-categorias-productos {
    position: static !important;
    margin-bottom: 20px;
  }
  .menu-categorias-productos ul {
    flex-direction: row !important;
    overflow-x: auto;
    gap: 8px !important;
    padding-bottom: 6px !important;
  }
  .enlace-ancla-grupo { white-space: nowrap; border: 1px solid var(--gray-line); }
}
