:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --success: #16a34a;
    --danger: #dc2626;
    --warning: #f59e0b;
    --info: #0891b2;
    --bg: #f1f5f9;
    --card: #ffffff;
    --text: #1e293b;
    --muted: #64748b;
    --border: #e2e8f0;
    --sidebar-w: 220px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; }

/* Layout */
.app { display: flex; min-height: 100vh; }
.sidebar {
    width: var(--sidebar-w); background: #1e293b; color: #fff; padding: 1.5rem 0 0;
    position: fixed; top: 0; left: 0; bottom: 0; z-index: 100;
    display: flex; flex-direction: column;
}
.sidebar .brand {
    display: flex; align-items: center; gap: .6rem;
    padding: 0 1rem; margin-bottom: 1.2rem; flex-shrink: 0;
}
.sidebar .brand img { width: 32px; height: 32px; border-radius: 4px; }
.sidebar .brand h2 { font-size: 1rem; margin: 0; }
.sidebar .brand .subtitle { padding: 0; font-size: .7rem; color: #94a3b8; margin: 0; }
.sidebar .close-sidebar { display: none; }
.login-logo { width: 60px; height: 60px; border-radius: 8px; margin-bottom: .75rem; }
.sidebar nav {
    flex: 1; min-height: 0; overflow-y: auto; overflow-x: hidden;
    display: flex; flex-direction: column;
}
.sidebar nav::-webkit-scrollbar { width: 4px; }
.sidebar nav::-webkit-scrollbar-thumb { background: #475569; border-radius: 4px; }
.sidebar nav::-webkit-scrollbar-track { background: transparent; }
.sidebar nav a {
    display: flex; align-items: center; gap: .5rem;
    padding: .55rem 1rem; color: #cbd5e1; text-decoration: none;
    font-size: .82rem; transition: background .15s;
}
.sidebar nav a:hover, .sidebar nav a.active { background: #334155; color: #fff; }
.sidebar nav a .icon { width: 18px; text-align: center; font-size: .9rem; }
.sidebar .nav-section {
    font-size: .65rem; color: #64748b; text-transform: uppercase; letter-spacing: .08em;
    padding: .6rem 1rem .25rem; margin-top: .3rem;
}
.sidebar .user-box {
    margin-top: auto;
    padding: .8rem 1rem; border-top: 1px solid #334155;
    font-size: .78rem; color: #94a3b8;
    position: sticky; bottom: 0; background: #1e293b;
}
.sidebar .user-box strong { color: #fff; display: block; }

.main { margin-left: var(--sidebar-w); flex: 1; padding: 1.5rem 2rem; max-width: 1300px; }
.main-full { margin: 0 auto; max-width: 400px; padding: 3rem 1rem; }

/* Components */
.card { background: var(--card); border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,.06); padding: 1.5rem; margin-bottom: 1.5rem; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: .6rem; margin-bottom: 1.5rem; }
.stat-card { background: var(--card); border-radius: 8px; padding: .75rem .6rem; box-shadow: 0 1px 3px rgba(0,0,0,.06); text-align: center; }
.stat-card .label { font-size: .65rem; color: var(--muted); text-transform: uppercase; letter-spacing: .03em; }
.stat-card .value { font-size: 1.3rem; font-weight: 700; margin-top: .15rem; }
.stat-card.warning .value { color: var(--warning); }
.stat-card.success .value { color: var(--success); }
.stat-card.primary .value { color: var(--primary); }
.stat-card.danger .value { color: var(--danger); }
.stat-card.info .value { color: var(--info); }

h1 { font-size: 1.4rem; margin-bottom: 1.1rem; }
h3 { font-size: 1.05rem; margin-bottom: .85rem; }

table { width: 100%; border-collapse: collapse; font-size: .82rem; }
th, td { padding: .55rem .65rem; text-align: left; border-bottom: 1px solid var(--border); }
th { background: #f8fafc; font-weight: 600; color: var(--muted); font-size: .7rem; text-transform: capitalize; letter-spacing: .02em; }
tr:hover { background: #f8fafc; }

.badge {
    display: inline-block; padding: .15rem .5rem; border-radius: 999px;
    font-size: .72rem; font-weight: 600; white-space: nowrap;
}
.badge-input { background: #dcfce7; color: #166534; }
.badge-output { background: #fee2e2; color: #991b1b; }
.badge-transfer { background: #e0e7ff; color: #3730a3; }
.badge-adjustment { background: #fef3c7; color: #92400e; }
.badge-admin { background: #dbeafe; color: #1e40af; }
.badge-operator { background: #f0fdf4; color: #166534; }
.badge-low { background: #fef3c7; color: #92400e; }
.badge-active { background: #dcfce7; color: #166534; }
.badge-inactive { background: #f1f5f9; color: #64748b; }

.badge-draft { background: #f1f5f9; color: #475569; }
.badge-ordered { background: #dbeafe; color: #1e40af; }
.badge-partial { background: #fef3c7; color: #92400e; }
.badge-received { background: #dcfce7; color: #166534; }
.badge-cancelled { background: #fee2e2; color: #991b1b; }
.badge-confirmed { background: #dbeafe; color: #1e40af; }
.badge-picking { background: #e0e7ff; color: #3730a3; }
.badge-packed { background: #fef3c7; color: #92400e; }
.badge-shipped { background: #cffafe; color: #155e75; }
.badge-delivered { background: #dcfce7; color: #166534; }
.badge-pending { background: #fef3c7; color: #92400e; }
.badge-approved { background: #dbeafe; color: #1e40af; }
.badge-processed { background: #e0e7ff; color: #3730a3; }
.badge-closed { background: #f1f5f9; color: #475569; }
.badge-planned { background: #f1f5f9; color: #475569; }
.badge-in_progress { background: #dbeafe; color: #1e40af; }
.badge-completed { background: #dcfce7; color: #166534; }
.badge-expired { background: #fee2e2; color: #991b1b; }
.badge-quarantine { background: #fef3c7; color: #92400e; }
.badge-consumed { background: #f1f5f9; color: #475569; }
.badge-good { background: #dcfce7; color: #166534; }
.badge-damaged { background: #fef3c7; color: #92400e; }
.badge-defective { background: #fee2e2; color: #991b1b; }
.badge-restock { background: #dcfce7; color: #166534; }
.badge-dispose { background: #fee2e2; color: #991b1b; }
.badge-repair { background: #dbeafe; color: #1e40af; }
.badge-storage { background: #e0e7ff; color: #3730a3; }
.badge-receiving { background: #dcfce7; color: #166534; }
.badge-shipping { background: #cffafe; color: #155e75; }
.badge-staging { background: #fef3c7; color: #92400e; }
.badge-customer_return { background: #fee2e2; color: #991b1b; }
.badge-supplier_return { background: #fef3c7; color: #92400e; }
.badge-inspected { background: #e0e7ff; color: #3730a3; }
.badge-scrap { background: #fce7f3; color: #9d174d; }
.badge-refunded { background: #dcfce7; color: #166534; }
.badge-none { background: #f1f5f9; color: #64748b; }
.badge-grade-A { background: #dcfce7; color: #166534; }
.badge-grade-B { background: #dbeafe; color: #1e40af; }
.badge-grade-C { background: #fef3c7; color: #92400e; }
.badge-grade-F { background: #fee2e2; color: #991b1b; }

/* Returns Logistics */
.return-summary { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: .75rem; margin-bottom: 1.25rem; }
.return-summary .summary-card { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: .85rem; text-align: center; }
.return-summary .summary-card .s-label { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .03em; margin-bottom: .2rem; }
.return-summary .summary-card .s-value { font-size: 1.15rem; font-weight: 700; }
.return-summary .summary-card.s-green .s-value { color: var(--success); }
.return-summary .summary-card.s-blue .s-value { color: var(--primary); }
.return-summary .summary-card.s-amber .s-value { color: var(--warning); }
.return-summary .summary-card.s-red .s-value { color: var(--danger); }
.return-summary .summary-card.s-cyan .s-value { color: var(--info); }

.inspection-row { background: #fafbfc; border: 1px solid var(--border); border-radius: 8px; padding: .85rem; margin-bottom: .6rem; }
.inspection-row .insp-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: .5rem; }
.inspection-row .insp-header .insp-product { font-weight: 600; font-size: .88rem; }
.inspection-row .insp-fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: .5rem; }
.inspection-row .insp-fields label { font-size: .72rem; color: var(--muted); display: block; margin-bottom: .15rem; }
.inspection-row .insp-fields select, .inspection-row .insp-fields input, .inspection-row .insp-fields textarea {
    width: 100%; padding: .35rem .5rem; border: 1px solid var(--border); border-radius: 5px; font-size: .8rem; font-family: inherit;
    text-transform: uppercase;
}
.inspection-row .insp-fields textarea { resize: vertical; min-height: 36px; }
.inspection-row.inspected-done { border-left: 3px solid var(--success); background: #f0fdf4; }

.refund-section { border-top: 2px solid var(--border); padding-top: 1rem; margin-top: 1rem; }
.refund-totals { display: flex; justify-content: flex-end; gap: 1.5rem; font-size: .88rem; margin-top: .75rem; }
.refund-totals .rt-item { text-align: right; }
.refund-totals .rt-label { font-size: .72rem; color: var(--muted); text-transform: uppercase; }
.refund-totals .rt-value { font-size: 1.1rem; font-weight: 700; }

.timeline { margin-top: 1rem; padding-left: 1.2rem; border-left: 2px solid var(--border); }
.timeline .tl-entry { position: relative; padding-bottom: .75rem; padding-left: .85rem; }
.timeline .tl-entry::before { content: ''; position: absolute; left: -1.45rem; top: .25rem; width: 10px; height: 10px; border-radius: 50%; background: var(--primary); border: 2px solid #fff; }
.timeline .tl-entry .tl-date { font-size: .72rem; color: var(--muted); }
.timeline .tl-entry .tl-text { font-size: .82rem; }

.btn {
    display: inline-block; padding: .45rem .9rem; border: none; border-radius: 6px;
    font-size: .82rem; font-weight: 500; cursor: pointer; text-decoration: none;
    transition: background .15s; line-height: 1.4;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-success { background: var(--success); color: #fff; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-warning { background: var(--warning); color: #fff; }
.btn-info { background: var(--info); color: #fff; }
.btn-secondary { background: #475569; color: #fff; }
.btn-sm { padding: .25rem .55rem; font-size: .78rem; }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { background: var(--bg); }

.form-group { margin-bottom: .85rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 500; margin-bottom: .25rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: .45rem .65rem; border: 1px solid var(--border);
    border-radius: 6px; font-size: .82rem; font-family: inherit;
    text-transform: uppercase;
}
.form-group input[type="password"] { text-transform: none; }
.form-group textarea { resize: vertical; min-height: 55px; }
.password-wrapper { display: flex; align-items: center; gap: .35rem; }
.password-wrapper input { flex: 1; min-width: 0; }
.pwd-toggle { flex-shrink: 0; width: 32px; height: 32px; background: var(--bg); border: 1px solid var(--border); border-radius: 6px; cursor: pointer; font-size: 1rem; color: var(--muted); display: flex; align-items: center; justify-content: center; transition: background .15s, color .15s; }
.pwd-toggle:hover { background: var(--border); color: var(--text); }
.pwd-toggle.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .85rem; }

.alert {
    padding: .65rem .85rem; border-radius: 6px; margin-bottom: 1rem;
    font-size: .82rem; font-weight: 500;
}
.alert-success { background: #dcfce7; color: #166534; }
.alert-danger { background: #fee2e2; color: #991b1b; }
.alert-warning { background: #fef3c7; color: #92400e; }
.alert-info { background: #cffafe; color: #155e75; }

.toolbar { display: flex; gap: .65rem; align-items: center; margin-bottom: 1rem; flex-wrap: wrap; }
.toolbar .search { flex: 1; min-width: 200px; }
.toolbar input, .toolbar select {
    padding: .45rem .65rem; border: 1px solid var(--border); text-transform: uppercase;
    border-radius: 6px; font-size: .82rem;
}

.modal-overlay {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4);
    z-index: 200; justify-content: center; align-items: center;
}
.modal-overlay.active { display: flex; }
.modal { background: #fff; border-radius: 10px; padding: 1.5rem; width: 90%; max-width: 560px; max-height: 90vh; overflow-y: auto; }
.modal h3 { margin-bottom: 1rem; }
.modal-footer { display: flex; gap: .5rem; justify-content: flex-end; margin-top: 1rem; }

.empty { text-align: center; padding: 2rem; color: var(--muted); }

/* Tabs */
.tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 1rem; }
.tabs a {
    padding: .5rem 1rem; text-decoration: none; color: var(--muted);
    font-size: .85rem; font-weight: 500; border-bottom: 2px solid transparent;
    margin-bottom: -2px; transition: all .15s;
}
.tabs a:hover { color: var(--text); }
.tabs a.active { color: var(--primary); border-bottom-color: var(--primary); }

/* Alert bell */
.alert-bell { position: relative; }
.alert-bell .bell-count {
    position: absolute; top: -4px; right: -6px;
    background: var(--danger); color: #fff; font-size: .6rem; font-weight: 700;
    width: 16px; height: 16px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
}

/* Barcode Scanner */
.scanner-box {
    background: linear-gradient(135deg, #eff6ff, #f0fdf4);
    border: 2px dashed var(--primary);
    border-radius: 10px;
    padding: .85rem 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .85rem;
}
.scanner-box .scanner-input-wrap { flex: 1; }
.scanner-box input {
    width: 100%; padding: .5rem .65rem;
    border: 2px solid var(--primary); border-radius: 6px;
    font-size: .95rem; font-weight: 500;
    outline: none; transition: border-color .2s, box-shadow .2s;
    text-transform: uppercase;
}
.scanner-box input:focus {
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}
.scanner-box .scanner-hint { font-size: .72rem; color: var(--muted); margin-top: .25rem; }
.scanner-result {
    display: none; background: var(--card); border: 1px solid var(--border);
    border-radius: 8px; padding: .85rem; margin-bottom: 1rem;
    animation: fadeIn .2s ease;
}
.scanner-result.active { display: block; }
.scanner-result.not-found { border-color: var(--danger); background: #fef2f2; }
.scanner-result .product-info {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: .4rem;
}
.scanner-result .product-info .field { font-size: .78rem; }
.scanner-result .product-info .field .lbl {
    color: var(--muted); text-transform: uppercase; font-size: .65rem; letter-spacing: .03em;
}
.scanner-result .product-info .field .val { font-weight: 600; font-size: .85rem; }
.scanner-result-actions { margin-top: .6rem; display: flex; gap: .4rem; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Movement scanner product selector */
.product-scanner-wrap { position: relative; }
.product-scanner-wrap .scanner-dropdown {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border: 1px solid var(--border);
    border-radius: 0 0 6px 6px; box-shadow: 0 4px 12px rgba(0,0,0,.1);
    max-height: 200px; overflow-y: auto; z-index: 10; display: none;
}
.product-scanner-wrap .scanner-dropdown.active { display: block; }
.product-scanner-wrap .scanner-dropdown .dropdown-item {
    padding: .4rem .65rem; cursor: pointer; font-size: .82rem; border-bottom: 1px solid var(--border);
}
.product-scanner-wrap .scanner-dropdown .dropdown-item:hover { background: #f1f5f9; }
.product-scanner-wrap .scanner-dropdown .dropdown-item .item-sku { font-weight: 600; color: var(--primary); }
.product-scanner-wrap .scanner-dropdown .dropdown-item .item-name { color: var(--text); }
.product-scanner-wrap .scanner-dropdown .dropdown-item .item-stock { font-size: .72rem; color: var(--muted); }
.product-scanner-wrap .selected-product {
    display: none; background: #eff6ff; border: 1px solid var(--primary);
    border-radius: 6px; padding: .4rem .65rem; font-size: .82rem; margin-top: .25rem;
}
.product-scanner-wrap .selected-product.active { display: flex; align-items: center; justify-content: space-between; }
.product-scanner-wrap .selected-product .clear-btn {
    background: none; border: none; color: var(--danger); cursor: pointer; font-size: 1.1rem; padding: 0 .3rem;
}

/* Location search selector */
.loc-search-wrap { position: relative; }
.loc-search-wrap .loc-dropdown {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border: 1px solid var(--border);
    border-radius: 0 0 6px 6px; box-shadow: 0 4px 12px rgba(0,0,0,.1);
    max-height: 200px; overflow-y: auto; z-index: 10; display: none;
}
.loc-search-wrap .loc-dropdown.active { display: block; }
.loc-search-wrap .loc-dropdown .loc-dd-item {
    padding: .45rem .65rem; cursor: pointer; font-size: .82rem; border-bottom: 1px solid var(--border);
}
.loc-search-wrap .loc-dropdown .loc-dd-item:hover { background: #f1f5f9; }
.loc-search-wrap .loc-dropdown .loc-dd-item .loc-code { font-weight: 600; color: var(--primary); }
.loc-search-wrap .loc-dropdown .loc-dd-item .loc-meta { font-size: .72rem; color: var(--muted); }
.loc-search-wrap .loc-dropdown .loc-dd-empty {
    padding: .5rem .65rem; font-size: .82rem; color: var(--muted); text-align: center;
}
.loc-search-wrap .loc-selected {
    display: none; background: #f0fdf4; border: 1px solid var(--success);
    border-radius: 6px; padding: .35rem .65rem; font-size: .82rem; margin-top: .25rem;
}
.loc-search-wrap .loc-selected.active { display: flex; align-items: center; justify-content: space-between; }
.loc-search-wrap .loc-selected .loc-sel-text { color: var(--text); }
.loc-search-wrap .loc-selected .loc-sel-text strong { color: var(--success); }
.loc-search-wrap .loc-selected .loc-clear {
    background: none; border: none; color: var(--danger); cursor: pointer; font-size: 1.1rem; padding: 0 .3rem;
}

/* Camera scanner */
.btn-scan {
    background: #1e293b; color: #fff; border: none; border-radius: 6px;
    padding: .45rem .75rem; font-size: .82rem; font-weight: 600;
    cursor: pointer; display: inline-flex; align-items: center; gap: .35rem;
    white-space: nowrap; transition: background .15s;
}
.btn-scan:hover { background: #334155; }
.btn-scan .cam-icon { font-size: 1rem; }
.camera-modal {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,.85);
    z-index: 300; justify-content: center; align-items: center; flex-direction: column;
}
.camera-modal.active { display: flex; }
.camera-modal .camera-container {
    width: 90%; max-width: 500px; background: #000; border-radius: 12px; overflow: hidden; position: relative;
}
.camera-modal .camera-header {
    background: #1e293b; color: #fff; padding: .65rem .85rem;
    display: flex; justify-content: space-between; align-items: center;
    font-size: .85rem; font-weight: 600;
}
.camera-modal .camera-close {
    background: var(--danger); color: #fff; border: none; border-radius: 6px;
    padding: .25rem .6rem; cursor: pointer; font-size: .82rem;
}
.camera-modal #cameraScannerView { width: 100%; min-height: 280px; }
.camera-modal .camera-status { color: #94a3b8; text-align: center; padding: .4rem; font-size: .78rem; }
.scanner-box .scanner-row { display: flex; gap: .4rem; align-items: center; }
.scanner-box .scanner-row input { flex: 1; }

/* Detail view */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem 1.5rem; margin-bottom: 1rem; }
.detail-grid .detail-item { }
.detail-grid .detail-label { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .03em; }
.detail-grid .detail-value { font-size: .88rem; font-weight: 500; }

/* Status workflow */
.status-flow { display: flex; align-items: center; gap: .3rem; margin-bottom: 1rem; flex-wrap: wrap; }
.status-flow .step { padding: .3rem .6rem; border-radius: 999px; font-size: .72rem; font-weight: 600; background: #f1f5f9; color: #94a3b8; }
.status-flow .step.current { background: var(--primary); color: #fff; }
.status-flow .step.done { background: #dcfce7; color: #166534; }
.status-flow .arrow { color: #94a3b8; font-size: .8rem; }

/* Mobile */
.mobile-header { display: none; }

@media (max-width: 768px) {
    .mobile-header {
        display: flex; align-items: center; justify-content: space-between;
        background: #1e293b; color: #fff; padding: .65rem .85rem;
        position: sticky; top: 0; z-index: 200;
    }
    .mobile-header .mobile-brand { display: flex; align-items: center; gap: .4rem; }
    .mobile-header .mobile-brand img { width: 28px; height: 28px; border-radius: 4px; }
    .mobile-header .mobile-brand h2 { font-size: .95rem; margin: 0; }
    .mobile-header .mobile-brand .subtitle { font-size: .6rem; color: #94a3b8; margin: 0; }
    .hamburger {
        background: none; border: none; color: #fff; font-size: 1.5rem;
        cursor: pointer; padding: .2rem .4rem; line-height: 1;
    }
    .sidebar {
        width: 100%; position: fixed; top: 0; left: 0; bottom: 0;
        transform: translateX(-100%); transition: transform .25s ease; z-index: 300;
    }
    .sidebar.open { transform: translateX(0); }
    .sidebar-overlay {
        display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,.5); z-index: 250;
    }
    .sidebar-overlay.show { display: block; }
    .sidebar .brand { margin-top: .4rem; }
    .sidebar .close-sidebar {
        display: block; position: absolute; top: .65rem; right: .65rem;
        background: none; border: none; color: #94a3b8; font-size: 1.3rem;
        cursor: pointer; line-height: 1;
    }
    .sidebar .close-sidebar:hover { color: #fff; }
    .main { margin-left: 0; padding: 1rem; }
    .app { flex-direction: column; }
    .form-row, .form-row-3 { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .stat-card .value { font-size: 1.1rem; }
    .sidebar .user-box { position: sticky; bottom: 0; }
    .scanner-box { flex-wrap: wrap; padding: .65rem; gap: .4rem; }
    .scanner-box .scanner-input-wrap { flex: 1; min-width: 0; }
    .scanner-box .scanner-row { flex-direction: column; }
    .scanner-box .scanner-row .btn-scan { width: 100%; justify-content: center; }
    .camera-modal .camera-container { width: 95%; }
    .camera-modal #cameraScannerView { min-height: 350px; }
    .detail-grid { grid-template-columns: 1fr; }
}
