.home-reviews-section {
    padding: 4rem 0;
    background: #f9f9f9;
}

.home-reviews-section h1,
.home-reviews-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #333;
}

.home-reviews-loading,
.home-reviews-error,
.home-reviews-empty {
    text-align: center;
    color: #666;
    padding: 2rem 1rem;
}

.home-reviews-carousel-wrap {
    position: relative;
    margin: 0 -10px;
}

.home-reviews-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 10px 1.25rem;
    scrollbar-width: thin;
    scrollbar-color: #d4af37 transparent;
}

.home-reviews-track::-webkit-scrollbar {
    height: 6px;
}

.home-reviews-track::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 3px;
}

.home-reviews-card {
    flex: 0 0 calc(33.333% - 0.85rem);
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #eee;
    padding: 1.35rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.home-reviews-card-header {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.85rem;
}

.home-reviews-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #f0f0f0;
}

.home-reviews-avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    flex-shrink: 0;
}

.home-reviews-author {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #333;
    display: block;
}

.home-reviews-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.15rem;
}

.home-reviews-stars {
    color: #d4af37;
    letter-spacing: 1px;
}

.home-reviews-text {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #444;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-reviews-photos {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.85rem;
    overflow: hidden;
}

.home-reviews-photo {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.home-reviews-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    color: #333;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.home-reviews-nav:hover:not(:disabled) {
    border-color: #d4af37;
    color: #d4af37;
}

.home-reviews-nav:disabled {
    opacity: 0.35;
    cursor: default;
}

.home-reviews-prev {
    left: -6px;
}

.home-reviews-next {
    right: -6px;
}

.home-reviews-actions {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .home-reviews-card {
        flex: 0 0 calc(50% - 0.65rem);
    }
}

@media (max-width: 768px) {
    .home-reviews-section {
        padding: 3rem 0;
    }

    .home-reviews-card {
        flex: 0 0 88%;
        min-height: 200px;
    }

    .home-reviews-nav {
        width: 36px;
        height: 36px;
    }

    .home-reviews-prev {
        left: 0;
    }

    .home-reviews-next {
        right: 0;
    }

    .home-reviews-text {
        -webkit-line-clamp: 4;
    }
}

@media (max-width: 480px) {
    .home-reviews-card {
        flex: 0 0 92%;
        padding: 1.15rem;
    }

    .home-reviews-nav {
        display: none;
    }
}
