#reviews-section {
    padding: 5rem 0 6rem;
    background: hsl(var(--card, 40 30% 96%));
    border-top: 1px solid hsl(var(--border, 30 20% 88%));
}

#reviews-section .reviews-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    #reviews-section .reviews-container {
        padding: 0 1.5rem;
    }
}

#reviews-section .reviews-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

#reviews-section .reviews-header h2 {
    font-family: Fraunces, Georgia, serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: hsl(var(--foreground, 25 30% 15%));
    margin-bottom: 0.5rem;
}

#reviews-section .reviews-header p {
    font-size: 1.05rem;
    color: hsl(var(--foreground, 25 30% 15%) / 0.7);
}

#reviews-section .reviews-carousel-wrap {
    position: relative;
}

#reviews-section .reviews-viewport {
    overflow: hidden;
}

#reviews-section .reviews-track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

#reviews-section .reviews-page {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0.25rem;
}

@media (min-width: 640px) {
    #reviews-section .reviews-page {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    #reviews-section .reviews-page {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

#reviews-section .review-card {
    background: hsl(var(--background, 40 33% 98%));
    border: 1px solid hsl(var(--border, 30 20% 88%));
    border-radius: 1rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 11rem;
    box-shadow: 0 4px 16px hsl(25 30% 15% / 0.04);
}

#reviews-section .review-stars {
    display: flex;
    gap: 0.15rem;
    align-items: center;
}

#reviews-section .review-star {
    width: 1rem;
    height: 1rem;
    color: hsl(35 18% 82%);
}

#reviews-section .review-star.filled {
    color: hsl(22 46% 42%);
}

#reviews-section .review-text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: hsl(var(--foreground, 25 30% 15%) / 0.85);
    flex-grow: 1;
}

#reviews-section .review-text.short {
    font-style: italic;
}

#reviews-section .review-meta {
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid hsl(var(--border, 30 20% 88%) / 0.6);
}

#reviews-section .review-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: hsl(var(--foreground, 25 30% 15%));
}

#reviews-section .review-location {
    font-size: 0.8rem;
    color: hsl(var(--foreground, 25 30% 15%) / 0.55);
    margin-top: 0.15rem;
}

#reviews-section .review-date {
    font-size: 0.75rem;
    color: hsl(var(--foreground, 25 30% 15%) / 0.45);
    margin-top: 0.25rem;
}

#reviews-section .reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
}

#reviews-section .reviews-nav-btn {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1px solid hsl(var(--border, 30 20% 88%));
    background: hsl(var(--background, 40 33% 98%));
    color: hsl(var(--foreground, 25 30% 15%));
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    font-size: 1.25rem;
    line-height: 1;
}

#reviews-section .reviews-nav-btn:hover:not(:disabled) {
    background: hsl(22 46% 42% / 0.1);
    border-color: hsl(22 46% 42% / 0.4);
}

#reviews-section .reviews-nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

#reviews-section .reviews-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

#reviews-section .reviews-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: hsl(35 18% 82%);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

#reviews-section .reviews-dot.active {
    background: hsl(22 46% 42%);
    transform: scale(1.25);
}

#reviews-section .reviews-count {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: hsl(var(--foreground, 25 30% 15%) / 0.5);
}
