    .review-card {
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .review-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 50px rgba(28, 20, 16, 0.12);
    }
    .rating-bar-track {
        height: 6px;
        border-radius: 3px;
        overflow: hidden;
    }
    .rating-bar-fill {
        height: 100%;
        border-radius: 3px;
        transition: width 1.2s ease-out;
    }
