.wizard-page {
padding: 60px 0;
max-width: 700px;
margin: 0 auto;
}
.wizard-title {
text-align: center;
font-size: 32px;
font-weight: 700;
margin-bottom: 40px;
}
/* Selected Service Display */
.selected-service {
background: var(--bg-card);
border: 1px solid var(--accent);
border-radius: 12px;
padding: 24px;
display: flex;
align-items: center;
gap: 20px;
margin-bottom: 40px;
}
.selected-service .icon {
width: 60px;
height: 60px;
background: rgba(189, 13, 13, 0.1);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
color: var(--accent);
flex-shrink: 0;
}
.selected-service .info {
flex: 1;
}
.selected-service .info h3 {
font-size: 20px;
margin-bottom: 4px;
}
.selected-service .info p {
color: var(--text-secondary);
font-size: 14px;
margin: 0;
}
.selected-service .price {
text-align: right;
}
.selected-service .price .amount {
font-size: 28px;
font-weight: 700;
}
.selected-service .price .label {
font-size: 12px;
color: var(--text-secondary);
}
.change-service {
display: block;
text-align: center;
margin-top: -30px;
margin-bottom: 30px;
font-size: 14px;
}
/* Turnaround Options */
.section-label {
font-size: 14px;
color: var(--text-secondary);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 16px;
}
.turnaround-options {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 12px;
margin-bottom: 40px;
}
.turnaround-option {
background: var(--bg-card);
border: 2px solid var(--border);
border-radius: 12px;
padding: 20px;
text-align: center;
cursor: pointer;
transition: all 0.2s ease;
}
.turnaround-option:hover {
border-color: var(--accent);
}
.turnaround-option.selected {
border-color: var(--accent);
background: rgba(189, 13, 13, 0.1);
}
.turnaround-option input {
display: none;
}
.turnaround-option i {
font-size: 24px;
color: var(--accent);
margin-bottom: 10px;
display: block;
}
.turnaround-option h4 {
font-size: 16px;
margin-bottom: 4px;
}
.turnaround-option .time {
font-size: 13px;
color: var(--text-secondary);
margin-bottom: 8px;
}
.turnaround-option .surcharge {
font-size: 14px;
font-weight: 600;
}
.turnaround-option .surcharge.free {
color: var(--success);
}
.form-actions {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid var(--border);
}
@media (max-width: 600px) {
.turnaround-options {
grid-template-columns: 1fr;
}
.selected-service {
flex-direction: column;
text-align: center;
}
.selected-service .price {
text-align: center;
}
}