<style>


/* ============================================
   HOME PRODUCTS CAROUSEL CARD
   عالم المجوهرات — Gold × Dark Luxury
============================================ */

.home_products_carousel_card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212,165,116,0.15);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  font-family: 'Tajawal', sans-serif;
  direction: rtl;
}

.home_products_carousel_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  border-color: rgba(212,165,116,0.4);
}

/* خط ذهبي علوي يظهر عند الـ hover */
.home_products_carousel_card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4a574, transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.home_products_carousel_card:hover::before {
  opacity: 1;
}

/* ── صورة المنتج ── */
.home_products_carousel_card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  background: #f8f5f0;
}

.home_products_carousel_card:hover img {
  transform: scale(1.05);
}

/* ── بادج التخفيضات ── */
.home_products_carousel_card .badge,
.home_products_carousel_card [class*="badge"],
.home_products_carousel_card [class*="discount"],
.home_products_carousel_card [class*="sale"] {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #d4a574, #c9975e);
  color: #fff;
  font-family: 'Tajawal', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(212,165,116,0.35);
  z-index: 3;
}

/* ── محتوى الكارد السفلي ── */
.home_products_carousel_card .card-content,
.home_products_carousel_card [class*="card_content"],
.home_products_carousel_card [class*="product_info"],
.home_products_carousel_card > div:last-child {
  padding: 14px 16px 16px;
  background: #ffffff;
}

/* ── اسم المنتج ── */
.home_products_carousel_card [class*="name"],
.home_products_carousel_card [class*="title"],
.home_products_carousel_card h3,
.home_products_carousel_card h4 {
  font-family: 'El Messiri', serif;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── السعر ── */
.home_products_carousel_card [class*="price"] {
  font-family: 'Tajawal', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #c9975e;
}

/* السعر القديم */
.home_products_carousel_card [class*="old_price"],
.home_products_carousel_card [class*="original"],
.home_products_carousel_card s,
.home_products_carousel_card del {
  font-size: 13px;
  color: #888 !important;
  font-weight: 500;
  text-decoration: line-through;
  margin-left: 6px;
  opacity: 1 !important;
  visibility: visible !important;
}

/* إخفاء بادج تخفيضات */
.home_products_carousel_card .badge,
.home_products_carousel_card [class*="badge"],
.home_products_carousel_card [class*="discount"],
.home_products_carousel_card [class*="sale"] {
  display: none !important;
}
.swiper-pagination-bullet {
  background: rgba(212,165,116,0.3);
  opacity: 1;
  width: 6px;
  height: 6px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #d4a574;
  width: 20px;
  border-radius: 3px;
}

/* ── Slider arrows ── */
.slider_button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(212,165,116,0.3);
  color: #c9975e;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.slider_button:hover {
  background: #c9975e;
  border-color: #c9975e;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(212,165,116,0.3);
}

</style>