.premium-reviews-placeholder {
    padding: 30px;
    background: #121212;
    color: #fff;
    text-align: center;
    border: 1px dashed #FFD700;
    border-radius: 8px;
    font-family: sans-serif;
}
.premium-reviews-grid {
    display: grid;
    gap: 20px;
}
.premium-review-card {
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 12px;
    color: #fff;
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
}
.premium-review-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.review-author {
    font-weight: 700;
    font-size: 1.1rem;
}
.verified-badge {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
    border: 1px solid #FFD700;
    color: #FFD700;
    font-weight: 600;
    text-transform: uppercase;
}
.review-product {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 12px;
}
.review-product a {
    color: #fff;
    text-decoration: underline;
}
.premium-review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
}
.premium-review-stars svg {
    width: 18px;
    height: 18px;
}
.premium-review-stars svg.star-filled {
    fill: #FFD700;
}
.premium-review-stars svg.star-empty {
    fill: rgba(255, 255, 255, 0.2);
}
.review-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e0e0e0;
}
/* Carousel Styling overrides */
.premium-reviews-carousel {
    overflow: hidden;
    position: relative;
    padding-bottom: 40px;
}
.premium-reviews-carousel .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
}
.premium-reviews-carousel .swiper-pagination-bullet-active {
    background: #FFD700;
}
.premium-reviews-carousel .swiper-button-next,
.premium-reviews-carousel .swiper-button-prev {
    color: #FFD700;
}
a.kerin-read-more-btn {
    cursor: pointer; 
    font-weight: 600; 
    text-decoration: underline;
    display: inline-block;
    margin-left: 5px;
    transition: opacity 0.3s ease;
}
a.kerin-read-more-btn:hover {
    opacity: 0.8;
}
/* Avatar & Profile Styling */
.kerin-author-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kerin-author-avatar {
    width: 38px;
    height: 38px;
    background-color: transparent; 
    color: #FFD700; /* Gold letter */
    border: 1.5px solid #FFD700; /* Gold ring */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    text-transform: uppercase;
}

/* Ensure the row spaces out the profile and the verified badge properly */
.kerin-review-author-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}