/* ===== الخط العام ===== */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap');
body, h1, h2, h3, h4, h5, h6, p, span, div, a, button {
    font-family: 'Tajawal', sans-serif !important;
}

/* ===== الخلفية العامة ===== */
body {
    background-color: #f5eee7 !important;
    color: #5c4b3b !important;
}

/* ===== العناوين ===== */
h1, h2, h3, h4, h5, h6 {
    color: #5c4b3b !important;
    font-weight: 700 !important;
}

/* ===== الفقرات والنصوص ===== */
p, span, div, a {
    color: #5c4b3b !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
}

/* ===== الأزرار الرئيسية ===== */
.s-button-primary,
.s-button-primary:hover,
button, input[type="submit"], .s-add-to-cart-button, .s-button-add-to-cart {
    background-color: #b98b53 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 10px 20px !important;
    font-weight: 600 !important;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* ===== أزرار Hover ===== */
.s-button-primary:hover,
button:hover, input[type="submit"]:hover, .s-add-to-cart-button:hover, .s-button-add-to-cart:hover {
    background-color: #a67c52 !important;
    transform: scale(1.03);
}

/* ===== الأزرار الثانوية ===== */
.s-button-primary-outline {
    background-color: transparent !important;
    border: 2px solid #b98b53 !important;
    color: #b98b53 !important;
    border-radius: 8px !important;
}
.s-button-primary-outline:hover {
    background-color: #b98b53 !important;
    color: #ffffff !important;
}

/* ===== الفوتر ===== */
footer, .store-footer, .s-footer, .bg-black {
    background-color: #3b2c23 !important;
    color: #f5eee7 !important;
}
footer a, .store-footer a {
    color: #f5eee7 !important;
}
footer a:hover, .store-footer a:hover {
    color: #b98b53 !important;
}

/* ===== عناوين الأقسام الرئيسية ===== */
.s-block__title h2 {
    color: #5c4b3b !important;
    font-size: 25px !important;
    margin: 30px 0 10px 0 !important;
    text-align: center;
}

/* ===== المنتج في القائمة ===== */
.s-product-card-title {
    color: #5c4b3b !important;
    font-weight: 600 !important;
}

/* ===== السعر في المنتج ===== */
.s-product-card-price {
    color: #b98b53 !important;
    font-weight: 700 !important;
}

/* ===== تقييم النجوم ===== */
.s-rating-stars-wrapper svg {
    fill: #b98b53 !important;
}

/* ===== شريط الإعلان ===== */
.dynamic-announcement-bar {
    background-color: #3b2c23 !important;
    color: #f5eee7 !important;
    font-weight: 600 !important;
}

/* ===== الهيدر ===== */
.main-nav-container {
    background-color: #b98b53 !important;
}
.main-nav-container a {
    color: #ffffff !important;
}

/* ===== تأثير بسيط عند تمرير الصور (احترافي) ===== */
.s-product-card img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* ===== هوامش مناسبة للنصوص لراحة البصر ===== */
p, span, div {
    margin-bottom: 10px !important;
}
.dynamic-announcement-bar .message {
    color: #ffffff !important; /* أبيض مثلا */
    font-weight: bold;
}
.dynamic-announcement-bar .message {
  display: inline-block;
  white-space: nowrap;
  animation: slide-text 10s linear infinite;
}

@keyframes slide-text {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}