/* LeCoq Reviews - Design Moderne */
.lecoq-reviews-wrapper {
    --lecoq-primary: #2b1d12;
    --lecoq-secondary: #f4e6c5;
    --lecoq-star: #f5a623;
    --lecoq-gray: #6b6b6b;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* Header */
.lecoq-reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.lecoq-reviews-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--lecoq-primary);
    margin: 0 0 15px 0;
    letter-spacing: -0.02em;
}

.lecoq-reviews-subtitle {
    font-size: 1.1rem;
    color: var(--lecoq-gray);
    margin: 0;
}

/* Carousel */
.lecoq-reviews-carousel {
    position: relative;
    overflow: hidden;
}

.lecoq-reviews-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Review Card */
.lecoq-review-card {
    flex: 0 0 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .lecoq-review-card {
        flex: 0 0 50%;
    }
}

@media (min-width: 1024px) {
    .lecoq-review-card {
        flex: 0 0 33.333%;
    }
}

.lecoq-review-card > div:first-child,
.lecoq-review-card > .lecoq-review-quote + * {
    position: relative;
}

.lecoq-review-card {
    display: flex;
    flex-direction: column;
}

.lecoq-review-card > *:not(.lecoq-review-quote) {
    position: relative;
    z-index: 1;
}

.lecoq-review-card {
    background: #fff;
    margin: 10px;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(43, 29, 18, 0.08);
    position: relative;
    transition: all 0.3s ease;
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
}

.lecoq-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(43, 29, 18, 0.12);
}

.lecoq-review-quote {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 50px;
    height: 50px;
    color: var(--lecoq-primary);
}

.lecoq-review-quote svg {
    width: 100%;
    height: 100%;
}

/* Stars */
.lecoq-review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.lecoq-star {
    width: 20px;
    height: 20px;
    color: var(--lecoq-star);
}

.lecoq-star svg {
    width: 100%;
    height: 100%;
}

.lecoq-star.empty {
    opacity: 0.3;
}

/* Review Text */
.lecoq-review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--lecoq-gray);
    margin: 0 0 25px 0;
    flex-grow: 1;
}

/* Author */
.lecoq-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(43, 29, 18, 0.08);
}

.lecoq-review-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--lecoq-primary), #4a3525);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lecoq-secondary);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.lecoq-review-info {
    flex-grow: 1;
}

.lecoq-review-name {
    display: block;
    font-weight: 600;
    color: var(--lecoq-primary);
    font-size: 0.95rem;
}

.lecoq-review-location {
    display: block;
    font-size: 0.85rem;
    color: var(--lecoq-gray);
}

.lecoq-review-date {
    font-size: 0.8rem;
    color: #999;
    white-space: nowrap;
}

/* Navigation */
.lecoq-reviews-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.lecoq-reviews-prev,
.lecoq-reviews-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--lecoq-primary);
    background: transparent;
    color: var(--lecoq-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lecoq-reviews-prev:hover,
.lecoq-reviews-next:hover {
    background: var(--lecoq-primary);
    color: var(--lecoq-secondary);
}

.lecoq-reviews-prev svg,
.lecoq-reviews-next svg {
    width: 22px;
    height: 22px;
}

.lecoq-reviews-dots {
    display: flex;
    gap: 10px;
}

.lecoq-reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(43, 29, 18, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lecoq-reviews-dot.active {
    background: var(--lecoq-primary);
    transform: scale(1.2);
}

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

@media (max-width: 768px) {
    .lecoq-reviews-wrapper {
        padding: 50px 15px;
    }
    
    .lecoq-review-card {
        flex: 0 0 calc(100% - 20px);
        min-width: calc(100% - 20px);
        padding: 28px 22px;
    }
    
    .lecoq-reviews-prev,
    .lecoq-reviews-next {
        width: 44px;
        height: 44px;
    }
    
    .lecoq-review-author {
        flex-wrap: wrap;
    }
    
    .lecoq-review-date {
        width: 100%;
        margin-top: 10px;
        padding-left: 60px;
    }
}
