@charset "UTF-8";
/* CSS Document */
body {
    margin: 0;
    padding: 0;
    /* overflow-y: hidden; */
    font-family: "Aleo", serif;
}

.hidden{
    display: none !important;
}

.cover {
    background: url('../_img/inicio/portada.webp') no-repeat center center;
    background-size: cover;
    height: 150px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.profile-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -50px;
    object-fit: cover;
}

.cart-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 11;
}

.fixed-banner {
    position: fixed;
    top: 200px;
    left: 0;
    right: 0;
    background: white;
    z-index: 9;
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.scroll-area {
    position: relative;
    margin-top: 260px; /* Altura del header (200px) + banner (80px aprox) */
    margin-bottom: 80px; /* Para que no se esconda detrás del botón fijo */
    height: calc(100vh - 280px - 80px); /* Espacio visible para scroll */
    overflow-y: auto;
	scrollbar-width: none; /* Firefox */
  	-ms-overflow-style: none; /* Internet Explorer y Edge */
}

.scroll-area::-webkit-scrollbar {
  display: none; /* Chrome, Safari y Opera */
}

.product-img {
    width: 100px;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
}

.qty-controls {
    position: absolute;
    bottom: 12px;
    right: 6px;
    transform: translateX(-20%);
    display: flex;
    gap: 3px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2px;
    color: #ffc355;
    border-radius: 8px;
}

.fixed-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: white;
    border-top: 1px solid #ddd;
    padding: 10px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    z-index: 20;
}

.table td {
    vertical-align: middle;
}

.btnMasMenos{
    background: #ffc355; 
    border-radius: 15px; 
    padding-left: 10px; 
    padding-right: 10px;
    width: 22px;
    height: 22px;
    align-items: center;
    display: flex;
    justify-content: center;
}
.btnMasMenos:active{
    background: #ffc355; 
}


/* Estilos para boton de + efecto caida hacia abajo */
.bouncing-ball {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url('../_img/iconos_productos/taco.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 9999;
    pointer-events: none;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.bouncing-taco {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url('../_img/iconos_productos/taco.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 9999;
    pointer-events: none;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.bouncing-lonche {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url('../_img/iconos_productos/lonche.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 9999;
    pointer-events: none;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.bouncing-orden {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url('../_img/iconos_productos/orden_de_birria.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 9999;
    pointer-events: none;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.bouncing-birria {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url('../_img/iconos_productos/orden_de_birria.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 9999;
    pointer-events: none;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.bouncing-consome {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url('../_img/iconos_productos/consome.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 9999;
    pointer-events: none;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.bouncing-horchata {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url('../_img/iconos_productos/agua_de_horchata.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 9999;
    pointer-events: none;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.bouncing-jamaica {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url('../_img/iconos_productos/agua_de_jamaica.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 9999;
    pointer-events: none;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.bouncing-cocacola {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url('../_img/iconos_productos/coca_cola.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 9999;
    pointer-events: none;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.bouncing-fanta {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url('../_img/iconos_productos/fanta.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 9999;
    pointer-events: none;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.bouncing-sprite {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url('../_img/iconos_productos/sprite.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 9999;
    pointer-events: none;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.bouncing-paquete1 {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url('../_img/iconos_productos/paquete1.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 9999;
    pointer-events: none;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.bouncing-paquete2 {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url('../_img/iconos_productos/paquete2.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 9999;
    pointer-events: none;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.bouncing-paquete3 {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url('../_img/iconos_productos/paquete3.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 9999;
    pointer-events: none;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.parabolic-move {
    animation: parabolicUp 0.7s ease-out forwards;
}

.fall-down {
    animation: fallDown 0.7s ease-in forwards;
}

@keyframes parabolicUp {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translate(var(--curve-x), -150px) rotate(360deg);
    }
}

@keyframes fallDown {
    0% {
        transform: translate(var(--curve-x), -150px);
        opacity: 1;
    }
    100% {
        transform: translate(var(--curve-x), 600px);
        opacity: 0; 
    }
}
button {
    touch-action: manipulation;
}

#BTNContinuar{
    display: inline-block;
    background: white;
    color: #e26111;
    width: 22px;
    height: 22px;
    line-height: 22px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    margin-left: 8px;
}

.tituloProducto{
    display: block; 
    margin-bottom: 0; 
    font-size: 14px; 
    line-height: 1.3;
}

.subtituloProducto{
    display: block; 
    font-size: 12px; 
    margin-top: -2px; 
    line-height: 1.3;
}

.descripcionProducto{
    font-size: 9px; 
    margin-top: 2px;
}

.qtyProducto{
    /* margin-top: 5px; */
}


/* Estilos carrito*/
/*Header*/
.header-carrito {
    background-color: #454545 !important;
    color: #ffc355;
    position: relative;
}
.flecha {
    width: 28px;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.contenido-central {
    display: inline-block;
    text-align: center;
}
.carrito {
    width: 22px;
    vertical-align: middle;
    margin-right: 8px;
    margin-top: -4px;
}
.titulo-carrito {
    display: inline;
    vertical-align: middle;
}


/* Tarjetas entrega de pedido*/
.card-entrega-pedido{
    position: relative;
    padding: 10px;
    text-align: center;
    border: 2px solid #f7975b;
    border-radius: 8px;
    transition: border 0.3s ease-in-out;
}
.card-entrega-pedido:hover{
    border: 4px solid #e26111;
}
.card-entrega-pedido input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.card-entrega-pedido::after {
    content: "";
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    border: 2px solid #f7975b;
    border-radius: 50%;
    background-color: white;
}

.card-entrega-pedido:has(input[type="radio"]:checked)::after {
    background-color: #e26111;
    box-shadow: 0 0 8px 4px rgba(255, 145, 0, 0.5); /* aro de luz naranja */
}
.card-activa{
    border: 4px solid #e26111;
}

/* Formulario */
.input-formulario{
    background: #d9d9d9 !important;
}
.input-formulario:active{
    background: #d9d9d9 !important;
}

/* Orden*/
.tituloApartados{
    margin-top: 10px; 
    font-size: 16px; 
    line-height: 1.3;
}
.tituloEtiquetas{
    margin-bottom: 0.2rem; 
    font-size: 14px; 
    line-height: 1.3;
}

#tabla-items thead th,
#tabla-items tbody td,
#tabla-items tbody th {
    border: none !important;
}

#tabla-items tfoot td{
    color: #fff !important;
    text-align: right;
    font-size: 14px; 
}

.table-encabezado {
    color: #e26111 !important;
    font-size: 14px !important; 
}

.btn-pago{
    width: 150px;
    background: #e26111;
    color: #fff;
    line-height: 22px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
}

.btn-pago:hover,
.btn-pago:active{
    background: #e26111;
    color: #fff;
}

/* Personalizar el acordeon */
.accordion-button{
    padding-bottom: 0 !important;
}
.accordion-button:not(.collapsed) {
    color: var(--bs-body-color) !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

.mensaje-carrito-vacio .titulo {
    font-size: 30px;
    font-weight: bold;
}

.mensaje-carrito-vacio p {
    font-size: 24px;
    margin: 10px 0;
}

.text-danger {
    color: #fb4829 !important;
}

/* Pagina 404*/
.container404 {
    background-image: url('../_img/fondo-tacos.png');
    /* background-size: cover; */
    background-position: center;
    /* background-repeat: no-repeat; */
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;    
    text-align: center;
    padding: 2rem;
}
.container404-banner {
    background-image: url('../_img/fondo-tacos.png');
    /* background-size: cover; */
    background-position: center;
    /* background-repeat: no-repeat; */
    width: 100%;
    min-height: 100vh;
    display: block; /* 👈 cambia aquí */
    text-align: center;
    padding: 2rem;
}

.table {
  border-collapse: separate;
  border-spacing: 0 10px;
}
tr > td {
  border-bottom: none !important;
}
tr.table-paquete-uno > td {
  background-color: #81f8b7 !important;
}
tr.table-paquete-dos > td {
  background-color: #f88d82 !important;
}
tr.table-paquete-tres > td {
  background-color: #829df8 !important;
}

@media (max-width: 576px) {
    .footer-text {
      font-size: 0.85rem; /* más pequeño pero legible */
    }
  }







  