
/* faq.php */
.faq-icon {
  color: #c00;
}
.accordion-button:not(.collapsed) {
  color: #c00;
}

/* الصورة تحفظ نسبتها الطبيعية ولا تقص */
.card-img-fixed {
    width: 100%;
    height: 150px;
    object-fit:contain;
    background-color: #f8f9fa;
}

.image-box {
    overflow: hidden;
}

/* الكرت */
.card-fixed{
    display:flex;
    flex-direction:column;
    height:520px;
    overflow:hidden;
}

/* جسم الكرت */
.card-fixed .card-body{
    display:flex;
    flex-direction:column;
    flex:1;
}

/* العنوان */
.card-title{
    font-size:20px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

/* الوصف مختصر */
.offer-desc{
    max-height:0px;
    overflow:hidden;
    transition:max-height 0.4s ease;
}

/* عند المرور يتمدد الوصف */
.card-fixed:hover .offer-desc{
    max-height:200px;
}

/* السعر ثابت في الأسفل */
.price-container{
    margin-top:auto;
    font-size:15px;
}

/* ===== تعديل الجوال ===== */
@media (max-width: 768px){

    .card-img-fixed{
        height:120px;
    }

    .card-title{
        font-size:15px;
        white-space:normal;
        line-height:1.4;
    }

    .offer-desc{
        font-size:12px;
    }

}