/* Общие стили футера витрины (все страницы с shop_header) */

.site-logo-img {
    max-height: 36px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}
.logo.logo--has-img {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}
.header .logo-text-brand {
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    max-width: min(220px, 42vw);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-badge.cart-badge--empty {
    display: none;
}

.footer {
    margin-top: 48px;
    padding: 32px 0 20px;
    border-top: 1px solid #ffffff0c;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.footer-col h4 {
    font-weight: 400;
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: #eef2f6;
}
.footer-col p {
    opacity: 0.7;
    font-size: 0.85rem;
    margin: 10px 0;
}
.footer-col a {
    color: #ccd9f0;
    text-decoration: none;
    display: block;
    margin: 6px 0;
    font-size: 0.85rem;
}
.footer-col a:hover {
    color: #8aa9ff;
}

@media (max-width: 768px) {
    .footer {
        grid-template-columns: repeat(2, 1fr);
    }
}
