.customer-reviews {
    padding: 40px 0;
    background: #a1c96a17;
    border-radius: 12px;
}


.customer-reviews .reviews-header {
    text-align: center;
    margin-bottom: 24px;
}

.customer-reviews .reviews-header h2 {
    font-size: 28px;
    margin: 0 0 8px;
}

.customer-reviews .section-desc {
    color: #555;
    margin: 0;
    max-width: unset !important;
}

.customer-reviews .reviews-carousel .owl-stage {
    display: flex;
}

.customer-reviews .reviews-carousel .owl-item {
    display: flex;
    height: auto;
}
.reviews-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -50px;
    right: -50px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.reviews-carousel .owl-nav button {
    pointer-events: auto;
    cursor: pointer;
}

.customer-reviews .review-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 14px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.customer-reviews .review-stars {
    color: #f5a623;
    font-size: 18px;
    letter-spacing: 1px;
}

.customer-reviews .review-link {
    color: #e11d48;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.customer-reviews .review-card p {
    margin: 6px 0;
}

.customer-reviews .review-excerpt {
    color: #374151;
}

.customer-reviews .reviewer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.customer-reviews .reviewer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    overflow: hidden;
}

.customer-reviews .reviewer-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.customer-reviews .reviewer-name {
    font-weight: 600;
}

.customer-reviews .reviewer-city {
    color: #6b7280;
    font-size: 13px;
}

.cr-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.cr-modal.is-open {
    display: flex;
}

.cr-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.cr-modal__dialog {
    position: relative;
    max-width: 560px;
    width: 100%;
    margin: 0;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    z-index: 1;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cr-modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: 0;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.cr-modal__title {
    font-weight: 700;
    margin: 0 0 10px;
}

.cr-modal__content {
    color: #111827;
    line-height: 1.6;
    max-height: 60vh;
    overflow: auto;
}

.cr-modal-open {
    overflow: hidden;
}

@media (max-width: 767px) {
    .reviews-carousel .owl-nav {
        display: none;
    }
}