/* ===== RESET & BASE ===== */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Segoe UI', Tahoma, sans-serif;
            background: #f0f4f8;
            color: #1a202c;
            min-height: 100vh;
        }
        .container { max-width: 1440px; margin: 0 auto; padding: 16px; }

        /* ===== LOGIN MODAL ===== */
        .login-modal-overlay {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            backdrop-filter: blur(4px);
        }
        .login-modal {
            background: white;
            padding: 32px 40px;
            border-radius: 24px;
            width: 100%;
            max-width: 400px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            position: relative;
        }
        .login-modal h1 { text-align: center; margin-bottom: 4px; color: #1a365d; }
        .login-modal .sub { text-align: center; color: #718096; margin-bottom: 24px; font-size: 14px; }
        .login-modal .form-group { margin-bottom: 16px; }
        .login-modal label { font-weight: 600; font-size: 13px; color: #4a5568; display: block; margin-bottom: 4px; }
        .login-modal input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 14px;
        }
        .login-modal input:focus { outline: none; border-color: #3182ce; box-shadow: 0 0 0 3px rgba(49,130,206,0.1); }
        .login-btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #2b6cb0, #3182ce);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: 0.2s;
        }
        .login-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(49,130,206,0.3); }
        .login-error { color: #e53e3e; font-size: 13px; text-align: center; margin-top: 10px; }
        .close-btn {
            position: absolute;
            top: 12px; right: 16px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #a0aec0;
        }
        .close-btn:hover { color: #e53e3e; }

        /* ===== HEADER ===== */
        .header {
            background: linear-gradient(135deg, #1a365d, #2a4a7f);
            color: white;
            padding: 12px 20px;
            border-radius: 16px;
            margin-bottom: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        .header h1 { font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
        .header h1 i { color: #fbd38d; }
        .header-info { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
        .header-info .badge-status {
            padding: 4px 12px;
            border-radius: 30px;
            font-size: 11px;
            font-weight: 600;
        }
        .badge-status.online { background: #38a169; color: white; }
        .badge-status.offline { background: #e53e3e; color: white; }
        .badge-status.sync { background: #dd6b20; color: white; animation: blink 1s infinite; }
        @keyframes blink { 50% { opacity: 0.5; } }

        .header-info .user-badge {
            background: rgba(255,255,255,0.15);
            padding: 4px 14px;
            border-radius: 30px;
            font-size: 12px;
            cursor: pointer;
        }
        .header-info .user-badge:hover { background: rgba(255,255,255,0.25); }
        .login-header-btn {
            background: rgba(255,255,255,0.15);
            color: white;
            border: none;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 12px;
            cursor: pointer;
            transition: 0.2s;
        }
        .login-header-btn:hover { background: rgba(255,255,255,0.25); }

        .btn {
            padding: 6px 14px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .btn-white { background: white; color: #1a365d; }
        .btn-white:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
        .btn-success { background: #38a169; color: white; }
        .btn-success:hover { background: #2f855a; transform: translateY(-2px); }
        .btn-danger { background: #e53e3e; color: white; }
        .btn-danger:hover { background: #c53030; transform: translateY(-2px); }
        .btn-primary { background: #3182ce; color: white; }
        .btn-primary:hover { background: #2b6cb0; transform: translateY(-2px); }
        .btn-warning { background: #dd6b20; color: white; }
        .btn-warning:hover { background: #c05621; transform: translateY(-2px); }
        .btn-purple { background: #805ad5; color: white; }
        .btn-purple:hover { background: #6b46c1; transform: translateY(-2px); }
        .btn-sm { padding: 4px 10px; font-size: 11px; }
        .btn-ghost { background: transparent; border: 1px solid #e2e8f0; }
        .btn-ghost:hover { background: #f7fafc; }

        .tabs {
            display: flex;
            gap: 3px;
            background: #e2e8f0;
            border-radius: 12px;
            padding: 4px;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }
        .tab {
            padding: 8px 14px;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 12px;
            cursor: pointer;
            transition: 0.2s;
            background: transparent;
            color: #4a5568;
            flex: 1;
            text-align: center;
            min-width: 70px;
        }
        .tab.active { background: white; color: #1a365d; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
        .tab:hover:not(.active) { background: rgba(255,255,255,0.3); }
        .tab i { margin-right: 4px; }

        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
        .grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
        @media (max-width: 1024px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

        .card {
            background: white;
            border-radius: 16px;
            padding: 16px 18px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            margin-bottom: 14px;
        }
        .card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; color: #2d3748; display: flex; align-items: center; gap: 8px; }
        .card h3 i { color: #3182ce; }

        .stat-card {
            background: white;
            border-radius: 16px;
            padding: 14px 18px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }
        .stat-card .number { font-size: 26px; font-weight: 900; color: #1a365d; }
        .stat-card .label { font-size: 12px; color: #718096; }
        .stat-card .icon { font-size: 22px; margin-bottom: 4px; }
        .dashboard-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 12px;
            margin-bottom: 16px;
        }

        .form-group { margin-bottom: 10px; }
        .form-group label { display: block; font-weight: 600; font-size: 12px; color: #4a5568; margin-bottom: 3px; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        @media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

        input, select, textarea {
            width: 100%;
            padding: 8px 12px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 14px;
            transition: 0.2s;
            background: #f7fafc;
        }
        input:focus, select:focus { outline: none; border-color: #3182ce; box-shadow: 0 0 0 3px rgba(49,130,206,0.1); background: white; }
        input:disabled { background: #edf2f7; color: #4a5568; }

        .btn-add {
            width: 100%;
            padding: 10px;
            background: linear-gradient(135deg, #2b6cb0, #3182ce);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: 0.2s;
            margin-top: 4px;
        }
        .btn-add:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(49,130,206,0.3); }

        .table-wrap { overflow-x: auto; margin-top: 6px; }
        table { width: 100%; border-collapse: collapse; font-size: 12px; }
        th {
            text-align: left;
            padding: 5px 5px;
            border-bottom: 2px solid #e2e8f0;
            color: #4a5568;
            font-weight: 700;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }
        td { padding: 5px 5px; border-bottom: 1px solid #edf2f7; vertical-align: middle; }
        .text-right { text-align: right; }
        .text-center { text-align: center; }
        .badge {
            background: #edf2f7;
            padding: 2px 8px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 10px;
        }
        .badge-blue { background: #bee3f8; color: #2a69ac; }
        .badge-green { background: #c6f6d5; color: #276749; }
        .badge-yellow { background: #fefcbf; color: #975a16; }
        .badge-red { background: #fed7d7; color: #9b2c2c; }
        .btn-delete {
            background: none;
            border: none;
            color: #e53e3e;
            cursor: pointer;
            padding: 2px 6px;
            border-radius: 6px;
            transition: 0.2s;
        }
        .btn-delete:hover { background: #fed7d7; }
        .total-row td { font-weight: 700; font-size: 13px; border-top: 2px solid #2d3748; padding-top: 8px; }
        .empty-state { text-align: center; color: #a0aec0; padding: 16px 0; font-style: italic; font-size: 13px; }

        #scanner-container, #scanner-pricetag {
            width: 100%;
            max-width: 350px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
            background: #1a202c;
            position: relative;
        }
        #scanner-container video, #scanner-pricetag video { width: 100%; display: block; }
        .scanner-overlay {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 160px; height: 160px;
            border: 3px solid #48bb78;
            border-radius: 12px;
            box-shadow: 0 0 0 4000px rgba(0,0,0,0.3);
            pointer-events: none;
        }
        .scanner-line {
            position: absolute;
            top: 50%; left: 10%;
            width: 80%; height: 2px;
            background: #48bb78;
            animation: scanLine 2s linear infinite;
            box-shadow: 0 0 20px #48bb78;
        }
        @keyframes scanLine { 0% { top: 20%; } 50% { top: 80%; } 100% { top: 20%; } }

        .product-info {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6px 12px;
            background: #f7fafc;
            padding: 10px 14px;
            border-radius: 12px;
            margin-top: 8px;
        }
        .product-info .label { font-weight: 600; color: #4a5568; font-size: 11px; }
        .product-info .value { font-weight: 700; color: #1a202c; font-size: 13px; }
        .product-info .value.price { color: #38a169; font-size: 16px; }

        /* ===== PRICETAG NEW FIXED STYLES ===== */
.pricetag-preview {
    background: white;
    border: 1.5px dashed #a0aec0;
    border-radius: 3px;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    font-family: Arial, sans-serif;
    overflow: hidden;
}
.pricetag-preview .tag-content {
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

/* Ukuran Panjang (6.4cm x 3.5cm) */
.pricetag-preview.panjang {
    width: 242px;
    height: 132px;
}
.pricetag-preview.panjang .tag-body {
    padding: 3px 5px 0 5px;
    flex-shrink: 0;
}
.pricetag-preview.panjang .tag-body .nama {
    font-size: 9px;
    font-weight: 700;
    color: #000;
    text-align: left;
    line-height: 1.2;
    word-wrap: break-word;
    max-height: 28px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.pricetag-preview.panjang .tag-body .harga {
    font-size: 20px;
    font-weight: 900;
    color: #000;
    text-align: left;
    margin-top: 0px;
    line-height: 1.2;
}
.pricetag-preview.panjang .tag-body .harga .satuan {
    font-size: 0.55em;
    font-weight: 700;
}
.pricetag-preview.panjang .tag-barcode-wrap {
    padding: 0 5px;
    text-align: center;
    flex-shrink: 0;
}
.pricetag-preview.panjang .tag-barcode-wrap svg {
    max-width: 100%;
    height: auto;
    max-height: 28px;
}
.pricetag-preview.panjang .tag-barcode-angka {
    text-align: center;
    font-size: 8px;
    font-weight: 600;
    color: #000;
    letter-spacing: 1px;
    margin-top: -1px;
    flex-shrink: 0;
}
.pricetag-preview.panjang .tag-footer {
    margin-top: auto;
    padding: 0 5px 3px 5px;
    flex-shrink: 0;
}
.pricetag-preview.panjang .tag-footer .line-blue {
    height: 5mm;
    background: #0284c7;
    color: #000;
    font-size: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    padding: 0 4px;
    justify-content: space-between;
}
.pricetag-preview.panjang .tag-footer .line-blue .rak-text {
    font-size: 6.5px;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #000;
}
.pricetag-preview.panjang .tag-footer .line-red {
    height: 5mm;
    background: #dc2626;
    color: #000;
    font-size: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
    margin-top: 1.5mm;
}
.pricetag-preview.panjang .tag-footer .line-red .retur-text {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #000;
}
.pricetag-preview.panjang .tag-footer .line-red .tanggal-text {
    flex-shrink: 0;
    color: #000;
}
.pricetag-preview.panjang .tag-footer .gap-1 { height: 1.5mm; background: white; flex-shrink: 0; }
.pricetag-preview.panjang .tag-footer .gap-2 { height: 2mm; background: white; flex-shrink: 0; }

/* Ukuran Pendek (3.9cm x 3.5cm) */
.pricetag-preview.pendek {
    width: 148px;
    height: 132px;
}
.pricetag-preview.pendek .tag-body {
    padding: 10px 4px 0 4px;
    flex-shrink: 0;
}
.pricetag-preview.pendek .tag-body .nama {
    font-size: 7px;
    font-weight: 700;
    color: #000;
    text-align: left;
    line-height: 1.1;
    word-wrap: break-word;
    max-height: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.pricetag-preview.pendek .tag-body .harga {
    font-size: 15px;
    font-weight: 900;
    color: #000;
    text-align: left;
    margin-top: 0px;
    line-height: 1.2;
}
.pricetag-preview.pendek .tag-body .harga .satuan {
    font-size: 0.5em;
    font-weight: 700;
}
.pricetag-preview.pendek .tag-barcode-wrap {
    padding: 0 4px;
    text-align: center;
    flex-shrink: 0;
}
.pricetag-preview.pendek .tag-barcode-wrap svg {
    max-width: 100%;
    height: auto;
    max-height: 20px;
}
.pricetag-preview.pendek .tag-barcode-angka {
    text-align: center;
    font-size: 6px;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.8px;
    margin-top: -1px;
    flex-shrink: 0;
}
.pricetag-preview.pendek .tag-footer {
    margin-top: auto;
    padding: 0 4px 2px 4px;
    flex-shrink: 0;
}
.pricetag-preview.pendek .tag-footer .line-blue {
    height: 4mm;
    background: #0284c7;
    color: #000;
    font-size: 7px;
    font-weight: 700;
    display: flex;
    align-items: center;
    padding: 0 3px;
    justify-content: space-between;
}
.pricetag-preview.pendek .tag-footer .line-blue .rak-text {
    font-size: 5.5px;
    max-width: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #000;
}
.pricetag-preview.pendek .tag-footer .line-red {
    height: 4mm;
    background: #dc2626;
    color: #000;
    font-size: 6px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    margin-top: 1mm;
}
.pricetag-preview.pendek .tag-footer .line-red .retur-text {
    max-width: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #000;
}
.pricetag-preview.pendek .tag-footer .line-red .tanggal-text {
    flex-shrink: 0;
    color: #000;
}
.pricetag-preview.pendek .tag-footer .gap-1 { height: 1mm; background: white; flex-shrink: 0; }
.pricetag-preview.pendek .tag-footer .gap-2 { height: 1.5mm; background: white; flex-shrink: 0; }

/* Print Zone */
#print-zone {
    display: none;
}

@media print {
    body * { visibility: hidden; }
    #print-zone, #print-zone * { visibility: visible; }
    #print-zone {
        display: grid !important;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        gap: 2mm 3mm;
        justify-content: start;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        color-adjust: exact !important;
    }
    #print-zone.grid-panjang {
        grid-template-columns: repeat(3, 6.4cm);
    }
    #print-zone.grid-pendek {
        grid-template-columns: repeat(5, 3.9cm);
    }
    .pricetag-preview {
        page-break-inside: avoid !important;
        break-inside: avoid !important;
        border: 1px solid #999 !important;
        box-shadow: none !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        color-adjust: exact !important;
    }
    .pricetag-preview .tag-footer .line-blue,
    .pricetag-preview .tag-footer .line-red {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        color-adjust: exact !important;
    }
    .no-print { display: none !important; }
    @page { size: A4 portrait; margin: 8mm 6mm; }
}

.pricetag-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    max-height: 600px;
    overflow-y: auto;
    padding: 4px;
}

        .qty-control {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .qty-control button {
            background: #edf2f7;
            border: none;
            border-radius: 4px;
            width: 24px;
            height: 24px;
            font-weight: 700;
            cursor: pointer;
        }
        .qty-control button:hover { background: #cbd5e0; }
        .qty-control span { min-width: 24px; text-align: center; }

        .struk-box {
            background: #f7fafc;
            border-radius: 12px;
            padding: 14px;
            border: 2px dashed #cbd5e0;
            font-family: 'Courier New', monospace;
            font-size: 12px;
            line-height: 1.7;
            white-space: pre-wrap;
            max-height: 300px;
            overflow-y: auto;
        }
        .struk-actions { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
        .payment-row {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            background: #f7fafc;
            padding: 8px 12px;
            border-radius: 10px;
            margin-top: 8px;
            align-items: center;
        }
        .payment-row select { width: auto; padding: 4px 10px; }
        .payment-row input { width: 90px; padding: 4px 10px; }

        .history-list { max-height: 220px; overflow-y: auto; }
        .history-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 4px 8px;
            border-bottom: 1px solid #edf2f7;
            font-size: 12px;
        }
        .history-item:last-child { border-bottom: none; }
        .history-item .date { font-weight: 600; color: #2b6cb0; }
        .history-item .total { font-weight: 700; }

        .toast {
            position: fixed;
            bottom: 30px; right: 30px;
            background: #2d3748;
            color: white;
            padding: 10px 18px;
            border-radius: 12px;
            font-weight: 500;
            font-size: 13px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            opacity: 0;
            transform: translateY(20px);
            transition: 0.3s;
            z-index: 999;
            pointer-events: none;
            max-width: 90%;
        }
        .toast.show { opacity: 1; transform: translateY(0); }
        .text-muted { color: #718096; font-size: 11px; }
        .total-display { font-size: 16px; font-weight: 700; color: #2b6cb0; }
        .tab-content { display: none; }
        .tab-content.active { display: block; }

        .chart-container { max-height: 200px; position: relative; }
        .stock-warning {
            background: #fff5f5;
            border-left: 4px solid #e53e3e;
            padding: 6px 10px;
            border-radius: 8px;
            margin-bottom: 4px;
            font-size: 12px;
        }
        .stock-warning i { color: #e53e3e; margin-right: 6px; }

        .google-sheet-status {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            background: #ebf8ff;
            border-radius: 8px;
            font-size: 12px;
        }
        .google-sheet-status .connected { color: #38a169; }
        .google-sheet-status .disconnected { color: #e53e3e; }

        .lomag-result {
            margin-top: 8px;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 13px;
        }
        .lomag-result.success { background: #f0fff4; border: 1px solid #c6f6d5; }
        .lomag-result.fail { background: #fff5f5; border: 1px solid #fed7d7; }

        .rak-badge {
            background: #fefcbf;
            padding: 1px 6px;
            border-radius: 4px;
            font-size: 7px;
            font-weight: 600;
            color: #975a16;
            max-width: 80px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        @media (max-width: 600px) {
            .container { padding: 8px; }
            .header { padding: 10px 14px; }
            .header h1 { font-size: 16px; }
            .tab { font-size: 10px; padding: 6px 8px; min-width: 50px; }
            .card { padding: 12px 14px; }
            .login-modal { padding: 24px; margin: 16px; }
            .dashboard-stats { grid-template-columns: 1fr 1fr; }
            .pricetag-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
            .pricetag-preview.panjang { width: 180px; height: 100px; }
            .pricetag-preview.panjang .tag-body .harga { font-size: 16px; }
            .pricetag-preview.panjang .tag-body .nama { font-size: 7px; max-height: 20px; }
            .pricetag-preview.panjang .tag-footer .line-blue { height: 4mm; font-size: 6px; }
            .pricetag-preview.panjang .tag-footer .line-red { height: 4mm; font-size: 6px; }
            .pricetag-preview.pendek { width: 112px; height: 100px; }
            .pricetag-preview.pendek .tag-body .harga { font-size: 12px; }
            .pricetag-preview.pendek .tag-body .nama { font-size: 6px; max-height: 16px; }
            .pricetag-preview.pendek .tag-footer .line-blue { height: 3.5mm; font-size: 5px; }
            .pricetag-preview.pendek .tag-footer .line-red { height: 3.5mm; font-size: 5px; }
        }



        /* ===== KAMERA PRICETAG CONTAINER ===== */
#scanner-pricetag {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    background: #1a202c;
    min-height: 250px;
    position: relative;
    display: none; /* default hidden, akan muncul via v-show */
}
#scanner-pricetag video {
    width: 100%;
    display: block;
}
#scanner-pricetag .scanner-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border: 3px solid #48bb78;
    border-radius: 12px;
    box-shadow: 0 0 0 4000px rgba(0,0,0,0.3);
    pointer-events: none;
}
#scanner-pricetag .scanner-line {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #48bb78;
    animation: scanLine 2s linear infinite;
    box-shadow: 0 0 20px #48bb78;
}
@keyframes scanLine {
    0% { top: 20%; }
    50% { top: 80%; }
    100% { top: 20%; }
}
