.site-logo-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0;
}

.site-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-logo-image {
    max-height: 55px;
    width: auto;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.3s ease;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.site-logo-link:hover .site-logo-image,
.site-logo-link:focus-visible .site-logo-image {
    transform: scale(1.08);
}

.header-search-button {
    background: none;
    border: none;
    cursor: pointer;
}

.header-search-button:focus-visible,
.mobile-menu-close:focus-visible,
.search-close:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.35);
    outline-offset: 3px;
}

.cart-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.user-menu {
    display: flex;
    align-items: center;
}

.user-logout {
    font-size: 0.8rem;
    margin-left: 0.8rem;
    opacity: 0.8;
}

.search-overlay-hint {
    margin-top: 1rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 380px;
    width: calc(100% - 32px);
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.toast--success {
    background: #ecfdf3;
    color: #166534;
    border: 1px solid #86efac;
}

.toast--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.toast--info {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #93c5fd;
}

.newsletter-inline-message {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.newsletter-inline-message--success {
    background: #ecfdf3;
    color: #166534;
    border: 1px solid #86efac;
}

.newsletter-inline-message--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.footer-brand-copy {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-brand-link {
    display: inline-block;
    text-decoration: none;
}

.footer-brand-logo {
    max-height: 160px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.footer-brand-link:hover .footer-brand-logo,
.footer-brand-link:focus-visible .footer-brand-logo {
    transform: scale(1.05);
}

.footer-brand-heading,
.footer-links-heading,
.footer-newsletter-heading,
.footer-social-heading {
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-brand-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-item {
    margin-bottom: 0.8rem;
}

.footer-nav-link {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-nav-link:hover,
.footer-nav-link:focus-visible {
    color: #fff;
}

.footer-newsletter-copy {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

.footer-social-block {
    margin-top: 2.5rem;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-social-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f2c1b6;
    color: #000;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
}

.footer-social-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-social-icon.is-filled {
    fill: currentColor;
    stroke: none;
}

.footer-legal-divider {
    opacity: 0.7;
    margin: 0 10px;
}

.footer-legal-link {
    color: var(--text-muted);
}

.footer-admin {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .toast-container {
        right: 16px;
        top: 16px;
        width: calc(100% - 32px);
    }
}
