/* Add custom CSS styles below */ 
a[href*="getbutton.io"] {
    display: none !important;
}
@media (prefers-reduced-motion: reduce) {
    .s-block--animated-brands--marquee .marquee__group {
        animation-play-state: running !important;
    }
}
@media(min-width: 991px){
	body{
		overflow-x: unset !important;
	}
}
@media (max-width: 767px) {
    .index.mobile_small_blocks_titles h2.text-3xl {
        font-size: 1.0rem;
    }
}
.text-store-text-primary {
    color: var(--store-text-primary);
}
.tracking-tight {
    letter-spacing: -0.025em;
}
.font-bold {
    font-weight: 700;
}
.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}
h2 {
    font-size: 1.25rem;
    line-height: 1.75rem;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-weight: 600;
    margin-bottom: -90px;
}
blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre {
    margin: 0;
}

/* width class */
.w-28 {
    width: 4.5rem;
}

/* العناوين الترويجية (Product Card Promotion) */
.product-card__promotion {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1;
    max-width: 50%;
    padding: 0.275rem 0.225rem 0.375rem 0.225rem;
    font-size: 0.65rem;
    line-height: 1rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}

/* تعديل المسافة العلوية لعناصر المنتجات (فقط للموبايل والآيباد) */
@media (max-width: 991px) {
  .s-block {
    margin-top: 1rem;
  }
}










/* ================================================
  ||     Styles for the New Purchase Counter    ||
  ================================================
  ||    **تحديث جذري للتصميم ليصبح أكثر جاذبية** ||
  ================================================
*/
.custom-purchase-counter {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* **تحديث: خلفية حمراء جذابة** */
  background-color: #ef4444; 
  border-radius: 8px; /* حواف أقل دائرية لمظهر عصري */
  padding: 10px 18px;
  margin-top: 10px;
  margin-bottom: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  direction: rtl;
  font-family: 'Tajawal', sans-serif;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3); /* ظل أحمر ناعم */
  transition: all 0.3s ease-in-out;
  color: #ffffff; /* **تحديث: لون النص والأيقونة أصبح أبيض** */
}

.custom-purchase-counter:hover {
    transform: translateY(-3px) scale(1.02); /* حركة أكبر عند المرور */
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
}

.custom-purchase-counter .icon {
  margin-left: 10px;
  font-size: 1.5em; /* أيقونة أكبر قليلاً */
  line-height: 1;
  animation: pulse 1.5s infinite;
}

.custom-purchase-counter .text {
  font-size: 15px; /* خط أكبر وأوضح */
  font-weight: 500;
}

.custom-purchase-counter .text .purchase-count {
  /* **تحديث: إزالة الخلفية والدمج مع التصميم** */
  font-weight: 700;
  padding: 0 4px; /* مسافة بسيطة حول الرقم */
  margin: 0 5px;
}

/* Animation for the icon */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}