/* ===== ORDERS PAGE ===== */

.order-page {
    background: #f5faff;
    min-height: 100vh;
    padding: 40px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.order-container {
    width: 100%;
    max-width: 650px;
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 18px;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.08);
    text-align: center;
}

.order-container h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 25px;
}
.progress-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0 30px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    border-radius: 50%;
}

.dot.active {
    background: blue;
    transform: scale(1.3);
}
/* Steps */
.step {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {opacity:0; transform: translateY(10px);}
    to {opacity:1; transform: translateY(0);}
}

.step h3 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: #475569;
    margin-bottom: 15px;
}

/* Inputs */
.step input,
.step textarea,
.step select {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
    margin-bottom: 14px;
    text-align: center;
}

.step input:focus,
.step textarea:focus,
.step select:focus {
    outline: none;
    border-color: blue;
    box-shadow: 0 0 0 2px rgba(0,0,255,0.1);
}

textarea {
    min-height: 130px;
}

/* Important Notices */
.important-notice {
    background: rgba(0, 0, 255, 0.062);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Buttons */
.step-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.next-btn,
.back-btn,
.submit-btn {
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: 0.25s ease;
}

.next-btn,
.submit-btn {
    background: blue;
    color: white;
}

.back-btn {
    background: #e5e7eb;
    color: #111827;
}

.next-btn:hover,
.submit-btn:hover {
    background: darkblue;
}

.back-btn:hover {
    background: #d1d5db;
}

.hidden {
    display: none;
}

@media(max-width:600px){
    .order-container{
        padding:25px 18px;
    }
}



}

/* More Added Style */




