/* Footer layout overrides loaded after mobile styles */
.footer-new .footer-col {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.footer-new .footer-social a {
    width: 2rem !important;
    height: 2rem !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
}

@media (max-width: 900px) {
    .footer-new .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.7rem 0.65rem !important;
        padding: 0.45rem 0.7rem !important;
        margin-bottom: 0.45rem !important;
    }

    .footer-new .footer-grid>.footer-col:first-child {
        order: 1 !important;
        grid-column: 1 / -1 !important;
        text-align: center !important;
    }

    .footer-new .footer-col-sections {
        order: 2 !important;
    }

    .footer-new .footer-col-guides {
        order: 3 !important;
    }

    .footer-new .footer-col-legal {
        order: 4 !important;
    }

    .footer-new .footer-col-contact {
        order: 5 !important;
    }

    .footer-new .footer-col-sections .footer-links {
        grid-template-columns: 1fr !important;
        gap: 0.24rem !important;
    }

    .footer-new .footer-col h3 {
        margin-bottom: 0.22rem !important;
        font-size: 0.83rem !important;
    }

    .footer-new .footer-links li,
    .footer-new .footer-links a {
        font-size: 0.71rem !important;
        line-height: 1.25 !important;
        padding: 0 !important;
    }
}

@media (max-width: 380px) {
    .footer-new .footer-grid {
        gap: 0.45rem 0.4rem !important;
        padding: 0.25rem 0.4rem !important;
    }

    .footer-new .footer-col h3 {
        font-size: 0.68rem !important;
    }

    .footer-new .footer-links li,
    .footer-new .footer-links a {
        font-size: 0.57rem !important;
        line-height: 1.18 !important;
    }

    .footer-new .footer-social a {
        width: 1.5rem !important;
        height: 1.5rem !important;
    }
}

body.light-mode .footer-new .footer-social a,
body.light-mode .footer-new .footer-social a:hover {
    background: transparent !important;
    border: none !important;
}

/* Guide dropdown accordion */
.footer-guides-dropdown {
    margin-top: 0;
}

.footer-guides-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.3rem 0;
    user-select: none;
    transition: color 0.2s;
}

.footer-guides-summary::-webkit-details-marker {
    display: none;
}

.footer-guides-summary:hover {
    color: #c084fc;
}

.footer-chevron {
    font-size: 0.65rem;
    transition: transform 0.25s ease;
    margin-left: auto;
}

details[open] .footer-chevron {
    transform: rotate(180deg);
}

.footer-guides-list {
    margin-top: 0.4rem !important;
    overflow: hidden;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}