/* Add custom CSS styles below */ 
/* ========== CONFIG ========== */
:root {
  --main-color: #48a6a6; 
  --second-color: #000000;
  --bg-color: #f2efe6;
  --third-color: #ffffff;
  --glow-color: #000000; /* التوهج أسود */
  --logo: url("https://i.ibb.co/CpvSCjGM/58-EAAF66-CE82-4-C4-F-96C7-3504642-E79-D8.jpg"); /* اللوقو الجديد */
}

/* ===== Splash Screen ===== */
body.index:after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #fff var(--logo) no-repeat center;
  background-size: 200px;
  animation: fade-out 2.25s ease-in-out forwards;
  transition: opacity .5s ease-in-out;
  pointer-events: none;
  border: none;
}
@keyframes fade-out {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

/* ===== Buttons (Black) ===== */
.s-button,
.s-button-primary,
.s-button-outline,
.s-button-primary-outline {
  --btn-c: #000;
  color: var(--third-color) !important;
  background: var(--btn-c) !important;
  border-color: var(--btn-c) !important;
}
.s-button-outline,
.s-button-primary-outline {
  color: #000 !important;
  background: transparent !important;
}
.s-button-outline:hover,
.s-button-primary-outline:hover {
  color: #fff !important;
  background: #000 !important;
  border-color: #000 !important;
}

/* ===== Footer with Centered Logo ===== */
.store-footer {
  background: transparent !important;
  padding: 30px;
  font-size: 14px;
  text-align: center;
}
.store-footer__inner {
  background: var(--third-color) !important;
  border-radius: 16px;
  box-shadow: 0 2px 15px var(--glow-color) !important;
  border: 1px solid rgba(255,255,255,.29) !important;
  text-align: center;
}

/* اللوقو في المنتصف */
.store-footer a h3:nth-child(1) {
  display: block;
  margin: 0 auto 10px auto;
  width: 120px;              /* عرض اللوقو */
  height: 120px;             /* ارتفاع اللوقو */
  background-image: var(--logo);
  background-size: contain;  /* يظهر كامل بدون قص */
  background-repeat: no-repeat;
  background-position: center;
  color: transparent;
}

/* رابط تحميل اللوقو تحت اللوقو */
.store-footer .logo-link {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  color: var(--main-color);
  text-decoration: none;
  transition: .3s;
}
.store-footer .logo-link:hover {
  color: #000; /* أسود عند التمرير */
}