.site-header-stack {
    position: relative;
    z-index: 10030;
}

.site-header-stack.is-floating {
    padding-top: var(--main-header-height, 72px);
}

.announcement-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 34px;
    padding: 0.4rem 1rem;
    background: color-mix(in srgb, var(--header-bg, #0f172a) 88%, var(--primary-color, #2563eb));
    color: var(--header-text, #f8fafc);
    font-size: 0.82rem;
    font-weight: 650;
    line-height: 1.2;
    text-align: center;
}

.announcement-bar a {
    color: var(--announcement-link, #93c5fd);
    font-weight: 750;
    text-decoration: none;
}

.site-header {
    position: relative;
    top: 0;
    z-index: 10010;
    min-height: 0;
    background: color-mix(in srgb, var(--header-bg, #0f172a) 92%, transparent);
    color: var(--header-text, #f8fafc);
    border-bottom: 1px solid color-mix(in srgb, var(--header-text, #f8fafc) 10%, transparent);
    box-shadow: 0 20px 55px rgba(2, 6, 23, 0.12);
    transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-floating {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
}

.site-header.is-transparent {
    background: color-mix(in srgb, var(--header-bg, #0f172a) 88%, transparent);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
}

.site-header.is-scrolled {
    background: color-mix(in srgb, var(--header-bg, #0f172a) 34%, transparent);
    border-bottom-color: color-mix(in srgb, var(--header-text, #f8fafc) 16%, transparent);
    box-shadow: 0 18px 48px rgba(2, 6, 23, 0.16);
    backdrop-filter: blur(18px) saturate(165%);
    -webkit-backdrop-filter: blur(18px) saturate(165%);
}

.site-header .container {
    display: grid;
    grid-template-columns: minmax(160px, 0.85fr) minmax(420px, 1.4fr) minmax(150px, 0.85fr);
    align-items: center;
    width: min(100%, 1440px);
    min-height: 76px;
    margin: 0 auto;
    padding: 0.7rem clamp(1rem, 2.4vw, 2.5rem);
    column-gap: clamp(1rem, 2.2vw, 2.5rem);
}

.logo,
.site-logo-heading,
.site-logo-link {
    display: flex;
    align-items: center;
}

.logo {
    justify-self: start;
    min-width: 0;
}

.site-logo-heading {
    height: 100%;
    margin: 0;
}

.site-logo-link {
    justify-content: flex-start;
    min-width: 0;
    color: var(--header-text, #f8fafc);
}

.site-logo-text {
    display: block;
    max-width: 220px;
    overflow: hidden;
    font-size: 1.05rem;
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.logo img,
.site-logo-image {
    display: block;
    width: auto;
    height: auto;
    max-width: clamp(150px, 14vw, 220px);
    max-height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(2, 6, 23, 0.22));
    transition: transform 180ms ease, filter 180ms ease;
}

.site-logo-link {
    position: relative;
}

.site-logo-image--light {
    display: none;
}

.site-header.on-dark .site-logo-image--dark {
    display: none;
}

.site-header.on-dark .site-logo-image--light {
    display: block;
}

.site-logo-link:hover .site-logo-image,
.site-logo-link:focus-visible .site-logo-image {
    transform: translateY(-1px);
    filter: drop-shadow(0 12px 22px rgba(2, 6, 23, 0.3));
}

.main-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    width: 100%;
    overflow: visible;
}

.main-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0.3rem;
    list-style: none;
    border: 1px solid color-mix(in srgb, var(--header-text, #f8fafc) 10%, transparent);
    border-radius: 999px;
    background: color-mix(in srgb, var(--header-text, #f8fafc) 5%, transparent);
}

.main-nav li {
    position: relative;
}

.main-nav a,
.mobile-submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.32rem;
    min-height: 40px;
    padding: 0.5rem 0.85rem;
    color: color-mix(in srgb, var(--header-text, #f8fafc) 86%, transparent);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 720;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
    background: color-mix(in srgb, var(--primary-color, #2563eb) 26%, transparent);
    color: var(--header-text, #f8fafc);
}

.nav-chevron {
    width: 15px;
    height: 15px;
    transition: transform 180ms ease;
}

.nav-item-has-dropdown:hover .nav-chevron,
.nav-item-has-dropdown:focus-within .nav-chevron {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    z-index: 10020;
    display: grid;
    width: min(310px, 80vw);
    padding: 0.55rem;
    background: color-mix(in srgb, var(--surface-color, #ffffff) 96%, var(--primary-color, #2563eb) 4%);
    border: 1px solid color-mix(in srgb, var(--primary-color, #2563eb) 12%, var(--border-color, #e2e8f0));
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(2, 6, 23, 0.24);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    inset: -16px 0 auto;
    height: 16px;
}

.nav-item-has-dropdown:hover .nav-dropdown,
.nav-item-has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-dropdown a {
    display: grid;
    justify-content: start;
    gap: 0.25rem;
    min-height: auto;
    padding: 0.85rem 0.9rem;
    color: var(--text-color, #0f172a);
    border-radius: 12px;
    text-align: left;
    white-space: normal;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
    background: color-mix(in srgb, var(--primary-color, #2563eb) 10%, transparent);
    color: var(--text-color, #0f172a);
}

.nav-dropdown span {
    font-size: 0.9rem;
    font-weight: 780;
}

.nav-dropdown small {
    color: var(--muted-text-color, #64748b);
    font-size: 0.78rem;
    font-weight: 560;
    line-height: 1.35;
}

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem;
    min-width: 0;
}

.header-actions a,
.header-actions button,
.header-actions .nav-icon,
.mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    border: 1px solid color-mix(in srgb, var(--header-text, #f8fafc) 10%, transparent);
    border-radius: 999px;
    background: color-mix(in srgb, var(--header-text, #f8fafc) 6%, transparent);
    color: var(--header-text, #f8fafc);
    flex: 0 0 auto;
    cursor: pointer;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-actions svg,
.header-actions i,
.mobile-menu-toggle svg,
.mobile-menu-toggle i {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
}

.header-actions .nav-icon:hover,
.header-actions button:hover,
.mobile-menu-toggle:hover,
.header-actions .nav-icon:focus-visible,
.header-actions button:focus-visible,
.mobile-menu-toggle:focus-visible {
    background: color-mix(in srgb, var(--primary-color, #2563eb) 28%, transparent);
    border-color: color-mix(in srgb, var(--accent-color, #06b6d4) 34%, transparent);
    color: var(--header-text, #f8fafc);
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
}

.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    z-index: 20000;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: min(86vw, 320px);
    height: 100dvh;
    padding: 1.25rem 1.25rem 2rem;
    overflow-y: auto;
    background: var(--surface-color, #ffffff);
    border-right: 1px solid var(--border-color, #e2e8f0);
    box-shadow: 18px 0 40px rgba(0, 0, 0, 0.35);
    transition: left 0.3s ease;
}

.mobile-menu-sidebar.active {
    left: 0;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 19999;
    background: rgba(2, 6, 23, 0.6);
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(3px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color, #e2e8f0);
}

.mobile-menu-title {
    color: var(--text-color, #0f172a);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 999px;
    background: var(--card-background, #ffffff);
    color: var(--text-color, #0f172a);
    cursor: pointer;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-menu-links a,
.mobile-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 14px;
    background: var(--card-background, #ffffff);
    color: var(--text-color, #0f172a);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.mobile-menu-links a:hover,
.mobile-menu-links a:active,
.mobile-submenu-toggle:hover,
.mobile-submenu-toggle:focus-visible {
    border-color: color-mix(in srgb, var(--primary-color) 24%, transparent);
    background: color-mix(in srgb, var(--primary-color) 24%, transparent);
    color: var(--button-text-color);
    transform: translateX(2px);
}

.mobile-submenu-toggle svg {
    width: 18px;
    height: 18px;
    transition: transform 180ms ease;
}

.mobile-submenu-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: grid;
    gap: 0.45rem;
    margin: 0.55rem 0 0;
    padding: 0 0 0 0.7rem;
    list-style: none;
}

.mobile-submenu[hidden] {
    display: none;
}

.mobile-submenu a {
    padding: 0.78rem 0.9rem;
    border-radius: 12px;
    background: color-mix(in srgb, var(--card-background, #ffffff) 88%, var(--primary-color, #2563eb) 12%);
    font-size: 0.94rem;
    font-weight: 650;
}

.mobile-menu-links .divider {
    height: 1px;
    margin: 0.3rem 0 0.5rem;
    background: var(--border-color, #e2e8f0);
}

.main-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    margin-top: clamp(2.25rem, 5vw, 4.5rem);
}

.main-footer a,
.footer-nav-link,
.footer-legal-link {
    color: var(--footer-link);
}

.main-footer h3,
.main-footer h4,
.footer-brand-title {
    color: var(--footer-text);
}

.main-footer .container,
.main-header .container {
    margin-left: auto;
    margin-right: auto;
}

.footer-grid,
.main-footer .footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.8fr) minmax(260px, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

.custom-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.custom-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.custom-modal-content {
    width: 90%;
    max-width: 400px;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--surface-color);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    text-align: center;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.custom-modal-overlay.active .custom-modal-content {
    transform: scale(1);
}

.custom-modal-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 1.25rem;
}

.custom-modal-content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.custom-modal-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    color: var(--button-text-color);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    animation: pulse-wa 2.5s infinite;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    color: var(--button-text-color);
    animation: none;
    transform: scale(1.1);
}

.whatsapp-float .wa-icon {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

.whatsapp-greeting {
    position: fixed;
    bottom: 105px;
    left: 30px;
    z-index: 999998;
    padding: 12px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px 12px 12px 4px;
    background-color: transparent;
    color: var(--muted-text-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: default;
    opacity: 0;
    transform: translateY(15px);
    animation: wa-popup-bubble 0.5s ease 2s forwards;
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes wa-popup-bubble {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media print {
    .site-header-stack,
    .main-header,
    .main-footer,
    .no-print {
        display: none;
    }
}

@media (max-width: 1024px) {
    .site-header .container {
        grid-template-columns: auto 1fr auto;
        min-height: 72px;
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }

    .main-nav {
        display: flex;
        grid-column: 1;
        justify-self: start;
        width: auto;
        padding-right: 0;
    }

    .logo {
        grid-column: 2;
        justify-self: center;
    }

    .logo img,
    .site-logo-image {
        max-width: 180px;
        max-height: 56px;
    }

    .header-actions {
        grid-column: 3;
        gap: 0.5rem;
        padding-left: 0;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }
}

@media (max-width: 768px) {
    .footer-grid,
    .main-footer .footer-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 25px;
        left: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float .wa-icon {
        width: 30px;
        height: 30px;
    }

    .whatsapp-greeting {
        bottom: 95px;
        left: 20px;
        max-width: 220px;
        padding: 10px 14px;
        font-size: 0.88rem;
    }

    .announcement-bar {
        font-size: 0.78rem;
        flex-wrap: wrap;
        gap: 0.35rem 0.75rem;
        padding-inline: 0.75rem;
    }

    .site-header .container {
        grid-template-columns: 42px minmax(0, 1fr) auto;
        padding-inline: 0.75rem;
    }

    .header-actions {
        gap: 0.25rem;
    }

    .header-actions a,
    .header-actions button,
    .header-actions .nav-icon,
    .mobile-menu-toggle {
        width: 38px;
        height: 38px;
        min-width: 38px;
        min-height: 38px;
    }

    .header-actions svg,
    .header-actions i,
    .mobile-menu-toggle svg,
    .mobile-menu-toggle i {
        width: 21px;
        height: 21px;
        flex-basis: 21px;
    }

    .logo img,
    .site-logo-image {
        max-width: min(42vw, 150px);
        max-height: 52px;
    }
}

@media (max-width: 390px) {
    .site-header .container {
        gap: 0.45rem;
        padding-inline: 0.5rem;
    }

    .header-actions a,
    .header-actions button,
    .header-actions .nav-icon,
    .mobile-menu-toggle {
        width: 34px;
        height: 34px;
        min-width: 34px;
        min-height: 34px;
    }

    .logo img,
    .site-logo-image {
        max-width: min(38vw, 128px);
    }
}

@media (min-width: 1025px) and (max-width: 1180px) {
    .site-header .container {
        grid-template-columns: minmax(140px, 0.7fr) minmax(390px, 1.5fr) minmax(140px, 0.7fr);
        column-gap: clamp(0.75rem, 1.5vw, 1.25rem);
        padding-inline: clamp(0.75rem, 1.5vw, 1.25rem);
    }

    .main-nav ul {
        gap: clamp(0.3rem, 0.7vw, 0.55rem);
    }

    .main-nav a {
        min-height: 40px;
        padding-inline: clamp(0.35rem, 0.55vw, 0.55rem);
        font-size: 0.74rem;
        letter-spacing: 0.045em;
    }

    .logo,
    .logo img,
    .site-logo-image {
        max-width: clamp(160px, 15vw, 210px);
    }

    .header-actions {
        gap: 0.35rem;
    }
}

.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;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border: 2px solid color-mix(in srgb, var(--header-bg, #0f172a) 80%, transparent);
    border-radius: 999px;
    background: var(--accent-color, #06b6d4);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 850;
    line-height: 1;
}

.cart-trigger.bump {
    animation: cart-bump 300ms ease;
}

@keyframes cart-bump {
    50% {
        transform: translateY(-1px) scale(1.08);
    }
}

.search-overlay-hint {
    margin-top: 1rem;
    color: var(--muted-text-color);
    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: color-mix(in srgb, var(--success-color) 14%, var(--surface-color));
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

.toast--error {
    background: color-mix(in srgb, var(--danger-color) 12%, var(--surface-color));
    color: var(--danger-color);
    border: 1px solid var(--danger-color);
}

.toast--info {
    background: color-mix(in srgb, var(--info-color) 12%, var(--surface-color));
    color: var(--info-color);
    border: 1px solid var(--info-color);
}

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

.newsletter-inline-message--success {
    background: color-mix(in srgb, var(--success-color) 14%, var(--surface-color));
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

.newsletter-inline-message--error {
    background: color-mix(in srgb, var(--danger-color) 12%, var(--surface-color));
    color: var(--danger-color);
    border: 1px solid var(--danger-color);
}

.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: var(--footer-text-color);
}

.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: var(--secondary-color);
}

.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: var(--primary-color);
    color: var(--button-text-color);
    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);
    }
}
