/* ===== تنسيق عام وأساسيات ===== */
body {
  font-family: 'Cairo', sans-serif;
  background-color: #33424A;
  color: #fff;
  scroll-behavior: smooth;
}

/* ===== تحسين شكل الصور ===== */
.s-product-card-image img {
  transition: transform .4s ease, box-shadow .3s ease;
  border-radius: 12px;
}
.s-product-card-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(29,239,216,0.2);
}

/* ===== تنسيق العناوين الرئيسية بإطار أخضر متوهج ===== */
.s-block__title h2,
.s-slider-block__title h2 {
  color: #fff;
  border: 2px solid #1DEFD8;
  border-radius: 12px;
  padding: 10px 25px;
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: transparent;
  box-shadow: 0 0 10px rgba(29,239,216,0.3);
  transition: all .3s ease;
}

.s-block__title h2:hover,
.s-slider-block__title h2:hover {
  background: rgba(29,239,216,0.1);
  box-shadow: 0 0 15px rgba(29,239,216,0.5);
  transform: translateY(-3px);
}

/* ===== فوتر احترافي بلون موحد ===== */
.store-footer__inner, footer {
  background-color: #303A40 !important; /* اللون المطلوب */
  color: #fff !important;
  border-radius: 40px 40px 0 0; /* يعطي شكل مقوس من الأعلى */
  padding: 40px 0;
  text-align: center;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.2);
}

/* ===== نصوص وروابط الفوتر ===== */
.store-footer__inner a {
  color: #1DEFD8 !important; /* لون الروابط تركواز */
  transition: color .3s ease;
}
.store-footer__inner a:hover {
  color: #4686FF !important; /* يتحول للأزرق عند المرور */
}

/* ===== أيقونات التواصل ===== */
.store-footer .social-link {
  background: #1DEFD8;
  color: #303A40 !important;
  border-radius: 50%;
  padding: 10px;
  margin: 5px;
  transition: all .3s ease;
}
.store-footer .social-link:hover {
  background: #4686FF;
  color: #fff !important;
  transform: scale(1.1);
}

/* ===== نص الحقوق ===== */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 20px;
  padding-top: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

/* ===== علامة التوثيق (مثلاً توثيق المركز السعودي للأعمال) ===== */
.footer-verification {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}
.footer-verification img {
  width: 40px;
  height: 40px;
}
.footer-verification span {
  color: #1DEFD8;
  font-weight: 600;
}

/* ===== البطاقات (المنتجات) ===== */
.s-product-card-entry {
  background: #3d4e56;
  border-radius: 16px !important;
  overflow: hidden;
  transition: all .3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.s-product-card-entry:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(29,239,216,0.25);
}

/* ===== الأزرار ===== */
.s-button-primary, .s-button-btn {
  background: linear-gradient(90deg, #4686FF, #1DEFD8) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  transition: all .3s ease;
}
.s-button-primary:hover, .s-button-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(29,239,216,0.3);
}

/* ===== الفوتر المقوس ===== */
.store-footer__inner, footer {
  background: linear-gradient(90deg, #33424A, #‏4686FF);
  color: #fff !important;
  border-radius: 40px 40px 0 0;
  padding: 30px 0;
}
.store-footer__inner a {
  color: #fff !important;
  transition: color .3s ease;
}
.store-footer__inner a:hover {
  color: #1DEFD8 !important;
}

/* ===== الهيدر (الشريط العلوي) ===== */
.top-navbar, .navbar {
  background: rgba(51, 66, 74, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ===== تأثير لامع على النصوص الرئيسية ===== */
@keyframes shineText {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.s-block__title h2, .s-slider-block__title h2 {
  background: linear-gradient(90deg, #4686FF, #1DEFD8, #4686FF);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 5s infinite linear;
}

/* ===== تحسين مربع البحث ===== */
.search-form input {
  border-radius: 10px !important;
  border: 1px solid #1DEFD8;
  background-color: #3d4e56;
  color: #fff;
  transition: all .3s ease;
}
.search-form input:focus {
  border-color: #4686FF;
  box-shadow: 0 0 8px rgba(70,134,255,0.4);
}

/* ===== تأثير ظهور ناعم للعناصر ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.s-product-card-entry, .s-block__title h2, .s-slider-block__title h2 {
  animation: fadeUp 0.7s ease fo /* ====== خطوط متدرجة بجانب العناوين الرئيسية ====== */
h2.section-title,
h3.section-title,
.section__title,
.title-section {
  position: relative;
  display: inline-block;
  padding: 0 40px;
  font-weight: 700;
}

h2.section-title::before,
h2.section-title::after,
h3.section-title::before,
h3.section-title::after,
.section__title::before,
.section__title::after,
.title-section::before,
.title-section::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 90px; /* طول الخط */
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #34424A 0%, #34424A 25%, #02ECD5 50%, #4786FF 75%, #34424A 100%);
  transform: translateY(-50%);
}

/* الخط اليسار */
h2.section-title::before,
h3.section-title::before,
.section__title::before,
.title-section::before {
  right: 100%;
  margin-right: 20px;
}

/* الخط اليمين */
h2.section-title::after,
h3.section-title::after,
.section__title::after,
.title-section::after {
  left: 100%;
  margin-left: 20px;
}

/* موبايل */
@media (max-width: 600px) {
  h2.section-title::before,
  h2.section-title::after,
  h3.section-title::before,
  h3.section-title::after,
  .section__title::before,
  .section__title::after,
  .title-section::before,
  .title-section::after {
    width: 50px;
  }
}