/* ── Phone input group ── */
.phone-input-group {
    display: flex;
    border: 1px solid #E4E4E5;
}

.phone-input-group .ts-wrapper {
    flex-shrink: 0;
    width: 130px;
}

.phone-input-group .phone-input-group__phone {
    flex: 1;
    border: none !important;
    outline: none;
    box-shadow: none;
    padding: 12px 24px;
    color: var(--gt-header);
    font-weight: 500;
    background-color: transparent;
    font-size: inherit;
    font-family: inherit;
}

.phone-input-group .phone-input-group__phone::placeholder {
    color: var(--gt-header);
}

/* ── Tom Select — match input styling ── */
.ts-wrapper.single .ts-control {
    background: transparent;
    border: none;
    border-right: 1px solid #E4E4E5;
    border-radius: 0;
    padding: 12px 24px;
    color: var(--gt-header);
    font-weight: 500;
    font-size: inherit;
    font-family: inherit;
    cursor: pointer;
    box-shadow: none;
    height: 100%;
    display: flex;
    align-items: center;
}

.ts-wrapper.single.input-active .ts-control,
.ts-wrapper.single .ts-control:focus {
    border-right: 1px solid #E4E4E5;
    box-shadow: none;
    outline: none;
}

.ts-wrapper .ts-control input {
    color: var(--gt-header) !important;
    font-weight: 500;
}

/* ── Dropdown panel ── */
.ts-dropdown {
    border: 1px solid #E4E4E5;
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    z-index: 9999;
}

.ts-dropdown .option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    font-size: 14px;
}

.ts-dropdown .option .flag {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
}

.ts-dropdown .option .dial {
    color: #888;
    font-size: 13px;
    margin-left: auto;
}

.ts-dropdown [data-selectable].option:hover,
.ts-dropdown [data-selectable].option.active {
    background: #f6a00015;
    color: inherit;
}

.ts-wrapper.single .ts-control .item {
    display: flex;
    align-items: center;
    gap: 6px;
}
