.product-lmage-large.swiper-slide {
    margin-bottom: 5px;
}
.iqit-accordion .title a {
    font-weight: bold;
}
/* ===== Variantes de producto — estilo minimalista ===== */

.product-variants .product-variants-item {
  margin-bottom: 1.75rem;
}

/* Etiqueta del grupo (Color, Ancho mueble) */
.product-variants .form-control-label {
  display: block;
  margin-bottom: .8rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Lista en flex, adiós a los float */
.product-variants ul {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-variants li.input-container {
  float: none;
  margin: 0;
  position: relative;
}

/* Input invisible pero clicable encima de la muestra */
.product-variants .input-color,
.product-variants .input-radio {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

/* --- Muestras de color: círculos --- */
.product-variants .color,
.product-variants .color.texture {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  box-shadow: none;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.product-variants .input-color:hover + .color {
  transform: scale(1.08);
  border-color: rgba(0, 0, 0, .35);
}

/* Seleccionado: anillo negro con separación blanca */
.product-variants .input-color:checked + .color {
  border-color: transparent;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px #1a1a1a;
}

/* --- Anchos: botones píldora --- */
.product-variants .radio-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 38px;
  padding: 0 1.1rem;
  border: 1px solid #ddd;
  border-radius: 999px;
  background: #fff;
  color: #666;
  font-size: .85rem;
  font-weight: 500;
  box-shadow: none;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}

.product-variants .input-radio:hover + .radio-label {
  border-color: #1a1a1a;
  color: #1a1a1a;
}

.product-variants .input-radio:checked + .radio-label {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}

/* Accesibilidad: anillo de foco al navegar con teclado */
.product-variants .input-color:focus-visible + .color,
.product-variants .input-radio:focus-visible + .radio-label {
  outline: 2px solid #1a1a1a;
  outline-offset: 3px;
}