/* Reviews Plugin — Carousel styles */

.rev-section {
    padding: 80px 0;
}

.rev-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.rev-avg-stars strong {
    color: var(--gold);
}

.rev-count {
    background: rgba(255, 255, 255, 0.06);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.rev-carousel {
    overflow: hidden;
    position: relative;
}

.rev-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.rev-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--bg-card, rgba(255, 255, 255, 0.04));
    border: 1px solid var(--border, rgba(255, 255, 255, 0.08));
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.rev-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold, #d4a853);
    box-shadow: 0 8px 32px rgba(212, 168, 83, 0.1);
}

.rev-stars {
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.rev-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary, #a0a0b0);
    flex: 1;
    margin: 0 0 20px;
    font-style: italic;
    border: none;
    padding: 0;
}

.rev-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border, rgba(255, 255, 255, 0.06));
}

.rev-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold, #d4a853), var(--gold-dark, #b8913a));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #0d0d15;
}

.rev-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.rev-city {
    font-size: 0.75rem;
    color: var(--text-muted, #666);
}

.rev-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.rev-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}

.rev-dot.active {
    background: var(--gold, #d4a853);
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .rev-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 640px) {
    .rev-card {
        flex: 0 0 100%;
    }

    .rev-track {
        gap: 16px;
    }
}