/* 1. استيراد الخطوط الملكية */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* 2. تعيين الألوان الأساسية */
:root {
  --main-color: #D4AF37 !important; /* الذهبي */
  --bg-color: #050505 !important;   /* الأسود الملكي */
  --text-color: #ffffff !important; /* الأبيض */
  --font-main: 'Cairo', sans-serif !important;
}

/* 3. خلفية الموقع */
body, .store-layout {
  background: linear-gradient(to bottom, #050505 0%, #1a0505 100%) !important;
  color: #ffffff !important;
  font-family: 'Cairo', sans-serif !important;
}

/* 4. العناوين باللون الذهبي */
h1, h2, h3, h4, .section-title {
  font-family: 'Playfair Display', serif !important;
  color: #D4AF37 !important;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3); /* توهج خفيف */
}

/* 5. الأزرار */
button, .btn, .s-add-to-cart-button {
  background-color: #D4AF37 !important;
  color: #000000 !important;
  border-radius: 25px !important; /* حواف دائرية */
  font-weight: bold !important;
  border: none !important;
}

/* 6. بطاقات المنتجات */
.product-entry, .s-product-card-entry {
  background-color: rgba(255, 255, 255, 0.05) !important; /* خلفية شفافة */
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  backdrop-filter: blur(5px);
}

.product-entry:hover {
  border-color: #D4AF37 !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2) !important;
}