/* ─────────────────────────────────────────────────────────────────
   LLA Footer — sans Elementor Pro
   3 colonnes desktop + barre de navigation fixe mobile
   ───────────────────────────────────────────────────────────────── */

.lla-main {
    min-height: 60vh;
}

.lla-footer {
    background: #1a1a1a;
    color: #e8e8e8;
    padding: 3rem 0 0;
    margin-top: 4rem;
}

.lla-footer__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.lla-footer__title {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.lla-footer__tagline {
    color: #b8b8b8;
    line-height: 1.6;
    max-width: 36ch;
    margin: 0;
}

.lla-footer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.lla-footer__menu li a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color .15s ease;
    font-size: .95rem;
}

.lla-footer__menu li a:hover,
.lla-footer__menu li a:focus-visible {
    color: #fff;
}

.lla-footer__legal {
    border-top: 1px solid #2a2a2a;
    padding: 1.25rem 1.5rem;
    text-align: center;
    color: #888;
    font-size: .85rem;
}

.lla-footer__legal p {
    margin: 0;
}

/* ─── Mobile ─── */
@media (max-width: 768px) {
    .lla-footer__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem 2rem;
    }
    .lla-footer {
        padding-bottom: 5rem; /* place pour la mobile bar */
    }
}

/* ─────────────────────────────────────────────────────────────────
   Mobile bottom bar (sticky) — visible mobile uniquement
   ───────────────────────────────────────────────────────────────── */

.lla-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #f4ede4;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, .06);
    z-index: 90;
    padding-bottom: env(safe-area-inset-bottom);
}

.lla-mobile-bar__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: .5rem .25rem;
    color: #1a1a1a;
    text-decoration: none;
    font-size: .7rem;
    font-weight: 500;
    gap: .15rem;
    position: relative;
}

.lla-mobile-bar__item .lla-cart__count,
.lla-mobile-bar__item .lla-wishlist-count {
    position: absolute;
    top: 4px;
    right: calc(50% - 18px);
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 8px;
    background: #c8102e;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lla-mobile-bar__item--wishlist .lla-wishlist-count,
.lla-mobile-bar__item:has(svg path[d*="M20.84"]) .lla-wishlist-count {
    background: #f5b800;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .lla-mobile-bar {
        display: flex;
    }
}
