/* كارت المنتج */
.product-card,
.product-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

/* حاوية الصورة */
.product-card .product-image,
.product-item .product-image {
    width: 100%;
    aspect-ratio: 1 / 1;   /* يخلي الكارد مربع ومتناسق */
    overflow: hidden;
}

/* صورة المنتج */
.product-card img,
.product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* تملى الكارد من غير فراغات */
    display: block;
}

/* محتوى الكارت */
.product-card .product-info,
.product-item .product-info {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* اسم المنتج */
.product-card h3,
.product-item h3 {
    font-size: 14px;
    line-height: 1.5;
    min-height: 42px;
    overflow: hidden;
}

/* السعر */
.product-card .price,
.product-item .price {
    margin-top: auto;
    font-size: 14px;
    font-weight: 500;
}

/* زر الإضافة */
.product-card button,
.product-item button {
    margin-top: 8px;
    height: 42px;
    border-radius: 8px;
}
@media (max-width: 768px) {

    .product-card h3,
    .product-item h3 {
        font-size: 13px;
        min-height: 38px;
    }

    .product-card .price,
    .product-item .price {
        font-size: 13px;
    }

    .product-card button,
    .product-item button {
        height: 40px;
    }
}
/* إلغاء الفراغ بين السعر وزر الإضافة */
.product-card .price,
.product-item .price {
    margin-bottom: 6px !important;
}

.product-card button,
.product-item button {
    margin-top: 0 !important;
}
.product-card .product-info,
.product-item .product-info {
    gap: 4px !important;
}
/* إصلاح مسافة السعر وزر الإضافة - ثيم سيليا */
.product-card,
.product-item {
    display: flex !important;
    flex-direction: column !important;
}

/* الحاوية الداخلية */
.product-card .product-info,
.product-item .product-info {
    display: block !important;
    min-height: unset !important;
}

/* السعر */
.product-card .price,
.product-item .price {
    margin: 6px 0 4px 0 !important;
}

/* زر الإضافة */
.product-card .add-to-cart,
.product-item .add-to-cart,
.product-card button,
.product-item button {
    position: static !important;
    margin-top: 0 !important;
}
@media (max-width: 768px) {

    .product-card .product-info,
    .product-item .product-info {
        display: block !important;
        height: auto !important;
    }

}
/* كارت المنتج */
.product-card,
.product-item {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
}

/* صورة المنتج */
.product-card img,
.product-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

/* محتوى الكارت */
.product-card .product-info,
.product-item .product-info {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
}

/* اسم المنتج */
.product-card h3,
.product-item h3 {
    font-size: 14px;
    line-height: 1.5;
}

/* السعر */
.product-card .price,
.product-item .price {
    margin: 6px 0 4px 0;
}

/* زر الإضافة */
.product-card button,
.product-item button {
    margin-top: 0;
    height: 42px;
    border-radius: 8px;
}
/* ===== كروت المنتجات - موبايل ===== */
@media (max-width: 768px) {

  .product-card,
  .product-item {
      display: flex;
      flex-direction: column;
      border-radius: 14px;
      overflow: hidden;
      height: 100%;
  }

@media (max-width: 768px) {

  /* الكارت نفسه */
  .product-card,
  .product-item,
  .s-product-card {
      display: flex !important;
      flex-direction: column !important;
      height: auto !important;
      min-height: unset !important;
  }

  /* حاوية الصورة */
  .product-card__image,
  .s-product-card-image,
  .product-image {
      width: 100% !important;
      aspect-ratio: 1 / 1 !important;
      height: auto !important;
      overflow: hidden !important;
  }

  /* الصورة */
  .product-card img,
  .product-item img,
  .s-product-card img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
      display: block !important;
  }

  /* محتوى الكارت */
  .product-card__info,
  .product-info,
  .s-product-card-content {
      display: flex !important;
      flex-direction: column !important;
      padding: 10px !important;
      flex: 1 !important;
      height: auto !important;
  }

  /* اسم المنتج */
  .product-card h3,
  .s-product-card-title {
      font-size: 14px !important;
      line-height: 1.4 !important;
      margin-bottom: 6px !important;
      display: -webkit-box !important;
      -webkit-line-clamp: 2 !important;
      -webkit-box-orient: vertical !important;
      overflow: hidden !important;
  }

  /* السعر */
  .product-card .price,
  .s-product-card-price {
      margin: 0 0 6px 0 !important;
      font-size: 14px !important;
  }

  /* زر الإضافة */
  .product-card button,
  .s-product-card-add-btn {
      margin-top: auto !important;
      height: 44px !important;
      border-radius: 10px !important;
      position: static !important;
  }

}

@media (max-width: 768px) {

  /* الكارت */
  .product-card,
  .product-item,
  .s-product-card {
      display: flex !important;
      flex-direction: column !important;
      height: 100% !important;
  }

  /* الصورة */
  .product-card img,
  .product-item img,
  .s-product-card img {
      aspect-ratio: 1 / 1;
      object-fit: cover;
  }

  /* اسم المنتج — سطرين ثابت */
  .product-card h3,
  .product-item h3,
  .s-product-card-title {
      font-size: 14px;
      line-height: 1.4;
     height: 4.2em;              /* ← السر هنا */
      overflow: hidden;
  }

  /* السعر */
  .product-card .price,
  .product-item .price,
  .s-product-card-price {
      margin: 6px 0;
  }

  /* زر الإضافة */
  .product-card button,
  .product-item button,
  .s-product-card-add-btn {
      margin-top: auto;
      height: 44px;
  }
}
  /* إخفاء أيقونة السلة */
.s-product-card-add-btn svg,
.product-card button svg,
.product-item button svg {
    display: none !important;
}

/* تحويل الزر إلى نص */
.s-product-card-add-btn::after,
.product-card button::after,
.product-item button::after {
    content: "إضافة للسلة";
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

/* تنسيق الزر نفسه */
.s-product-card-add-btn,
.product-card button,
.product-item button {
    display: flex !important;
    align-items: center;
    justify-content: center;
}