/* Order Process Styles */

/* Progress indicator */
.order-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    max-width: 320px;
}

.progress-step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #666;
}

.progress-step.active {
    background-color: black;
    color: white;
}

.progress-step.completed {
    background-color: #4caf50;
    color: white;
}

.progress-line {
    height: 3px;
    width: 60px;
    background-color: #ddd;
    margin: 0 6px;
}

.progress-line.active {
    background-color: #4caf50;
}

/* Order container */
.order-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .order-container {
        padding: 1.5rem;
        box-shadow: none;
    }
}

/* Typography */
.order-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.order-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Form elements */
.form-section {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus {
    border-color: #999;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-group.half {
    flex: 1;
    margin-bottom: 0;
}

/* Radio options */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.radio-option {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.radio-option:hover {
    border-color: #999;
    background-color: #f9f9f9;
}

.radio-option input[type="radio"] {
    margin-right: 12px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.radio-option input[type="radio"]:checked + .radio-label {
    font-weight: 600;
}

.radio-label-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-top: -3px;
    padding-right: 100px;
}

.radio-label {
    font-weight: 600;
    margin-bottom: 2px;
}

.radio-sublabel {
    font-size: 0.85rem;
    color: #666;
    font-weight: normal;
}

.radio-price {
    color: #666;
    font-size: 0.9rem;
    position: absolute;
    right: 16px;
    top: 16px;
    min-width: 90px;
    text-align: right;
}

.radio-features {
    width: 100%;
    margin-top: 0.75rem;
    margin-left: 1.75rem;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
}

.feature-list-small {
    list-style: none;
    padding-left: 0;
    margin: 0.5rem 0;
}

.feature-list-small li {
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
    color: #555;
    position: relative;
    padding-left: 1rem;
}

.feature-list-small li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    margin-right: 5px;
}

/* Form actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.form-actions.center {
    justify-content: center;
}

/* Summary sections */
.order-summary,
.summary-box {
    background-color: #f8f8f8;
    border-radius: 6px;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

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

.summary-row.total {
    border-top: 2px solid #ddd;
    border-bottom: none;
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-weight: 600;
}

.summary-label {
    font-weight: 500;
}

.summary-detail {
    color: #444;
}

.summary-price {
    font-weight: 700;
    font-size: 1.1rem;
}

.summary-note {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.75rem;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: black;
    color: white;
}

.btn-primary:hover {
    background-color: #333;
}

.btn-secondary {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

/* Confirmation page */
.confirmation-content {
    text-align: center;
}

.confirmation-icon {
    width: 70px;
    height: 70px;
    background-color: #4caf50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
}

.confirmation-details {
    text-align: left;
    margin: 2rem 0;
}

.note-text {
    font-size: 0.9rem;
    color: #666;
    margin: 1rem 0;
}
