/* ==============================================
   إصلاح نهائي - وضوح أرقام التواصل في الفوتر
   ============================================== */
/* استهداف شامل لجميع عناصر التواصل */
footer a,
footer span,
footer p,
.store-footer a,
.store-footer span,
.store-footer p,
[class*="contact"] a,
[class*="contact"] span,
[class*="contact"] p,
[class*="footer"] a,
[class*="footer"] span {
  color: #1a1a1a !important;
  opacity: 1 !important;
}
/* أرقام الهاتف والبريد الإلكتروني */
a[href^="tel"],
a[href^="mailto"],
a[href^="https://wa.me"],
a[href*="whatsapp"] {
  color: #1a1a1a !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  opacity: 1 !important;
  text-decoration: none !important;
}
a[href^="tel"]:hover,
a[href^="mailto"]:hover {
  color: #c5a880 !important;
}
/* أيقونات التواصل الاجتماعي */
a[href*="instagram"],
a[href*="snapchat"],
a[href*="tiktok"],
a[href*="twitter"],
a[href*="facebook"] {
  color: #1a1a1a !important;
  opacity: 1 !important;
}
a[href*="instagram"] svg path,
a[href*="snapchat"] svg path,
a[href*="tiktok"] svg path {
  fill: #1a1a1a !important;
}
a[href*="instagram"]:hover svg path,
a[href*="snapchat"]:hover svg path,
a[href*="tiktok"]:hover svg path {
  fill: #c5a880 !important;
}

/* ==============================================
   تنسيق الشريط المتحرك (Ticker) - إصلاح المساحة البيضاء
   ============================================== */
.ticker-wrapper {
  width: 100%;
  overflow: hidden;
  background-color: #f8f8f8;
  padding: 10px 0;
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
}
.ticker {
  display: flex;
  flex-direction: row;
  white-space: nowrap;
  animation: ticker-scroll 20s linear infinite;
  width: max-content;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 30px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
}
.ticker-item i {
  font-size: 16px;
  color: #c5a880;
}
@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}