/**
 * =========================================================
 * Space Vanta
 * List Collection
 *
 * Product Panel
 *
 * Version: V0.11-B
 *
 * Responsibility:
 * - Panel visibility
 * - Active panel state
 *
 * Does NOT handle:
 * - Product card styling
 * - Product image styling
 * - Product grid columns
 * - Hover effects
 * =========================================================
 */


/* =========================================================
   PANEL CONTAINER
   ========================================================= */

.sv-list-collection__product-panels {
    width: 100%;
}


/* =========================================================
   PANEL
   ========================================================= */

.sv-list-collection__product-panel {
    width: 100%;
}


/* =========================================================
   HIDE INACTIVE PANELS
   Only after JavaScript initialization
   ========================================================= */

.sv-list-collection__product-panels[data-panel-switching-ready="true"] .sv-list-collection__product-panel:not(.is-active) {
    display: none;
}


/* =========================================================
   ACTIVE PANEL
   ========================================================= */

.sv-list-collection__product-panel.is-active {
    display: block;
}