/* CONFIGURATOR STYLES */

.conf-wrapper {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Progress Bar */
.conf-progress {
    margin-bottom: 40px;
}

.conf-progress-bar {
    height: 6px;
    background: var(--slate-100);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.conf-progress-fill {
    height: 100%;
    background: var(--grad-accent);
    width: 0%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.conf-steps-text {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-400);
}

.conf-steps-text span.is-active {
    color: var(--blue-600);
}

/* Step Container */
.conf-step {
    display: none;
    animation: fadeInSlide 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.conf-step.is-active {
    display: block;
}

/* Options Grid */
.conf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .conf-grid {
        grid-template-columns: 1fr;
    }
}

.conf-card {
    background: var(--slate-50);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    padding: 25px;
    cursor: pointer;
    transition: var(--trans-fast);
    text-align: center;
    position: relative;
}

.conf-card:hover {
    background: white;
    border-color: var(--slate-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.conf-card.is-selected {
    background: white;
    border-color: var(--blue-600);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.conf-card.is-selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: var(--blue-600);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    display: grid;
    place-items: center;
    font-weight: bold;
}

.conf-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

/* Textarea & Inputs */
.conf-input,
.conf-textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: var(--trans-fast);
    background: var(--slate-50);
}

.conf-input:focus,
.conf-textarea:focus {
    outline: none;
    border-color: var(--blue-600);
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.conf-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Navigation */
.conf-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--slate-100);
}

.btn-prev {
    visibility: hidden;
}

.btn-prev.visible {
    visibility: visible;
}

/* Animations */
@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Urgency Specifics */
.urgency-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border: 2px solid var(--slate-200);
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    cursor: pointer;
    transition: var(--trans-fast);
}

.urgency-option:hover {
    border-color: var(--slate-400);
    background: var(--slate-50);
}

.urgency-option.is-selected {
    border-color: var(--blue-600);
    background: rgba(37, 99, 235, 0.05);
}

.urgency-option.is-emergency {
    border-color: var(--orange-200);
}

.urgency-option.is-emergency.is-selected {
    border-color: var(--orange-500);
    background: rgba(249, 115, 22, 0.05);
}

/* Radio Group (Zone) */
.radio-group {
    display: flex;
    gap: 20px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border: 2px solid var(--slate-200);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--trans-fast);
    flex: 1;
}

.radio-label:hover {
    border-color: var(--slate-400);
}

.radio-label.is-selected {
    border-color: var(--blue-600);
    background: rgba(37, 99, 235, 0.05);
}

/* Summary Box */
.summary-box {
    background: var(--slate-50);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 30px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--slate-200);
}

.summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.summary-label {
    color: var(--slate-500);
    font-size: 0.9rem;
}

.summary-value {
    font-weight: 600;
    color: var(--blue-900);
}