/* Gallos Osuna — Footer */

/* -------------------------------------------------------------------------
   16. Pie de pagina
   ---------------------------------------------------------------------- */
.site-footer {
    background: var(--negro);
    color: #e9e2d6;
    margin-top: 60px;
}

.site-footer__inner {
    max-width: var(--contenedor-ancho);
    margin: 0 auto;
    padding: 48px 20px;
    display: grid;
    gap: 32px;
}

.site-footer h2 {
    color: var(--blanco);
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.site-footer__tagline {
    color: #cabfae;
    max-width: 40ch;
}

.footer-contact-list li,
.footer-menu li {
    padding: 6px 0;
}

.footer-contact-list a,
.footer-menu a {
    color: #e9e2d6;
}

.footer-contact-list a:hover,
.footer-menu a:hover {
    color: var(--dorado);
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    padding: 18px 20px;
    font-size: 0.9rem;
    color: #a99d8b;
}

@media (min-width: 800px) {
    .site-footer__inner {
        grid-template-columns: 1.3fr 1fr 1fr;
    }
}

/* -------------------------------------------------------------------------
   17. Boton flotante de WhatsApp
   ---------------------------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--whatsapp);
    color: var(--blanco);
    padding: 14px 18px;
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.whatsapp-float svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.whatsapp-float:hover {
    background: var(--whatsapp-oscuro);
    color: var(--blanco);
}

.whatsapp-float__label {
    font-weight: 700;
}

@media (max-width: 480px) {
    .whatsapp-float__label {
        display: none;
    }

    .whatsapp-float {
        padding: 14px;
    }
}

@media (max-width: 899px) {
    .site-header__brand {
        margin: 0 !important;
    }
}

.site-header__brand {
    margin: auto;
}

.site-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-logo--image {
    max-height: var(--logo-height, 50px);
    width: auto;
    height: auto;
    object-fit: contain;
    transition: max-height 0.15s ease;
}

.site-logo--text {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--blanco);
    text-decoration: none;
}

.category-chip-row--children {
    margin-top: 10px;
}

.category-chip--child {
    font-size: 0.85rem;
    padding: 7px 14px;
}
.footer-contact-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
