:root {
  --gold-primary: #BB8629;
  --gold-light: #F2DC8E;
  --cream-bg: #F2EDE0;
  --dark-green: #0F2F25;
}

/* ===== أعلى الصفحة بالكامل ===== */
header,
.header,
.site-header,
.top-bar {
  background-color: #0F2F25 !important; /* أخضر غامق */
}

/* النصوص والروابط */
header *,
.top-bar *,
.site-header * {
  color: #0F2F25 !important; /* كريمي */
  font-weight: bold;
}

/* الروابط */
header a,
.top-bar a {
  color: #F2DC8E !important;
  transition: all 0.3s ease;
}

/* Hover */
header a:hover,
.top-bar a:hover {
  background-color: #F2EDE0; /* Soft Gold */
  color: #0F2F25 !important;
  border-radius: 6px;
  padding: 4px 8px;
}





/* خلفية المتجر + الباترون */
body {
  background-color: var(--cream-bg);
  color: var(--dark-green);
}

/* إضافة الباترون بشكل احترافي */
body::before {
  content: "";
  position: fixed;
  inset: 0;

  background-image: url("https://res.cloudinary.com/drhnnrkyz/image/upload/v1767782694/الباترون-01_cq1xaf.svg");
  background-repeat: repeat;

  /* حجم وحدة الباترون (صغير وفخم) */
  background-size: 200px 200px;

  /* خفة الباترون */
  opacity: 0.015;

  pointer-events: none;
  z-index: -1;
}



/* ===== Footer Background ===== */
footer,
.site-footer,
.s-footer {
  background-color: #F2EDE0 !important;
  color: #F2DC8E !important;
}

/* ===== Footer Text ===== */
footer *,
.site-footer *,
.s-footer * {
  color: #0F2F25 !important;
}

/* ===== Footer Links ===== */
footer a,
.site-footer a,
.s-footer a {
  color: #0F2F25 !important;
  transition: color 0.3s ease;
}

/* Hover effect للروابط */
footer a:hover,
.site-footer a:hover,
.s-footer a:hover {
  color: #0F2F25 !important;
}

/* ===== أيقونات السوشيال ===== */
footer svg,
footer i {
  fill: #0F2F25 !important;
  color: #0F2F25 !important;
}

/* Hover للأيقونات */
footer a:hover svg,
footer a:hover i {
  fill: #0F2F25 !important;
  color: #0F2F25 !important;
}

/* ===== خط فاصل أعلى الفوتر (اختياري فاخر) ===== */
footer {
  border-top: 1px solid rgba(242, 220, 142, 0.2);
}