/* Add custom CSS styles below */ 
/* إزالة شارة السجل التجاري بالكامل */
.footer-badges,
salla-trust-badges {
  display: none !important;
}
/* يخلي القسم نفسه يتمركز */
.week-section {
  text-align: center;
}

/* تنسيق العنوان */
.week-section h2 {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding: 0 45px; /* مساحة للتاجين */
  text-align: center;
}

/* التاج اليمين */
.week-section h2::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
<path fill='%23C9A227' d='M3 7l4.5 4 4-6 4 6L21 7v10H3V7zm2 12h14v2H5v-2z'/>\
</svg>") no-repeat center / contain;
  pointer-events: none;
}

/* التاج اليسار */
.week-section h2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
<path fill='%23C9A227' d='M3 7l4.5 4 4-6 4 6L21 7v10H3V7zm2 12h14v2H5v-2z'/>\
</svg>") no-repeat center / contain;
  pointer-events: none;
}