/* Footer Component - Shahib Boutique */

.footer {
    background-color: #1f2937;
    color: #e5e7eb;
}

.footer-inner {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding: 2.5rem 1.5rem 1.5rem;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

.footer-brand {
    max-width: 20rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-logo:hover {
    color: #fcd34d;
}

.footer-logo-icon {
    font-size: 1.5rem;
}

.footer-tagline {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.5;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #fcd34d;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-copy {
    font-size: 0.8125rem;
    color: #9ca3af;
    margin: 0;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .footer-legal {
        justify-content: flex-end;
    }
}

.footer-legal-link {
    font-size: 0.8125rem;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal-link:hover {
    color: #fcd34d;
}

.footer a:focus-visible {
    outline: 2px solid #fcd34d;
    outline-offset: 2px;
}
