/* ================================================
   TV PAKKE — Filter & Cards CSS
   File: filter-table.css
   Enqueued via: functions.php → wp_enqueue_scripts
   ================================================ */

/* ── Category toggle rows ──────────────────────────────────────────── */
.tvpakke-cat-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    gap: 8px;
    cursor: pointer;
}

.tvpakke-cat-logo {
    height: 32px;
    max-width: 110px;
    object-fit: contain;
    object-position: left center;
    display: block;
    transition: opacity .2s;
}

.tvpakke-cat-toggle-row[data-active="false"] .tvpakke-cat-logo {
    opacity: .35;
    filter: grayscale(60%);
}

.tvpakke-cat-logo-toggle {
    flex-shrink: 0;
}

/* ── Utility ───────────────────────────────────────────────────────── */
.tvpakke-hidden {
    display: none !important;
}

/* ── Sticky bottom banner ──────────────────────────────────────────── */
#tvpakke-sticky-banner.tvpakke-sticky-loading {
    display: none !important;
}

#tvpakke-sticky-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    border-top: 2px solid #0fa4af;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, .12);
    padding: 0 16px;
    transition: transform .35s ease, opacity .35s ease;
    transform: translateY(0);
    opacity: 1;
}

#tvpakke-sticky-banner.tvpakke-sticky-hidden {
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
}

.tvpakke-sticky-inner {
    max-width: 960px;
    margin: 0 auto;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 6px 0 !important;
}

.tvpakke-sticky-inner .grids {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.tvpakke-sticky-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 18px;
    line-height: 1;
    color: #6b7280;
    cursor: pointer;
    padding: 4px 6px;
    z-index: 1;
}

.tvpakke-sticky-close:hover {
    color: #111;
}

@media (max-width: 768px) {
    #tvpakke-sticky-banner {
        display: none !important;
    }
}