/* ==========================================================================
   product-description.css — بطاقة وصف المنتج (Product description)
   شركة السرعة المطلقة | كل القيم من tokens.css — RTL.
   عنوان + فقرة وصف + قائمة مزايا بعلامات ✓ خضراء (عمودان).
   WC-NOTE: the_content() / woocommerce_product_description + قائمة مزايا (ACF repeater)
   ========================================================================== */

.product-description {
  padding: var(--space-32);
  background-color: var(--color-surface);
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.product-description__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  text-align: start; /* start = يمين في RTL */
  margin-bottom: var(--space-16);
}
.product-description__text {
  font-size: var(--fs-xs);
  line-height: var(--lh-base);
  color: var(--color-text-muted);
  text-align: start; /* start = يمين في RTL */
}

/* عمود واحد (مطابق لفيجما) — يعمل كستايل افتراضي لأي <ul> حقيقي من
   وصف المنتج في ووكومرس (the_content())، بلا حاجة لماركب خاص لكل عنصر */
.product-description__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  margin-top: var(--space-20);
  list-style: none;
}
.product-description__feature {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* flex-start = يمين في RTL */
  gap: var(--space-8);
  font-size: var(--fs-xs);
  color: var(--color-text-secondary); /* فيجما: #444444 */
  text-align: start;
}
/* أيقونة صح دائرية خطّية خضراء — عبر ::before فقط، لا <i>/<span> محقونة،
   لتعمل تلقائيًا مع أي <li> حقيقي يأتي من ووكومرس */
.product-description__feature::before {
  content: "\f058"; /* fa-circle-check */
  font-family: "Font Awesome 6 Pro";
  font-weight: 400; /* fa-regular — دائرة خطّية وليست معبأة */
  font-size: var(--fs-lg);
  color: var(--color-success);
  flex-shrink: 0;
  line-height: 1;
}
