/* ================================================================
   LeisureShop Channels — nav-menu.css
   Menu a tendina canali per il frontend
   ================================================================ */

.lsc-nav-dropdown-wrap {
    position: relative;
    display: inline-block;
}

/* Trigger button */
.lsc-nav-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 600;
    color: inherit;
    border-radius: 8px;
    transition: background 0.15s;
    white-space: nowrap;
}
.lsc-nav-trigger:hover { background: rgba(255,255,255,0.1); }
.lsc-nav-trigger[aria-expanded="true"] .lsc-nav-caret { transform: rotate(180deg); }
.lsc-nav-caret { font-size: 12px; transition: transform 0.2s; display: inline-block; }
.lsc-nav-trigger-icon { font-size: 18px; }

/* Dropdown */
.lsc-nav-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 240px;
    background: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    overflow: hidden;
    z-index: 9999;
    border: 1px solid rgba(255,255,255,0.08);
    animation: lsc-dropdown-in 0.15s ease;
}
@keyframes lsc-dropdown-in {
    from { opacity:0; transform:translateY(-6px); }
    to   { opacity:1; transform:translateY(0); }
}
.lsc-nav-dropdown.lsc-open { display: block; }

/* Separator */
.lsc-nav-separator { height: 1px; background: rgba(255,255,255,0.08); margin: 4px 0; }

/* Items */
.lsc-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    transition: background 0.12s, color 0.12s;
    cursor: pointer;
}
.lsc-nav-item:hover { background: rgba(255,255,255,0.07); color: #fff; }
.lsc-nav-item--all { color: #fff; font-weight: 600; font-size: 13px; }

.lsc-nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.lsc-nav-item-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}
.lsc-nav-item-icon { font-size: 16px; flex-shrink: 0; }
.lsc-nav-item-label { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lsc-nav-item-count {
    font-size: 11px;
    color: #555;
    background: rgba(255,255,255,0.05);
    padding: 1px 6px;
    border-radius: 10px;
    white-space: nowrap;
}
.lsc-nav-empty { color: #555; font-size:13px; padding:12px 16px; }

/* Tema chiaro (se il sito ha sfondo bianco) */
.lsc-theme-light .lsc-nav-dropdown {
    background: #fff;
    border-color: #e0e0e0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.lsc-theme-light .lsc-nav-item { color: #333; }
.lsc-theme-light .lsc-nav-item:hover { background: #f5f5f5; color: #000; }
.lsc-theme-light .lsc-nav-separator { background: #eee; }
.lsc-theme-light .lsc-nav-item-logo { filter: none; }

/* ── Watermark overlay ────────────────────────────────────────── */
.lsc-player-outer {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.lsc-watermark {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 10;
    pointer-events: none;
    user-select: none;
}
