.navbar-bottom {
    height: 12px;
    /* Altura de la franja */
    background-color: rgb(241,174,33);
    /* Color de la franja  rgb(220, 185, 68);*/
}

.navbar-white {

    color: #fff;
}

.navbar-light .navbar-nav .nav-link {
    color: #fff;
}


.navbar-light .btn-navbar,
    .navbar-light .form-control-navbar {
        background-color: #f7dedec7;
        border: 0;
    }

.btn-orange {
    background-color: rgba(207, 24, 44, 1);
    /* Color cafe */
    color: white;
    /* Texto en blanco */
    border-color: rgba(207, 24, 44, 1);
    /* Borde naranja */
}

.btn-orange:hover {
    background-color: rgba(207, 24, 44, 1);
    /* Naranja más oscuro al pasar el mouse */
    border-color: rgba(207, 24, 44, 1);
}

.navbar-light {
    background-color: rgba(207, 24, 44, 1);
}


.navbar-light .navbar-nav .nav-link:focus,
    .navbar-light .navbar-nav .nav-link:hover {
        color: rgb(243, 219, 142);

    }


.tamano-ico {
    font-size: 1.5rem;
}



/* 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(207, 24, 44, 1);
    transition: transform 0.3s ease;
    background-color: rgb(246, 42, 188);
    /* 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: rgb(246, 42, 188);
    /* 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;
}




.navbar-light .btn-navbar,
.navbar-light .form-control-navbar {
    background-color: #ffffff;
    border: 0;
}

.colora {
    color: white
}

.btn-black {
    color: #fff;
    background-color: black;
    border-color: black;
    box-shadow: none;
}

/* tiktok */
.fa-tiktok {
    color: white;

    filter: drop-shadow(2px 0px 0px #0000) drop-shadow(-2px -2px 0px #4DE8F4);
}

.modal-content {
    border-radius: 20px !important;
    overflow: hidden;
    /* Para asegurarte de que los elementos internos respeten el borde redondeado */
}

/* Botón flotante de WhatsApp  nuevo*/
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Estilo del modal flotante */
.whatsapp-modal {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1001;
}

/* Cabecera del modal */
.whatsapp-modal-header {
    background: #25D366;
    color: white;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.whatsapp-modal-header button {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

/* Cuerpo del modal */
.whatsapp-modal-body {
    padding: 15px;
    font-size: 14px;
}

/* Input y botón de enviar mensaje */
.whatsapp-modal-footer {
    display: flex;
    align-items: center;
    padding: 10px;
    border-top: 1px solid #ddd;
}

.whatsapp-input {
    flex-grow: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.whatsapp-send-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #25D366;
    cursor: pointer;
    margin-left: 10px;
}

.whatsapp-send-btn:hover {
    color: #128C7E;
}