/* الحل النهائي للخلفية الكاملة */
html::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://helen-sa.com/storage/backgrounds/rival_testimonial_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

/* الأساسيات */
body {
  background-color: transparent !important;
  font-family: 'Tajawal', sans-serif !important;
  color: #333;
}

/* الهيدر */
.header, .navbar {
  background-color: rgba(255, 255, 255, 0.95) !important;
  border-bottom: 2px solid #79aabf;
}
.header .logo img {
  max-height: 60px;
}

/* القائمة الرئيسية */
.navbar-nav a {
  color: #79aabf !important;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 15px;
}
.navbar-nav a:hover {
  color: #5e96aa !important;
  text-decoration: underline;
}

/* شريط التنبيه */
.header-alert-bar, .notification-bar {
  background-color: #79aabf !important;
  color: white !important;
  text-align: center;
  font-weight: bold;
}

/* بانر الصفحة */
.hero-section, .main-banner {
  background-color: rgba(232, 226, 214, 0.9) !important;
  color: #333;
}

/* العناوين */
h1, h2, h3, .section-title {
  color: #79aabf;
  font-weight: bold;
  position: relative;
}
.section-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background-color: #79aabf;
  display: block;
  margin-top: 8px;
}

/* بطاقات المنتجات */
.product-box, .product-card {
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-box:hover, .product-card:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(121, 170, 191, 0.2);
}

/* أزرار (إضافة للسلة، الشراء) */
.btn-primary, .add-to-cart-btn {
  background-color: #79aabf !important;
  color: white !important;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
.btn-primary:hover, .add-to-cart-btn:hover {
  background-color: #5e96aa !important;
}

/* أزرار عامة */
button, .btn {
  border-radius: 10px !important;
}

/* الأسعار */
.price, .product-price {
  color: #5e96aa !important;
  font-weight: bold;
  font-size: 18px;
}

/* الفوتر */
footer {
  background-color: rgba(240, 230, 216, 0.95) !important;
  color: #444;
  padding: 40px 20px;
  font-size: 14px;
  text-align: center;
  border-top: 2px solid #79aabf;
}
footer a {
  color: #79aabf !important;
  text-decoration: none;
}

/* شريط البحث */
.search-bar input {
  border-radius: 10px !important;
  border: 1px solid #ccc;
}
.search-bar input:focus {
  border-color: #79aabf;
  box-shadow: 0 0 5px rgba(121, 170, 191, 0.5);
}

/* زر العودة للأعلى */
#back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: #79aabf;
  color: white;
  border-radius: 50%;
  padding: 10px 15px;
  font-size: 20px;
  z-index: 9999;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
#back-to-top:hover {
  background-color: #5e96aa;
}

button.add-to-cart,
.btn-add-to-cart {
    background-color: #89bccc !important; /* نفس لون الشعار */
    color: white !important;
    border-radius: 6px;
    border: none;
    transition: background-color 0.3s ease;
}

button.add-to-cart:hover,
.btn-add-to-cart:hover {
    background-color: #6aa2b4 !important; /* أغمق قليلاً عند التحويم */
}

button.add-to-favorite,
.btn-favorite,
.favorite-icon,
svg.favorite-icon path {
    color: #89bccc !important; /* نفس اللون */
    fill: #89bccc !important;
}

/* جعل المحتوى شفاف قليلاً ليظهر الخلفية */
.container, .main-content, .wrapper, .section {
    background-color: rgba(255, 255, 255, 0.9) !important;