/* =========================
   FOOTER GENERAL
========================= */
.footer {
    background: #0e100d;
    color: #fff;
    padding: 40px 15px 20px;
    margin-top: 50px;
    font-family: Arial, sans-serif;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

/* TITULOS */
.footer h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

/* TEXTO */
.footer p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

/* LISTAS */
.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: #febd69;
}

/* PARTE INFERIOR */
.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #333;
    margin-top: 25px;
    font-size: 13px;
    color: #aaa;
}

/* ===============================
   FIX DEFINITIVO DE WHATSAPP
=============================== */

.whatsapp-float {
    position: fixed !important;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    z-index: 99999 !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.whatsapp-icon {
    width: 35px !important;
    height: 35px !important;
    object-fit: contain;
}

/* Ajuste especial para móviles */
@media (max-width: 768px) {
    .whatsapp-float {
        right: 12px;
        bottom: 12px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-icon {
        width: 32px !important;
        height: 32px !important;
    }
}


/* =======================================
      CARRITO FLOTANTE TEMU STYLE
======================================= */

.cart-float {
    position: fixed;
    bottom: 95px;  /* Para no tapar el WhatsApp */
    right: 22px;
    background: #ff6600;
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 9998;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform .2s;
}

.cart-float:hover {
    transform: scale(1.1);
}

/* Numerito del carrito */
.cart-float .badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #000;
    color: #fff;
    padding: 4px 7px;
    font-size: 12px;
    border-radius: 50%;
    font-weight: bold;
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .whatsapp-float, 
    .cart-float {
        right: 10px;
    }
}


/* ðŸ”§ FIX GENERAL PARA MOVILES */
@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    /* Corrige el header */
    .amazon-top {
        flex-direction: column !important;
        align-items: stretch;
        gap: 8px;
    }

    .amazon-logo {
        text-align: center;
        font-size: 22px;
    }

    .amazon-search {
        width: 100% !important;
    }

    .amazon-icons {
        justify-content: center;
    }

    /* Corrige el menÃº */
    .amazon-menu {
        width: 100%;
    }

    .amazon-menu a {
        display: block;
        width: 100%;
        text-align: center;
    }


