
.npl-products-carousel{
    position:relative;
    --npl-slides:6;
    --npl-gap:14px;
}
.npl-products-carousel-viewport{
    overflow:hidden;
}
.npl-dyn-products-track{
    display:flex;
    gap:var(--npl-gap);
    transition:transform .45s cubic-bezier(.22,.61,.36,1);
    will-change:transform;
}
.npl-dyn-product-card{
    position:relative;
    display:flex;
    flex:0 0 calc((100% - (var(--npl-slides) - 1) * var(--npl-gap)) / var(--npl-slides));
    flex-direction:column;
    min-width:0;
    min-height:565px;
    overflow:hidden;
    border:1px solid rgba(200,146,62,.43);
    border-radius:2px;
    background:radial-gradient(circle at 50% 25%,rgba(26,103,223,.18),transparent 34%),rgba(3,19,43,.76);
    transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
    box-sizing:border-box;
}
.npl-dyn-product-card:hover{
    transform:translateY(-5px);
    border-color:#d59d43;
    box-shadow:0 20px 42px rgba(0,0,0,.28);
}
.npl-dyn-best-seller{
    position:absolute;
    z-index:4;
    top:8px;
    left:8px;
    padding:5px 8px;
    background:linear-gradient(110deg,#bc8434,#e1b762);
    color:#091322;
    font-family:Montserrat,Arial,sans-serif;
    font-size:8px;
    line-height:1;
    font-weight:800;
}
.npl-dyn-product-image-link{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:330px;
    padding:26px 20px 5px;
}
.npl-dyn-product-image{
    display:block!important;
    width:100%!important;
    height:285px!important;
    margin:0!important;
    object-fit:contain!important;
}
.npl-dyn-product-content{
    display:flex;
    flex:1;
    flex-direction:column;
    padding:4px 18px 18px;
    text-align:center;
}
.npl-dyn-product-title{
    margin:0 0 7px!important;
    padding:0!important;
    font-family:Cinzel,Georgia,serif!important;
    font-size:18px!important;
    line-height:1.22em!important;
    font-weight:500!important;
    text-transform:uppercase!important;
}
.npl-dyn-product-title a{color:#f5f1e9!important}
.npl-dyn-strength{
    min-height:22px;
    margin:0 0 10px;
    color:#e0a745;
    font-family:Cinzel,Georgia,serif;
    font-size:14px;
    line-height:1.25em;
    text-transform:uppercase;
}
.npl-dyn-card-description{
    min-height:54px;
    color:#d1d8e2;
    font-family:Montserrat,Arial,sans-serif;
    font-size:11px;
    line-height:1.55em;
}
.npl-dyn-product-ornament{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    height:24px;
    margin:3px 0 4px;
    color:#d59d43;
    font-size:8px;
}
.npl-dyn-product-ornament:before,
.npl-dyn-product-ornament:after{
    content:"";
    width:28px;
    height:1px;
    background:#d59d43;
}
.npl-dyn-price{
    min-height:35px;
    margin:0 0 17px;
    color:#f5f1e9;
    font-family:Cinzel,Georgia,serif;
    font-size:23px;
    line-height:1.2em;
}
.npl-dyn-price del{
    margin-right:5px;
    color:#8d99aa;
    font-size:13px;
}
.npl-dyn-price ins{
    color:#f5f1e9;
    text-decoration:none;
}
.npl-dyn-add-cart{
    display:flex!important;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:43px;
    margin:auto 0 0!important;
    padding:8px 5px!important;
    border:1px solid #d59d43!important;
    border-radius:2px!important;
    background:transparent!important;
    color:#dca64c!important;
    font-family:Montserrat,Arial,sans-serif!important;
    font-size:10px!important;
    line-height:1.2em!important;
    font-weight:700!important;
    letter-spacing:.055em!important;
    text-transform:uppercase!important;
    box-sizing:border-box;
}
.npl-products-carousel-nav{
    display:flex;
    justify-content:flex-end;
    gap:8px;
    margin:0 0 14px;
}
.npl-carousel-arrow{
    appearance:none;
    width:38px;
    height:38px;
    border:1px solid rgba(213,157,67,.7);
    background:#04162f;
    color:#d59d43;
    font-size:27px;
    line-height:1;
    cursor:pointer;
}
.npl-carousel-arrow:hover{
    background:#d59d43;
    color:#07101e;
}
.npl-carousel-arrow:disabled{
    opacity:.3;
    cursor:default;
}
.npl-carousel-dots{
    display:flex;
    justify-content:center;
    gap:6px;
    margin-top:15px;
}
.npl-carousel-dot{
    width:6px;
    height:6px;
    padding:0;
    border:0;
    border-radius:50%;
    background:rgba(213,157,67,.35);
}
.npl-carousel-dot.is-active{
    background:#d59d43;
}
.npl-no-featured-products{
    padding:30px;
    border:1px dashed rgba(200,146,62,.5);
    color:#fff;
    text-align:center;
}
@media(max-width:1100px){
    .npl-products-carousel{--npl-slides:3}
}
@media(max-width:767px){
    .npl-products-carousel{
        --npl-slides:1;
        --npl-gap:10px;
    }
    .npl-dyn-product-card{min-height:540px}
    .npl-products-carousel-nav{justify-content:center}
}
