/* VW_STOREFRONT_FOOTER_BASE_V1 */

html {
    min-height: 100%;
}

body.vw-storefront {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

body.vw-storefront > .vw-site-main {
    width: min(
        var(--vw-content, 1240px),
        calc(100% - 40px)
    );
    flex: 1 0 auto;
}

body.vw-storefront > .vw-site-footer {
    width: 100%;
    flex: 0 0 auto;
    margin-top: auto;
}

body.vw-storefront .vw-site-footer,
body.vw-storefront .vw-site-footer *,
body.vw-storefront .vw-site-footer *::before,
body.vw-storefront .vw-site-footer *::after {
    box-sizing: border-box;
}

body.vw-storefront .vw-site-footer {
    padding: 0;
    border-top: 0;
    color: var(--vw-muted);
    background: transparent;
}

.vw-footer-shell {
    width: min(
        var(--vw-content, 1240px),
        calc(100% - 40px)
    );
    margin: 0 auto;
}

.vw-footer-brand-link {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    color: inherit;
    text-decoration: none;
    gap: 12px;
}

.vw-footer-brand-mark {
    display: inline-flex;
    width: 44px;
    height: 44px;
    overflow: hidden;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
    background: var(--vw-primary, #111827);
    font-size: 16px;
    font-weight: 850;
    letter-spacing: -0.03em;
}

.vw-footer-brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vw-footer-brand-link strong {
    color: var(--vw-text);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.vw-footer-description {
    max-width: 440px;
    margin: 14px 0 0;
    color: var(--vw-muted);
    font-size: 14px;
    line-height: 1.7;
}

.vw-footer-heading {
    display: block;
    margin: 0 0 14px;
    color: var(--vw-text);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vw-footer-link-list {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 10px;
}

.vw-footer-link-list a,
.vw-footer-inline-links a {
    color: var(--vw-muted);
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
    transition: color 160ms ease;
}

.vw-footer-link-list a:hover,
.vw-footer-inline-links a:hover {
    color: var(--vw-primary);
}

.vw-footer-contact-list {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 10px;
}

.vw-footer-contact-list a,
.vw-footer-contact-list span {
    color: var(--vw-muted);
    font-size: 13px;
    line-height: 1.55;
    text-decoration: none;
}

.vw-footer-contact-list a:hover {
    color: var(--vw-primary);
}

.vw-footer-copyright {
    margin: 0;
    color: var(--vw-muted);
    font-size: 12px;
    line-height: 1.55;
}

@media (max-width: 560px) {
    body.vw-storefront > .vw-site-main,
    .vw-footer-shell {
        width: min(
            100% - 20px,
            var(--vw-content, 1240px)
        );
    }
}
