/* ===== إظهار النص في الوصف ===== */
.product-description,
.product-description *,
[class*="description"],
[class*="description"] * {
  color: #333333 !important;
}

/* ===== اقرأ المزيد ===== */
.description-wrapper {
  position: relative;
  max-height: 150px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.description-wrapper.expanded {
  max-height: 2000px;
}

.description-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, #ffffff);
  pointer-events: none;
  transition: opacity 0.3s;
}

.description-wrapper.expanded::after {
  opacity: 0;
}

.read-more-btn {
  display: block;
  margin: 10px auto;
  padding: 8px 24px;
  background: #2e7d4f;
  color: #fff !important;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
}

.read-more-btn:hover {
  background: #1a5c38;
}

/* ===== اسم المنتج ===== */
.product-title,
.product__title,
[class*="product-title"],
[class*="product-name"],
h1.title,
.title {
  color: #1a6b3c !important;
}
/* إصلاح زرار الإغلاق في popup السلة */
.swal2-close {
  overflow: hidden !important;
  font-size: 0 !important;
}

.swal2-close::before {
  content: '×' !important;
  font-size: 24px !important;
  color: #666 !important;
}