.s-button-primary {
    border-color: #717171;
    background-color: #3e1349;
}
.s-product-options-wrapper {
    padding: 0rem;
}
:root {
    --color-primary: #3e1349;
    }
.s-progress-bar-progress {
  background-color: #3e1349 !important;
}

.text-store-text-primary {
    justify-self: center;
}
salla-rating-stars,
.product-price-top {
  justify-content: center !important;
  text-align: center !important;
  display: flex !important;
}
.s-product-options-option {
    justify-items: center;
}
.product-page small {
  display: none !important;
}
.product-page .p-5 {
  padding-left: 8rem;
  padding-right: 8rem;
}

/* تنسيق الأسئلة الشائعة */
.accordion-group {
  border-bottom: 1px solid #e4e4e4;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}
.accordion-group:first-of-type {
  margin-top: 24px;
}

.accordion-title {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  color: #222;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  position: relative;
  transition: background-color 0.2s ease;
}

.accordion-title::before {
  content: "►";
  font-size: 13px;
  color: #666;
  margin-left: 12px;
  transition: transform 0.2s ease, content 0.2s ease;
}

.accordion-group[open] .accordion-title::before {
  content: "▼";
  transform: rotate(-180deg);
}

details > summary::-webkit-details-marker {
  display: none;
}

.accordion-content {
  padding: 10px 20px 16px;
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  background-color: #fff;
  border-right: 3px solid #eee;
  border-left: 3px solid #eee;
  border-radius: 0 0 6px 6px;
  position: relative;
}



@keyframes fadeBlink {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}

.simple-purchase-info {
  background-color: #3e1349;
  color: #ffffff;
  font-family: 'Cairo', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  margin-top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  line-height: 1.4;
}

.simple-purchase-info .blinking-text {
  animation: fadeBlink 1.8s ease-in-out infinite;
}

.s-slider-thumbs .s-slider-swiper-wrapper {
  justify-content: center !important;
  display: flex !important;
}

section.bg-storeBG.p-5.rounded-md.mb-5,
 {
  display: none !important;
}

#variant-inventory {
  display: none !important;
}
.center-between {
  display: none !important;
}





.custom-live-counter {
  direction: rtl;
  font-family: 'Noto Kufi Arabic', sans-serif;
  position: fixed;
  bottom: 60px; /* مرتفع قليلاً عن الأسفل */
  left: 20px;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.custom-live-counter.show {
  opacity: 1;
  pointer-events: auto;
}

.custom-live-counter .circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #21c97a;
  box-shadow: 0 0 0 6px rgba(33, 201, 122, 0.3);
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.custom-live-counter p {
  margin: 0;
  font-size: 15px;
  color: #222;
  white-space: nowrap;
}