/* ═══════════════════════════════════════════════
   JASA V2 — Orders & Order Details shared CSS
   ═══════════════════════════════════════════════ */

/* ── Filter bar (fixed below header) ── */
.ord-filter-bar {
    position: fixed; top: var(--hh); left: 0; right: 0;
    height: 48px; background: var(--bg-white);
    border-bottom: 1.5px solid var(--border); z-index: 850;
    display: flex; align-items: center;
}
.ord-filter-inner {
    display: flex; gap: 6px; padding: 0 14px;
    width: 100%; max-width: 780px; margin: 0 auto;
}
.ord-filter-tab {
    flex: 1; height: 34px; border-radius: 50px;
    border: 1.5px solid var(--border2); background: none;
    font-size: .74rem; font-weight: 700; color: var(--txt2);
    cursor: pointer; font-family: inherit;
    transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.ord-filter-tab.active {
    background: var(--primary); border-color: var(--primary); color: #fff;
    box-shadow: 0 3px 10px rgba(45,140,240,.3);
}
.ord-filter-tab:not(.active):hover { border-color: var(--primary); color: var(--primary); }

.ord-main { padding-top: calc(var(--hh) + 48px) !important; }

/* ── Page head ── */
.ord-page-head {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 14px 10px;
}
.ord-page-icon {
    width: 42px; height: 42px; border-radius: var(--r-sm);
    background: var(--primary-faint); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.ord-page-title { font-size: 1.1rem; font-weight: 800; color: var(--txt1); margin: 0 0 2px; }
.ord-page-sub   { font-size: .72rem; font-weight: 600; color: var(--txt3); margin: 0; }

/* ── Empty state ── */
.ord-empty { text-align: center; padding: 48px 20px; }
.ord-empty-icon { font-size: 3.5rem; color: var(--border2); margin-bottom: 14px; }
.ord-empty h3 { font-size: 1rem; font-weight: 800; color: var(--txt1); margin-bottom: 6px; }
.ord-empty p  { font-size: .8rem; font-weight: 600; color: var(--txt3); margin-bottom: 16px; }
.ord-empty-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 24px; background: var(--primary); color: #fff;
    border-radius: 50px; font-size: .82rem; font-weight: 800;
    text-decoration: none; box-shadow: 0 4px 14px rgba(45,140,240,.3);
}

/* ── Skeleton ── */
.ord-skeleton {
    background: var(--bg-white); border: 1.5px solid var(--border);
    border-radius: var(--r); height: 180px; margin: 0 14px 10px;
    animation: ordSkelPulse 1.3s ease-in-out infinite;
}
@keyframes ordSkelPulse { 0%,100%{opacity:1;} 50%{opacity:.4;} }

/* ── Order card ── */
.ord-card {
    background: var(--bg-white); border: 1.5px solid var(--border);
    border-radius: var(--r); margin: 0 14px 10px; overflow: hidden;
    transition: box-shadow var(--ease);
}
.ord-card:hover { box-shadow: var(--sh-md); }

.ord-card-head {
    display: flex; align-items: flex-start; justify-content: space-between;
    padding: 12px 14px 10px; border-bottom: 1px solid var(--border); gap: 8px;
}
.ord-card-id { font-size: .82rem; font-weight: 800; color: var(--txt1); margin-bottom: 2px; }
.ord-card-id span { color: var(--primary); }
.ord-card-date { font-size: .68rem; font-weight: 600; color: var(--txt3); }
.ord-status-badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 4px 11px; border-radius: 50px;
    font-size: .66rem; font-weight: 800; white-space: nowrap; flex-shrink: 0;
}

.ord-card-items { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.ord-item-row {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding: 5px 0; border-bottom: 1px dashed var(--border); gap: 8px;
}
.ord-item-row:last-child { border-bottom: none; }
.ord-item-name {
    font-size: .78rem; font-weight: 700; color: var(--txt1);
    flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ord-item-meta {
    display: flex; align-items: center; gap: 5px; margin-top: 2px;
    font-size: .66rem; font-weight: 600; color: var(--txt3);
}
.ord-item-price { font-size: .78rem; font-weight: 800; color: var(--txt1); flex-shrink: 0; }

.ord-card-foot {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 14px; gap: 10px; flex-wrap: wrap;
}
.ord-total { font-size: .8rem; font-weight: 700; color: var(--txt2); }
.ord-total span { font-size: .92rem; font-weight: 800; color: var(--primary); }
.ord-details-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 16px; background: var(--primary); color: #fff;
    border-radius: 50px; font-size: .74rem; font-weight: 800;
    text-decoration: none; transition: background var(--ease);
}
.ord-details-btn:hover { background: var(--primary-dark); color: #fff; }

/* "Show more items" toggle */
.ord-show-more {
    font-size: .7rem; font-weight: 700; color: var(--primary);
    background: none; border: none; cursor: pointer;
    font-family: inherit; padding: 4px 0; display: block;
}

/* ════════════════════════════════
   ORDER DETAILS PAGE
   ════════════════════════════════ */
.od-header {
    position: fixed; top: 0; left: 0; right: 0; height: var(--hh);
    background: var(--bg-white); border-bottom: 1.5px solid var(--border);
    box-shadow: var(--sh-sm); z-index: 900;
    display: flex; align-items: center; padding: 0 8px 0 4px; gap: 4px;
}
.od-back-btn {
    width: 40px; height: 40px; border-radius: var(--r-xs);
    background: none; border: none; color: var(--txt1); font-size: 1rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background var(--ease), color var(--ease);
}
.od-back-btn:hover { background: var(--primary-light); color: var(--primary); }
.od-header-info { flex: 1; min-width: 0; }
.od-header-title { font-size: .9rem; font-weight: 800; color: var(--txt1);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 0; }
.od-header-sub   { font-size: .68rem; font-weight: 600; color: var(--txt3); margin: 0; }

.od-main { padding-top: var(--hh); }

/* Skeleton */
.od-skeleton { padding: var(--hh) 14px 14px; display: flex; flex-direction: column; gap: 10px; }
.od-skel { background: var(--bg-white); border-radius: var(--r); animation: ordSkelPulse 1.3s ease-in-out infinite; }
.od-skel-summary { height: 180px; }
.od-skel-item    { height: 130px; }

/* Summary card */
.od-section {
    background: var(--bg-white); border: 1.5px solid var(--border);
    border-radius: var(--r); margin: 12px 14px 0; overflow: hidden;
}
.od-section-title {
    font-size: .7rem; font-weight: 800; color: var(--txt3);
    text-transform: uppercase; letter-spacing: .5px;
    padding: 12px 16px 8px; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 6px;
}
.od-kv-table { width: 100%; border-collapse: collapse; padding: 0 16px; }
.od-kv-row   { border-bottom: 1px solid var(--border); }
.od-kv-row:last-child { border-bottom: none; }
.od-kv-key {
    font-size: .66rem; font-weight: 700; color: var(--txt3);
    text-transform: uppercase; letter-spacing: .3px;
    padding: 9px 16px; width: 35%; min-width: 80px; vertical-align: middle;
}
.od-kv-val {
    font-size: .82rem; font-weight: 600; color: var(--txt1);
    padding: 9px 16px 9px 0; vertical-align: middle; word-break: break-word;
}
.od-kv-section {
    font-size: .62rem; font-weight: 800; letter-spacing: .6px;
    text-transform: uppercase; color: var(--primary);
    padding: 10px 16px 4px; border-bottom: none !important;
}
.od-kv-section:first-child td { padding-top: 10px; }

/* Status badge in kv */
.od-status-pill {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 3px 10px; border-radius: 50px;
    font-size: .7rem; font-weight: 800;
}

/* Item card */
.od-item-card {
    background: var(--bg-white); border: 1.5px solid var(--border);
    border-radius: var(--r); margin: 12px 14px 0; overflow: hidden;
}
.od-item-head {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px; border-bottom: 1px solid var(--border);
}
.od-item-img {
    width: 60px; height: 60px; border-radius: var(--r-sm); flex-shrink: 0;
    background: var(--bg); display: flex; align-items: center; justify-content: center;
    overflow: hidden; border: 1px solid var(--border);
}
.od-item-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.od-item-img .od-no-img { font-size: 1.6rem; color: var(--border2); }
.od-item-meta-wrap { flex: 1; min-width: 0; }
.od-item-name  { font-size: .88rem; font-weight: 800; color: var(--txt1); margin-bottom: 3px; }
.od-item-price { font-size: .78rem; font-weight: 700; color: var(--txt3); margin-bottom: 4px; }
.od-item-status-badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 3px 10px; border-radius: 50px;
    font-size: .64rem; font-weight: 800;
}

/* 3-step tracker */
.od-tracker {
    display: flex; align-items: center; justify-content: space-between;
    position: relative; padding: 16px 14px 14px;
}
.od-tracker::before {
    content: ''; position: absolute;
    top: 29px; left: calc(14px + 14.5%); right: calc(14px + 14.5%);
    height: 3px; background: var(--border); border-radius: 3px; z-index: 0;
}
/* progress fill via custom property --fill */
.od-tracker::after {
    content: ''; position: absolute;
    top: 29px; left: calc(14px + 14.5%);
    width: var(--fill, 0%); height: 3px;
    background: var(--primary); border-radius: 3px; z-index: 1;
    transition: width .5s ease;
}
.od-step { display: flex; flex-direction: column; align-items: center; gap: 7px; flex: 1; z-index: 2; }
.od-step-dot {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--bg); border: 2px solid var(--border2);
    display: flex; align-items: center; justify-content: center;
    font-size: .65rem; color: var(--txt3); transition: all .3s;
}
.od-step.done .od-step-dot { background: var(--primary); border-color: var(--primary); color: #fff; }
.od-step.active .od-step-dot {
    background: var(--primary); border-color: var(--primary); color: #fff;
    box-shadow: 0 0 0 4px rgba(45,140,240,.2);
    animation: odStepPulse 1.6s ease-in-out infinite;
}
@keyframes odStepPulse {
    0%,100% { box-shadow: 0 0 0 3px rgba(45,140,240,.25); }
    50%     { box-shadow: 0 0 0 7px rgba(45,140,240,.08); }
}
.od-step-label {
    font-size: .6rem; font-weight: 700; color: var(--txt3);
    text-transform: uppercase; letter-spacing: .3px; text-align: center;
}
.od-step.done  .od-step-label { color: var(--primary); }
.od-step.active .od-step-label { color: var(--primary); }

/* Cancelled item block */
.od-item-cancelled {
    margin: 0 14px; padding: 10px 14px; background: #fee2e2;
    border-radius: var(--r-sm);
    font-size: .78rem; font-weight: 800; color: #dc2626;
    display: flex; align-items: center; gap: 8px;
}

@media (min-width: 600px) {
    .ord-card, .od-section, .od-item-card, .ord-skeleton, .od-skel { margin-left: 0; margin-right: 0; }
    .ord-page-head { padding: 16px 0 10px; }
    .ord-filter-inner { padding: 0; }
}
