.lertify-price-country-widget {
    width: 100%;
    max-width: 460px;
}

.lertify-price-country-label {
    margin-bottom: 12px;
    color: #0F2439;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.lertify-price-country-combobox {
    position: relative;
}

.lertify-price-country-trigger {
    width: 100%;
    min-height: 58px;
    padding: 10px 16px;
    border: 1px solid rgba(15, 36, 57, 0.10);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.96);
    color: #0F2439;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(15, 36, 57, 0.08);
    outline: none;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.lertify-price-country-trigger:hover {
    border-color: rgba(46, 150, 230, 0.30);
    box-shadow: 0 14px 34px rgba(15, 36, 57, 0.10);
}

.lertify-price-country-combobox.is-open .lertify-price-country-trigger,
.lertify-price-country-trigger:focus-visible {
    border-color: #2E96E6;
    box-shadow: 0 0 0 4px rgba(46, 150, 230, 0.12), 0 14px 34px rgba(15, 36, 57, 0.10);
}

.lertify-price-country-trigger-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.lertify-price-country-flag {
    width: 24px;
    height: 18px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(15, 36, 57, 0.12);
    background: #fff;
    flex: 0 0 auto;
}

.lertify-price-country-flag-img {
    display: block;
    width: 24px;
    height: 18px;
    object-fit: cover;
}

.lertify-price-country-trigger-text {
    color: #0F2439;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lertify-price-country-trigger-icon {
    width: 10px;
    height: 10px;
    border-right: 2px solid #0F2439;
    border-bottom: 2px solid #0F2439;
    transform: rotate(45deg);
    opacity: 0.7;
    transition: transform 0.2s ease, opacity 0.2s ease;
    flex: 0 0 auto;
    margin-right: 2px;
}

.lertify-price-country-combobox.is-open .lertify-price-country-trigger-icon {
    transform: rotate(-135deg);
    opacity: 1;
}

.lertify-price-country-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 30;
    border: 1px solid rgba(15, 36, 57, 0.08);
    border-radius: 5px;
    background: white;
    box-shadow: 0 24px 60px rgba(15, 36, 57, 0.16);
    overflow: hidden;
    animation: lertifyPriceCountryDropdownIn 0.18s ease;
}

@keyframes lertifyPriceCountryDropdownIn {
    from {
        opacity: 0;
        transform: translateY(-6px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.lertify-price-country-search-wrap {
    padding: 12px;
    border-bottom: 1px solid rgba(15, 36, 57, 0.06);
    background: rgba(248, 250, 252, 0.85);
}

.lertify-price-country-search {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(15, 36, 57, 0.10);
    border-radius: 5px;
    background: #fff;
    color: #0F2439;
    font-size: 15px;
    font-weight: 500;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lertify-price-country-search:focus {
    border-color: #2E96E6;
    box-shadow: 0 0 0 4px rgba(46, 150, 230, 0.10);
}

.lertify-price-country-options {
    max-height: 280px;
    overflow-y: auto;
    padding: 8px;
}

.lertify-price-country-option {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 12px;
    border-radius: 5px;
    cursor: pointer;
    color: #0F2439;
    text-align: left;
    transition: background 0.18s ease, transform 0.18s ease;
}

.lertify-price-country-option:hover,
.lertify-price-country-option.is-highlighted,
.lertify-price-country-option[aria-selected="true"] {
    background: rgba(46, 150, 230, 0.08);
}

.lertify-price-country-option-flag {
    width: 24px;
    height: 18px;
    border-radius: 5px;
    overflow: hidden;
    flex: 0 0 auto;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 36, 57, 0.10);
}

.lertify-price-country-option-flag img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lertify-price-country-option-label-wrap {
    min-width: 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.lertify-price-country-option-label {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.lertify-price-country-option-code {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    color: rgba(15, 36, 57, 0.56);
    letter-spacing: 0.02em;
}

.lertify-price-country-empty {
    padding: 14px 12px;
    color: rgba(15, 36, 57, 0.65);
    font-size: 14px;
}

.lertify-price-country-loading {
    opacity: 0.7;
    pointer-events: none;
}

.lertify-price-country-error {
    margin-top: 8px;
    color: #b42318;
    font-size: 14px;
}

.lertify-price-country-updated {
    transition: opacity 0.2s ease;
}

.lertify-price-country-updated.is-updating {
    opacity: 0.55;
}