/* لون الخط الذهبي الموحد */
:is(i, svg, .icon, .product-more-icon, button, .btn, footer, footer a, footer p) {
  color: #d4af37;
}

/* خلفية رمادية للأيقونات العامة */
:is(i, svg, .icon, .product-more-icon) {
  background: #555;
}

/* خلفية سوداء لزر "أضف للسلة" */
:is(button, .btn) {
  background: #000;
  border: 1.5px solid #d4af37;
}

/* الفوتر */
footer {
  border-top: 2px solid #FFD700;
  box-shadow: inset 0 4px 15px rgba(218,165,32,0.6);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.05em;
  word-break: break-word;
}

/* تأثير الهوفر على روابط الفوتر */
footer a:hover {
  color: #fff;
}

/* تثبيت أبعاد الصور داخل المنتجات */
.product-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* منع تحرك العناصر داخل بطاقات المنتجات */
.product-item {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* تحسين عرض النصوص على الجوال */
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}