/* Basic plugin styles */
.faisal-average-rating { font-size: 1.2em; }
.faisal-review-card { padding: 1em; border: 1px solid #ddd; border-radius: 4px; }
.faisal-review-photo { max-width: 80px; margin-right: 10px; }
.faisal-add-review-button { display: inline-block; padding: 8px 12px; background: #000000; color: #fff; text-decoration: none; border-radius: 99px; }
.faisal-add-review-button:hover { background: #005177; }
.faisal-rating-filter-form { margin-bottom: 1em; }
.faisal-verified-badge { position: absolute; top: 8px; right: 8px; background: #28a745; color: #fff; padding: 2px 6px; font-size: 0.8em; border-radius: 3px; }
.faisal-doctor-info { display: flex; gap: 1em; align-items: flex-start; }
.faisal-doctor-feature img { max-width: 150px; height: auto; border-radius: 4px; }
.faisal-doctor-meta { flex:1; }
/* color picker injection when registered */


/* Code by jony*/
/* add review button */
/* ===== SWIPER WRAPPER ===== */
.faisal-swiper-container {
    padding: 60px 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* spacing between slides */
.faisal-swiper-container .swiper-slide {
    justify-content: center;
    transition: transform .4s ease, opacity .4s ease;
    opacity: 1;
}

/* CENTER ACTIVE CARD */
.faisal-swiper-container .swiper-slide-active {
    opacity: 1;
    transform: scale(1.05);
}

/* ===== REVIEW CARD ===== */
.faisal-review-card {
    position: relative;
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    max-width: 360px;
    min-height: 360px ;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all .35s ease;
    border: 1px solid transparent;
}

/* Active highlighted card */
.swiper-slide-active .faisal-review-card {
    border: 2px solid #2b7cff;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

/* ===== PROFILE IMAGE ===== */
.faisal-review-photo {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

/* ===== NAME ===== */
.faisal-review-card h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

/* ===== VERIFIED BADGE ===== */
.faisal-verified-badge {
    position: absolute;
    top: 22px;
    right: 20px;
    font-size: 13px;
    color: #ffffff;
    font-weight: 600;
}

/* ===== REVIEW TEXT ===== */
.faisal-review-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-top: 10px;
}

/* ===== REVIEW TITLE ===== */
.faisal-review-card strong {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: #111;
}

/* ===== STARS ===== */
.faisal-stars {
    color: #f5a623;
    font-size: 18px;
    letter-spacing: 2px;
    margin-top: 12px;
}

/* ===== PAGINATION DOTS ===== */
.faisal-swiper-container .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #cfd8dc;
    opacity: 1;
}

.faisal-swiper-container .swiper-pagination-bullet-active {
    background: #2b7cff;
    width: 22px;
    border-radius: 10px;
}

/* ===== ARROWS (OPTIONAL) ===== */
.swiper-button-next,
.swiper-button-prev {
    color: #2b7cff;
}