/* إخفاء أزرار الشراء */
salla-add-product-button,
salla-quantity-input,
salla-quick-buy { display:none !important; }

/* إخفاء السعر المشطوب ونسبة الخصم */
.before-price,
.off-ratio { display:none !important; }

/* إخفاء رقم السعر (يستبدله زر واتساب عبر JS) */
.total-price{ font-size:0 !important; }

/* زر "اطلب عرض سعر" مكان السعر */
.price-quote-badge{
  display:inline-flex;align-items:center;gap:6px;white-space:nowrap;
  background:linear-gradient(135deg,#25D366,#128C7E);
  color:#fff !important;font-size:14px;font-weight:700;
  padding:8px 16px;border-radius:999px;text-decoration:none;
  box-shadow:0 3px 10px rgba(37,211,102,.4);
  transition:transform .15s ease, box-shadow .15s ease;
  animation:pulseQuote 2s infinite;
}
.price-quote-badge:hover{transform:translateY(-2px);box-shadow:0 6px 16px rgba(37,211,102,.55);}
.price-quote-badge svg{width:16px;height:16px;fill:#fff;flex-shrink:0;}
@keyframes pulseQuote{0%,100%{box-shadow:0 3px 10px rgba(37,211,102,.4);}50%{box-shadow:0 3px 18px rgba(37,211,102,.7);}}

/* الزر الكبير في صفحة المنتج */
.quote-btn{display:flex;align-items:center;justify-content:center;gap:.5rem;width:100%;background:#25D366;color:#fff;font-weight:700;padding:14px 20px;border-radius:12px;font-size:16px;line-height:1;text-decoration:none;margin-top:12px;border:0;cursor:pointer;box-shadow:0 4px 14px rgba(37,211,102,.35);}
.quote-btn:hover{filter:brightness(.95)}
.quote-btn svg{width:22px;height:22px;fill:#fff;flex-shrink:0}
/* ===== شريط التصنيفات العلوي ===== */
#hadabh-cat-bar{
  display:flex;flex-wrap:wrap;gap:10px;align-items:center;justify-content:center;
  direction:rtl;padding:12px 16px;background:#ffffff;
  position:sticky;top:0;z-index:50;border-bottom:2px solid #006347;
}
.cat-chip{position:relative;flex:0 0 auto;isolation:isolate;border-radius:999px;padding:2px;overflow:hidden;text-decoration:none;box-shadow:0 0 12px rgba(10,135,84,.30);}
.cat-chip::before{content:"";position:absolute;z-index:0;left:50%;top:50%;width:240%;height:240%;transform:translate(-50%,-50%) rotate(0deg);background:conic-gradient(#006347 0deg,#006347 200deg,#3DF5A0 280deg,#eafff4 315deg,#3DF5A0 350deg,#006347 360deg);animation:catGlow 3s linear infinite;}
.cat-chip__in{position:relative;z-index:1;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#0a8a57,#006347);color:#fff;font-weight:700;font-size:13px;white-space:nowrap;padding:10px 20px;border-radius:999px;transition:filter .2s ease;}
.cat-chip:hover .cat-chip__in{filter:brightness(1.12);}
.cat-chip:hover{box-shadow:0 0 20px rgba(61,245,160,.7);}
@keyframes catGlow{to{transform:translate(-50%,-50%) rotate(360deg);}}
/* إخفاء السعر في بطاقات المنتجات */
.s-product-card-price,
.s-product-card-sale-price,
.s-product-card-price-before { display:none !important; }