/* Reviews Plugin Styles */
.rvw-reviews-gallery {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px;
}

/* Filters Section */
.rvw-filters {
    margin-bottom: 32px;
    background: #f8f9fa;
    padding: 24px;
    border-radius: 6px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.rvw-filters label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgb(13 110 253);
}

.rvw-filters input[type="date"],
.rvw-filters select {
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    color: #212529;
    transition: all 0.3s ease;
}

.rvw-filters input[type="date"]:focus,
.rvw-filters select:focus {
    border-color: rgb(13 110 253);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    outline: none;
}

.rvw-btn-filter {
    width: 100%;
    padding: 12px 24px;
    background-color: rgb(13 110 253);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rvw-btn-filter:hover {
    background-color: rgb(11 94 215);
}

/* Reviews Grid */
.rvw-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.rvw-gallery-item {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 6px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.rvw-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Review Container */
.rvw-review-container {
    display: flex;
    gap: 16px;
}

/* Avatar Styles */
.rvw-avatar-container {
    flex-shrink: 0;
}

.rvw-avatar,
.rvw-avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.rvw-avatar-placeholder {
    background-color: #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(13 110 253);
    font-size: 24px;
}

/* Review Content */
.rvw-review-content {
    flex: 1;
}

.rvw-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.rvw-review-name {
    font-weight: 600;
    color: rgb(13 110 253);
    font-size: 18px;
}

.rvw-review-date {
    color: #666;
    font-size: 14px;
}

/* Rating Stars */
.rvw-review-rating {
    margin-bottom: 12px;
}

.rvw-star {
    color: #ffc107;
    font-size: 18px;
    margin-right: 2px;
}

.rvw-star-empty {
    color: #ddd;
}

/* Review Text */
.rvw-review-text {
    color: #212529;
    line-height: 1.6;
    font-size: 16px;
}

/* Pagination */
.rvw-pagination {
    margin-top: 32px;
    text-align: center;
}

.rvw-pagination .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 4px;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: rgb(13 110 253);
    text-decoration: none;
    transition: all 0.3s ease;
}

.rvw-pagination .page-numbers.current {
    background-color: rgb(13 110 253);
    color: #fff;
    border-color: rgb(13 110 253);
}

.rvw-pagination .page-numbers:hover:not(.current) {
    background-color: #f8f9fa;
    border-color: rgb(13 110 253);
}

/* Leave Review Button */
.rvw-button-container {
    margin-top: 32px;
    text-align: center;
}

.rvw-btn-leave {
    padding: 12px 32px;
    background-color: rgb(13 110 253);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 300px;
    width: 100%;
}

.rvw-btn-leave:hover {
    background-color: rgb(11 94 215);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .rvw-reviews-gallery {
        padding: 16px;
    }

    .rvw-gallery-grid {
        grid-template-columns: 1fr;
    }

    .rvw-review-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .rvw-review-header {
        flex-direction: column;
        gap: 8px;
    }

    .rvw-review-rating {
        justify-content: center;
    }
}

/* Animation for Reviews */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rvw-gallery-item {
    animation: fadeIn 0.5s ease-out;
} 