:root {
    --obonglow-footer-pink: #e9468b;
    --obonglow-footer-text: #222222;
    --obonglow-footer-muted: #5f5f5f;
    --obonglow-footer-bg: #fdebf4;
    --obonglow-footer-card: #ffffff;
    --obonglow-footer-border: #edc3d6;
    --obonglow-footer-shadow: 0 14px 36px rgba(86, 36, 61, .08);
}

.obonglow-premium-footer {
    width: 100%;
    margin-top: 0;
    background: var(--obonglow-footer-bg);
    color: var(--obonglow-footer-text);
    border-top: 1px solid var(--obonglow-footer-border);
    clear: both;
}

.obonglow-premium-footer,
.obonglow-premium-footer * { box-sizing: border-box; }

.obonglow-premium-footer__inner {
    width: min(100% - 40px, 1440px);
    margin: 0 auto;
    padding: 42px 0 22px;
}

.obonglow-premium-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.obonglow-footer-card {
    min-width: 0;
    min-height: 100%;
    padding: 30px 28px;
    border: 1px solid var(--obonglow-footer-border);
    border-radius: 20px;
    background: var(--obonglow-footer-card);
    box-shadow: var(--obonglow-footer-shadow);
}

.obonglow-footer-logo {
    display: block;
    width: min(112px, 100%);
    margin: 0 auto 28px 0;
    align-self: flex-start;
}

.obonglow-footer-logo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.obonglow-footer-title {
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--obonglow-footer-pink);
    color: var(--obonglow-footer-text);
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.obonglow-footer-title a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease;
}

.obonglow-footer-title a:hover,
.obonglow-footer-title a:focus-visible { color: var(--obonglow-footer-pink); }

.obonglow-footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.obonglow-footer-links a {
    color: var(--obonglow-footer-muted);
    font-size: 15px;
    line-height: 1.45;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.obonglow-footer-links a:hover,
.obonglow-footer-links a:focus-visible {
    color: var(--obonglow-footer-pink);
    transform: translateX(2px);
}

.obonglow-footer-socials {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
}

.obonglow-footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border: 1px solid var(--obonglow-footer-pink);
    border-radius: 999px;
    color: var(--obonglow-footer-pink);
    background: #fff;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.obonglow-footer-social svg { width: 19px; height: 19px; }

.obonglow-footer-social:hover,
.obonglow-footer-social:focus-visible {
    color: #fff;
    background: var(--obonglow-footer-pink);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 70, 139, .22);
}

.obonglow-footer-copyright {
    margin-top: 28px;
    padding-top: 21px;
    border-top: 1px solid #dfbdcc;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 1100px) {
    .obonglow-premium-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
    .obonglow-premium-footer { margin-top: 0; }

    .obonglow-premium-footer__inner {
        width: min(100% - 28px, 680px);
        padding: 28px 0 104px;
    }

    .obonglow-premium-footer__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .obonglow-footer-card {
        padding: 24px 22px;
        border-radius: 14px;
    }

    .obonglow-footer-logo {
        width: min(112px, 100%);
        margin: 0 auto 22px 0;
    }

    .obonglow-footer-title { margin-bottom: 16px; padding-bottom: 12px; font-size: 15px; }
    .obonglow-footer-links { gap: 10px; }
    .obonglow-footer-links a { font-size: 15px; }

    .obonglow-footer-copyright {
        margin-top: 24px;
        padding: 20px 14px 0;
        font-size: 13px;
    }
}
