/* assets/css/style.css — OzaaStore */

/* ── Variables ─────────────────────────────────────────────── */
:root {
    --oz-bg: #0d0f1a;
    --oz-surface: #141623;
    --oz-card: #1a1d2e;
    --oz-border: #252840;
    --oz-purple: #7c3aed;
    --oz-purple2: #6d28d9;
    --oz-cyan: #06b6d4;
    --oz-gold: #f59e0b;
    --oz-green: #10b981;
    --oz-red: #ef4444;
    --oz-text: #e2e8f0;
    --oz-muted: #64748b;
    --oz-radius: 12px;
    --oz-radius-sm: 8px;
    --oz-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --oz-glow: 0 0 20px rgba(124, 58, 237, 0.3);
}

/* ── Base ──────────────────────────────────────────────────── */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--oz-bg);
    color: var(--oz-text);
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.oz-logo-text {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all .2s;
}

a:hover {
    opacity: .85;
}

/* ── Navbar ────────────────────────────────────────────────── */
.oz-navbar {
    background: rgba(13, 15, 26, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--oz-border);
    padding: 12px 0;
}

.oz-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--oz-purple), var(--oz-cyan));
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.oz-logo-text {
    font-size: 1.5rem;
    background: linear-gradient(90deg, #fff, var(--oz-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.oz-navbar .nav-link {
    color: rgba(255, 255, 255, .75) !important;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--oz-radius-sm);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    letter-spacing: .5px;
}

.oz-navbar .nav-link:hover,
.oz-navbar .nav-link.active {
    color: #fff !important;
    background: rgba(124, 58, 237, .2);
}

.oz-btn-primary {
    background: linear-gradient(135deg, var(--oz-purple), var(--oz-purple2));
    border: none;
    color: #fff;
    border-radius: var(--oz-radius-sm);
    font-weight: 700;
    transition: all .2s;
}

.oz-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--oz-glow);
    color: #fff;
}

.oz-btn-user {
    background: var(--oz-surface);
    border: 1px solid var(--oz-border);
    color: var(--oz-text);
    border-radius: var(--oz-radius-sm);
    font-weight: 600;
}

.oz-btn-user:hover {
    background: var(--oz-card);
    color: var(--oz-text);
}

.oz-dropdown {
    background: var(--oz-card);
    border: 1px solid var(--oz-border);
    border-radius: var(--oz-radius);
    padding: 8px;
}

.oz-dropdown .dropdown-item {
    color: var(--oz-text);
    border-radius: var(--oz-radius-sm);
    padding: 8px 14px;
    font-size: 14px;
}

.oz-dropdown .dropdown-item:hover {
    background: var(--oz-border);
    color: #fff;
}

.oz-dropdown .dropdown-divider {
    border-color: var(--oz-border);
}

/* ── Hero Section ──────────────────────────────────────────── */
.oz-hero {
    background: linear-gradient(135deg, #0d0f1a 0%, #1a0a2e 50%, #0d1a2e 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.oz-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(124, 58, 237, .15) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 50%, rgba(6, 182, 212, .1) 0%, transparent 60%);
}

.oz-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
}

.oz-hero-title span {
    background: linear-gradient(90deg, var(--oz-purple), var(--oz-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.oz-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(124, 58, 237, .15);
    border: 1px solid rgba(124, 58, 237, .3);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--oz-cyan);
    margin-bottom: 16px;
}

/* Stats strip */
.oz-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

.oz-stat-item {
    text-align: center;
}

.oz-stat-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.oz-stat-label {
    font-size: 12px;
    color: var(--oz-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Section Titles ────────────────────────────────────────── */
.oz-section-title {
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

.oz-section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--oz-purple), var(--oz-cyan));
    border-radius: 2px;
    margin-top: 6px;
}

/* ── Cards ─────────────────────────────────────────────────── */
.oz-card {
    background: var(--oz-card);
    border: 1px solid var(--oz-border);
    border-radius: var(--oz-radius);
    transition: transform .25s, box-shadow .25s, border-color .25s;
    overflow: hidden;
}

.oz-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--oz-shadow), var(--oz-glow);
    border-color: rgba(124, 58, 237, .4);
}

.oz-feature-icon {
    display: inline-block;
    font-size: 2rem;
    line-height: 1;
}

/* Game Card */
.oz-game-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: var(--oz-surface);
}

.oz-game-body {
    padding: 14px;
}

.oz-game-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.oz-cat-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    background: rgba(124, 58, 237, .2);
    border: 1px solid rgba(124, 58, 237, .3);
    color: var(--oz-cyan);
    border-radius: 20px;
    padding: 2px 10px;
    text-transform: uppercase;
}

.oz-price-from {
    font-size: 11px;
    color: var(--oz-muted);
}

.oz-price-val {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: var(--oz-gold);
    font-size: 1rem;
}

/* Product Option Cards */
.oz-product-card {
    background: var(--oz-surface);
    border: 2px solid var(--oz-border);
    border-radius: var(--oz-radius);
    padding: 14px;
    cursor: pointer;
    transition: all .2s;
    position: relative;
}

.oz-product-card:hover,
.oz-product-card.selected {
    border-color: var(--oz-purple);
    background: rgba(124, 58, 237, .1);
}

.oz-product-card.selected::after {
    content: '\F26B';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 8px;
    right: 10px;
    color: var(--oz-purple);
    font-size: 16px;
}

.oz-product-name {
    font-weight: 700;
    font-size: 14px;
}

.oz-product-amount {
    font-size: 12px;
    color: var(--oz-muted);
}

.oz-product-price {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--oz-gold);
}

/* ── Forms ─────────────────────────────────────────────────── */
.oz-form-group {
    margin-bottom: 18px;
}

.oz-form-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--oz-text);
    display: block;
    margin-bottom: 6px;
}

.oz-form-group label span.req {
    color: var(--oz-red);
    margin-left: 2px;
}

.form-control,
.form-select {
    background: var(--oz-surface) !important;
    border: 1px solid var(--oz-border) !important;
    color: var(--oz-text) !important;
    border-radius: var(--oz-radius-sm) !important;
    padding: 10px 14px;
    transition: border-color .2s, box-shadow .2s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--oz-purple) !important;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, .2) !important;
}

.form-control::placeholder {
    color: var(--oz-muted) !important;
}

.form-select option {
    background: var(--oz-card);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-oz-primary {
    background: linear-gradient(135deg, var(--oz-purple), var(--oz-purple2));
    border: none;
    color: #fff;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    letter-spacing: .5px;
    border-radius: var(--oz-radius-sm);
    padding: 10px 28px;
    transition: all .2s;
}

.btn-oz-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--oz-glow);
    color: #fff;
}

.btn-oz-outline {
    background: transparent;
    border: 1.5px solid var(--oz-purple);
    color: var(--oz-purple);
    font-weight: 700;
    border-radius: var(--oz-radius-sm);
    padding: 9px 24px;
    transition: all .2s;
}

.btn-oz-outline:hover {
    background: var(--oz-purple);
    color: #fff;
}

.btn-oz-gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
    color: #1a1a1a;
    font-weight: 700;
    border-radius: var(--oz-radius-sm);
    padding: 10px 28px;
    transition: all .2s;
}

.btn-oz-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(245, 158, 11, .3);
}

/* ── Auth Pages ─────────────────────────────────────────────── */
.oz-auth-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d0f1a, #1a0a2e);
    padding: 40px 16px;
}

.oz-auth-card {
    background: var(--oz-card);
    border: 1px solid var(--oz-border);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--oz-shadow);
}

.oz-auth-logo {
    text-align: center;
    margin-bottom: 28px;
}

.oz-auth-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 4px;
}

.oz-auth-sub {
    text-align: center;
    color: var(--oz-muted);
    font-size: 14px;
    margin-bottom: 28px;
}

/* ── Payment Methods ─────────────────────────────────────────── */
.oz-pay-option {
    background: var(--oz-surface);
    border: 2px solid var(--oz-border);
    border-radius: var(--oz-radius);
    padding: 12px 16px;
    cursor: pointer;
    transition: all .2s;
}

.oz-pay-option:hover,
.oz-pay-option.selected {
    border-color: var(--oz-purple);
    background: rgba(124, 58, 237, .1);
}

.oz-pay-option input[type="radio"] {
    display: none;
}

.oz-pay-label {
    font-weight: 600;
    font-size: 14px;
}

.oz-pay-type {
    font-size: 11px;
    color: var(--oz-muted);
    text-transform: uppercase;
}

/* ── Tables ─────────────────────────────────────────────────── */
.oz-table {
    background: var(--oz-card);
    border-radius: var(--oz-radius);
    overflow: hidden;
}

.oz-table table {
    margin: 0;
}

.oz-table thead th {
    background: var(--oz-surface);
    color: var(--oz-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--oz-border);
    padding: 14px 16px;
    font-weight: 700;
}

.oz-table tbody tr {
    border-bottom: 1px solid var(--oz-border);
    transition: background .15s;
}

.oz-table tbody tr:hover {
    background: rgba(255, 255, 255, .03);
}

.oz-table tbody td {
    padding: 14px 16px;
    color: var(--oz-text);
    vertical-align: middle;
}

.oz-table tbody tr:last-child {
    border-bottom: none;
}

/* ── Dashboard Admin ─────────────────────────────────────────── */
.oz-stat-card {
    background: var(--oz-card);
    border: 1px solid var(--oz-border);
    border-radius: var(--oz-radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.oz-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.oz-stat-icon.purple {
    background: rgba(124, 58, 237, .2);
    color: var(--oz-purple);
}

.oz-stat-icon.cyan {
    background: rgba(6, 182, 212, .2);
    color: var(--oz-cyan);
}

.oz-stat-icon.gold {
    background: rgba(245, 158, 11, .2);
    color: var(--oz-gold);
}

.oz-stat-icon.green {
    background: rgba(16, 185, 129, .2);
    color: var(--oz-green);
}

.oz-stat-card-val {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.oz-stat-card-lbl {
    font-size: 13px;
    color: var(--oz-muted);
}

.oz-admin-stat-link {
    display: block;
    height: 100%;
    color: inherit;
}

.oz-admin-stat-link:hover {
    color: inherit;
    opacity: 1;
}

.oz-admin-stat-grid {
    align-items: stretch;
}

.oz-admin-stats .oz-stat-card {
    height: 100%;
    min-width: 0;
    padding: 18px 20px;
    gap: 14px;
}

.oz-admin-stats .oz-stat-card>div:last-child {
    min-width: 0;
}

.oz-admin-stats .oz-stat-card-val {
    font-size: clamp(.95rem, 1.15vw, 1.3rem) !important;
    line-height: 1.1;
    white-space: nowrap;
}

.oz-admin-stat-primary .oz-stat-card {
    min-height: 154px;
    padding: 22px;
    background: linear-gradient(135deg, rgba(16, 185, 129, .14), rgba(124, 58, 237, .08)), var(--oz-card);
    border-color: rgba(16, 185, 129, .34);
}

.oz-admin-stat-primary .oz-stat-icon {
    width: 64px;
    height: 64px;
    font-size: 26px;
}

.oz-admin-stat-primary .oz-stat-card-val {
    color: #fff;
    font-size: clamp(1.35rem, 2.2vw, 1.8rem) !important;
}

.oz-admin-stat-primary .oz-stat-card-lbl {
    font-size: 14px;
}

.oz-admin-metric-wrap {
    min-width: 0;
}

.oz-admin-metric-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    height: 100%;
}

.oz-admin-metric-slide {
    min-width: 0;
}

@media (min-width: 992px) {
    .oz-admin-metric-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Admin sidebar */
.oz-admin-sidebar {
    background: var(--oz-card);
    border-right: 1px solid var(--oz-border);
    min-height: calc(100vh - 65px);
    padding: 24px 16px;
    position: sticky;
    top: 65px;
}

.oz-sidebar-title {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--oz-muted);
    padding: 0 12px 8px;
}

.oz-sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--oz-radius-sm);
    color: rgba(255, 255, 255, .7);
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    letter-spacing: .3px;
    transition: all .2s;
    margin-bottom: 4px;
}

.oz-sidebar-link:hover,
.oz-sidebar-link.active {
    background: rgba(124, 58, 237, .2);
    color: #fff;
}

.oz-sidebar-link.active {
    border-left: 3px solid var(--oz-purple);
    padding-left: 11px;
}

/* ── Step Indicator ─────────────────────────────────────────── */
.oz-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
}

.oz-step {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.oz-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--oz-surface);
    border: 2px solid var(--oz-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--oz-muted);
    flex-shrink: 0;
}

.oz-step.active .oz-step-num {
    background: var(--oz-purple);
    border-color: var(--oz-purple);
    color: #fff;
}

.oz-step.done .oz-step-num {
    background: var(--oz-green);
    border-color: var(--oz-green);
    color: #fff;
}

.oz-step-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--oz-muted);
}

.oz-step.active .oz-step-label,
.oz-step.done .oz-step-label {
    color: var(--oz-text);
}

.oz-step-line {
    flex: 1;
    height: 2px;
    background: var(--oz-border);
}

.oz-step.done+.oz-step .oz-step-line,
.oz-step-line.done {
    background: var(--oz-green);
}

/* ── Misc ─────────────────────────────────────────────────── */
.oz-divider {
    border-color: var(--oz-border);
    margin: 24px 0;
}

.oz-tag {
    background: var(--oz-surface);
    border: 1px solid var(--oz-border);
    border-radius: 6px;
    padding: 2px 10px;
    font-size: 12px;
}

.oz-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--oz-muted);
}

.oz-empty i {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
}

/* ── Footer ─────────────────────────────────────────────────── */
.oz-footer {
    background: var(--oz-card);
    border-top: 1px solid var(--oz-border);
    padding: 48px 0 24px;
    margin-top: 80px;
}

.oz-footer-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    letter-spacing: .5px;
    color: #fff;
    margin-bottom: 14px;
}

.oz-footer-link {
    display: block;
    color: var(--oz-muted);
    font-size: 14px;
    margin-bottom: 8px;
    transition: color .2s;
}

.oz-footer-link:hover {
    color: var(--oz-cyan);
}

.oz-footer-divider {
    border-color: var(--oz-border);
    margin: 28px 0 20px;
}

.oz-pay-badge {
    background: var(--oz-surface);
    border: 1px solid var(--oz-border);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--oz-text);
}

/* ── Alerts override ─────────────────────────────────────────── */
.alert {
    border-radius: var(--oz-radius-sm);
    font-weight: 600;
    font-size: 14px;
    margin: 0 0 20px;
}

/* ── Upload area ─────────────────────────────────────────────── */
.oz-upload-area {
    background: var(--oz-surface);
    border: 2px dashed var(--oz-border);
    border-radius: var(--oz-radius);
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s;
}

.oz-upload-area:hover,
.oz-upload-area.dragover {
    border-color: var(--oz-purple);
}

.oz-upload-area i {
    font-size: 36px;
    color: var(--oz-muted);
}

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--oz-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--oz-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--oz-muted);
}

/* ── Responsive tweaks ─────────────────────────────────────── */
@media (max-width: 768px) {
    .oz-hero {
        padding: 48px 0;
    }

    .oz-stats {
        gap: 16px;
        flex-wrap: wrap;
    }

    .oz-stat-num {
        font-size: 1.4rem;
    }

    .oz-auth-card {
        padding: 28px 20px;
    }

    .oz-admin-sidebar {
        display: none;
    }

    /* Beri ruang bawah untuk bottom nav */
    body.admin-page main {
        padding-bottom: 80px !important;
    }
}

@media (max-width: 575.98px) {
    .oz-features-section {
        padding-top: 28px !important;
        padding-bottom: 30px !important;
    }

    .oz-feature-track {
        --bs-gutter-x: 0;
        --bs-gutter-y: 0;
        display: flex;
        flex-wrap: nowrap;
        gap: 12px;
        margin-left: 0;
        margin-right: 0;
        overflow-x: auto;
        overflow-y: hidden;
        overscroll-behavior-x: contain;
        padding-bottom: 4px;
        scroll-padding-left: 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .oz-feature-track::-webkit-scrollbar {
        display: none;
    }

    .oz-feature-col {
        flex: 0 0 168px;
        max-width: 168px;
        padding-left: 0;
        padding-right: 0;
        scroll-snap-align: start;
    }

    .oz-feature-card {
        display: flex;
        min-height: 168px;
        padding: 14px 12px !important;
        flex-direction: column;
        justify-content: center;
    }

    .oz-feature-card:hover {
        transform: none;
    }

    .oz-feature-icon {
        font-size: 1.45rem;
    }

    .oz-feature-title {
        margin-top: .7rem !important;
        margin-bottom: .45rem !important;
        font-size: .92rem;
        line-height: 1.08;
    }

    .oz-feature-text {
        font-size: .78rem !important;
        line-height: 1.34;
    }

    .oz-category-scroll {
        flex-wrap: nowrap !important;
        margin-left: -2px;
        margin-right: -2px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 2px 4px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .oz-category-scroll::-webkit-scrollbar {
        display: none;
    }

    .oz-category-scroll .oz-cat-btn {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .oz-admin-stats {
        margin-bottom: 1.25rem !important;
    }

    .oz-admin-stat-grid {
        --bs-gutter-x: 0;
        --bs-gutter-y: 12px;
        margin-left: 0;
        margin-right: 0;
    }

    .oz-admin-stat-primary,
    .oz-admin-metric-wrap {
        padding-left: 0;
        padding-right: 0;
    }

    .oz-admin-stat-primary .oz-stat-card {
        min-height: 112px;
        padding: 18px;
        gap: 14px;
    }

    .oz-admin-stat-primary .oz-stat-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .oz-admin-stat-primary .oz-stat-card-val {
        font-size: 1.35rem !important;
    }

    .oz-admin-metric-strip {
        display: flex !important;
        grid-template-columns: none;
        gap: 12px;
        height: auto;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 6px;
        scroll-padding-left: 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .oz-admin-metric-strip::-webkit-scrollbar {
        display: none;
    }

    .oz-admin-metric-slide {
        flex: 0 0 164px;
        width: 164px;
        max-width: 164px;
        min-width: 0;
        scroll-snap-align: start;
    }

    .oz-admin-metric-strip .oz-stat-card {
        min-height: 104px;
        padding: 14px 12px;
        gap: 10px;
    }

    .oz-admin-metric-strip .oz-stat-icon {
        width: 44px;
        height: 44px;
        border-radius: 11px;
        font-size: 19px;
    }

    .oz-admin-metric-strip .oz-stat-card-val {
        font-size: 1.12rem !important;
    }

    .oz-admin-metric-strip .oz-stat-card-lbl {
        font-size: 12px;
        line-height: 1.25;
    }

    .oz-admin-stats .oz-stat-card:hover {
        transform: none;
    }
}

/* ── Admin Bottom Navigation (mobile only) ──────────────────── */
.oz-bottom-nav {
    display: none;
}

@media (max-width: 992px) {
    .oz-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1040;
        background: var(--oz-card);
        border-top: 1px solid var(--oz-border);
        height: 64px;
        align-items: stretch;
    }

    .oz-bottom-nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        color: var(--oz-muted);
        font-size: 11px;
        font-weight: 700;
        font-family: 'Rajdhani', sans-serif;
        letter-spacing: .3px;
        text-decoration: none;
        transition: all .2s;
        padding: 8px 4px;
        border-top: 2px solid transparent;
    }

    .oz-bottom-nav-item i {
        font-size: 20px;
        line-height: 1;
    }

    .oz-bottom-nav-item:hover {
        color: var(--oz-purple);
        background: rgba(124, 58, 237, .07);
    }

    .oz-bottom-nav-item.active {
        color: var(--oz-purple);
        border-top-color: var(--oz-purple);
        background: rgba(124, 58, 237, .08);
    }

    /* Beri ruang bawah konten agar tidak tertutup bottom nav */
    .flex-grow-1.p-4 {
        padding-bottom: 80px !important;
    }
}

/* ── Navbar Mobile Collapse ─────────────────────────────────── */
@media (max-width: 992px) {
    .oz-navbar .navbar-collapse {
        background: var(--oz-card);
        border: 1px solid var(--oz-border);
        border-radius: var(--oz-radius);
        padding: 12px;
        margin-top: 8px;
    }

    .oz-navbar .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        border: none;
        background: var(--oz-surface);
        margin-top: 4px;
    }
}

/* ── Fix Bootstrap table override ───────────────────────────── */
.table {
    --bs-table-bg: transparent !important;
    --bs-table-color: var(--oz-text) !important;
    --bs-table-hover-bg: rgba(255, 255, 255, .03) !important;
    --bs-table-striped-bg: transparent !important;
    color: var(--oz-text) !important;
}

.table> :not(caption)>*>* {
    background-color: transparent !important;
    color: var(--oz-text) !important;
    border-color: var(--oz-border) !important;
}

.table td,
.table th {
    color: var(--oz-text) !important;
}

.table small {
    color: var(--oz-muted) !important;
}

.table .text-muted {
    color: var(--oz-muted) !important;
}

.oz-admin-filter-card .oz-status-scroll {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.oz-admin-search-form {
    display: flex;
    gap: 8px;
}

.oz-admin-search-form .form-control {
    min-width: 0;
}

@media (max-width: 575.98px) {
    .oz-admin-filter-card .oz-status-scroll {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        padding-bottom: 4px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .oz-admin-filter-card .oz-status-scroll::-webkit-scrollbar {
        display: none;
    }

    .oz-admin-filter-card .oz-status-scroll .btn {
        flex: 0 0 auto !important;
        min-height: 44px;
        white-space: nowrap !important;
        padding-left: 18px;
        padding-right: 18px;
    }

    .oz-admin-search-form .btn {
        min-width: 54px;
        min-height: 44px;
    }
}
