﻿.footer-country-selector {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-country-form {
    margin: 0;
}

.footer-country-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 25px;
    padding: 2px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.07);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.footer-country-icon {
    display: block;
    width: 25px;
    height: 16px;
    overflow: hidden;
    border-radius: 2px;
    background-position: center;
    background-size: cover;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.footer-country-button:hover {
    border-color: #72b4ff;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px) scale(1.06);
}

.footer-country-button:focus-visible {
    outline: 2px solid rgba(114, 180, 255, 0.5);
    outline-offset: 3px;
}

.footer-country-button.selected {
    border-color: #55a2fa;
    background: rgba(36, 124, 225, 0.22);
    box-shadow: 0 0 0 2px rgba(63, 144, 237, 0.17), 0 5px 12px rgba(0, 0, 0, 0.22);
}

.footer-country-check {
    position: absolute;
    right: -5px;
    bottom: -5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 13px;
    height: 13px;
    border: 1px solid #071b33;
    border-radius: 50%;
    background: #2582ea;
    color: #ffffff;
}

    .footer-country-check svg {
        width: 8px;
        height: 8px;
        fill: none;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 2.5;
    }

@media (max-width: 560px) {
    .footer-country-selector {
        gap: 7px;
        padding: 15px 0;
    }

    .footer-country-button {
        width: 30px;
        height: 23px;
    }

    .footer-country-icon {
        width: 23px;
        height: 15px;
    }

    .footer-country-check {
        right: -4px;
        bottom: -4px;
        width: 12px;
        height: 12px;
    }

        .footer-country-check svg {
            width: 7px;
            height: 7px;
        }
}

@media (prefers-reduced-motion: reduce) {
    .footer-country-button {
        transition: none;
    }
}
