.navbar-bottom {
    height: 12px;
    /* Altura de la franja */
    background-color: yellow;
    /* Color de la franja  rgb(220, 185, 68);*/
}

.navbar-white {

    color: #fff;
}

.navbar-light .navbar-nav .nav-link {
    color: #fff;
}

.tamano-ico {
    font-size: 2rem;
}



/* Tamaño reducido del card */
.small-card {
    width: 100%;
    /* Ajusta el ancho */
    max-width: 200px;
    /* Ancho máximo */
    font-size: 12px;
    /* Fuente más pequeña */
}

/* Reducción del tamaño de la imagen */
.small-card .card-img-top {
    height: 120px;
    /* Ajusta la altura */
    object-fit: cover;
    /* Ajusta la imagen sin distorsionar */
}

/* Reducción del padding del cuerpo */
.small-card .card-body {
    padding: 0.5rem;
    /* Reduce el padding interno */
}

/* Reducción del tamaño del botón */
.small-card .btn {
    font-size: 10px;
    /* Tamaño de fuente del botón */
    padding: 0.25rem 0.5rem;
    /* Padding reducido */
}

/* Ajustes para los inputs y select */
.small-card input.form-control-sm,
.small-card select.form-select {
    font-size: 10px;
    /* Tamaño de fuente reducido */
    padding: 0.25rem;
    /* Padding reducido */
}


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.whatsapp-float a img:hover {
    transform: scale(1.1);
}



.bolsa-float {
    position: fixed;
    bottom: 100px;
    right: 40px;
    z-index: 1000;
}

.bolsa-float a img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(238, 11, 4, 0.2);
    transition: transform 0.3s ease;
    background-color: rgb(255, 60, 0);
    /* Color naranja */
}

.bolsa-float a img:hover {
    transform: scale(1.1);
}

#floating-cart {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: hsl(0, 100.00%, 50.00%);
    /* Color naranja */
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.btn-orange {
    background-color: rgb(255, 60, 0);
    /* Color naranja */
    color: white;
    /* Texto en blanco */
    border-color: rgb(255, 60, 0);
    /* Borde naranja */
}

.btn-orange:hover {
    background-color: rgb(255, 60, 0);
    /* Naranja más oscuro al pasar el mouse */
    border-color: rgb(255, 60, 0);
}

.navbar-light .btn-navbar,
.navbar-light .form-control-navbar {
    background-color: #ffffff;
    border: 0;
}

.colora {
    color: white
}