/* محدود کردن ابعاد کارت و محتوا */
.coffee-card-fixed {
    height: 480px; /* ارتفاع ثابت برای کل کارت */
    display: flex;
    flex-direction: column;
}

.coffee-img-fixed {
    height: 220px; /* ارتفاع ثابت برای عکس */
    object-fit: cover;
    width: 100%;
}

.coffee-desc-fixed {
    height: 100px; /* فضای محدود برای متن */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* نمایش حداکثر ۴ خط */
    -webkit-box-orient: vertical;
}
