.product-entry {
  background-color: #F8F9FA; /* نفس لون خلفية المتجر */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  border: none; /* إزالة الحدود إذا كانت غير مرغوبة */
}

/* عند المرور على البطاقة — ظل فقط */
.product-entry:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* صورة المنتج */
.product-entry__image-wrap img.lazy {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 2 / 3;
  display: block;
  border-radius: 8px 8px 0 0;
}

/* محتوى البطاقة */
.product-entry__content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* اسم التصنيف */
.product-entry .product-category {
  border: 2px solid #B08D30;
  color: #B08D30;
  font-weight: 600;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 8px;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}

/* عنوان المنتج */
.product-entry__title {
  font-size: 14px;
  color: #023A35;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
}

/* زر السلة */
.product-entry .s-button-element.s-button-btn {
  background-color: #023A35 !important;
  color: #B08D30 !important;
  font-weight: bold;
  font-size: 13px;
  border-radius: 8px !important;
  padding: 10px 16px;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(2, 58, 53, 0.3);
  transition: background-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* أيقونة السلة */
.product-entry .s-button-element.s-button-btn i {
  color: #B08D30 !important;
  transition: color 0.4s ease;
}

/* عند التحويم على الزر */
.product-entry .s-button-element.s-button-btn:hover {
  background-color: #B08D30 !important;
  color: #023A35 !important;
  box-shadow: 0 8px 16px rgba(176, 141, 48, 0.7);
}

/* تأثير النبض البطيء للأيقونة */
.product-entry .s-button-element.s-button-btn:hover i {
  animation: pulse 1.2s infinite;
  color: #023A35 !important;
}

/* حركة نبض */
@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* داخل الحاوية */
.product-entry .add-to-cart-conatiner {
  margin-top: 12px;
}