/* --- Buy Host Wizard Styles --- */

/* Progress Bar */
.wizard-progress-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    height: 0.5rem;
    width: 100%;
    overflow: hidden;
    margin-bottom: 2rem;
}

.wizard-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 999px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* Selection Cards */
.selection-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.selection-card:hover:not(:disabled) {
    background: rgba(30, 41, 59, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.selection-card.selected {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
    box-shadow: 0 0 0 1px #3b82f6, 0 10px 25px -5px rgba(59, 130, 246, 0.2);
}

.selection-card:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(1);
}

/* Checkmark for selected item */
.card-check {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.selection-card.selected .card-check {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

/* Icon container inside card */
.card-icon-box {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.selection-card:hover .card-icon-box {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.selection-card.selected .card-icon-box {
    background: #3b82f6;
    color: white;
}

/* Summary Box (Final Step) */
.summary-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: bold;
}

/* Wizard Transitions */
.step-enter-active, .step-leave-active {
    transition: all 0.3s ease;
}
.step-enter-from {
    opacity: 0;
    transform: translateX(20px);
}
.step-leave-to {
    opacity: 0;
    transform: translateX(-20px);
}

.server-flag {
    font-size: 2rem;
    line-height: 1;
}