/* ==========================================================================
   Action Shelves Arena - 100% Light High-Contrast Stylesheet
   Engine: Netflix-Style Category Shelves
   ========================================================================== */

:root[data-theme="shelf_action"],
body.theme-shelf_action {
    --th-primary: #b91c1c;
    --th-secondary: #dc2626;
    --th-accent: #0284c7;
    --th-bg-main: #fff1f2;
    --th-radius: 12px;
    background-color: var(--th-bg-main) !important;
    color: #0f172a !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body.theme-shelf_action h1,
body.theme-shelf_action h2,
body.theme-shelf_action h3,
body.theme-shelf_action h4,
body.theme-shelf_action h5,
body.theme-shelf_action h6 {
    color: #0f172a !important;
    font-weight: 800 !important;
}

body.theme-shelf_action p,
body.theme-shelf_action span,
body.theme-shelf_action li {
    color: #334155;
}

body.theme-shelf_action a {
    color: #b91c1c;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .th-shelf_action-layout {
        grid-template-columns: 1fr !important;
    }
    .th-shelf_action-sidebar {
        position: static !important;
        margin-bottom: 20px !important;
    }
    .th-shelf_action-bento-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 768px) {
    .th-shelf_action-bento-grid {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto !important;
    }
    .th-shelf_action-bento-grid > div {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        aspect-ratio: 16/10 !important;
    }
}
