/* ============================================================
   LE TACOS - FOOTER CSS
   ============================================================ */

.lt-footer {
    background: #111827;
    color: rgba(255,255,255,0.8);
    padding: 48px 0 0;
    margin-top: auto;
}

.lt-footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}


.lt-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.lt-footer-logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 50%;
}

.lt-footer-logo-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
}

.lt-footer-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
    max-width: 260px;
}

.lt-footer-social {
    display: flex;
    gap: 10px;
}

.lt-footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: all var(--transition-base);
}

.lt-footer-social-btn:hover {
    background: var(--lt-yellow);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Links Columns */
.lt-footer-col-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.lt-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lt-footer-link {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.lt-footer-link:hover { color: white; }

.lt-footer-link i { font-size: 0.75rem; }

/* Working hours info */
.lt-footer-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 10px;
}

.lt-footer-info-icon {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ---- Footer Bottom Bar ---- */
.lt-footer-bottom {
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.lt-footer-copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.lt-footer-bottom-links {
    display: flex;
    gap: 20px;
}

.lt-footer-bottom-link {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    transition: color var(--transition-fast);
    cursor: pointer;
}

.lt-footer-bottom-link:hover { color: rgba(255,255,255,0.7); }

/* ---- Mobile Bottom Nav ---- */
.lt-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: white;
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    padding: 0 8px env(safe-area-inset-bottom, 0);
}

.lt-bottom-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.lt-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 10px 8px;
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 600;
    cursor: pointer;
    transition: color var(--transition-fast);
    position: relative;
    flex: 1;
    text-align: center;
}

.lt-bottom-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 1px;
}

.lt-bottom-nav-item.active { color: var(--lt-green-dark); }

.lt-bottom-nav-item .lt-badge {
    position: absolute;
    top: 6px;
    right: 20%;
}
