/* Static Reviews Carousel - Custom Component */

.reviews-carousel {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 50px;
}

.reviews-carousel-header {
    text-align: center;
    margin-bottom: 2rem;
}

.reviews-carousel-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.reviews-carousel-stars svg {
    width: 28px;
    height: 28px;
    fill: #c9a227;
}

.reviews-carousel-count {
    color: #666;
    font-size: 0.95rem;
}

.reviews-carousel-track {
    overflow: hidden;
    border-radius: 8px;
}

.reviews-carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-card {
    min-width: calc(33.333% - 20px);
    margin: 0 10px;
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-card-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.review-card-name {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.review-card-stars {
    display: flex;
    gap: 0.2rem;
}

.review-card-stars svg {
    width: 20px;
    height: 20px;
    fill: #c9a227;
}

.review-card-stars svg.star-empty {
    fill: #ddd;
}

.review-card-source {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-card-source img {
    height: 16px;
    width: auto;
}

.review-card-text {
    flex: 1;
    color: #444;
    line-height: 1.6;
    font-size: 0.95rem;
}

.review-card-footer {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

.review-card-footer img {
    height: 24px;
    width: auto;
    opacity: 0.7;
}

/* Navigation Arrows */
.reviews-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 2px solid #c9a227;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.reviews-carousel-nav:hover {
    background: #c9a227;
    border-color: #c9a227;
}

.reviews-carousel-nav:hover svg {
    fill: #fff;
}

.reviews-carousel-nav svg {
    width: 20px;
    height: 20px;
    fill: #c9a227;
    transition: fill 0.3s ease;
}

.reviews-carousel-nav-prev {
    left: 0;
}

.reviews-carousel-nav-next {
    right: 0;
}

/* Dots Navigation */
.reviews-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.reviews-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-carousel-dot.active {
    background: #c9a227;
    width: 24px;
    border-radius: 5px;
}

/* CTA Button */
.reviews-carousel-cta {
    text-align: center;
    margin-top: 2rem;
}

.reviews-carousel-cta a {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #c9a227;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.reviews-carousel-cta a:hover {
    background: #a68521;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .review-card {
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .reviews-carousel {
        padding: 0 40px;
    }

    .review-card {
        min-width: calc(100% - 20px);
    }

    .reviews-carousel-nav {
        width: 36px;
        height: 36px;
    }

    .reviews-carousel-nav svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .reviews-carousel {
        padding: 0 30px;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-card-name {
        font-size: 1.25rem;
    }
}
