/* --- MY ORDERS PAGE CSS --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 15px; }
.orders-wrapper { padding: 60px 0; min-height: 70vh; }

/* Login Required UI */
.login-required-box { text-align: center; background: #fff; padding: 60px 20px; border-radius: 20px; border: 1px solid #eee; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.empty-icon { font-size: 80px; color: #e2e8f0; margin-bottom: 20px; }
.login-required-box h2 { font-size: 26px; color: #1B4D3E; margin-bottom: 10px; }
.login-required-box p { color: #64748b; margin-bottom: 30px; font-size: 15px; }
.btn-login-orders { background: #1B4D3E; color: #fff; border: none; padding: 15px 40px; border-radius: 30px; font-weight: 700; cursor: pointer; transition: 0.3s; }
.btn-login-orders:hover { background: #D4AF37; color: #000; transform: translateY(-3px); }

/* Orders List */
.orders-header { margin-bottom: 40px; }
.orders-header h1 { font-size: 28px; font-weight: 700; color: #0f172a; }
.orders-header h1 span { color: #D4AF37; }
.orders-header p { color: #64748b; font-size: 14px; }

.order-card { background: #fff; border-radius: 12px; border: 1px solid #e0e0e0; margin-bottom: 25px; overflow: hidden; transition: 0.3s; }
.order-card:hover { border-color: #D4AF37; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

.order-card-header { background: #f8fafc; padding: 15px 25px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
.oh-left { display: flex; gap: 20px; font-size: 13px; font-weight: 600; color: #1e293b; }
.o-date { color: #64748b; font-weight: 400; }
.o-status.paid { color: #219653; font-weight: 700; text-transform: uppercase; font-size: 11px; }

.order-card-body { padding: 25px; display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.prod-thumb { width: 100px; height: 100px; border-radius: 8px; border: 1px solid #f1f5f9; overflow: hidden; }
.prod-thumb img { width: 100%; height: 100%; object-fit: cover; }

.prod-details { flex: 1; min-width: 250px; }
.prod-details h4 { font-size: 16px; font-weight: 600; color: #1e293b; margin-bottom: 5px; }
.prod-details h4 small { color: #e87c22; }
.prod-details p { font-size: 14px; color: #64748b; }

.order-actions { display: flex; gap: 15px; }
.btn-track { text-decoration: none; padding: 10px 25px; background: #fff; border: 1px solid #1B4D3E; color: #1B4D3E; border-radius: 6px; font-weight: 600; font-size: 13px; }
.btn-cancel { padding: 10px 25px; background: #fff; border: 1px solid #ef4444; color: #ef4444; border-radius: 6px; font-weight: 600; font-size: 13px; cursor: pointer; transition: 0.3s; }
.btn-cancel:hover { background: #ef4444; color: #fff; }

@media (max-width: 768px) {
    .order-card-body { flex-direction: column; text-align: center; }
    .order-actions { width: 100%; flex-direction: column; }
}