.wvr-plugin .wvr-rating-summary {
    margin: 20px auto;
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wvr-plugin .wvr-rating-summary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.wvr-plugin .wvr-rating-summary-inline {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
}

.wvr-plugin .wvr-reviews {
    margin: 20px auto;
    padding: 32px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 768px;
}

.wvr-plugin .wvr-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: nowrap;
    width: 100%;
}

.wvr-plugin .wvr-reviews h3 {
    white-space: nowrap;
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    flex: 0 0 auto;
}

.wvr-plugin .wvr-sort-select {
    max-width: 160px;
    font-size: 12px;
    padding: 4px 8px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    flex: 0 0 auto;
}

.wvr-plugin .wvr-review {
    background-color: #f8fafc;
    padding: 24px;
    margin-bottom: 16px;
    border-radius: 10px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.wvr-plugin .wvr-review:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.wvr-plugin .wvr-review h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.5;
}

.wvr-plugin .wvr-review p {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
}

.wvr-plugin .wvr-show-more {
    display: block;
    text-align: center;
    color: #3b82f6;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-top: 24px;
    transition: color 0.2s ease;
}

.wvr-plugin .wvr-show-more:hover {
    color: #2563eb;
    text-decoration: underline;
}

.wvr-plugin .wvr-star-rating .star {
    font-size: 18px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.wvr-plugin .wvr-star-rating .star:hover {
    transform: scale(1.2);
}

.wvr-plugin .wvr-star-rating .filled {
    color: #f4b400;
}

.wvr-plugin .wvr-star-rating .empty {
    color: #d1d5db;
}

.wvr-plugin .error {
    color: #dc2626;
    font-size: 14px;
    text-align: center;
}

.wvr-plugin .no-reviews {
    color: #4b5563;
    font-size: 14px;
    text-align: center;
}