:root{
    --pj0-bundle-red:#e6002e;
    --pj0-bundle-bg:#0d0d0d;
    --pj0-bundle-border:#303030;
}

.pj0-bundle-add{
    appearance:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:44px;
    padding:11px 16px;
    border:1px solid var(--pj0-bundle-red);
    background:transparent;
    color:var(--pj0-bundle-red);
    border-radius:0;
    font:inherit;
    font-size:12px;
    line-height:1.1;
    font-weight:900;
    letter-spacing:.7px;
    text-transform:uppercase;
    cursor:pointer;
    transition:.2s ease;
}

.pj0-bundle-add:hover,
.pj0-bundle-add.is-selected{
    background:var(--pj0-bundle-red);
    color:#fff;
}

.pj0-bundle-add.is-selected:before{
    content:"✓";
    font-size:14px;
}

.pj0-bundle-offer{
    margin:0 0 24px;
    padding:18px;
    background:linear-gradient(135deg, rgba(230,0,46,.12), rgba(10,10,10,.96) 48%);
    border:1px solid #303030;
    border-left:4px solid var(--pj0-bundle-red);
}

.pj0-bundle-offer-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:20px;
    margin-bottom:14px;
}

.pj0-bundle-offer-head strong{
    display:block;
    color:#fff;
    font-size:16px;
    line-height:1.2;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.pj0-bundle-offer-head span{
    display:block;
    margin-top:5px;
    color:#aaa;
    font-size:13px;
}

.pj0-bundle-price-row{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:14px;
}

.pj0-bundle-price-row span{
    padding:7px 9px;
    border:1px solid #333;
    background:#101010;
    color:#ddd;
    font-size:12px;
    font-weight:800;
}

.pj0-bundle-price-row b{
    color:#fff;
}

.pj0-bundle-choice-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    margin:0 0 38px;
}

.pj0-bundle-choice{
    position:relative;
    display:flex;
    min-height:160px;
    padding:24px;
    border:1px solid #2c2c2c;
    background:#101010;
    color:#fff;
    text-decoration:none;
    overflow:hidden;
}

.pj0-bundle-choice--digital{
    background:linear-gradient(135deg, rgba(230,0,46,.18), #101010 55%);
}

.pj0-bundle-choice-content{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
}

.pj0-bundle-choice-kicker{
    margin-bottom:8px;
    color:var(--pj0-bundle-red);
    font-size:11px;
    font-weight:900;
    letter-spacing:1.4px;
    text-transform:uppercase;
}

.pj0-bundle-choice strong{
    margin-bottom:8px;
    color:#fff;
    font-size:24px;
    line-height:1.05;
    text-transform:uppercase;
}

.pj0-bundle-choice small{
    color:#aaa;
    font-size:13px;
    line-height:1.45;
}

.pj0-bundle-choice-button{
    display:inline-flex;
    margin-top:16px;
    padding:10px 14px;
    border:1px solid var(--pj0-bundle-red);
    color:var(--pj0-bundle-red);
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.7px;
}

.pj0-bundle-choice:hover .pj0-bundle-choice-button{
    background:var(--pj0-bundle-red);
    color:#fff;
}

.pj0-bundle-drawer{
    position:fixed;
    left:18px;
    bottom:18px;
    z-index:9998;
    width:min(390px, calc(100vw - 36px));
    background:rgba(10,10,10,.98);
    border:1px solid var(--pj0-bundle-red);
    box-shadow:0 18px 60px rgba(0,0,0,.55);
    color:#fff;
}

.pj0-bundle-drawer-toggle{
    appearance:none;
    width:100%;
    padding:13px 15px;
    border:0;
    border-bottom:1px solid #2c2c2c;
    background:var(--pj0-bundle-red);
    color:#fff;
    text-align:left;
    cursor:pointer;
    font:inherit;
}

.pj0-bundle-drawer-kicker{
    display:block;
    margin-bottom:3px;
    font-size:10px;
    font-weight:900;
    letter-spacing:1.4px;
}

.pj0-bundle-drawer-toggle strong{
    display:block;
    font-size:16px;
    line-height:1.1;
    text-transform:uppercase;
}

.pj0-bundle-drawer-body{
    padding:14px;
}

.pj0-bundle-drawer.is-collapsed .pj0-bundle-drawer-body{
    display:none;
}

.pj0-bundle-progress{
    margin-bottom:11px;
    color:#ddd;
    font-size:12px;
    line-height:1.4;
}

.pj0-bundle-tiers{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:6px;
    margin-bottom:11px;
}

.pj0-bundle-tiers span{
    padding:7px 6px;
    border:1px solid #303030;
    background:#141414;
    color:#999;
    text-align:center;
    font-size:10px;
    line-height:1.25;
}

.pj0-bundle-tiers b{
    display:block;
    color:#ddd;
    font-size:11px;
}

.pj0-bundle-tiers span.is-active{
    border-color:var(--pj0-bundle-red);
    color:#fff;
}

.pj0-bundle-tiers span.is-active b,
.pj0-bundle-tiers span.is-complete b{
    color:#fff;
}

.pj0-bundle-selected{
    max-height:135px;
    overflow:auto;
    margin:0 0 11px;
}

.pj0-bundle-selected:empty{
    display:none;
}

.pj0-bundle-selected-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    padding:6px 0;
    border-bottom:1px solid #242424;
    font-size:11px;
}

.pj0-bundle-selected-row span{
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.pj0-bundle-selected-row button{
    appearance:none;
    flex:0 0 24px;
    width:24px;
    height:24px;
    padding:0;
    border:1px solid #333;
    background:#111;
    color:#fff;
    font-size:18px;
    cursor:pointer;
}

.pj0-bundle-drawer-actions{
    display:grid;
    grid-template-columns:1fr 1.3fr;
    gap:8px;
}

.pj0-bundle-more,
.pj0-bundle-checkout{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:9px 10px;
    border-radius:0;
    font:inherit;
    font-size:10px;
    line-height:1.2;
    font-weight:900;
    text-transform:uppercase;
    text-decoration:none;
    text-align:center;
    cursor:pointer;
}

.pj0-bundle-more{
    border:1px solid #444;
    background:#111;
    color:#fff;
}

.pj0-bundle-checkout{
    border:1px solid var(--pj0-bundle-red);
    background:var(--pj0-bundle-red);
    color:#fff;
}

.pj0-bundle-checkout:disabled{
    border-color:#333;
    background:#1b1b1b;
    color:#666;
    cursor:not-allowed;
}

.pj0-bundle-clear{
    appearance:none;
    display:block;
    margin:9px 0 0 auto;
    padding:0;
    border:0;
    background:transparent;
    color:#777;
    font:inherit;
    font-size:10px;
    text-decoration:underline;
    cursor:pointer;
}


.pj0-bundle-drawer.is-hidden{
    display:none !important;
}

.pj0-bundle-drawer-toggle{
    position:relative;
    padding-right:44px;
}

.pj0-bundle-drawer-toggle::after{
    content:'−';
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    font-size:23px;
    line-height:1;
    font-weight:400;
}

.pj0-bundle-drawer.is-collapsed{
    width:min(290px, calc(100vw - 36px));
}

.pj0-bundle-drawer.is-collapsed .pj0-bundle-drawer-toggle{
    padding-top:9px;
    padding-bottom:9px;
    border-bottom:0;
}

.pj0-bundle-drawer.is-collapsed .pj0-bundle-drawer-kicker{
    display:none;
}

.pj0-bundle-drawer.is-collapsed .pj0-bundle-drawer-toggle strong{
    font-size:12px;
}

.pj0-bundle-drawer.is-collapsed .pj0-bundle-drawer-toggle::after{
    content:'+';
}

@media(max-width:760px){
    .pj0-bundle-choice-grid{
        grid-template-columns:1fr;
    }

    .pj0-bundle-drawer{
        left:10px;
        right:10px;
        bottom:10px;
        width:auto;
    }

    .pj0-bundle-offer-head{
        flex-direction:column;
    }
}

/* v2.0 – ruhiger Utility-Look für minimierte Bundle-/CD-Leisten */
:root{
    --pj0-utility-bg:#11110f;
    --pj0-utility-border:#81745b;
    --pj0-utility-accent:#c7aa72;
    --pj0-utility-text:#f3efe7;
    --pj0-utility-muted:#aaa293;
}

.pj0-bundle-drawer.is-collapsed{
    width:min(310px, calc(100vw - 36px));
    height:58px;
    min-height:58px;
    max-height:58px;
    background:var(--pj0-utility-bg);
    border:1px solid var(--pj0-utility-border);
    box-shadow:0 12px 35px rgba(0,0,0,.42);
    overflow:hidden;
}

.pj0-bundle-drawer.is-collapsed .pj0-bundle-drawer-toggle{
    height:100%;
    min-height:58px;
    display:flex;
    align-items:center;
    padding:0 48px 0 16px;
    background:var(--pj0-utility-bg);
    border:0;
    color:var(--pj0-utility-text);
}

.pj0-bundle-drawer.is-collapsed .pj0-bundle-drawer-toggle strong{
    font-size:13px;
    line-height:1.1;
    letter-spacing:.35px;
    color:var(--pj0-utility-text);
}

.pj0-bundle-drawer.is-collapsed .pj0-bundle-drawer-toggle::before{
    content:'SONG-BUNDLE';
    display:block;
    margin-right:9px;
    color:var(--pj0-utility-muted);
    font-size:10px;
    font-weight:800;
    letter-spacing:.8px;
}

.pj0-bundle-drawer.is-collapsed .pj0-bundle-drawer-toggle::after{
    content:'+';
    right:16px;
    color:var(--pj0-utility-accent);
    font-size:20px;
    font-weight:800;
}

.pj0-bundle-drawer.is-collapsed .pj0-bundle-drawer-kicker{
    display:none;
}

.pj0-bundle-drawer.is-collapsed .pj0-bundle-drawer-toggle:hover{
    background:#171713;
}

@media(max-width:600px){
    .pj0-bundle-drawer.is-collapsed{
        width:min(270px, calc(100vw - 24px));
        height:54px;
        min-height:54px;
        max-height:54px;
    }
    .pj0-bundle-drawer.is-collapsed .pj0-bundle-drawer-toggle{
        min-height:54px;
        padding-left:13px;
    }
    .pj0-bundle-drawer.is-collapsed .pj0-bundle-drawer-toggle::before{
        display:none;
    }
}


/* ===== v2.8.9 mobile archive: kompakte Optionen vor den Songs ===== */
.pj0-mobile-more-label,
.pj0-bundle-choice-mobile-icon,
.pj0-bundle-choice-mobile-title{
    display:none;
}

@media(max-width:760px){
    .pj0-mobile-more-label{
        display:block;
        margin:16px 0 8px;
        color:#a9a9a9;
        font-size:11px;
        font-weight:800;
        letter-spacing:.12em;
        text-transform:uppercase;
    }

    .pj0-bundle-choice-grid{
        display:grid;
        grid-template-columns:repeat(2,minmax(0,1fr)) !important;
        gap:8px !important;
        margin:0 0 16px !important;
    }

    .pj0-bundle-choice{
        min-height:48px !important;
        padding:0 !important;
        border:1px solid #303030 !important;
        background:#111 !important;
        box-shadow:none !important;
    }

    .pj0-bundle-choice--digital{
        border-color:#4a1c25 !important;
    }

    .pj0-bundle-choice-content{
        width:100%;
        min-height:48px;
        display:flex !important;
        align-items:center !important;
        justify-content:center !important;
        gap:7px !important;
        padding:8px 9px !important;
        box-sizing:border-box;
        text-align:center;
    }

    .pj0-bundle-choice-mobile-icon,
    .pj0-bundle-choice-mobile-title{
        display:inline-block;
    }

    .pj0-bundle-choice-mobile-icon{
        color:#ed0033;
        font-size:16px;
        line-height:1;
        flex:0 0 auto;
    }

    .pj0-bundle-choice--cd .pj0-bundle-choice-mobile-icon{
        color:#c7aa72;
        font-size:12px;
    }

    .pj0-bundle-choice-mobile-title{
        color:#f5f5f5;
        font-size:12px;
        line-height:1.15;
        font-weight:800;
        white-space:nowrap;
    }

    .pj0-bundle-choice-kicker,
    .pj0-bundle-choice strong,
    .pj0-bundle-choice small,
    .pj0-bundle-choice-button{
        display:none !important;
    }

    /* Weniger Luft vor dem ersten Song. */
    .pj0-song-grid{
        margin-top:0 !important;
    }
}

@media(max-width:380px){
    .pj0-bundle-choice-mobile-title{
        font-size:11px;
    }
    .pj0-bundle-choice-content{
        gap:5px !important;
        padding-left:6px !important;
        padding-right:6px !important;
    }
}


/* ===== v2.8.10 mobile archive – definitive compact cards ===== */
@media screen and (max-width:900px){
    .pj0-songs-archive .pj0-mobile-more-label{
        display:block !important;
        margin:14px 0 8px !important;
        color:#d7d7d7 !important;
        font-size:16px !important;
        font-weight:500 !important;
        letter-spacing:0 !important;
        text-transform:none !important;
    }

    .pj0-songs-archive .pj0-bundle-choice-grid{
        display:grid !important;
        grid-template-columns:repeat(2,minmax(0,1fr)) !important;
        gap:8px !important;
        margin:0 0 14px !important;
    }

    .pj0-songs-archive .pj0-bundle-choice{
        display:flex !important;
        min-height:54px !important;
        height:54px !important;
        padding:0 !important;
        margin:0 !important;
        border:1px solid #333 !important;
        background:#111 !important;
        box-shadow:none !important;
        overflow:hidden !important;
    }

    .pj0-songs-archive .pj0-bundle-choice-content{
        display:flex !important;
        flex-direction:row !important;
        align-items:center !important;
        justify-content:center !important;
        width:100% !important;
        height:100% !important;
        min-height:0 !important;
        gap:7px !important;
        padding:0 8px !important;
        box-sizing:border-box !important;
    }

    .pj0-songs-archive .pj0-bundle-choice-mobile-icon,
    .pj0-songs-archive .pj0-bundle-choice-mobile-title{
        display:inline-block !important;
        position:static !important;
        margin:0 !important;
        padding:0 !important;
    }

    .pj0-songs-archive .pj0-bundle-choice-mobile-icon{
        color:#f00035 !important;
        font-size:15px !important;
        line-height:1 !important;
    }

    .pj0-songs-archive .pj0-bundle-choice--cd .pj0-bundle-choice-mobile-icon{
        color:#c7aa72 !important;
        font-size:11px !important;
    }

    .pj0-songs-archive .pj0-bundle-choice-mobile-title{
        color:#f4f4f4 !important;
        font-size:12px !important;
        font-weight:700 !important;
        line-height:1.1 !important;
        white-space:nowrap !important;
    }

    .pj0-songs-archive .pj0-bundle-choice-kicker,
    .pj0-songs-archive .pj0-bundle-choice-content > strong,
    .pj0-songs-archive .pj0-bundle-choice-content > small,
    .pj0-songs-archive .pj0-bundle-choice-button{
        display:none !important;
    }

    .pj0-songs-archive .pj0-song-grid{
        margin-top:0 !important;
    }
}

@media screen and (max-width:370px){
    .pj0-songs-archive .pj0-bundle-choice-grid{
        grid-template-columns:1fr !important;
    }
}


/* ===== v2.8.11 mobile: Songs sofort + verschiebbare Utility-Leisten ===== */
@media screen and (max-width:900px){
    /* Auf Mobil keine Promo-Karten vor den Songs. */
    .pj0-songs-archive .pj0-mobile-more-label,
    .pj0-songs-archive .pj0-bundle-choice-grid{
        display:none !important;
    }

    .pj0-songs-archive .pj0-song-grid{
        margin-top:0 !important;
    }

    /* Bundle standardmäßig oberhalb der CD-Leiste, damit beide erreichbar sind. */
    .pj0-bundle-drawer.is-collapsed{
        left:10px;
        right:auto;
        bottom:76px;
        touch-action:none;
    }

    .pj0-bundle-drawer.is-collapsed .pj0-bundle-drawer-toggle{
        cursor:grab;
        touch-action:none;
        user-select:none;
        -webkit-user-select:none;
    }

    .pj0-bundle-drawer.is-collapsed.is-pj0-dragging .pj0-bundle-drawer-toggle{
        cursor:grabbing;
    }
}
