/* =========================
   FOOTER – BASE (MISMO QUE ORIGINAL)
   ========================= */

.footer {
    background-color: #7a0000;
    color: #ffffff;
    padding: 60px 0 40px;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    font-family: 'Made Okine Sans', sans-serif;
    font-weight: 400;
}

/* =========================
   FOOTER – HEADINGS
   (MISMA ESTRUCTURA, UNA SOLA COLUMNA)
   ========================= */

.footer-tienda .footer-headings {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 20px; /* CLAVE: igual al original */
}

.footer-tienda .footer-title {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    text-align: left;
}

/* =========================
   FOOTER – GRID
   ========================= */

.footer-tienda .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
}

/* =========================
   LISTA ENLACES
   ========================= */

.footer-tienda .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-tienda .footer-links li {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 25px;
    line-height: 1.4;
    min-height: 40px; /* IGUAL QUE ORIGINAL */
}

/* =========================
   ENLACES
   ========================= */

.footer-tienda .footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
}

.footer-tienda .footer-links a:hover {
    text-decoration: underline;
}

/* =========================
   ICONOS
   ========================= */

.footer-tienda .icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-tienda .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* =========================
   COPYRIGHT
   ========================= */

.footer-tienda .footer-copy {
    font-size: 13px;
    opacity: 0.9;
    margin-top: 0; /* MISMA POSICIÓN QUE ORIGINAL */
}

/* =========================
   FOOTER – TABLET
   ========================= */

@media (max-width: 1024px) {

    .footer-container {
        padding: 0 32px;
    }

    .footer-tienda .footer-title {
        font-size: 26px;
    }

    .footer-tienda .footer-links li {
        font-size: 20px;
        min-height: 36px;
    }

    .footer-tienda .footer-copy {
        font-size: 12px;
    }
}

/* =========================
   FOOTER – MOBILE
   ========================= */

@media (max-width: 768px) {

    .footer-container {
        padding: 0 20px;
    }

    .footer-tienda .footer-title {
        font-size: 22px;
    }

    .footer-tienda .footer-links li {
        font-size: 17px;
        min-height: auto;
    }

    .footer-tienda .footer-copy {
        margin-top: 24px;
        font-size: 12px;
    }
}
