.hosting-wizard-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8fafc;
    color: #1e293b;
    min-height: 100vh;
}

.hosting-wizard-header {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
}

.hosting-wizard-header .inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.hosting-wizard-header .logo {
    height: 40px;
}

.hosting-wizard-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.8rem;
}

.hosting-wizard-steps li {
    color: #94a3b8;
}

.hosting-wizard-steps li.active {
    color: #002659;
    font-weight: 600;
}

.hosting-wizard-steps li.done {
    color: #059669;
}

.hosting-wizard-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.hosting-wizard-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 900px) {
    .hosting-wizard-grid {
        grid-template-columns: 1fr;
    }
}

.hosting-panel {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.hosting-panel h1 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hosting-panel .lead {
    color: #64748b;
    margin-bottom: 1.25rem;
}

.hosting-plan-option {
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.hosting-plan-option:hover,
.hosting-plan-option.selected {
    border-color: #1CBBB4;
    box-shadow: 0 0 0 3px rgba(28, 187, 180, 0.15);
}

.hosting-plan-option .name {
    font-weight: 600;
}

.hosting-plan-option .price {
    font-weight: 700;
    color: #059669;
}

.hosting-domain-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.hosting-domain-result .badge-available {
    background: #d1fae5;
    color: #065f46;
}

.hosting-domain-result .badge-taken {
    background: #fee2e2;
    color: #991b1b;
}

.domain-selected-card {
    background: linear-gradient(135deg, rgba(28, 187, 180, 0.08), rgba(0, 38, 89, 0.04));
    border: 2px solid #1CBBB4;
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
}

.domain-selected-card .domain-selected-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #002659;
    word-break: break-word;
}

.domain-selected-card .domain-selected-meta {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 0.35rem;
}

.domain-search-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1rem;
    min-height: 160px;
}

.domain-search-loader-globe {
    position: relative;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.domain-search-loader-globe i {
    font-size: 1.75rem;
    color: #1CBBB4;
    z-index: 1;
}

.domain-search-loader-ring {
    position: absolute;
    inset: 0;
    border: 3px solid rgba(28, 187, 180, 0.15);
    border-top-color: #1CBBB4;
    border-radius: 50%;
    animation: domain-search-spin 0.9s linear infinite;
}

.domain-search-loader-orbit {
    position: absolute;
    inset: -6px;
    border: 2px dashed rgba(0, 38, 89, 0.12);
    border-radius: 50%;
    animation: domain-search-spin 2.4s linear infinite reverse;
}

.domain-search-loader-dots {
    display: flex;
    gap: 0.45rem;
}

.domain-search-loader-dots span {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: #1CBBB4;
    animation: domain-search-bounce 1.2s ease-in-out infinite;
}

.domain-search-loader-dots span:nth-child(2) {
    animation-delay: 0.15s;
    background: #002659;
}

.domain-search-loader-dots span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes domain-search-spin {
    to { transform: rotate(360deg); }
}

@keyframes domain-search-bounce {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.45; }
    40% { transform: translateY(-7px); opacity: 1; }
}

.domain-search-panel.is-searching .domain-search-input-wrap input,
.domain-search-panel.is-searching #domain-query {
    pointer-events: none;
    opacity: 0.65;
}

.hosting-summary-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.25rem;
    position: sticky;
    top: 1rem;
}

.hosting-summary-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hosting-summary-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.hosting-summary-line .label {
    min-width: 0;
}

.hosting-summary-line-end {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

.hosting-cart-remove {
    border: none;
    background: transparent;
    color: #94a3b8;
    padding: 0.2rem 0.4rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 0.25rem;
    font-size: 0.85rem;
}

.hosting-cart-remove:hover,
.hosting-cart-remove:focus-visible {
    color: #dc2626;
    background: #fef2f2;
    outline: none;
}

.hosting-summary-line.total {
    font-weight: 700;
    font-size: 1rem;
}

.hosting-summary-line.muted {
    color: #64748b;
    font-size: 0.85rem;
}

.hosting-summary-empty {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.hosting-summary-divider {
    margin: 0.75rem 0;
    border-color: #e2e8f0;
}

.hosting-summary-commitment {
    margin-top: 0.75rem;
    padding: 0.65rem 0.75rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 0.5rem;
    color: #1e40af;
    font-size: 0.8rem;
    line-height: 1.4;
}

.hosting-commitment-banner {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    margin-bottom: 1.25rem;
    background: #eff6ff;
    border: 1px solid #93c5fd;
    border-radius: 0.65rem;
    color: #1e3a8a;
    font-size: 0.92rem;
}

.hosting-commitment-banner-icon {
    font-size: 1.25rem;
    line-height: 1;
    margin-top: 0.1rem;
}

.hosting-commitment-banner p {
    font-size: 0.88rem;
    color: #1e40af;
}

.hosting-wizard-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.btn-hosting-primary {
    background: #1CBBB4;
    border-color: #1CBBB4;
    color: #fff;
    font-weight: 600;
}

.btn-hosting-primary:hover {
    background: #17a8a2;
    border-color: #17a8a2;
    color: #fff;
}

.hosting-transfer-explainer {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
}

.hosting-transfer-explainer h2 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.hosting-transfer-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: rgba(28, 187, 180, 0.12);
    color: #1CBBB4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.hosting-transfer-callout {
    background: #fff;
    border: 1px solid #cbd5e1;
    border-left: 4px solid #1CBBB4;
    border-radius: 0.5rem;
    padding: 0.85rem 1rem;
    margin: 1rem 0;
}

.hosting-transfer-tag {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 1.15rem;
    font-weight: 700;
    color: #002659;
    letter-spacing: 0.04em;
}

.hosting-transfer-steps {
    margin: 0 0 1rem;
    padding-left: 1.2rem;
    color: #475569;
}

.hosting-transfer-steps li {
    margin-bottom: 0.35rem;
}
