.product-name {
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3.6em; /* Adjust based on font size */
    font-size: 1rem;
    line-height: 1.8em;
    height: 3.6em;
}
.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 300px; /* Set a fixed height */
}



  /* Rating Section Styling */
  .rating-label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

/* Star Icons */
.star-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 10px 0;
}

.star-rating i {
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.3s ease;
}

/* Hover & Selected Effect */
.star-rating i:hover,
.star-rating i.selected {
    color: gold;
    transform: scale(1.2);
}

/* Rating Text */
.rating-text {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    font-weight: 500;
}

/* Animate the text */
#rating-value {
    font-size: 16px;
    font-weight: bold;
    color: #ff9800;
    transition: color 0.3s ease;
}
