* ========================
   StyleHub - My Orders CSS
   ======================== */
 
* { margin: 0; padding: 0; box-sizing: border-box; }
 
body {
    font-family: Arial, sans-serif;
    color: #111;
    background-color: #f8f8f8;
}
 
/* TOP BAR */
.topbar { background-color: #111111; height: 35px; display: flex; align-items: center; justify-content: space-between; padding: 0 30px; }
.topbar-left a { color: #aaaaaa; text-decoration: none; font-size: 12px; margin-right: 10px; }
.topbar-left a:hover { color: white; }
.topbar-center { color: #dddddd; font-size: 12px; }
.topbar-right span { color: #aaaaaa; font-size: 12px; margin-left: 15px; }
 
/* NAVBAR */
.navbar { height: 65px; background-color: white; display: flex; align-items: center; justify-content: space-between; padding: 0 35px; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid #eeeeee; box-shadow: 0 2px 5px rgba(0,0,0,0.08); }
.nav-left { display: flex; gap: 5px; }
.nav-left a { text-decoration: none; color: #333333; font-size: 13px; font-weight: 600; padding: 6px 12px; }
.nav-left a:hover { color: #C8536E; }
.nav-logo { font-family: Georgia, serif; font-size: 26px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: #111111; position: absolute; left: 50%; transform: translateX(-50%); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-icon { text-decoration: none; color: #333333; font-size: 13px; font-weight: 600; }
.nav-icon:hover { color: #C8536E; }
.cart-count { background-color: #C8536E; color: white; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 10px; margin-left: 3px; }
 
/* PAGE HEADER */
.page-header { background: linear-gradient(135deg, #F0AABF, #F5BCC8); padding: 40px 50px; }
.page-header h1 { font-family: Georgia, serif; font-size: 38px; font-weight: 700; color: #111111; margin-bottom: 8px; }
.page-header p { font-size: 14px; color: rgba(0,0,0,0.55); }
 
/* FILTER TABS */
.filter-tabs { background-color: white; padding: 15px 50px; display: flex; gap: 8px; border-bottom: 1px solid #eeeeee; flex-wrap: wrap; }
.tab-btn { padding: 8px 18px; border: 2px solid #dddddd; background-color: white; border-radius: 5px; font-size: 12px; font-weight: 700; cursor: pointer; color: #666666; font-family: Arial, sans-serif; transition: all 0.2s; }
.tab-btn:hover { border-color: #C8536E; color: #C8536E; }
.tab-btn.active { border-color: #C8536E; background-color: #C8536E; color: white; }
 
/* ORDERS CONTAINER */
.orders-container { padding: 30px 50px; display: flex; flex-direction: column; gap: 18px; }
 
/* ORDER CARD */
.order-card { background-color: white; border-radius: 8px; border: 1px solid #eeeeee; padding: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
 
/* ORDER TOP */
.order-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.order-id-date strong { font-size: 15px; color: #111111; }
.order-id-date span { font-size: 12px; color: #888888; margin-left: 10px; }
 
/* STATUS BADGES */
.status-badge { padding: 5px 12px; border-radius: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.pending-badge { background-color: #f5f5f5; color: #888888; }
.processing-badge { background-color: #fff4ea; color: #e07b00; }
.stitching-badge { background-color: #FAD4DE; color: #C8536E; }
.ready-badge { background-color: #e8f4ff; color: #2980b9; }
.delivered-badge { background-color: #edfaf3; color: #27ae60; }
 
/* ORDER PRODUCT */
.order-product { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #f5f5f5; }
 
.order-img { width: 65px; height: 65px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 30px; flex-shrink: 0; }
.pink-bg   { background: linear-gradient(135deg, #FAD4DE, #F2AABF); }
.purple-bg { background: linear-gradient(135deg, #e8d5f5, #c8a8e0); }
.gold-bg   { background: linear-gradient(135deg, #f5e6d3, #e8c9a0); }
.green-bg  { background: linear-gradient(135deg, #d5f5e8, #a8e0c8); }
 
.order-info { flex: 1; }
.order-boutique { font-size: 10px; color: #C8536E; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.order-info h4 { font-size: 15px; font-weight: 700; color: #111111; margin-bottom: 4px; }
.order-cat { font-size: 12px; color: #888888; }
 
.order-price { font-family: Georgia, serif; font-size: 18px; font-weight: 700; color: #111111; white-space: nowrap; }
 
/* ORDER TRACKER */
.order-tracker { display: flex; align-items: center; margin-bottom: 16px; }
 
.tracker-step { display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 60px; }
 
.tracker-circle { width: 32px; height: 32px; border-radius: 50%; border: 2px solid #dddddd; background-color: white; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #dddddd; }
 
.tracker-step p { font-size: 11px; color: #aaaaaa; text-align: center; font-weight: 600; white-space: nowrap; }
 
/* Done step */
.tracker-step.done .tracker-circle { background-color: #27ae60; border-color: #27ae60; color: white; }
.tracker-step.done p { color: #27ae60; }
 
/* Active step */
.tracker-step.active .tracker-circle { background-color: #C8536E; border-color: #C8536E; color: white; }
.tracker-step.active p { color: #C8536E; }
 
/* Tracker line */
.tracker-line { flex: 1; height: 2px; background-color: #dddddd; margin-bottom: 20px; }
.tracker-line.done { background-color: #27ae60; }
 
/* ORDER FOOTER */
.order-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid #f5f5f5; }
 
.payment-info { font-size: 12px; color: #888888; }
 
.btn-review { background-color: #C8536E; color: white; text-decoration: none; padding: 8px 18px; border-radius: 4px; font-size: 12px; font-weight: 700; transition: background-color 0.2s; }
.btn-review:hover { background-color: #a8435e; }
 
/* FOOTER */
.footer { background-color: #111111; padding: 45px 50px; display: flex; gap: 30px; color: rgba(255,255,255,0.5); margin-top: 10px; }
.footer-col { flex: 1; }
.footer-logo { font-family: Georgia, serif; font-size: 22px; font-weight: 700; color: white; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.footer-logo span { color: #FAD4DE; }
.footer-col p { font-size: 12px; line-height: 1.8; }
.footer-col h4 { color: white; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.footer-col a { display: block; font-size: 12px; color: rgba(255,255,255,0.45); text-decoration: none; margin-bottom: 8px; }
.footer-col a:hover { color: white; }
.footer-bottom { background-color: rgba(0,0,0,0.4); padding: 12px 50px; display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,0.3); }
/* Profile avatar in navbar */
.nav-icon.logged-in {
    display: flex;
    align-items: center;
    gap: 8px;
}
 
.nav-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #C8536E;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}
/* ========================
   RESPONSIVE - Tablet & Mobile
   ======================== */
@media (max-width: 768px) {
    .topbar { flex-direction: column; height: auto; padding: 8px 15px; gap: 4px; }
    .topbar-center { order: -1; }
 
    .navbar { flex-wrap: wrap; height: auto; padding: 10px 15px; row-gap: 8px; }
    .nav-left { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; gap: 0; }
    .nav-logo { position: static; transform: none; font-size: 20px; letter-spacing: 2px; order: 1; }
    .nav-right { order: 2; width: 100%; justify-content: space-between; gap: 0; margin-left: 0; }
    .nav-icon span { font-size: 10px; }
 
    .page-header { padding: 25px 20px; }
    .page-header h1 { font-size: 24px; }
 
    .filter-tabs { padding: 12px 20px; overflow-x: auto; flex-wrap: nowrap; }
 
    .orders-container { padding: 20px; }
    .order-card { padding: 14px; }
    .order-top { flex-wrap: wrap; gap: 8px; }
    .order-product { flex-wrap: wrap; }
 
    .order-tracker { overflow-x: auto; }
    .tracker-step { min-width: 48px; }
    .tracker-step p { font-size: 9px; }
 
    .order-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
 
    .footer { flex-direction: column; padding: 30px 20px; gap: 20px; }
    .footer-bottom { flex-direction: column; gap: 5px; padding: 12px 20px; text-align: center; }
}
 