/*
|--------------------------------------------------------------------------
| Little Dhagaa Customer Reviews Pro
|--------------------------------------------------------------------------
*/

/* Review Grid */

.ldcr-review-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin:40px 0;
}

/* Review Card */

.ldcr-review-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s ease;
}

.ldcr-review-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(0,0,0,.12);
}

/* Image */

.ldcr-image-wrap{
    position:relative;
    overflow:hidden;
}

.ldcr-image-wrap img{
    width:100%;
    height:300px;
    object-fit:cover;
    display:block;
}

/* Verified Badge */

.ldcr-verified-badge{
    position:absolute;
    top:15px;
    right:15px;
    background:#16a34a;
    color:#fff;
    padding:8px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

/* Card Content */

.ldcr-card-content{
    padding:22px;
}

/* Customer Name */

.ldcr-name{
    font-size:22px;
    font-weight:700;
    margin:0 0 12px;
}

/* Rating */

.ldcr-stars{
    margin-bottom:18px;
    color:#ffb400;
    font-size:20px;
}

/* Product */

.ldcr-product-name span{
    display:block;
    color:#888;
    font-size:13px;
}

.ldcr-product-name h4{
    margin:5px 0 18px;
    font-size:18px;
    font-weight:600;
}

/* Review */

.ldcr-review-text{
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}

.ldcr-read-more{
    color:#0d6efd;
    font-weight:600;
    text-decoration:none;
}

/* Footer */

.ldcr-location,
.ldcr-date{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:12px;
    color:#666;
    font-size:14px;
}

/* Icons (Emoji Replacement) */

.location-icon::before{
    content:"•";
    font-size:18px;
    color:#16a34a;
}

.date-icon::before{
    content:"•";
    font-size:18px;
    color:#16a34a;
}

.ldcr-icon{
    width:18px;
    text-align:center;
    color:#16a34a;
}

/* Button */

.ldcr-product-btn{
    display:inline-block;
    width:100%;
    text-align:center;
    background:#000;
    color:#fff;
    text-decoration:none;
    padding:12px;
    border-radius:8px;
    font-weight:600;
    margin-top:10px;
    transition:.3s;
}

.ldcr-product-btn:hover{
    background:#16a34a;
}

/* No Reviews */

.ldcr-no-reviews{
    text-align:center;
    padding:50px;
    background:#fafafa;
    border-radius:12px;
}

/* Tablet */

@media(max-width:991px){

    .ldcr-review-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */

@media(max-width:767px){

    .ldcr-review-grid{
        grid-template-columns:1fr;
    }

    .ldcr-image-wrap img{
        height:250px;
    }

}

/* Lightbox */

.ldcr-lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.85);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.ldcr-lightbox-content{
    position:relative;
    max-width:90%;
    max-height:90%;
}

.ldcr-lightbox-content img{
    max-width:100%;
    max-height:85vh;
    border-radius:10px;
}

.ldcr-lightbox-close{
    position:absolute;
    top:-15px;
    right:-15px;
    width:35px;
    height:35px;
    line-height:35px;
    text-align:center;
    background:#fff;
    color:#000;
    border-radius:50%;
    font-size:22px;
    font-weight:bold;
    cursor:pointer;
}

.ldcr-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:18px;
    margin-right:6px;
    color:#16a34a;
    font-size:16px;
}