
body{
    font-family: Montserrat;
}



.material-symbols-outlined {
    font-variation-settings:
            'FILL' 0,
            'wght' 400,
            'GRAD' 0,
            'opsz' 24;
    vertical-align: middle;
}

.rino-hover:hover {
    color: #FBCE00 !important;
}

.btn-institucional-secundario{
    background-color: #FBCE00;
    color: white;;
}

.btn-institucional {
    color: #FBCE00;
    background-color: #006C52;
    font-weight: bold;
}

/* Estilo para el tab activo */
.nav-tabs .nav-link.active {
    background-color: #006C52;
    color: #FBCE00;
    font-weight: bold;
    border: none;
    border-bottom: 3px solid #006C52; /* para que se vea como resaltado */
}

/* Estilo para los demás tabs al pasar el mouse */
.nav-tabs .nav-link {
    color: #006C52;
    font-weight: bold;
}

.nav-tabs .nav-link:hover {
    color: #FBCE00;
}


.btn-regresar {
    color: #006C52;
    border-color: #006C52;
}

.text-institucional {
    color: #006C52; /* Rojo institucional */
    font-weight: bold;
}

.border-institucional {
    border-color: #FBCE00 !important; /* Amarillo institucional */
}

.arma-pizza-estilo {
    width: 135px;
    height: 135px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

  .arma-pizza-tamano, .pide-pizza-tamano {
     width: 100px;
     height: 100px;
     padding: 5px;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.2s ease-in-out;
 }

.arma-pizza-estilo:hover, .arma-pizza-tamano:hover, .pide-pizza-tamano:hover {
    background-color: #f8f9fa;
    border-color: #006C52 !important;
    transform: scale(1.05);
}

.arma-pizza-estilo.selected, .arma-pizza-tamano.selected, .pide-pizza-tamano.selected {
    background-color: #006C52;
    color: #FBCE00;
    border-color: #FBCE00 !important;
    border-width: 4px !important;
}

.material-icons {
    line-height: 1;
}


 .size-option {
     min-width: 100px;
     transition: 0.2s ease-in-out;
 }

.size-option.selected {
    background-color: #0d6efd;
    color: white;
    border-color: #0d6efd;
}

.size-option:hover {
    transform: scale(1.05);
}


.card-categoria{
    height: 100%;
}


@media (min-width: 576px) {

}


@media (min-width: 768px) {
    .card-categoria{
        height: 100%;
    }
}


@media (min-width: 992px) {

    .card-categoria{
        height: auto;
    }

}

@media (min-width: 1200px) {  }

@media (min-width: 1400px) {

    .card-categoria{
        height: auto;
    }
}



#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2000;
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    pointer-events: none;
}


@media (max-width: 576px) {
    #toast-container {
        right: 0;
        left: 0;
        bottom: 10px;
        align-items: center;
    }
}

.modern-toast {
    pointer-events: auto;
    background: #e0e0e0;
    color: #006C52;
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-width: 300px;
    max-width: 400px;
}

.product-name-highlight {
    font-size: 1rem;
    font-weight: 600;
    color: #006C52;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #006C52;
    width: 100%;
    transform-origin: left;
}

.price-container {
    border-left: 4px solid #006C52; /* El color azul de Bootstrap */
    padding-left: 15px;
}