
/* 6666PERFUMES – Luxury Review Carousel Updated */

/* RESET */
.lrc-wrapper *{box-sizing:border-box}

/* WRAPPER */
.lrc-wrapper{
    width:100%;
    max-width:1400px;
    margin:60px auto;
    padding:30px 20px;
    background:radial-gradient(circle at top,#1a1a1a,#000 70%);
    border:2px solid #d4af37;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 30px 80px rgba(0,0,0,.85)
}

/* TITLE */
.lrc-title{
    text-align:center;
    font-size:26px;
    font-weight:700;
    color:#d4af37;
    letter-spacing:1px;
    margin-bottom:22px
}

/* VIEWPORT */
.lrc-viewport{overflow:hidden}

/* TRACK */
.lrc-track{
    display:flex;
    gap:18px;
    width:max-content;
    animation:lrc-scroll 70s linear infinite
}
.lrc-viewport:hover .lrc-track{animation-play-state:paused}

/* CARD */
.lrc-card{
    min-width:300px;
    max-width:300px;
    background:linear-gradient(180deg,#141414,#070707);
    border:1px solid rgba(212,175,55,.45);
    border-radius:20px;
    padding:18px;
    color:#fff;
    box-shadow:0 12px 35px rgba(0,0,0,.7);
    display:flex;
    flex-direction:column;
    justify-content:space-between
}

/* PERFUME NAME – UPDATED THEME COLOR */
.lrc-product-name{
    background:#000;
    border:1.5px solid #d4af37;
    color:#d4af37;
    font-size:14px;
    font-weight:700;
    letter-spacing:.6px;
    padding:6px 12px;
    border-radius:10px;
    display:inline-block;
    margin-bottom:10px;
    text-transform:uppercase;
    box-shadow:0 0 0 rgba(0,0,0,0)
}

/* TEXT */
.lrc-review-text{font-size:14.5px;line-height:1.55;color:#e6e6e6;margin-bottom:12px}

/* FOOTER */
.lrc-footer{display:flex;justify-content:space-between}
.lrc-name{color:#d4af37;font-size:14px}
.lrc-stars{color:#d4af37;font-size:13px}

/* ANIMATION */
@keyframes lrc-scroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* MOBILE – COMPACT VERSION */
@media(max-width:768px){

.lrc-wrapper{
    margin:25px 8px;
    padding:14px 10px;
    border-radius:18px
}

.lrc-title{font-size:17px;margin-bottom:12px}

.lrc-track{gap:10px;animation-duration:90s}

.lrc-card{
    min-width:190px;
    max-width:190px;
    padding:12px;
    border-radius:14px
}

.lrc-product-name{
    font-size:11px;
    padding:4px 8px;
    border-radius:8px;
    margin-bottom:6px
}

.lrc-review-text{font-size:12.5px;line-height:1.4}

.lrc-name,.lrc-stars{font-size:11.5px}

}



/* ===============================
   ULTRA COMPACT MOBILE WITH IMAGE
================================ */
@media (max-width: 768px) {

    .lrc-card{
        min-width:150px !important;
        max-width:150px !important;
        flex-direction:row;
        gap:6px;
        padding:8px;
        align-items:flex-start;
    }

    .lrc-product-img,
    .lrc-image,
    .lrc-thumb{
        width:36px !important;
        height:36px !important;
        border-radius:6px;
        object-fit:cover;
        border:1px solid #d4af37;
        flex-shrink:0;
    }

    .lrc-card-content{
        display:flex;
        flex-direction:column;
        gap:3px;
    }

    .lrc-product-name{
        font-size:9px;
        padding:2px 5px;
        border-radius:6px;
        margin-bottom:3px;
    }

    .lrc-review-text{
        font-size:10px;
        line-height:1.3;
        margin-bottom:4px;
    }

    .lrc-name,
    .lrc-stars{
        font-size:9px;
    }
}
