/* ============================================
   SANDBOX DEMO - Amazon chrome + moveable Kraken toolbar clone
   ============================================ */

/* Sandbox demo container */
.sandbox-demo {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
    overflow: hidden;
    height: 100%;
    min-height: 480px;
}

/* Amazon top bar (chrome) */
.amazon-chrome {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: #131a22;
    color: rgba(255,255,255,0.9);
    font-size: 12px;
}

.deliver-to {
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 6px;
}

.deliver-to i {
    color: #fff;
}

.amazon-all {
    padding: 4px 8px;
    border-radius: 4px;
    background: #232f3e;
    color: inherit;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 12px;
}

.amazon-search-wrap {
    flex: 1;
    max-width: 400px;
    display: flex;
    align-items: stretch;
}

.amazon-search {
    flex: 1;
    padding: 8px 12px;
    border-radius: 4px 0 0 4px;
    border: none;
    background: #fff;
    color: #111;
    font-size: 13px;
}

.amazon-search-btn {
    background: #febd69;
    border: none;
    padding: 0 14px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.amazon-search-btn i {
    color: #111;
    font-size: 14px;
}

.amazon-cart {
    font-size: 22px;
    color: rgba(255,255,255,0.9);
    margin-left: auto;
}

/* Viewport: product mockup + toolbar overlay — stretch to fill */
.sandbox-viewport {
    position: relative;
    min-height: 480px;
    background: #f8f8f8;
    overflow: hidden;
    flex: 1;
}

.sandbox-product-bg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: fill;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* ============================================
   SANDBOX TOOLBAR - 1:1 clone of extension
   ============================================ */
.sandbox-viewport .sandbox-toolbar {
    position: absolute;
    left: 12px;
    top: 10px;
    z-index: 10;
    margin: 0;
    width: auto;
    max-width: none;
    cursor: move;
    user-select: none;
    pointer-events: auto;
}

.sandbox-toolbar.dragging {
    opacity: 0.95;
    transition: none;
}

.sandbox-toolbar {
    display: flex;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 12px;
    border: 0.5px solid rgba(0,0,0,0.08);
    box-shadow: 0 2px 12px rgba(0,0,0,0.12), 0 0 0 0.5px rgba(0,0,0,0.05);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    line-height: 1.4;
}

.sandbox-toolbar .toolbar-header {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(180deg, #1d1d1f 0%, #2d2d2f 100%);
    color: rgba(255,255,255,0.95);
    padding: 6px 4px;
    border-radius: 12px 0 0 12px;
    cursor: move;
    width: 26px;
    border-right: 0.5px solid rgba(0,0,0,0.1);
}

.sandbox-toolbar .toolbar-title {
    font-weight: bold;
    font-size: 9px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.sandbox-toolbar .toolbar-controls {
    display: flex;
    justify-content: center;
    margin-top: 4px;
}

.sandbox-toolbar .toolbar-controls button {
    background: rgba(255,255,255,0.12);
    border: none;
    color: rgba(255,255,255,0.9);
    padding: 3px;
    border-radius: 6px;
    font-size: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.sandbox-toolbar .toolbar-controls button:hover {
    background: rgba(255,255,255,0.22);
}

.sandbox-toolbar.sandbox-toolbar-minimized .toolbar-body {
    display: none;
}

.sandbox-toolbar.sandbox-toolbar-minimized .toolbar-header {
    border-radius: 12px;
}

.sandbox-toolbar .toolbar-body {
    display: flex;
    padding: 6px 8px;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 0 12px 12px 0;
    flex-grow: 1;
}

.sandbox-toolbar .toolbar-section {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.sandbox-toolbar .product-image-container {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
}

.sandbox-toolbar .product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sandbox-toolbar .asin-field-container {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sandbox-toolbar input[type="text"] {
    padding: 6px 10px;
    border: 0.5px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    font-size: 11px;
    width: 100px;
    background: #fff;
}

.sandbox-toolbar button {
    padding: 6px 10px;
    border: none;
    border-radius: 8px;
    background: rgba(0,0,0,0.06);
    color: #333;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: background 0.2s;
}

.sandbox-toolbar button:hover {
    background: rgba(0,0,0,0.1);
}

.sandbox-toolbar .buybox-section button {
    font-weight: 600;
    color: #D70015;
}

.sandbox-toolbar .right-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sandbox-toolbar .custom-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.sandbox-toolbar .feature-btn {
    font-size: 10px;
    padding: 5px 8px;
}

/* ============================================
   SANDBOX PANELS - 1:1 match to extension .dropdown-panel
   ============================================ */
.sandbox-panel {
    position: absolute;
    left: 16px;
    top: 100px;
    width: 420px;
    max-width: calc(100% - 32px);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15), 0 0 0 0.5px rgba(0,0,0,0.05);
    overflow: hidden;
    z-index: 20;
    font-size: 13px;
    display: none;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

.sandbox-panel[aria-hidden="false"] {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.sandbox-panel.is-loading .panel-content {
    opacity: 0.5;
    pointer-events: none;
}

.sandbox-panel .panel-header {
    background: rgba(248,248,248,0.95);
    padding: 12px 16px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: -0.01em;
    border-bottom: 0.5px solid rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1d1d1f;
}

.sandbox-panel .panel-close-btn {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #666;
    font-size: 14px;
}

.sandbox-panel .panel-close-btn:hover {
    color: #111;
}

.sandbox-panel .panel-content {
    padding: 12px 16px;
    max-height: 380px;
    overflow-y: auto;
}

/* Buybox: market-recap-section (1:1 extension) */
.sandbox-panel .market-recap-section {
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    margin: 0 0 12px;
    text-align: center;
}

.sandbox-panel .market-recap-section .seller-count-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sandbox-panel .market-recap-section .seller-count-number {
    font-size: 24px;
    font-weight: 800;
    color: #232f3e;
}

.sandbox-panel .market-recap-section .recap-btn {
    background: linear-gradient(to bottom, #f7ca00, #f0b400);
    border: 1px solid #c99700;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 700;
    color: #111;
    cursor: pointer;
}

.sandbox-panel .buybox-info { margin-bottom: 12px; }
.sandbox-panel .seller-offers-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid #eee; }
.sandbox-panel .seller-offer {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sandbox-panel .seller-offer:last-child { border-bottom: none; }
.sandbox-panel .seller-name { font-weight: 600; color: #1a1a1a; }
.sandbox-panel .offer-price { color: #067d62; }

/* Calculator panel (1:1) */
.sandbox-panel.sandbox-panel-calc .panel-header {
    background: linear-gradient(135deg, #1d1d1f 0%, #2d2d2f 100%);
    color: #fff;
}

.sandbox-panel.sandbox-panel-calc .panel-header span {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sandbox-panel.sandbox-panel-calc .panel-content {
    background: #f8f9fa;
}

.sandbox-panel .calc-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid #eee;
}

.sandbox-panel .calc-row:last-child {
    border-bottom: none;
}

.sandbox-panel .calc-row strong { color: #067d62; }

/* ASIN list panels (Recent, Pinned) - 1:1 */
.sandbox-panel.sandbox-panel-list { width: 350px; }
.sandbox-panel.sandbox-panel-list .panel-header { padding: 10px 12px; font-size: 12px; }
.sandbox-panel .asin-list { list-style: none; margin: 0; padding: 0; }
.sandbox-panel .asin-list li {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    cursor: pointer;
}
.sandbox-panel .asin-list li:hover { background: #f5f5f5; }
.sandbox-panel .asin-list li:last-child { border-bottom: none; }

.sandbox-panel-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #666;
    font-size: 14px;
    z-index: 2;
}

.sandbox-panel-close:hover { color: #111; }

/* ============================================
   BROWSER SHELL — stretch to fill hero-visual
   ============================================ */
.browser-shell {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
}

/* ============================================
   ENHANCED PANEL STYLES — realistic demo content
   ============================================ */

/* Buybox: seller offer layout */
.sandbox-panel .seller-offer-main {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sandbox-panel .buybox-winner-badge {
    font-size: 10px;
    background: #f0b400;
    color: #111;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.sandbox-panel .fulfillment-tag {
    font-size: 9px;
    background: #e8f4fd;
    color: #1a73e8;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.sandbox-panel .stock-result-demo {
    transition: all 0.3s ease;
}

/* Recent ASINs: rows with thumbnails */
.sandbox-panel .recent-asin-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    font-size: 12px;
}
.sandbox-panel .recent-asin-row:hover { background: #f5f5f5; }
.sandbox-panel .recent-asin-row:last-child { border-bottom: none; }

.sandbox-panel .recent-thumb {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
    background: #f0f0f0;
}

.sandbox-panel .recent-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.sandbox-panel .recent-asin-code {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 12px;
}

.sandbox-panel .recent-title {
    font-size: 11px;
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sandbox-panel .recent-price {
    font-weight: 600;
    color: #067d62;
    font-size: 12px;
    white-space: nowrap;
}

/* Calculator: dark header */
.sandbox-panel .calc-header {
    background: linear-gradient(135deg, #1d1d1f 0%, #2d2d2f 100%) !important;
    color: #fff !important;
}
.sandbox-panel .calc-header span { color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.sandbox-panel .calc-header .panel-close-btn { color: rgba(255,255,255,0.7); }
.sandbox-panel .calc-header .panel-close-btn:hover { color: #fff; }
.sandbox-panel .calc-body { background: #f8f9fa; }

/* Scorecard panel */
.sandbox-panel.sandbox-panel-scorecard { width: 440px; }

.sandbox-panel .scorecard-overall {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.sandbox-panel .scorecard-circle {
    width: 80px;
    height: 80px;
    border: 4px solid #067d62;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sandbox-panel .scorecard-number {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.sandbox-panel .scorecard-denom {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.6;
}

.sandbox-panel .scorecard-label {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    margin-top: 2px;
}

.sandbox-panel .scorecard-breakdown {
    flex: 1;
}

.sandbox-panel .scorecard-breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    font-size: 12px;
}

.sandbox-panel .scorecard-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

.sandbox-panel .scorecard-section {
    margin-bottom: 12px;
    background: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
}

.sandbox-panel .scorecard-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    font-weight: 600;
    font-size: 12px;
    background: #f5f5f5;
    border-bottom: 1px solid #eee;
}

.sandbox-panel .scorecard-section-details {
    padding: 8px 12px;
}

.sandbox-panel .scorecard-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    font-size: 11px;
    border-bottom: 1px solid #f0f0f0;
}

.sandbox-panel .scorecard-detail-row:last-child {
    border-bottom: none;
}

.sandbox-panel .scorecard-detail-label {
    color: #666;
}

.sandbox-panel .scorecard-detail-value {
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* ============================================
   ASIN PROFILE PANEL
   ============================================ */
.sandbox-panel.sandbox-panel-profile { width: 420px; }

.sandbox-panel .profile-hero {
    display: flex;
    gap: 12px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.sandbox-panel .profile-img-wrap {
    width: 80px; height: 80px; border-radius: 10px; overflow: hidden; background: #f5f5f5; flex-shrink: 0;
}
.sandbox-panel .profile-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.sandbox-panel .profile-title-area { flex: 1; min-width: 0; }
.sandbox-panel .profile-title-text { font-size: 12px; font-weight: 600; color: #1a1a1a; margin-bottom: 8px; line-height: 1.3; }

.sandbox-panel .profile-ids { display: flex; flex-direction: column; gap: 3px; }
.sandbox-panel .profile-id-row { display: flex; align-items: center; gap: 6px; font-size: 11px; }
.sandbox-panel .profile-id-row .id-label { color: #999; width: 36px; }
.sandbox-panel .profile-id-row .id-val { font-weight: 600; color: #1a1a1a; font-family: monospace; font-size: 11px; }
.sandbox-panel .mini-copy-btn { background: none; border: none; padding: 2px 4px; cursor: pointer; color: #999; font-size: 10px; }
.sandbox-panel .mini-copy-btn:hover { color: #ff6b35; }

.sandbox-panel .profile-stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }
.sandbox-panel .profile-stat { background: #f8f8f8; border-radius: 8px; padding: 8px 10px; font-size: 11px; }
.sandbox-panel .profile-stat strong { display: block; font-size: 10px; color: #999; text-transform: uppercase; margin-bottom: 2px; }

/* ============================================
   RECENT ASINs - with action buttons
   ============================================ */
.sandbox-panel .recent-row {
    display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-bottom: 1px solid #eee; font-size: 12px;
}
.sandbox-panel .recent-row:last-child { border-bottom: none; }
.sandbox-panel .recent-row:hover { background: #f8f8f8; }
.sandbox-panel .recent-thumb { width: 32px; height: 32px; border-radius: 6px; object-fit: cover; background: #f0f0f0; flex-shrink: 0; }
.sandbox-panel .recent-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.sandbox-panel .recent-code { font-weight: 600; color: #1a1a1a; }
.sandbox-panel .recent-title { font-size: 10px; color: #999; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sandbox-panel .recent-actions { display: flex; gap: 4px; }
.sandbox-panel .mini-action-btn { background: #f0f0f0; border: none; padding: 4px 6px; border-radius: 4px; cursor: pointer; color: #666; font-size: 10px; }
.sandbox-panel .mini-action-btn:hover { background: #ff6b35; color: #fff; }

/* ============================================
   PINNED LISTS - expanded
   ============================================ */
.sandbox-panel.sandbox-panel-pinned { width: 380px; }
.sandbox-panel .pinned-list-group { margin-bottom: 8px; border: 1px solid #eee; border-radius: 8px; overflow: hidden; }
.sandbox-panel .pinned-list-header { display: flex; align-items: center; padding: 8px 10px; background: #fafafa; font-size: 12px; border-bottom: 1px solid #eee; }
.sandbox-panel .pinned-list-body { padding: 4px 10px; }
.sandbox-panel .pinned-asin-row { display: flex; justify-content: space-between; padding: 4px 0; font-size: 11px; border-bottom: 1px solid #f5f5f5; }
.sandbox-panel .pinned-asin-row:last-child { border-bottom: none; }
.sandbox-panel .pinned-asin-code { font-family: monospace; color: #1a1a1a; font-weight: 500; }
.sandbox-panel .pinned-asin-price { color: #067d62; font-weight: 600; }

/* ============================================
   CALCULATOR - 4 card layout
   ============================================ */
.sandbox-panel.sandbox-panel-calc { width: 400px; }
.sandbox-panel .calc-card { background: #fafafa; border: 1px solid #eee; border-radius: 8px; padding: 10px 12px; margin-bottom: 8px; }
.sandbox-panel .calc-card h4 { font-size: 11px; text-transform: uppercase; color: #999; letter-spacing: 0.5px; margin-bottom: 8px; }
.sandbox-panel .calc-info-row { display: flex; justify-content: space-between; padding: 4px 0; font-size: 12px; border-bottom: 1px solid #f0f0f0; }
.sandbox-panel .calc-info-row:last-child { border-bottom: none; }
.sandbox-panel .calc-info-row.total-row { border-top: 1px solid #ddd; margin-top: 4px; padding-top: 6px; font-weight: 600; }
.sandbox-panel .calc-ful-badge { background: #e8f4fd; color: #1a73e8; padding: 1px 6px; border-radius: 4px; font-size: 10px; font-weight: 600; }
.sandbox-panel .calc-card.results-card { background: #232f3e; border-color: #232f3e; }
.sandbox-panel .calc-card.results-card h4 { color: rgba(255,255,255,0.6); }
.sandbox-panel .calc-result-row { display: flex; justify-content: space-between; padding: 5px 0; font-size: 13px; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.1); }
.sandbox-panel .calc-result-row:last-child { border-bottom: none; }
.sandbox-panel .calc-profit { color: #4ade80; font-weight: 700; }

/* ============================================
   INVENTORY — Seller Central
   ============================================ */
.sandbox-panel.sandbox-panel-inv { width: 400px; }
.sandbox-panel .inv-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.sandbox-panel .inv-card { background: #f5f5f5; border-radius: 8px; padding: 10px; text-align: center; }
.sandbox-panel .inv-card.accent { background: #232f3e; color: #fff; }
.sandbox-panel .inv-value { font-size: 18px; font-weight: 700; color: #232f3e; }
.sandbox-panel .inv-card.accent .inv-value { color: #fff; }
.sandbox-panel .inv-label { font-size: 9px; color: #999; text-transform: uppercase; margin-top: 2px; }
.sandbox-panel .inv-card.accent .inv-label { color: rgba(255,255,255,0.6); }
.sandbox-panel .inv-section-title { font-size: 11px; font-weight: 600; text-transform: uppercase; color: #999; margin-bottom: 6px; }
.sandbox-panel .inv-po-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.sandbox-panel .inv-po-item { background: #fafafa; border-radius: 6px; padding: 6px 8px; font-size: 11px; display: flex; justify-content: space-between; }
.sandbox-panel .inv-po-label { color: #999; }
.sandbox-panel .inv-po-val { color: #1a1a1a; }

/* ============================================
   RUN RATES
   ============================================ */
.sandbox-panel.sandbox-panel-rr { width: 420px; }
.sandbox-panel .rr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }
.sandbox-panel .rr-card { background: #f8f8f8; border-radius: 8px; padding: 10px; }
.sandbox-panel .rr-header { font-size: 10px; text-transform: uppercase; color: #999; margin-bottom: 6px; display: flex; justify-content: space-between; align-items: center; }
.sandbox-panel .rr-value { font-size: 20px; font-weight: 700; color: #232f3e; }
.sandbox-panel .rr-unit { font-size: 11px; font-weight: 400; color: #999; margin-left: 4px; }
.sandbox-panel .rr-trend { font-size: 9px; font-weight: 600; padding: 2px 6px; border-radius: 4px; }
.sandbox-panel .rr-trend.up { background: #dcfce7; color: #16a34a; }
.sandbox-panel .rr-trend.down { background: #fef2f2; color: #dc2626; }
.sandbox-panel .rr-trend.flat { background: #f3f4f6; color: #6b7280; }
.sandbox-panel .rr-highlight { background: linear-gradient(135deg, #232f3e, #37475a); color: #fff; margin-bottom: 8px; }
.sandbox-panel .rr-highlight .rr-header { color: rgba(255,255,255,0.6); }
.sandbox-panel .rr-big { font-size: 26px; color: #4ade80; }

/* ============================================
   WOC
   ============================================ */
.sandbox-panel.sandbox-panel-woc { width: 380px; }
.sandbox-panel .woc-hero { text-align: center; padding: 20px; border: 3px solid; border-radius: 12px; margin-bottom: 12px; }
.sandbox-panel .woc-big { font-size: 48px; font-weight: 800; line-height: 1; }
.sandbox-panel .woc-unit { font-size: 14px; text-transform: uppercase; color: #666; font-weight: 600; letter-spacing: 1px; }
.sandbox-panel .woc-formula { font-size: 11px; color: #999; margin-top: 8px; }
.sandbox-panel .woc-warning { background: #fef2f2; border-left: 3px solid #dc3545; border-radius: 4px; padding: 10px; font-size: 12px; color: #333; line-height: 1.4; }

/* ============================================
   MAP REPORT
   ============================================ */
.sandbox-panel.sandbox-panel-map { width: 420px; }
.sandbox-panel .map-violation { background: #fff3f3; border-left: 3px solid #dc3545; border-radius: 4px; padding: 10px; margin-bottom: 10px; }
.sandbox-panel .map-violation-header { font-size: 12px; color: #dc3545; font-weight: 600; margin-bottom: 6px; }
.sandbox-panel .map-violation-detail { font-size: 12px; }
.sandbox-panel .map-enforce-btn { display: block; width: 100%; margin-top: 8px; background: #dc3545; color: #fff; border: 1px solid #dc3545; border-radius: 6px; padding: 8px 12px; font-size: 11px; font-weight: 600; cursor: pointer; text-align: center; }
.sandbox-panel .map-enforce-btn:hover { background: #b91c1c; }
.sandbox-panel .map-ok { background: #f0fff4; border-left: 3px solid #28a745; border-radius: 4px; padding: 10px; font-size: 12px; margin-bottom: 10px; }
.sandbox-panel .map-marketplace-list { font-size: 12px; }
.sandbox-panel .map-mp-row { padding: 4px 0; display: flex; align-items: center; gap: 6px; }
.sandbox-panel .map-report-btn { width: 100%; background: #232f3e; color: #fff; border: none; border-radius: 6px; padding: 10px; font-size: 12px; font-weight: 600; cursor: pointer; }
.sandbox-panel .map-report-btn:hover { background: #37475a; }
