:root {
    --footer-safe-space: 96px;
}

body {
    padding-bottom: var(--footer-safe-space);
}

.footer {
    background-color: #000;
    color: #fff;
    padding: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 54px;
    font-size: 0.9rem;
    z-index: 100;
}


.footer-content.footer-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0.7rem 1rem 0.3rem 1rem;
}

.footer-icons {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.2rem;
}

.footer-icon-svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 900px) {
    .footer-icon-svg {
        width: 22px;
        height: 22px;
    }
}

.footer-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    transition: opacity 0.2s;
    opacity: 0.85;
}
.footer-icons a:hover {
    opacity: 1;
}

.footer-text {
    flex: 1;
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #fff;
    padding-left: 0.5rem;
}

.footer a {
    color: #fff !important;
    text-decoration: none !important;
    border: none;
    outline: none;
    box-shadow: none;
}
.footer a:hover {
    color: #e0e0e0 !important;
    text-decoration: none !important;
}

@media (max-width: 600px) {
    :root {
        --footer-safe-space: 110px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        padding: 0.3rem 0.5rem;
    }
    .footer-icons {
        justify-content: center;
        margin-bottom: 0.2rem;
        margin-right: 0;
    }
    .footer-text {
        padding-left: 0;
        font-size: 0.92rem;
        text-align: center;
    }
}
