.country-select { position: relative; width: 280px; }
.cs-btn {
display: flex; align-items: center; gap: 8px; width: 100%;
padding: 10px 14px; border: 1px solid #dce4ef;
border-radius: 8px; background: white;
font-size: 15px; font-weight: 700; cursor: pointer;
}
.cs-arrow { margin-left: auto; font-size: 11px; color: #657287; }
.cs-menu {
display: none; position: absolute; top: calc(100% + 4px);
left: 0; width: 100%; max-height: 300px;
border: 1px solid #dce4ef; border-radius: 8px;
background: white; box-shadow: 0 12px 28px rgba(0,0,0,.12);
overflow: hidden;
}
.cs-menu.open { display: block; }
.cs-search {
width: 100%; padding: 10px 14px; border: 0;
border-bottom: 1px solid #dce4ef; outline: none;
font-size: 14px;
}
.cs-list { max-height: 240px; overflow-y: auto; padding: 4px; }
.cs-item {
display: flex; align-items: center; gap: 8px;
width: 100%; padding: 8px 10px; border: 0;
border-radius: 6px; background: none;
font-size: 14px; cursor: pointer; text-align: left;
}
.cs-item:hover { background: #f5f8fc; }