/* Review Slider Wrapper */
.absl-review-slider {
    position: relative;
    width: 100%;
    overflow: hidden; /* important: prevents extra slides from showing */
}

/* Each slide */
.absl-review-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px 32px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

/* Quote icon left */
.absl-quote-icon {
    width: 40px;
    opacity: 0.18;
    margin-bottom: 15px;
}

/* Top Right (Google / TrustPilot / Yelp logo) */
.absl-review-source {
    position: absolute;
    right: 25px;
    top: 25px;
    width: 28px;
    height: auto;
}

/* Review Text */
.absl-review-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
    max-width: 90%;
}

/* Profile */
.absl-review-profile {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.absl-review-profile img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 12px;
}

.absl-review-name {
    font-size: 17px;
    font-weight: 600;
    color: #222;
}

.absl-review-location {
    font-size: 14px;
    opacity: 0.7;
}

/* Stars */
.absl-review-stars {
    position: absolute;
    right: 32px;
    bottom: 28px;
    color: #ffb800;
    font-size: 16px;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    background: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    color: #111 !important;
    fill: #111 !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* Swiper Dots */
.swiper-pagination-bullet {
    background: #d1d1d1 !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: #84BD47 !important;
}
