/* بلوك منتج مميز – عباية سناء من وَطر */
.wtar-sanaa-featured {
  background: radial-gradient(circle at top, #222 0%, #000 55%, #050505 100%);
  border: 1px solid rgba(192, 192, 192, 0.85); /* إطار فضي */
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

/* هالة خفيفة خلفية تعطي فخامة */
.wtar-sanaa-featured::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

/* شريط "منتج مميز" أعلى الكرت */
.wtar-sanaa-featured::after {
  content: "منتج مميز";
  position: absolute;
  top: 10px;
  left: 12px;
  background: linear-gradient(135deg, #f5f5f5, #c0c0c0, #ffffff);
  color: #111;
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.35);
  z-index: 2;
}

/* نضمن أن المحتوى الداخلي فوق الخلفيات */
.wtar-sanaa-featured * {
  position: relative;
  z-index: 1;
}

/* صورة المنتج */
.wtar-sanaa-featured img {
  border-radius: 14px;
  object-fit: cover;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* تأثير هوفر على الصورة */
.wtar-sanaa-featured:hover img {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.8);
}

/* عنوان المنتج */
.wtar-sanaa-featured .product-title,
.wtar-sanaa-featured .product-name,
.wtar-sanaa-featured h3,
.wtar-sanaa-featured h2 {
  color: #f7f7f7;
  font-weight: 600;
  font-size: 1.02rem;
  margin-top: 10px;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

/* السعر الأساسي */
.wtar-sanaa-featured .price,
.wtar-sanaa-featured .product-price {
  color: #f4e3b0; /* ذهبي ناعم */
  font-weight: 700;
  font-size: 1.05rem;
}

/* سعر قبل الخصم (إن وجد) */
.wtar-sanaa-featured .old-price,
.wtar-sanaa-featured .price--compare-at,
.wtar-sanaa-featured .compare-at-price {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* عدّاد التخفيض (العد التنازلي) إن وُجد */
.wtar-sanaa-featured .countdown-timer,
.wtar-sanaa-featured .sale-countdown {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  padding: 5px 10px;
  margin-top: 6px;
  font-size: 0.8rem;
  color: #e6e6e6;
  border: 1px solid rgba(192, 192, 192, 0.35);
}

/* زر الإضافة للسلة */
.wtar-sanaa-featured .btn,
.wtar-sanaa-featured .button,
.wtar-sanaa-featured button.add-to-cart {
  width: 100%;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f3f3f3, #d4d4d4);
  color: #111;
  font-weight: 600;
  border: none;
  padding: 9px 14px;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

/* هوفر على الزر */
.wtar-sanaa-featured .btn:hover,
.wtar-sanaa-featured .button:hover,
.wtar-sanaa-featured button.add-to-cart:hover {
  background: linear-gradient(135deg, #ffffff, #e1e1e1);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}

/* إخفاء "الكمية المتبقية" لو القالب يعرضها كنص داخل البلوك */
.wtar-sanaa-featured .stock-left,
.wtar-sanaa-featured .product-stock,
.wtar-sanaa-featured .remaining-qty {
  display: none !important;
}

/* تحسين المظهر على الجوال */
@media (max-width: 768px) {
  .wtar-sanaa-featured {
    padding: 14px 12px;
    border-radius: 16px;
  }

  .wtar-sanaa-featured .product-title,
  .wtar-sanaa-featured .product-name {
    font-size: 0.98rem;
  }

  .wtar-sanaa-featured .btn,
  .wtar-sanaa-featured .button,
  .wtar-sanaa-featured button.add-to-cart {
    font-size: 0.9rem;
    padding: 8px 12px;
  }
}