
.global-footer {
    background-color: #f5f5f7;
    color: #86868b;
    font-size: 0.75rem;
    font-family: --system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding: 20px 0 40px 0;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.global-footer a {
    color: #424245;
    text-decoration: none;
}

.global-footer a:hover {
    text-decoration: underline;
}

.footer-notes {
    padding-bottom: 15px;
}
.footer-notes p {
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.footer-divider {
    border: none;
    border-top: 1px solid #d2d2d7;
    margin: 20px 0;
}

.footer-directory {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    min-width: 150px;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0 0 10px 0;
}

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

.footer-column li {
    margin-bottom: 8px;
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #d2d2d7;
}

.footer-shop-link {
    margin-bottom: 10px;
    color: #86868b;
}

.footer-shop-link a {
    color: #06c;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-copyright {
    margin-right: 30px;
}

.footer-legal-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.footer-legal-links li {
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #d2d2d7;
}

.footer-legal-links li:last-child {
    border-right: none;
}

.footer-locale {
    margin-left: auto;
    color: #424245;
}

.footer-bottom-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #d2d2d7;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.footer-shop-link {
    margin-bottom: 0 !important;
}

.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-link {
    color: #515154;
    transition: color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: #1d1d1f;
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .footer-directory {
        flex-direction: column;
    }
    .footer-column {
        border-bottom: 1px solid #d2d2d7;
        margin-bottom: 0;
        padding: 10px 0;
    }
    .footer-legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .footer-locale {
        margin-left: 0;
    }
    .footer-bottom-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}