/* ============================================================
   KUOTA AKRAB — Dashboard User
   style.css — Production Grade
   ============================================================ */

/* ── DESIGN TOKENS ── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

:root {
    /* Brand */
    --c-navy: #14213D;
    --c-navy-deep: #0d1a30;
    --c-navy-mid: #1c2e52;
    --c-accent: #FCA311;
    --c-accent-hover: #e5940a;
    --c-white: #FFFFFF;
    --c-black: #000000;
    --white: #FFFFFF;
    --light: #E5E5E5;
    --gold: #FCA311;
    --gold-dark: #d98a00;
    --gold-pale: #FEF3DC;
    --gold-soft: rgba(252, 163, 17, .1);
    --navy: #14213D;

    /* Surface */
    --c-bg: #F5F5F7;
    --c-surface: #FFFFFF;
    --c-border: #E4E4E7;
    --c-border-soft: #F0F0F2;

    /* Text */
    --c-text-primary: #0F172A;
    --c-text-secondary: #64748B;
    --c-text-muted: #94A3B8;

    /* Semantic */
    --c-success-bg: #ECFDF5;
    --c-success-text: #15803D;
    --c-warn-bg: #FFFBEB;
    --c-warn-text: #B45309;
    --c-danger-bg: #FFF1F2;
    --c-danger-text: #BE123C;

    /* Layout */
    --sidebar-w: 256px;
    --topbar-h: 58px;

    /* Radii */
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 14px;
    --r-xl: 18px;
    --radius-lg: 24px;

    /* Shadows */
    --shadow-card: 0 1px 2px rgba(15, 23, 42, 0.04), 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-lift: 0 4px 16px rgba(15, 23, 42, 0.08), 0 1px 4px rgba(15, 23, 42, 0.04);

    /* Type */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Instrument Serif', Georgia, serif;
    --fd: 'Syne', sans-serif;
    --fb: 'Plus Jakarta Sans', sans-serif;
}

/* ── RESET ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--c-text-primary);
    background: var(--c-bg);
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

svg {
    display: block;
}

/* ── SHELL ── */
.shell {
    display: flex;
    min-height: 100vh;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
    font-family: var(--font-body);
    position: fixed;
    inset: 0 auto 0 0;
    width: var(--sidebar-w);
    background: var(--c-navy);
    display: flex;
    flex-direction: column;
    z-index: 300;
    transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    height: var(--topbar-h);
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.sidebar-brand img {
    width: 170px;
}

.sidebar-nav {
    flex: 1;
    padding: 18px 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar-nav__group {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.sidebar-nav__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8.5px 12px;
    border-radius: var(--r-md);
    font-size: 13.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    transition: background 0.14s, color 0.14s;
    letter-spacing: -0.1px;
}

.sidebar-nav__item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
}

.sidebar-nav__item--active {
    background: rgba(252, 163, 17, 0.1);
    color: var(--c-accent);
    font-weight: 500;
}

.sidebar-nav__item--active:hover {
    background: rgba(252, 163, 17, 0.14);
    color: var(--c-accent);
}

.sidebar-nav__icon {
    width: 15.5px;
    height: 15.5px;
    flex-shrink: 0;
    opacity: 0.85;
}

.sidebar-nav__item--active .sidebar-nav__icon {
    opacity: 1;
}

.sidebar-nav__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 10px 20px;
}

.sidebar-footer {
    flex-shrink: 0;
    padding: 14px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.2px;
}

/* ============================================================
   MAIN COLUMN
   ============================================================ */
.main-col {
    flex: 1;
    margin-left: var(--sidebar-w);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-width: 0;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
    position: sticky;
    top: 0;
    z-index: 200;
    height: var(--topbar-h);
    background: var(--c-surface);
    border-bottom: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    padding: 0 28px;
    gap: 12px;
}

.topbar__hamburger {
    display: none;
    padding: 6px;
    margin-left: -6px;
    border-radius: var(--r-sm);
    color: var(--c-text-secondary);
    transition: background 0.14s;
}

.topbar__hamburger:hover {
    background: var(--c-border-soft);
}

.topbar__hamburger svg {
    width: 18px;
    height: 18px;
}

.topbar__page-label {
    flex: 1;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--c-text-secondary);
    letter-spacing: -0.1px;
}

.topbar-user {
    position: relative;
}

/* .topbar-user__avatar {
    width: 27px;
    height: 27px;
    border-radius: 7px;
    background: var(--c-navy);
    color: #fff;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
} */

/* .topbar-user__name {
    font-size: 13px;
    font-weight: 500;
    color: var(--c-text-primary);
    white-space: nowrap;
} */

/* .topbar-user__chevron {
    width: 12px;
    height: 12px;
    color: var(--c-text-muted);
    flex-shrink: 0;
    transition: transform 0.18s;
} */

.user-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    width: 196px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lift);
    z-index: 400;
    overflow: hidden;
}

.user-dropdown--open {
    display: block;
}

.user-dropdown__head {
    padding: 12px 14px 10px;
}

.user-dropdown__full-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text-primary);
    letter-spacing: -0.2px;
}

.user-dropdown__email {
    font-size: 11.5px;
    color: var(--c-text-muted);
    margin-top: 1px;
}

.user-dropdown__sep {
    height: 1px;
    background: var(--c-border-soft);
}

.user-dropdown__item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    font-size: 13px;
    color: var(--c-text-primary);
    font-weight: 400;
    transition: background 0.12s;
}

.user-dropdown__item svg {
    width: 13.5px;
    height: 13.5px;
    color: var(--c-text-muted);
    flex-shrink: 0;
}

.user-dropdown__item:hover {
    background: var(--c-bg);
}

.user-dropdown__item--exit {
    color: var(--c-danger-text);
}

.user-dropdown__item--exit svg {
    color: var(--c-danger-text);
}

.user-dropdown__item--exit:hover {
    background: var(--c-danger-bg);
}

.nav-avatar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 4px 8px;
    border-radius: var(--radius-lg);
    outline: rgba(39, 39, 39, 0.577) solid 2px;
    color: rgba(30, 30, 30, 0.6);
    font-size: .88rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.nav-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
}

.nav-avatar:hover {
    color: rgba(0, 0, 0, 0.9);
    background: rgba(0, 0, 0, 0.05);
}

.nav-avatar:hover::before {
    left: 150%;
    transition: left 0.6s ease-in-out;
}

.nav-avatar span:first-child {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fd);
    font-weight: 700;
    font-size: .9rem;
}

#navUserName {
    font-size: .85rem;
    font-weight: 600;
    color: var(--navy);
}

.nav-avatar i {
    font-size: .7rem;
    color: rgba(71, 71, 71, 0.663);
}

/* ============================================================
   CONTENT
   ============================================================ */
.content {
    flex: 1;
    padding: 32px 28px 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1200px;
    width: 100%;
}

.section-heading {
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 14px;
}

.section-link {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--c-accent);
    transition: opacity 0.14s;
}

.section-link:hover {
    opacity: 0.75;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    font-family: var(--fd);
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 48px;
    align-items: center;
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(20, 33, 61, .22);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 70% 50%, rgba(252, 163, 17, .08) 0%, transparent 55%),
        radial-gradient(circle at 10% 80%, rgba(255, 255, 255, .03) 0%, transparent 40%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    mask-image: linear-gradient(to right, transparent 0%, black 30%, black 70%, transparent 100%);
}

.hero-left {
    position: relative;
    z-index: 1;
}

/* .hero-sub {
    font-size: .82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 10px;
} */

.hero-title {
    font-family: var(--fd);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 14px;
}

.hero-title span {
    color: var(--gold);
}

.hero-desc {
    font-size: .95rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.7;
    max-width: 380px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-topup {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: .9rem;
    padding: 13px 26px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(252, 163, 17, .4);
    transition: background .2s, transform .15s, box-shadow .2s;
}

.btn-topup:hover {
    background: #ffb733;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(252, 163, 17, .5);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1.5px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .75);
    font-weight: 600;
    font-size: .88rem;
    padding: 12px 22px;
    border-radius: 50px;
    transition: border-color .2s, color .2s, background .2s;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(252, 163, 17, .06);
}

.hero-right {
    position: relative;
    z-index: 1;
}

.balance-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.bc-glow {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252, 163, 17, .2) 0%, transparent 70%);
    top: -80px;
    right: -60px;
    pointer-events: none;
}

.bc-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.c1 {
    width: 120px;
    height: 120px;
    border: 1px solid rgba(252, 163, 17, .15);
    bottom: -30px;
    left: -30px;
}

.c2 {
    width: 70px;
    height: 70px;
    border: 1px solid rgba(255, 255, 255, .06);
    top: 20px;
    right: 20px;
}

.bc-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.bc-label {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 8px;
}

.bc-balance-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bc-amount {
    font-family: var(--fd);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -.02em;
    line-height: 1;
}

.bc-eye {
    color: rgba(255, 255, 255, .35);
    font-size: .95rem;
    padding: 4px;
    transition: color .2s;
    display: flex;
}

.bc-eye:hover {
    color: rgba(255, 255, 255, .75);
}

.bc-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(252, 163, 17, .15);
    color: var(--gold);
    border: 1px solid rgba(252, 163, 17, .25);
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 600;
    padding: 5px 11px;
    white-space: nowrap;
}

.bc-divider {
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin-bottom: 20px;
}

.bc-bottom {
    display: flex;
    gap: 0;
    position: relative;
    z-index: 1;
}

.bc-stat {
    flex: 1;
}

.bc-stat+.bc-stat {
    border-left: 1px solid rgba(255, 255, 255, .08);
    padding-left: 16px;
}

.bc-stat-label {
    font-size: .68rem;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 4px;
}

.bc-stat-val {
    font-size: .88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
}

.bc-stat-val.gold {
    color: var(--gold);
}

/* ============================================================
   PRODUCT SECTION
============================================================ */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.product-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 0;
    box-shadow: var(--shadow-card);
    transition: border-color 0.18s, box-shadow 0.18s;
}

.product-card:hover {
    border-color: #C4C4CC;
    box-shadow: var(--shadow-lift);
}

.product-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.product-card__mark {
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    background: var(--c-navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.product-card__mark--accent {
    background: var(--c-accent);
    color: var(--c-navy);
}

.product-card__count {
    font-size: 11.5px;
    font-weight: 500;
    color: var(--c-text-muted);
    letter-spacing: 0.1px;
}

.product-card__body {
    flex: 1;
    margin-bottom: 20px;
}

.product-card__name {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--c-text-primary);
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.product-card__name em {
    font-style: normal;
    color: var(--c-accent);
}

.product-card__desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--c-text-secondary);
    font-weight: 300;
}

.product-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--c-navy);
    padding: 0;
    transition: gap 0.15s, color 0.15s;
    align-self: flex-start;
    letter-spacing: -0.1px;
}

.product-card__cta svg {
    width: 12px;
    height: 12px;
}

.product-card:hover .product-card__cta {
    gap: 9px;
    color: var(--c-accent-hover);
}

/* ============================================================
   ORDERS SECTION
   ============================================================ */
.orders-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.orders-list {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.order-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--c-border-soft);
    transition: background 0.12s;
}

.order-row:last-child {
    border-bottom: none;
}

.order-row:hover {
    background: var(--c-bg);
}

.order-row__left {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.order-row__name {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--c-text-primary);
    letter-spacing: -0.1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.order-row__id {
    font-size: 11.5px;
    color: var(--c-text-muted);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.1px;
}

.order-row__right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.order-row__time {
    font-size: 11.5px;
    color: var(--c-text-muted);
    white-space: nowrap;
}

/* ============================================================
   BADGES
   ============================================================ */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.05px;
    white-space: nowrap;
}

.badge--success {
    background: var(--c-success-bg);
    color: var(--c-success-text);
}

.badge--processing {
    background-color: #dbeafed9;
    color: #1E40AF;
}

.badge--pending {
    background: var(--c-warn-bg);
    color: var(--c-warn-text);
}

.badge--failed {
    background: var(--c-danger-bg);
    color: var(--c-danger-text);
}

/* ============================================================
   MOBILE OVERLAY
   ============================================================ */
/* Pengaturan dasar overlay (disembunyikan secara default) */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.6);
    z-index: 299; /* Pastikan di bawah z-index sidebar */
    backdrop-filter: blur(2px);
    
    /* Konfigurasi animasi transisi */
    opacity: 0;
    visibility: hidden; 
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Class ini ditambahkan oleh JS saat tombol burger diklik */
.sidebar-overlay--show {
    opacity: 1;
    visibility: visible;
}

/* Class ini ditambahkan oleh JS untuk mengunci scroll background */
.body-no-scroll {
    overflow: hidden !important;
}

/* ============================================================
   RESPONSIVE — Dasbord User (Side-by-Side Premium Mobile)
   ============================================================ */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar--open {
        transform: translateX(0);
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
    }

    .main-col {
        margin-left: 0;
    }

    .topbar {
        padding: 0 16px;
    }

    .topbar__hamburger {
        display: flex;
    }

    .content {
        padding: 16px 12px;
        gap: 20px;
    }

    .nav-avatar {
        max-width: 120px;
        height: 35px;
        padding: 4px 8px;
    }

    .user-dropdown--open {
        display: block;
    }

    /* ── HERO SECTION (Dibuat tetap bersandingan) ── */
    .hero {
        /* Mengubah dari 480px menjadi proporsi persentase agar muat di HP */
        grid-template-columns: 44% 56%;
        gap: 12px;
        padding: 20px 14px;
        align-items: center;
    }

    /* Sisi Kiri Hero (Teks & Tombol) */
    .hero-title {
        font-size: 1.25rem;
        /* Ukuran teks nama disesuaikan */
        margin-bottom: 4px;
        line-height: 1.2;
    }

    .hero-desc {
        font-size: 0.7rem;
        line-height: 1.4;
        margin-bottom: 12px;
        max-width: 100%;
    }

    .btn-topup {
        padding: 8px 14px;
        font-size: 0.7rem;
        gap: 4px;
    }

    .btn-topup i {
        font-size: 0.75rem;
    }

    /* Sisi Kanan Hero (Kartu Saldo) */
    .balance-card {
        padding: 10px 10px;
        height: 110px;
        border-radius: var(--r-md);
        margin-right: 14px;
    }

    .bc-top {
        margin-bottom: 12px;
    }

    .bc-label {
        font-size: 0.55rem;
        letter-spacing: 0.05em;
        margin-bottom: 2px;
        margin-top: 6px;
    }

    .bc-amount {
        font-size: 1.15rem;
        /* Ukuran nominal rupiah di HP */
    }

    .bc-eye {
        font-size: 0.8rem;
    }

    .bc-badge {
        font-size: 0.55rem;
        padding: 2px 6px;
        gap: 3px;
    }

    .bc-divider {
        margin-bottom: 12px;
    }

    .bc-badge {
        position: absolute;
        right: 2px;
        top: 5px;
    }

    .bc-balance-row {
        margin-top: 26px;
    }

    /* 3 Kolom Informasi di Bawah Saldo */
    .bc-bottom {
        gap: 0;
        display: none;
    }

    .bc-stat+.bc-stat {
        padding-left: 6px;
        margin-left: 0;
    }

    .bc-stat-label {
        font-size: 0.5rem;
        /* Teks label super kecil tapi tetap terbaca */
        letter-spacing: 0;
        margin-bottom: 2px;
    }

    .bc-stat-val {
        font-size: 0.68rem;
        /* Nilai status/transaksi */
        white-space: nowrap;
    }

    /* ── GRID PRODUK & ELEMEN LAIN ── */
    .product-grid {
        grid-template-columns: 1fr;
        /* Untuk produk tetap 1 kolom ke bawah agar detailnya jelas */
        gap: 12px;
    }

    .order-row {
        padding: 12px 14px;
    }

    .order-row__name {
        font-size: 12.5px;
    }
}