.country-select {
    position: relative;
}

.country-trigger {
    width: 100%;
    min-height: 68px;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 0 28px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,.14);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    cursor: pointer;
    text-align: left;
}

.country-placeholder {
    color: #777;
    font-weight: 500;
}

.country-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 14px;
    box-shadow: 0 16px 34px rgba(0,0,0,.16);
    z-index: 50;
    padding: 12px;
    display: none;
}

.country-select.is-open .country-menu {
    display: block;
}

.country-search {
    width: 100%;
    min-height: 46px;
    border-radius: 10px;
    padding: 0 14px;
    box-shadow: none;
    margin-bottom: 10px;
}

.country-options {
    max-height: 260px;
    overflow-y: auto;
    display: grid;
    gap: 4px;
}

.country-option {
    border: 0;
    background: #fff;
    padding: 10px 12px;
    border-radius: 9px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--text);
    font-weight: 700;
}

.country-option:hover {
    background: #f6ecf3;
}

.country-option.is-hidden {
    display: none;
}

.fi {
    width: 1.35em;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}
