:root {
  --color-primario: #800020;
  --color-secundario: #d4af37;
  --color-destacado: #e63946;
  --color-fondo: #fcfbf9;
  --color-texto: #1a1a1a;
  --color-blanco: #ffffff;
  --sombra-suave: 0 4px 12px rgba(0, 0, 0, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--color-fondo);
  color: var(--color-texto);
  line-height: 1.6;
}

.contenedor {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* BARRA SUPERIOR */
.barra-superior {
  background-color: var(--color-primario);
  color: var(--color-blanco);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  display: block;
}

.barra-contenido {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* HEADER Y NAVEGACIÓN */
.header {
  background-color: var(--color-blanco);
  box-shadow: var(--sombra-suave);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}

.header-contenido {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 4px;
  background-color: var(--color-blanco);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.logo-img {
  max-height: 85px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.12));
}

@media (max-width: 900px) {
  .logo-img {
    max-height: 70px;
  }
}

/* MENÚ ESCRITORIO */
.menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.menu a {
  text-decoration: none;
  color: var(--color-texto);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition:
    background-color 0.2s,
    color 0.2s;
}

.menu a:hover {
  color: var(--color-primario);
}

.btn-catalogo-nav {
  background-color: var(--color-destacado) !important;
  color: var(--color-blanco) !important;
  border-radius: 8px !important;
  padding: 0.6rem 1.2rem !important;
  box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
}

.btn-contacto-nav {
  background-color: var(--color-primario) !important;
  color: var(--color-blanco) !important;
  border-radius: 8px !important;
  padding: 0.6rem 1.2rem !important;
}

/* =========================================
   BANNER Y CARRUSEL AMPLIADO Y LLAMATIVO
========================================== */
.banner-principal {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, #fcfbf9 0%, #f4eee6 100%);
}

.banner-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.etiqueta-novedad {
  display: inline-block;
  background-color: rgba(212, 175, 55, 0.2);
  color: #8c7314;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.banner-texto h1 {
  font-size: 2.3rem;
  line-height: 1.2;
  color: var(--color-primario);
  margin-bottom: 0.8rem;
  font-weight: 800;
}

.banner-texto p {
  font-size: 1.1rem;
  color: #555555;
  margin-bottom: 1.5rem;
}

.banner-botones {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-principal {
  background-color: var(--color-destacado);
  color: var(--color-blanco);
  padding: 0.85rem 1.6rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.05rem;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.35);
  transition:
    transform 0.2s,
    background-color 0.2s;
  display: inline-block;
}

.btn-principal:hover {
  background-color: #d90429;
  transform: translateY(-2px);
}

.btn-secundario {
  background-color: transparent;
  color: var(--color-primario);
  border: 2px solid var(--color-primario);
  padding: 0.85rem 1.6rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition:
    background-color 0.2s,
    color 0.2s;
}

.btn-secundario:hover {
  background-color: var(--color-primario);
  color: var(--color-blanco);
}

/* CONTENEDOR DEL CARRUSEL GRANDE */
.banner-imagen-contenedor {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.16);
  background-color: #000;
  margin: 0;
}

.carrusel-slider {
  position: relative;
  width: 100%;
  height: 480px;
}

.carrusel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.6s ease-in-out,
    visibility 0.6s ease-in-out;
}

.carrusel-slide.activo {
  opacity: 1;
  visibility: visible;
}

.carrusel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Botones de navegación (Flechas) */
.carrusel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.55);
  color: white;
  border: none;
  font-size: 1.3rem;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.2s;
  z-index: 10;
}

.carrusel-btn:hover {
  background-color: rgba(128, 0, 32, 0.85);
}

.carrusel-btn.prev {
  left: 15px;
}

.carrusel-btn.next {
  right: 15px;
}

/* Puntos indicadores */
.carrusel-puntos {
  position: absolute;
  bottom: 15px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.punto {
  width: 11px;
  height: 11px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.punto.activo {
  background-color: var(--color-secundario);
  transform: scale(1.2);
}

.badge-flotante {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: var(--color-blanco);
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-primario);
  z-index: 10;
}

/* =========================================
   ESTILOS DEL MODAL ESTÁTICO MAYORISTA
========================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  border: none;
  padding: 0;
}

.modal-overlay.activo {
  opacity: 1;
  visibility: visible;
}

.modal-contenido {
  background-color: var(--color-blanco);
  width: 90%;
  max-width: 600px;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.activo .modal-contenido {
  transform: translateY(0);
}

.modal-cerrar {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #777;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.modal-cerrar:hover {
  color: var(--color-primario);
}

.modal-etiqueta {
  display: inline-block;
  background-color: rgba(128, 0, 32, 0.1);
  color: var(--color-primario);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.modal-contenido h2 {
  color: var(--color-primario);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.modal-sub {
  color: #555;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.modal-grid-puntos {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
  text-align: left;
}

.modal-punto {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: #fcfbf9;
  padding: 1rem;
  border-radius: 10px;
  border-left: 4px solid var(--color-primario);
}

.modal-icono {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.modal-punto h4 {
  color: var(--color-primario);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
  font-weight: 700;
}

.modal-punto p {
  color: #555;
  font-size: 0.95rem;
  margin: 0;
}

.modal-footer-accion {
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
  text-align: center;
}

.modal-footer-accion p {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: var(--color-texto);
}

.btn-whatsapp-modal {
  background-color: #25d366;
  color: white;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  transition:
    transform 0.2s,
    background-color 0.2s;
}

.btn-whatsapp-modal:hover {
  background-color: #1ebe57;
  transform: translateY(-2px);
}

/* BOTÓN MENÚ MÓVIL */
.boton-menu {
  display: none;
  background: none;
  border: 2px solid var(--color-primario);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px 9px;
  flex-direction: column;
  justify-content: space-between;
  width: 45px;
  height: 42px;
  position: relative;
  z-index: 101;
}

.boton-menu .bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-primario);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.boton-menu.activo-x .bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.boton-menu.activo-x .bar:nth-child(2) {
  opacity: 0;
}
.boton-menu.activo-x .bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* WHATSAPP FLOTANTE */
.whatsapp-flotante {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
}

/* MEDIA QUERIES NAV */
@media (max-width: 900px) {
  .boton-menu {
    display: flex;
  }

  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-blanco);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    gap: 1rem;
    text-align: center;
  }

  .menu.activo-movil {
    display: flex !important;
  }

  .menu a {
    font-size: 1.25rem;
    padding: 0.75rem;
  }

  .barra-contenido {
    font-size: 0.9rem;
    flex-direction: column;
    gap: 5px;
  }

  .banner-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .banner-texto h1 {
    font-size: 1.9rem;
  }

  .banner-botones {
    justify-content: center;
  }

  .carrusel-slider {
    height: 350px;
  }

  .modal-contenido {
    padding: 1.5rem;
  }
}

/* =========================================
   ESTILOS DE LA SECCIÓN CATÁLOGO
========================================== */
.seccion-catalogo {
  padding: 4.5rem 0;
  background-color: var(--color-blanco);
}

.catalogo-encabezado {
  text-align: center;
  margin-bottom: 2.5rem;
}

.catalogo-encabezado h2 {
  color: var(--color-primario);
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0.4rem 0;
}

.catalogo-encabezado p {
  color: #666;
  font-size: 1.05rem;
}

/* Filtros */
.filtros-catalogo {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.btn-filtro {
  background-color: #f0f0f0;
  color: var(--color-texto);
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-filtro.activo,
.btn-filtro:hover {
  background-color: var(--color-primario);
  color: var(--color-blanco);
}

/* Grilla */
.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

/* Tarjetas */
.tarjeta-producto {
  background-color: var(--color-fondo);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--sombra-suave);
  border: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.tarjeta-producto:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.producto-imagen {
  position: relative;
  width: 100%;
  height: 240px;
  background-color: #eee;
  margin: 0;
}

.producto-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag-mayorista {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--color-primario);
  color: var(--color-blanco);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
}

.producto-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.producto-info h3 {
  font-size: 1.15rem;
  color: var(--color-texto);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.producto-detalles {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.producto-precio-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  background-color: #f4eee6;
  padding: 8px 12px;
  border-radius: 8px;
}

.precio-etiqueta {
  font-size: 0.85rem;
  color: #555;
  font-weight: 600;
}

.precio-monto {
  font-size: 1.2rem;
  color: var(--color-primario);
  font-weight: 800;
}

.btn-pedir-producto {
  background-color: #25d366;
  color: white;
  text-align: center;
  text-decoration: none;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background-color 0.2s;
  display: block;
}

.btn-pedir-producto:hover {
  background-color: #1ebe57;
}

@media (max-width: 600px) {
  .productos-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   ESTILOS DEL CARRITO MAYORISTA Y SELECTOR
========================================== */
.control-cantidad {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.8rem;
  background-color: #f0f0f0;
  padding: 4px 8px;
  border-radius: 8px;
  justify-content: center;
  border: none;
}

.btn-qty {
  background-color: var(--color-primario);
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  font-size: 1.1rem;
}

.input-cant {
  width: 45px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-texto);
}

.label-docena {
  font-size: 0.85rem;
  font-weight: 700;
  color: #666;
}

.btn-agregar-carrito {
  background-color: var(--color-primario);
  color: white;
  border: none;
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-agregar-carrito:hover {
  background-color: #600018;
}

/* Botón flotante */
.btn-carrito-flotante {
  position: fixed;
  bottom: 85px;
  right: 25px;
  background-color: var(--color-primario);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 20px rgba(128, 0, 32, 0.4);
  z-index: 999;
  cursor: pointer;
  display: none;
}

/* Panel Drawer Lateral */
.drawer-carrito-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.drawer-carrito-overlay.activo {
  opacity: 1;
  visibility: visible;
}

.drawer-contenido {
  position: absolute;
  right: -420px;
  top: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
}

.drawer-carrito-overlay.activo .drawer-contenido {
  right: 0;
}

.drawer-header {
  padding: 1.25rem;
  background-color: var(--color-primario);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-cerrar {
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

.drawer-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1rem;
}

.item-carrito {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 0.75rem 0;
}

.item-carrito h5 {
  font-size: 0.9rem;
  color: var(--color-texto);
}

.item-carrito p {
  font-size: 0.8rem;
  color: #666;
}

.btn-eliminar-item {
  background: none;
  border: none;
  color: #d32f2f;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px;
}

.drawer-footer {
  padding: 1.25rem;
  border-top: 1px solid #eee;
  background-color: #fcfbf9;
}

.resumen-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.resumen-total strong {
  color: var(--color-primario);
  font-weight: 800;
}

.campo-destino {
  margin-bottom: 1rem;
}

.campo-destino label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.campo-destino select {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.btn-enviar-wa {
  width: 100%;
  background-color: #25d366;
  color: white;
  border: none;
  padding: 0.85rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}

.btn-enviar-wa:hover {
  background-color: #1ebe57;
}

/* =========================================
   ESTILOS PARA EL BUSCADOR Y FILTROS
========================================== */
.filtros-contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  width: 100%;
}

.buscador-box {
  position: relative;
  width: 100%;
  max-width: 450px;
}

.icono-buscar {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #888;
}

.buscador-box input {
  width: 100%;
  padding: 12px 40px 12px 42px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.buscador-box input:focus {
  border-color: var(--color-primario);
  box-shadow: 0 0 8px rgba(128, 0, 32, 0.15);
}

.btn-limpiar {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #999;
  cursor: pointer;
  display: none;
}

.btn-limpiar:hover {
  color: var(--color-primario);
}

.mensaje-sin-resultados {
  text-align: center;
  padding: 2.5rem 1rem;
  color: #666;
  font-weight: 600;
  background-color: #f9f9f9;
  border-radius: 12px;
  margin: 1.5rem 0;
}

/* =========================================
   ESTILOS DEL FOOTER / PIE DE PÁGINA (AÑADIDO)
========================================== */
.pie-pagina {
  background-color: #111111;
  color: var(--color-blanco);
  padding: 4rem 0 2rem 0;
  margin-top: 3rem;
}

.pie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.pie-columna h4 {
  color: var(--color-secundario);
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  position: relative;
}

.pie-columna p {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

.pie-texto {
  margin-top: 1rem;
}

.pie-copy {
  display: block;
  text-align: center;
  border-top: 1px solid #222222;
  padding-top: 2rem;
  color: #888888;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .pie-pagina {
    padding: 3rem 0 1.5rem 0;
  }

  .pie-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .pie-columna .logo {
    justify-content: center;
  }
}

/* ===================================================
   ESTILOS DE OPCIONES MAYORISTAS (TALLA, COLOR Y DOCENA)
====================================================== */
.producto-opciones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 12px 0 8px 0;
}

.campo-opcion {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.campo-opcion label,
.control-cantidad-mayorista label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
}

.select-talla,
.select-color,
.select-fraccion {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #cccccc;
  border-radius: 6px;
  background-color: #ffffff;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: #222222;
  cursor: pointer;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.select-talla:focus,
.select-color:focus,
.select-fraccion:focus {
  border-color: #d81b60;
  box-shadow: 0 0 0 2px rgba(216, 27, 96, 0.15);
}

.control-cantidad-mayorista {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}
