/* Ghorer Bazar Style Customer Review & Feedback Section */
.gb-customer-reviews-section {
    position: relative;
}

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

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

.customer-reviews-carousel .owl-item {
    display: flex;
    flex: 1 0 auto;
    height: auto;
}

.customer-reviews-carousel .item {
    width: 100%;
    display: flex;
    padding: 6px 4px;
}

.gb-review-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px 22px 20px 22px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.02);
}

.gb-review-card:hover {
    transform: translateY(-3px);
    border-color: #cbd5e1;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05), 0 6px 10px -6px rgba(0, 0, 0, 0.03);
}

.gb-review-content {
    margin-bottom: 18px;
}

.gb-review-text {
    font-size: 14.5px;
    line-height: 1.65;
    color: #374151;
    margin-bottom: 14px;
    font-weight: 400;
    word-break: break-word;
}

.gb-review-stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.gb-review-stars .star-filled {
    color: #f59e0b;
}

.gb-review-stars .star-empty {
    color: #e5e7eb;
}

.gb-reviewer-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid #f3f4f6;
    margin-top: auto;
}

.gb-reviewer-avatar {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid #f1f5f9;
    background-color: #f8fafc;
    flex-shrink: 0;
}

.gb-reviewer-meta {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.gb-reviewer-name {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 2px 0;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gb-reviewer-role {
    font-size: 12.5px;
    color: #6b7280;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Dots Styling matching Ghorer Bazar */
.customer-reviews-carousel.owl-theme .owl-dots {
    text-align: center;
    margin-top: 22px;
    line-height: 1;
}

.customer-reviews-carousel.owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 0 4px;
    background: #d1d5db;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.25s ease;
}

.customer-reviews-carousel.owl-theme .owl-dots .owl-dot.active span,
.customer-reviews-carousel.owl-theme .owl-dots .owl-dot:hover span {
    background: #e86b24;
    transform: scale(1.2);
}

@media (max-width: 767.98px) {
    .gb-review-card {
        padding: 18px 16px 16px 16px;
        border-radius: 14px;
    }
    .gb-review-text {
        font-size: 13.5px;
        line-height: 1.55;
    }
    .gb-reviewer-avatar {
        width: 42px !important;
        height: 42px !important;
    }
    .gb-reviewer-name {
        font-size: 14px;
    }
}
