.order-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: 'Vazirmatn', sans-serif;
    direction: rtl;
}

.stepper-container {
    margin-bottom: 3rem;
}

.stepper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 1rem;
}

.stepper::before {
    content: '';
    position: absolute;
    top: 20px;
    right: calc(16.66% + 20px);
    left: calc(16.66% + 20px);
    height: 3px;
    background: #e0e0e0;
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step.active .step-circle {
    background: #3b82f6;
    color: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.step.completed .step-circle {
    background: #10b981;
    color: white;
}

.step-label {
    font-size: 0.875rem;
    color: #666;
    text-align: center;
    margin-top: 0.25rem;
}

.step.active .step-label {
    color: #3b82f6;
    font-weight: 600;
}

.step.completed .step-label {
    color: #10b981;
}

.step.completed::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 50%;
    width: 100%;
    height: 3px;
    background: #10b981;
    z-index: -1;
}

.step:first-child.completed::before {
    display: none;
}

.form-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.step-content h2 {
    margin: 0 0 1.5rem 0;
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group .p-dropdown,
.form-group .p-inputnumber {
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.p-inputnumber-input {
    text-align: center;
}

.summary {
    background: #f9fafb;
    border-radius: 8px;
    padding: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.summary-item .label {
    color: #6b7280;
    font-weight: 500;
}

.summary-item .value {
    color: #1f2937;
    font-weight: 600;
}

.button-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-start;
}

.button-group button {
    flex: 1;
    max-width: 200px;
}

.type-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.order-type-btn {
    background: #ffffff !important;
    border: 2px solid #e5e7eb !important;
    color: #374151 !important;
    padding: 0.75rem 2rem !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
    transition: all 0.3s ease;
    min-width: 10rem;
    text-align: center;
}

.order-type-btn:hover {
    background: #f3f4f6 !important;
    border-color: #3b82f6 !important;
    color: #1e40af !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2);
}

.order-type-btn.active {
    background: #3b82f6 !important;
    border-color: #2563eb !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.featured-box {
    background: linear-gradient(to right, #fffbeb, #ffedd5);
    border: 2px solid #fbbf24;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.featured-header {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.featured-icon {
    flex-shrink: 0;
}

.featured-icon svg {
    width: 3rem;
    height: 3rem;
    color: #eab308;
}

.featured-content {
    flex: 1;
}

.featured-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.featured-checkbox .p-checkbox {
    transform: scale(1.25);
}

.featured-checkbox label {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    cursor: pointer;
}

.featured-benefits {
    font-size: 0.875rem;
    color: #374151;
    margin-right: 2rem;
}

.featured-benefits p {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.featured-benefits svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #16a34a;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.featured-settings {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 1rem;
}

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

.featured-settings .form-group:last-child {
    margin-bottom: 0;
}

.featured-days-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.featured-day-btn {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 2px solid #e5e7eb;
    background: white;
    color: #374151;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.featured-day-btn:hover {
    border-color: #fbbf24;
}

.featured-day-btn.active {
    border-color: #eab308;
    background: #fffbeb;
    color: #92400e;
}

.featured-price-box {
    background: linear-gradient(to right, #eff6ff, #e0e7ff);
    border: 1px solid #93c5fd;
    border-radius: 0.5rem;
    padding: 1rem;
}

.featured-price-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.featured-price-header .label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.featured-price-header .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.featured-price-details {
    font-size: 0.75rem;
    color: #4b5563;
}

.featured-price-details p {
    margin-bottom: 0.25rem;
}

.featured-price-details .discount {
    color: #16a34a;
    font-weight: 500;
}

@media (max-width: 768px) {
    .order-page {
        padding: 1rem 0.5rem;
    }

    .stepper {
        padding: 0;
    }

    .stepper::before {
        right: calc(16.66% + 15px);
        left: calc(16.66% + 15px);
        top: 15px;
    }

    .step-circle {
        width: 30px;
        height: 30px;
        font-size: 0.875rem;
    }

    .step.completed::before {
        top: 15px;
    }

    .step-label {
        font-size: 0.75rem;
    }

    .form-container {
        padding: 1.5rem 1rem;
    }

    .step-content h2 {
        font-size: 1.25rem;
    }

    .button-group {
        flex-direction: column;
    }

    .button-group button {
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .featured-days-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-benefits {
        margin-right: 0;
    }
}
/* اضافه کردن به انتهای فایل CSS */

.featured-box {
    background: linear-gradient(to right, #fffbeb, #ffedd5);
    border: 2px solid #fbbf24;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.featured-header {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.featured-icon {
    flex-shrink: 0;
}

.featured-icon svg {
    width: 3rem;
    height: 3rem;
    color: #eab308;
}

.featured-content {
    flex: 1;
}

.featured-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.featured-checkbox .p-checkbox {
    transform: scale(1.25);
}

.featured-checkbox label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
}

.featured-benefits {
    font-size: 0.875rem;
    color: var(--text-primary);
    margin-right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.featured-benefits p {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    margin: 0;
}

.featured-benefits svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #16a34a;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.featured-benefits strong {
    font-weight: 600;
}

.featured-settings {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 1rem;
}

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

.featured-settings .form-group:last-child {
    margin-bottom: 0;
}

.featured-days-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.featured-day-btn {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 2px solid #e5e7eb;
    background: white;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.featured-day-btn:hover {
    border-color: #fbbf24;
}

.featured-day-btn.active {
    border-color: #eab308;
    background: #fffbeb;
    color: #92400e;
}

.featured-price-box {
    background: linear-gradient(to right, #eff6ff, #e0e7ff);
    border: 1px solid #93c5fd;
    border-radius: 0.5rem;
    padding: 1rem;
}

.featured-price-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}
.w-50{
    width: 50%;
}

.featured-price-header .label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #374151;
}

.featured-price-header .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.featured-price-details {
    font-size: 0.85rem;
    font-weight: 500;

    color: #4b5563;
}

.mt-2{
    margin-top: 2rem;
}
.mr-1{
    margin-right: 1rem;
}

.featured-price-details p {
    margin-bottom: 0.25rem;
}

.featured-price-details .discount {
    color: #16a34a;
    font-weight: 500;
}

.featured-help-text {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.5rem;
}


@media (max-width: 768px) {
    .button-group {
        flex-direction: row;
        justify-content: space-between;
    }

    .button-group button {
        flex: 1;
        min-width: 0;
    }

    .form-row {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
    }

    .form-row .form-group {
        flex: 1;
        min-width: 0;
    }

    .form-row-stacked {
        flex-direction: column !important;
    }

    .form-row-stacked .form-group {
        width: 100%;
        max-width: 100%;
    }
}

