   /* Fondo oscurecido del modal */
    .modal {
      position: fixed;
      top: 0; 
      left: 0;
      width: 100%; 
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      /* transicion suave (a1) */
        transition: opacity 0.5s ease;
        opacity: 1;
		    z-index: 999999990; /*👈Esto lo mantiene encima de todo */
    }

    /* transicion suave (ab) */
    .modal.oculto {
      opacity: 0;
      pointer-events: none;
    }

    /* Contenido del modal */
    .modal-content {
      background: white;
      padding: 20px;
      border-radius: 10px;
      max-width: 400px;
      text-align: center;
      position: relative;
    }

    /* Botón de cierre */
    .close-btn {
      background-color: crimson;
      color: white;
      padding: 8px 16px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 15px;
    }

    /* Botón ventas */
    .ventas-btn {
      background-color: #2db742;
      color: white;
      padding: 8px 16px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 15px;
    }

    .ventas-btn a {
      text-decoration: none;
      font-weight: 600;
      color: white;
    }

    .ventas-btn a:hover {
      color: greenyellow;
    }

/*Adicional*/

.item-h2 {
    color: rgb(255, 0, 15);
    /*font-family: Montserrat, sans-serif;*/
    font-size: 26px;
    /*font-weight: 600;*/
    line-height: normal;
    text-transform: uppercase;
    position: relative;
    z-index: 5;
    box-sizing: content-box;
    margin: 0px;
    padding: 0px 0px 4px 14px;
    }
.item-p {
    color: rgb(0, 0, 0);
    /*font-family: Montserrat, sans-serif;*/
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    margin-top: 0px;
    margin-bottom: 1rem;
}