/* 🟤 تحسين عام */
body {
  letter-spacing: 0.3px;
}

/* 🟤 الهيدر */
header {
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.9) !important;
  border-bottom: 1px solid #eee;
}

/* 🟤 اللوقو */
header img {
  border-radius: 10px;
}

/* 🟤 بطاقة المنتج */
.product-entry {
  border-radius: 22px !important;
  background: #fff;
  padding: 18px !important;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
}

.product-entry:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* 🟤 صورة المنتج */
.product-entry img {
  border-radius: 16px !important;
  transition: 0.4s;
}

.product-entry:hover img {
  transform: scale(1.05);
}

/* 🟤 اسم المنتج */
.product-entry .product-title {
  font-weight: 600;
  font-size: 15px;
  margin-top: 10px;
}

/* 🟤 السعر */
.product-entry .price {
  font-weight: bold;
  font-size: 16px;
}

/* 🟤 زر السلة */
.btn--add-to-cart {
  border-radius: 50px !important;
  padding: 12px !important;
  font-weight: 600;
  transition: 0.3s;
}

.btn--add-to-cart:hover {
  transform: scale(1.05);
}

/* 🟤 زر المفضلة */
.btn--wishlist {
  border-radius: 50% !important;
  background: #f8f8f8;
}

/* 🟤 توحيد شكل الأزرار */
button {
  border-radius: 30px !important;
}

/* 🟤 المسافات بين المنتجات */
.products-grid {
  gap: 30px !important;
}

/* 🟤 البلوكات (شحن - خدمة - أمان) */
.s-block {
  border-radius: 25px !important;
  padding: 25px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.s-block:hover {
  transform: translateY(-6px);
}

/* 🟤 الفوتر */
footer {
  border-top: 1px solid #eee;
  padding-top: 40px;
}

/* 🟤 حذف وثيقة العمل الحر */
.s-trust-badges,
.s-trust-badges-image,
img[src*="freelance.png"] {
  display: none !important;
}/* 🟤 بداية مخفية */
.product-entry {
  opacity: 0;
  transform: translateY(30px);
  animation: productFadeIn 0.8s ease forwards;
}

/* 🟤 تأخير تدريجي لكل منتج */
.product-entry:nth-child(1) { animation-delay: 0.1s; }
.product-entry:nth-child(2) { animation-delay: 0.2s; }
.product-entry:nth-child(3) { animation-delay: 0.3s; }
.product-entry:nth-child(4) { animation-delay: 0.4s; }
.product-entry:nth-child(5) { animation-delay: 0.5s; }
.product-entry:nth-child(6) { animation-delay: 0.6s; }

/* 🟤 الحركة */
@keyframes productFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/* حذف وثيقة العمل الحر نهائياً */
img.s-trust-badges-image,
img[src*="freelance.png"],
.s-trust-badges {
  display: none !important;
}/* إزالة العنصر بالكامل حتى لو متكرر */
#edit-footer + * img[src*="freelance.png"] {
  display: none !important;
}

#edit-footer + * .s-trust-badges {
  display: none !important;
}/* حذف وثيقة العمل الحر بالقوة */
img[src="https://cdn.salla.network/images/freelance.png"],
img[src*="freelance.png"],
.s-trust-badges,
.s-trust-badges-image,
[class*="trust-badges"] {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  height: 0 !important;
}.btn--add-to-cart {
  position: relative;
  overflow: hidden;
}

.btn--add-to-cart::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: 0.4s;
}

.btn--add-to-cart:hover::after {
  left: 100%;
}header {
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.75) !important;
}/* 🟤 الحاوية العامة */
.product-page {
  padding: 30px 0;
}

/* 🟤 صورة المنتج */
.product-gallery img {
  border-radius: 20px !important;
  transition: 0.4s;
}

.product-gallery img:hover {
  transform: scale(1.03);
}

/* 🟤 عنوان المنتج */
.product-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* 🟤 السعر */
.product-price {
  font-size: 22px;
  font-weight: bold;
  margin: 15px 0;
}

/* 🟤 الوصف */
.product-description {
  line-height: 1.8;
  color: #555;
}

/* 🟤 زر إضافة للسلة */
.btn--add-to-cart {
  width: 100%;
  border-radius: 50px !important;
  padding: 14px !important;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

.btn--add-to-cart:hover {
  transform: scale(1.03);
}

/* 🟤 أزرار الكمية */
.quantity-control {
  border-radius: 30px;
  overflow: hidden;
}

/* 🟤 البوكس العام */
.product-info {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

/* 🟤 تقييم النجوم */
.product-rating {
  margin: 10px 0;
}

/* 🟤 خط فاصل ناعم */
.product-divider {
  height: 1px;
  background: #eee;
  margin: 20px 0;
}
#edit-812504224 span {
    font-size: 12px !important;
    max-width: 200px;
    margin: 0 auto;
    text-align: center;
    color: #888 !important;
}