/* =====================================
   6666 PERFUMES — LATEST PRODUCTS CAROUSEL
   Version 2.3
   Desktop + Mobile
===================================== */

.lp6666-wrapper{
    background:#000;
    border-radius:28px;
    padding:50px 40px;
    margin:40px auto;
    max-width:1250px;
    text-align:center;
    box-sizing:border-box;
}

.lp6666-title{
    display:inline-block;
    padding:14px 34px;
    margin-bottom:40px;
    color:#d4af37;
    font-size:16px;
    letter-spacing:3px;
    font-weight:600;
    background:#000;
    border-radius:40px;
    border:1px solid rgba(212,175,55,.35);
}

.lp6666-mobile-heading,
.lp6666-mobile-dots,
.lp6666-mobile-hint,
.lp6666-arrow,
.lp6666-new-badge{
    display:none;
}

.lp6666-carousel-shell{position:relative;}

.lp6666-carousel{
    display:flex;
    gap:24px;
    overflow-x:auto;
    padding:0 2px 10px;
    scroll-behavior:smooth;
    scrollbar-width:none;
}

.lp6666-carousel::-webkit-scrollbar{display:none;}

.lp6666-card{
    flex:0 0 260px;
    background:#050505;
    border-radius:22px;
    border:1px solid rgba(212,175,55,.35);
    padding:18px;
    text-align:center;
    transition:transform .2s ease;
    box-sizing:border-box;
}

.lp6666-card:hover{transform:translateY(-4px);}

.lp6666-image{
    display:block;
    position:relative;
    border-radius:16px;
    overflow:hidden;
    margin-bottom:14px;
    background:#0b0b0b;
}

.lp6666-image img{
    width:100%;
    height:200px;
    object-fit:contain;
    display:block;
}

.lp6666-name{color:#fff;font-size:14px;line-height:1.4;}
.lp6666-price{color:#d4af37;font-weight:600;font-size:14px;margin-top:4px;}

.lp6666-card .button,
.lp6666-card .add_to_cart_button{
    display:inline-block;
    margin-top:14px;
    padding:12px 24px;
    background:#d4af37;
    color:#000;
    border:none;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    text-decoration:none;
    cursor:pointer;
}

/* =====================================
   MOBILE
   One product at a time
   Centered heading/text
   Auto + arrows + dots + swipe
===================================== */
@media (max-width:768px){

    .lp6666-wrapper{
        width:calc(100% - 20px);
        padding:18px 10px 15px;
        margin:18px auto;
        border-radius:18px;
        background:#000;
    }

    .lp6666-desktop-title{display:none;}

    .lp6666-mobile-heading{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        text-align:center;
        margin:0 0 12px;
    }

    .lp6666-kicker{
        font-size:8px;
        line-height:1;
        font-weight:800;
        letter-spacing:1.5px;
        color:#d4af37;
        margin-bottom:4px;
        text-align:center;
    }

    .lp6666-title-mobile{
        color:#fff;
        font-size:21px;
        line-height:1;
        font-weight:900;
        letter-spacing:.1px;
        text-align:center;
    }

    .lp6666-subtitle-mobile{
        color:#aaa;
        font-size:10px;
        line-height:1.2;
        margin-top:5px;
        text-align:center;
    }

    .lp6666-view-all-mobile{
        display:inline-block;
        margin-top:7px;
        color:#d4af37;
        text-decoration:none;
        font-size:8px;
        line-height:1;
        font-weight:800;
        border-bottom:1px solid rgba(212,175,55,.75);
        padding-bottom:3px;
        text-align:center;
    }

    .lp6666-carousel-shell{position:relative;}

    .lp6666-carousel{
        gap:0;
        padding:0;
        overflow:hidden;
        scroll-snap-type:none;
        touch-action:pan-y;
        width:100%;
    }

    .lp6666-card{
        flex:0 0 100%;
        width:100%;
        scroll-snap-align:none;
        padding:12px;
        border-radius:15px;
        transition:none;
        text-align:center;
        box-sizing:border-box;
    }

    .lp6666-card:hover{transform:none;}

    .lp6666-image{
        margin-bottom:10px;
        border-radius:12px;
    }

    .lp6666-image img{
        height:205px;
        width:100%;
        object-fit:contain;
    }

    .lp6666-new-badge{
        display:block;
        position:absolute;
        z-index:3;
        top:9px;
        left:9px;
        background:#d4af37;
        color:#050505;
        padding:5px 8px;
        border-radius:4px;
        font-size:7px;
        line-height:1;
        font-weight:900;
        letter-spacing:.5px;
    }

    .lp6666-name{
        width:100%;
        color:#fff;
        font-size:15px;
        line-height:1.25;
        margin-top:2px;
        text-align:center;
    }

    .lp6666-price{
        color:#d4af37;
        font-size:14px;
        margin-top:5px;
        text-align:center;
    }

    .lp6666-card .button,
    .lp6666-card .add_to_cart_button{
        width:100%;
        padding:11px 12px;
        font-size:10px;
        margin-top:10px;
        border-radius:7px;
        box-sizing:border-box;
        text-align:center;
    }

    .lp6666-arrow{
        display:flex;
        position:absolute;
        z-index:8;
        top:43%;
        width:29px;
        height:29px;
        padding:0;
        align-items:center;
        justify-content:center;
        border:1px solid #d4af37;
        border-radius:50%;
        background:rgba(0,0,0,.82);
        color:#d4af37;
        font-size:22px;
        line-height:20px;
        cursor:pointer;
    }

    .lp6666-prev{left:7px;}
    .lp6666-next{right:7px;}

    .lp6666-mobile-dots{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:5px;
        margin-top:9px;
        min-height:5px;
    }

    .lp6666-mobile-dots button{
        width:5px;
        height:5px;
        padding:0;
        border:0;
        border-radius:50%;
        background:#777;
        cursor:pointer;
    }

    .lp6666-mobile-dots button.active{
        width:17px;
        border-radius:5px;
        background:#d4af37;
    }

    .lp6666-mobile-hint{
        display:block;
        margin-top:5px;
        color:#777;
        font-size:7px;
        line-height:1;
        letter-spacing:1px;
        text-align:center;
    }
}

@media (max-width:360px){
    .lp6666-wrapper{
        width:calc(100% - 14px);
        padding-left:7px;
        padding-right:7px;
    }

    .lp6666-image img{height:180px;}
    .lp6666-title-mobile{font-size:19px;}
}
