/* ====== الكارد الأساسي ====== */
.fasty_product_card {
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;

  /* الكارت يملأ عرض السلايد بالكامل */
  width: 100% !important;
  max-width: none !important;
}

/* خلي الـ div اللي جوّه السلايد ياخد العرض كله برضه */
.swiper-slide > .cursor-pointer {
  width: 100%;
}

/* ====== مساحة الصورة (الكونتينر) ====== */
div.fasty_product_card_img {
  height: 230px; /* عدّل الرقم لو عايز أعلى/أقل */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ====== الصورة نفسها ====== */
img.fasty_product_card_img {
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: 100% !important;
  object-fit: contain !important; /* نلغي تأثير object-cover بتاع Tailwind */
  display: block;
}

/* ====== اسم المنتج – 3 سطور بالكثير ====== */
.fasty_product_card_name {
  margin-top: 8px;
  font-size: 0.95rem;
  line-height: 1.4;
  text-align: center;

  min-height: 4.2em; /* تقريبًا 3 سطور */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ====== السعر – مساحة ثابتة ====== */
.fasty_product_card_price {
  margin-top: 6px;
  text-align: center;
  min-height: 2.4rem;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* ====== الجزء اللي تحت (زرار + قلب) يفضل تحت دايمًا ====== */
.fasty_product_card_btn_container {
  margin-top: auto !important;
  padding-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fasty_product_card_btn {
  flex: 1 1 auto;
  width: 100%;
}

.fasty_product_card_wishlist_btn {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
