/*
    Google Fonts
*/
@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:ital,wght@0,100..900;1,100..900&family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playwrite+NO:wght@100..400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}


.google-sans  {
  font-family: "Google Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "GRAD" 0;
}


.advent-pro {
  font-family: "Advent Pro", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}


.playwrite {
  font-family: "Playwrite NO", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100
}

.ticketfont {
  font-family: "VT323", monospace;
  font-weight: 400;
  font-style: normal;
}


/*
    Sección Login
*/
.seccion-login {
    background-image: url("../img/fondo.avif");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
}

.form-login {
    padding: 20px;
    border-radius: 5px;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);

}

#categorias {
    height: 90vh;
}
.categorias-scroll {
    max-height: calc( 90vh - 90px );
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 3px;
    transition: all 0.5s ease;
}

.productos-scroll {
    max-height: calc( 90vh - 90px );
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 3px;
    transition: all 0.5s ease;
}

.categorias-scroll::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}
.categorias-scroll {
    scrollbar-width: none;
}
.categorias-scroll {
    -ms-overflow-style: none;
}

.categoria-item {
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.categoria-item:hover {
    transform: scale(1.03);
}
/* Imagen */
.categoria-item img {
    transition: all 0.3s ease;
}
/* Efecto glow animado */
.categoria-item:hover img {
    animation: glow-borde 1s infinite;
}
/* Animación */
@keyframes glow-borde {
    0% {
        box-shadow: 0 0 0px rgba(13,110,253,0.4);
    }
    50% {
        box-shadow:
            0 0 10px rgba(13,110,253,0.8),
            0 0 20px rgba(13,110,253,0.6),
            0 0 30px rgba(13,110,253,0.4);
    }
    100% {
        box-shadow: 0 0 0px rgba(13,110,253,0.4);
    }
}

.producto-item {
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.producto-precio {
     line-height: 50px;
    text-align: center;
    background-color: green;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transform: translate(-10%, -30%);
    transition:all 0.3s ease;
}



.producto-precio1 {
    bottom: -25px;
    right: -25px;
    z-index: 100;
    position: absolute;
    line-height: 50px;
    text-align: center;
    background-color: green;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.producto-item:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.producto-item:hover .producto-precio {
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        z-index: 300;
        transform: scale(1.2);
}


.fondoticket {
    background-image: url("../img/fondoticket2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 10vh;
    filter: sepia(1);
}

.ticket-scroll {
    max-height: calc( 60vh - 90px );
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
    transition: all 0.5s ease;
}

.ticket-scroll::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}
.ticket-scroll {
    scrollbar-width: none;
}
.ticket-scroll {
    -ms-overflow-style: none;
}

