.stratechna-domain-search {
    max-width: 640px;
    margin: 2rem auto;
    font-family: inherit;
}
.sds-form {
    display: flex;
    gap: .5rem;
}
.sds-input {
    flex: 1;
    padding: .85rem 1.1rem;
    border: 1px solid #d7d2cb;
    border-radius: 8px;
    font-size: 1rem;
}
.sds-btn {
    padding: .85rem 1.75rem;
    border: none;
    border-radius: 8px;
    background: #9a1b2e;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}
.sds-btn:hover { background: #7a1522; }
.sds-results { margin-top: 1.25rem; }
.sds-list { list-style: none; margin: 0; padding: 0; border: 1px solid #eee; border-radius: 8px; overflow: hidden; }
.sds-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem 1rem;
    border-bottom: 1px solid #eee;
    background: #fff;
}
.sds-list li:last-child { border-bottom: none; }
.sds-available { background: #f3faf3; }
.sds-available .sds-status { color: #1a7f37; font-weight: 600; }
.sds-unavailable .sds-status { color: #999; }
.sds-domain { font-weight: 600; }
.sds-price { font-variant-numeric: tabular-nums; color: #444; }
.sds-loading, .sds-error { color: #666; padding: .5rem 0; }
