﻿@charset "UTF-8";

body footer:not(.rechargeCenterFooterFigma),
.plusSiteFooter {
    margin-top: 40px;
    border-top: 1px solid var(--plus-line, rgba(92, 66, 43, 0.13));
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.78), rgba(247, 239, 226, 0.94)),
        var(--plus-bg, #fbf7ef);
    color: var(--plus-muted, #746454);
}

body footer:not(.rechargeCenterFooterFigma) .footerInner,
.plusSiteFooterInner {
    width: min(var(--plus-shell, 1180px), calc(100% - 32px));
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 0 auto;
    padding: 22px 0;
}

.plusSiteFooterBrand,
body footer:not(.rechargeCenterFooterFigma) .footerInner p {
    margin: 0;
    color: var(--plus-dim, #9a8876);
    font-size: 13px;
    line-height: 1.8;
}

.plusSiteFooterBrand strong {
    display: block;
    color: var(--plus-text, #2f261f);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.45;
}

.plusSiteFooterLinks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 6px 14px;
}

.plusSiteFooterLinks a {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    color: var(--plus-muted, #746454);
    font-size: 13px;
    font-weight: 700;
    transition: color var(--plus-ease, 180ms ease), text-shadow var(--plus-ease, 180ms ease);
}

.plusSiteFooterLinks a:hover,
.plusSiteFooterLinks a:focus-visible {
    color: var(--plus-accent, #8a5a26);
    text-shadow: 0 8px 22px rgba(138, 90, 38, 0.18);
    outline: none;
}

@media (max-width: 768px) {
    body footer:not(.rechargeCenterFooterFigma),
    .plusSiteFooter {
        margin-top: 28px;
        padding-bottom: env(safe-area-inset-bottom);
    }

    body footer:not(.rechargeCenterFooterFigma) .footerInner,
    .plusSiteFooterInner {
        min-height: 74px;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        padding: 18px 0;
        text-align: center;
    }

    .plusSiteFooterLinks {
        justify-content: center;
        gap: 4px 12px;
    }
}
