/* ترتيب عناصر صفحة المنتج */

/* الحاوية الرئيسية لصفحة المنتج */
.main-content.flex.flex-col.gap-5 {
  display: flex !important;
  flex-direction: column !important;
}

/* 1️⃣ خانة التبرع (خيارات المنتج) تظهر أولاً */
.main-content.flex.flex-col.gap-5 > salla-product-options.s-product-options-wrapper,
.main-content.flex.flex-col.gap-5 > .s-product-options-wrapper {
  order: 1 !important;
}

/* 2️⃣ وصف المنتج الذي يحتوي الصور والفيديو يظهر بعد خانة التبرع */
.main-content.flex.flex-col.gap-5 > .content-entry,
.main-content.flex.flex-col.gap-5 > .product-description,
.main-content.flex.flex-col.gap-5 > .description,
.main-content.flex.flex-col.gap-5 > .editor-content,
.main-content.flex.flex-col.gap-5 > p,
.main-content.flex.flex-col.gap-5 > div:not(.s-product-options-wrapper) {
  order: 2 !important;
}