.moonshop-footer {
    --accent: #d94432;
    margin-top: 3rem;
    padding: 0 !important;
    text-align: left !important;
    font-size: inherit !important;
    color: inherit !important;
    border-top: 1px solid rgba(226, 232, 240, 0.14) !important;
    background: rgba(5, 6, 12, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.moonshop-footer .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.25rem 1.5rem 1.25rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 1.25rem 2rem;
}

.moonshop-footer .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.moonshop-footer .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #f2f4f8;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.moonshop-footer .footer-logo-mark {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.moonshop-footer .footer-tagline {
    color: rgba(226, 232, 240, 0.75);
    font-size: 0.9rem;
    line-height: 1.45;
    max-width: 260px;
}

.moonshop-footer .footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    color: #f2f4f8;
}

.moonshop-footer .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.moonshop-footer .footer-links a,
.moonshop-footer .footer-links span {
    font-size: 0.86rem;
    color: rgba(226, 232, 240, 0.75);
    text-decoration: none;
}

.moonshop-footer .footer-links a:hover {
    color: var(--accent, #d94432);
}

.moonshop-footer .footer-links span {
    opacity: 0.76;
}

.moonshop-footer .footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.9rem 1.5rem 1.25rem;
    border-top: 1px solid rgba(226, 232, 240, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.moonshop-footer .footer-bottom small {
    color: rgba(226, 232, 240, 0.56);
    font-size: 0.8rem;
}

.moonshop-footer .footer-social {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.moonshop-footer .social-link {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(226, 232, 240, 0.14);
    color: rgba(226, 232, 240, 0.8);
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.moonshop-footer .social-link svg {
    width: 14px;
    height: 14px;
}

.moonshop-footer .social-link:hover {
    border-color: rgba(217, 68, 50, 0.55);
    color: var(--accent, #d94432);
    background: rgba(217, 68, 50, 0.12);
}

@media (max-width: 900px) {
    .moonshop-footer .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .moonshop-footer .footer-inner {
        grid-template-columns: 1fr;
    }
    .moonshop-footer .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

