/**
 * AIREKART storefront footer — loaded on all pages using frontend/layout.blade.php
 */
:root {
    --ha-primary: #044c9f;
    --ha-secondary: #8dc655;
    --ha-on-surface-variant: #5a6570;
    --ha-radius-pill: 99px;
}

.ha-site-footer .material-symbols-outlined {
    font-family: "Material Symbols Outlined";
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.ha-site-footer {
    background: #f8fafc;
    width: 100%;
    padding: 3rem 2rem 2rem;
    border-top: 1px solid rgba(191, 201, 196, 0.35);
}

.ha-site-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.ha-site-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .ha-site-footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.ha-site-footer-logo {
    display: block;
    max-height: 48px;
    width: auto;
    margin: 0 0 1rem;
}

.ha-site-footer-brand {
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ha-primary);
    margin: 0 0 0.75rem;
}

.ha-site-footer-about {
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0 0 1.5rem;
}

.ha-site-footer-about.ha-site-footer-contact-line {
    margin: 0 0 0.5rem;
}

.ha-site-footer-social {
    display: flex;
    gap: 1rem;
}

.ha-site-footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(191, 201, 196, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ha-on-surface-variant);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.ha-site-footer-social a:hover {
    background: var(--ha-primary);
    color: #fff;
    border-color: var(--ha-primary);
}

.ha-site-footer-col h4 {
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--ha-primary);
    margin: 0 0 1rem;
}

.ha-site-footer-col nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ha-site-footer-col a {
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 0.875rem;
    color: #64748b;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ha-site-footer-col a:hover {
    color: var(--ha-primary);
}

.ha-footer-newsletter {
    position: relative;
}

.ha-footer-newsletter input {
    width: 100%;
    border: none;
    border-radius: var(--ha-radius-pill);
    padding: 0.85rem 3.25rem 0.85rem 1.35rem;
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 0.875rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.ha-footer-newsletter input:focus {
    outline: 2px solid var(--ha-primary);
    outline-offset: 0;
}

.ha-footer-newsletter button {
    position: absolute;
    right: 0.45rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.35rem;
    height: 2.35rem;
    border: none;
    background: var(--ha-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 50%;
}

.ha-footer-newsletter button:hover {
    background: var(--ha-secondary);
}

.ha-footer-newsletter button .material-symbols-outlined {
    font-size: 1rem;
}

.ha-site-footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(191, 201, 196, 0.35);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .ha-site-footer-bottom {
        flex-direction: row;
        align-items: flex-start;
    }
}

.ha-site-footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .ha-site-footer-legal {
        justify-content: flex-start;
        max-width: 65%;
    }
}

.ha-site-footer-legal a {
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #94a3b8;
    text-decoration: none;
}

.ha-site-footer-legal a:hover {
    color: var(--ha-primary);
}

.ha-site-footer-tagline {
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: center;
}

@media (min-width: 768px) {
    .ha-site-footer-tagline {
        text-align: right;
        flex: 1;
    }
}
