
.recenzieNadpis{
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 700;
}
.carousel-container {
            max-width: 1200px;
            width: 100%;
            position: relative;
            padding: 60px 80px;

            min-height: 66vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-wrapper {
            overflow: hidden;
            position: relative;
        }
        .carousel-wrapper hr{
            border: 0;
            height: 5px;
            background: #ffffff;
            width: 30%;
            margin-left: 35%;
            margin-top: -30px;
            margin-bottom: 25px;
        }
        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 30px;
            padding: 20px 0;
        }

        .review-card {
            min-width: calc(33.333% - 20px);
            background: white;
            border-radius: 16px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
            opacity: 0.4;
            transform: scale(0.9);
            cursor: pointer;
        }

        .review-card:hover {
            opacity: 0.6;
        }

        .review-card.active {
            opacity: 1;
            transform: scale(1);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .review-header {
            margin-bottom: 20px;
        }

        .reviewer-info-wrapper {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 8px;
        }

        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #626657 0%, #a24b4b 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 20px;
        }

        .reviewer-info h3 {
            font-size: 18px;
            color: #2d3748;
        }

        .stars {
            display: flex;
            gap: 4px;
            margin-left: 65px;
            justify-content: flex-start;
            margin-top: -10px;
        }

        .star {
            font-size: 18px;
            color: #fbbf24;
        }

        .star.empty {
            font-size: 18px;
            color: #e5e7eb;
        }

        .review-text {
            color: #4a5568;
            line-height: 1.7;
            font-size: 15px;
        }

        .carousel-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            z-index: 10;
        }

        .carousel-button:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }

        .carousel-button.prev {
            left: 10px;
        }

        .carousel-button.next {
            right: 10px;
        }

        .carousel-button svg {
            width: 24px;
            height: 24px;
            fill: #667eea;
        }

        @media (max-width: 968px) {
            .review-card {
                min-width: calc(50% - 15px);
            }
        }

        @media (max-width: 640px) {
            .carousel-container {
                padding: 40px 20px;
            }

            .review-card {
                min-width: 100%;
            }

            .carousel-button {
                width: 40px;
                height: 40px;
            }

            .carousel-button.prev {
                left: 5px;
            }

            .carousel-button.next {
                right: 5px;
            }
        }