/* CigaretaJinak – TEST liquid carousel v7 */

.cj-liquids-box{
    width:100%;
    box-sizing:border-box;
    clear:both;
    margin:24px 0 26px;
    padding:16px;
    border:1px solid #e3e3e3;
    border-radius:8px;
    background:#fff;
}

.cj-liquids-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:12px;
    margin-bottom:12px;
}

.cj-liquids-title{
    font-size:14px;
    line-height:1.25;
    font-weight:700;
    color:#222;
}

.cj-liquids-subtitle{
    margin-top:2px;
    font-size:11px;
    line-height:1.35;
    color:#888;
}

.cj-liquids-nav{
    display:flex;
    gap:6px;
}

.cj-liquids-arrow{
    width:30px;
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #dedede;
    border-radius:8px;
    background:#fff;
    color:#333;
    font-size:22px;
    line-height:1;
    cursor:pointer;
}

.cj-liquids-arrow:hover{
    border-color:#6ccc43;
    background:#f9fff6;
}

.cj-liquids-viewport{
    overflow-x:auto;
    overflow-y:hidden;
    scroll-behavior:smooth;
    scrollbar-width:none;
    -ms-overflow-style:none;
}

.cj-liquids-viewport::-webkit-scrollbar{
    display:none;
}

.cj-liquids-track{
    display:flex;
    gap:10px;
    width:100%;
    scroll-snap-type:x mandatory;
}

.cj-liquid-card{
    flex:0 0 calc((100% - 30px)/4);
    min-width:0;
    padding:10px;
    box-sizing:border-box;
    border:1px solid #dedede;
    border-radius:8px;
    background:#fff;
    scroll-snap-align:start;
    transition:border-color .15s ease,background-color .15s ease,transform .15s ease;
}

.cj-liquid-card:hover{
    border-color:#6ccc43;
    background:#fcfff9;
    transform:translateY(-1px);
}

.cj-liquid-card.is-selected{
    border-color:#6ccc43;
    background:#f4fff0;
    box-shadow:inset 0 0 0 1px #6ccc43;
}

.cj-liquid-image{
    height:110px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

.cj-liquid-image img{
    display:block;
    max-width:105px;
    max-height:105px;
    width:auto;
    height:auto;
    object-fit:contain;
}

.cj-liquid-name{
    min-height:32px;
    margin-top:7px;
    font-size:12px;
    line-height:1.25;
    font-weight:700;
    color:#222;
    text-align:center;
}

.cj-liquid-price{
    margin-top:5px;
    font-size:11px;
    line-height:1.2;
    font-weight:700;
    color:#38bc51;
    text-align:center;
}

.cj-liquid-strengths{
    margin-top:8px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:5px;
}

.cj-liquid-strength{
    min-width:44px;
    padding:5px 7px;
    border:1px solid #dcdcdc;
    border-radius:6px;
    background:#fff;
    color:#444;
    font-family:inherit;
    font-size:10px;
    line-height:1;
    font-weight:700;
    cursor:pointer;
}

.cj-liquid-strength:hover{
    border-color:#6ccc43;
    background:#f8fff5;
}

.cj-liquid-strength.is-selected{
    border-color:#6ccc43;
    background:#eaffdf;
    color:#222;
}

.cj-liquid-qty{
    display:none;
    align-items:center;
    justify-content:center;
    gap:7px;
    margin-top:8px;
}

.cj-liquid-card.is-selected .cj-liquid-qty{
    display:flex;
}

.cj-liquid-qty-btn{
    width:22px;
    height:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #d7d7d7;
    border-radius:6px;
    background:#fff;
    color:#333;
    font-size:14px;
    line-height:1;
    font-weight:700;
    cursor:pointer;
}

.cj-liquid-qty-btn:hover{
    border-color:#6ccc43;
    background:#f8fff5;
}

.cj-liquid-qty-value{
    min-width:14px;
    font-size:11px;
    line-height:1;
    font-weight:800;
    color:#222;
    text-align:center;
}


.cj-liquid-add{
    width:100%;
    margin-top:8px;
    padding:7px 8px;
    border:1px solid #d9d9d9;
    border-radius:6px;
    background:#f7f7f7;
    color:#999;
    font-family:inherit;
    font-size:10px;
    line-height:1.15;
    font-weight:700;
    cursor:not-allowed;
    transition:border-color .15s ease,background-color .15s ease,color .15s ease;
}

.cj-liquid-card.is-selected .cj-liquid-add:not(:disabled){
    border-color:#38bc51;
    background:#38bc51;
    color:#fff;
    cursor:pointer;
}

.cj-liquid-card.is-selected .cj-liquid-add:not(:disabled):hover{
    background:#2da843;
}

.cj-liquid-add.is-loading{
    opacity:.7;
    cursor:wait!important;
}

.cj-liquid-add.is-added{
    border-color:#6ccc43!important;
    background:#eaffdf!important;
    color:#267a2f!important;
    cursor:default!important;
}

.cj-liquids-status{
    margin-top:9px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    font-size:10px;
    line-height:1.3;
    color:#999;
}

.cj-liquids-extra-price{
    white-space:nowrap;
    color:#999;
}

@media(min-width:1200px){
    .cj-liquid-card{
        flex-basis:calc((100% - 40px)/5);
    }
}

@media(min-width:1550px){
    .cj-liquid-card{
        flex-basis:calc((100% - 50px)/6);
    }
}

@media(max-width:1199px){
    .cj-liquid-card{
        flex-basis:calc((100% - 20px)/3);
    }
}

@media(max-width:767px){
    .cj-liquids-box{
        margin:14px 0 18px;
        padding:12px;
    }

    .cj-liquids-subtitle{
        font-size:10px;
    }

    .cj-liquids-arrow{
        width:28px;
        height:28px;
    }

    .cj-liquid-card{
        flex-basis:62%;
        min-width:140px;
        padding:9px;
    }

    .cj-liquid-image{
        height:88px;
    }

    .cj-liquid-image img{
        max-width:84px;
        max-height:84px;
    }

    .cj-liquid-name{
        font-size:10px;
    }
}

/* v6 – carousel se na konci vrací na začátek */
