@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700&display=swap');

:root {
  --primary-color: #B5863A;        /* لون العسل */
  --text-color: #3B2F2F;           /* البني الداكن */
  --background-color: #FFFFFF;     /* خلفية بيضاء */
  --font-family: 'Tajawal', sans-serif;
}

body {
  background-color: var(--background-color);
  font-family: var(--font-family);
  color: var(--text-color);
  background-image: url('رابط-صورة-الشعار-الشفاف');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 400px;
  background-attachment: fixed;
}

/* ختم الشعار أسفل الصفحة */
body::after {
  content: "";
  background: url('رابط-صورة-الختم') no-repeat center bottom;
  background-size: 120px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

/* العناوين */
h1, h2, h3 {
  font-weight: 700;
  color: var(--text-color);
}

/* الروابط والأزرار */
a, .btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
}
a:hover, .btn-primary:hover {
  background-color: #a4752f;
}

/* كرت المنتج */
.product-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}
.product-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* شريط البحث */
.search-bar input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  outline: none;
  font-size: 16px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  color: var(--text-color);
}
.search-bar input::placeholder {
  color: #999;
}