.local-reviews-section {
    background: #0f0f0f;
    padding: 80px 0 90px;
    position: relative;
}

.local-reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(225, 128, 24, 0.35), transparent);
}

.local-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.local-reviews-header {
    text-align: center;
    margin-bottom: 48px;
}

.local-reviews-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #e18018;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.local-reviews-label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e18018;
    display: inline-block;
}

.local-reviews-title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px;
    line-height: 1.2;
}

.local-reviews-subtitle {
    font-size: 15px;
    color: #9ca3af;
    margin: 0;
}

.local-reviews-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    max-width: 300px;
    margin: 0 auto 52px;
}

.local-reviews-stat-score {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.local-reviews-stat-right {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.local-reviews-stat-count {
    font-size: 13px;
    color: #6b7280;
}

.lrs {
    color: #3a3a3a;
    font-size: 16px;
}

.lrs--filled {
    color: #e18018;
}

/* ══ CARRUSEL ══ */
.lrc-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lrc-viewport {
    overflow: hidden;
    flex: 1;
    border-radius: 14px;
}

.lrc-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.lrc-slide {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 0;
}

.lrc-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #d1d5db;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.lrc-arrow:hover {
    background: rgba(225, 128, 24, 0.2);
    border-color: rgba(225, 128, 24, 0.5);
    color: #e18018;
}

.lrc-arrow:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    pointer-events: none;
}

.lrc-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.lrc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.lrc-dot--active {
    background: #e18018;
    transform: scale(1.3);
}

/* ── Card ── */
.local-review-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.local-review-card:hover {
    border-color: rgba(225, 128, 24, 0.35);
    transform: translateY(-2px);
}

.local-review-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.local-review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #915016, #e18018);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.local-review-card__name {
    font-size: 14px;
    font-weight: 700;
    color: #f3f4f6;
}

.local-review-card__date {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

.local-review-card__stars {
    display: flex;
    gap: 2px;
}

.local-review-card__comment {
    font-size: 14px;
    line-height: 1.65;
    color: #d1d5db;
    margin: 0;
    font-style: italic;
}

.local-review-card__response {
    background: rgba(225, 128, 24, 0.08);
    border-left: 3px solid #e18018;
    border-radius: 0 8px 8px 0;
    padding: 12px 14px;
}

.local-review-card__response-label {
    font-size: 11px;
    font-weight: 700;
    color: #e18018;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.local-review-card__response-text {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
    line-height: 1.55;
}

.local-reviews-empty {
    text-align: center;
    padding: 60px 20px;
}

.local-reviews-empty__icon {
    font-size: 48px;
    color: #2a2a2a;
    margin-bottom: 16px;
}

.local-reviews-empty__text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .lrc-slide {
        flex: 0 0 calc((100% - 20px) / 2);
    }
}

@media (max-width: 600px) {
    .local-reviews-section {
        padding: 60px 0 70px;
    }

    .lrc-slide {
        flex: 0 0 100%;
    }

    .lrc-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
