/* إخفاء وثيقة العمل الحر */
.store-footer salla-trust-badges,
.store-footer .s-trust-badges-wrapper,
.store-footer .s-trust-badges-image,
.store-footer .s-trust-badges-content{
  display: none !important;
}
/* =========================
   ULTRA PREMIUM FOOTER (SALLA) ✅ UPDATED
   ✅ Columns inside small cards
   ✅ All columns wrapped inside 1 big card
   ✅ Footer full wrapped + Smooth animations
   ✅ Removed background glow
   ✅ Removed useless bar under columns
   ✅ Raised copyright/payments bar
   ✅ Bigger payment icons
========================= */

/* خلفية الفوتر */
.store-footer{
  background: #f3f5f9 !important;
  padding: 35px 0 20px !important; /* زودنا padding تحت شوية */
  border-top: 1px solid rgba(0,0,0,.06);
  overflow: hidden;
}

/* =========================
   1) الكارت الكبير اللي ورا الأعمدة
========================= */
.store-footer__inner{
  padding: 0 !important;
}

.store-footer__inner .container.grid{
  position: relative !important;
  z-index: 1;
  padding: 28px 22px !important;
  margin-top: 0 !important;

  /* الشبكة */
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 18px !important;

  /* أنيميشن دخول */
  opacity: 0;
  transform: translateY(22px) scale(.985);
  animation: footerWrapIn .75s ease forwards;
}

/* الكارت الكبير الحقيقي باستخدام ::before */
.store-footer__inner .container.grid::before{
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  border-radius: 26px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 22px 60px rgba(2,6,23,.08);
  z-index: -1;
}

/* ✅ إلغاء أي إضاءة/Glow من الخلف نهائيًا */
.store-footer__inner .container.grid::after{
  content: none !important;
  display: none !important;
}

/* أنيميشن دخول */
@keyframes footerWrapIn{
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* =========================
   Responsive columns
========================= */

/* Tablet => 2 columns */
@media (min-width: 641px) and (max-width: 1023px){
  .store-footer__inner .container.grid{
    grid-template-columns: 1fr 1fr !important;
    gap: 18px !important;
  }
}

/* Desktop => 3 columns */
@media (min-width: 1024px){
  .store-footer__inner .container.grid{
    grid-template-columns: 1.25fr 1fr 1fr !important;
    gap: 22px !important;
  }

  /* منع أي spans من تكسير النظام */
  .store-footer__inner .container.grid > *{
    grid-column: auto !important;
  }
}

/* =========================
   ✅ حذف البار اللي تحت الأعمدة (اللي مش بيعمل حاجة)
   السبب الأساسي: عنصر salla-apps-icons بيظهر كمساحة فاضية
========================= */
.store-footer__inner salla-apps-icons{
  display: none !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
}

/* =========================
   2) كروت الأعمدة الصغيرة (داخل الكارت الكبير)
========================= */
.store-footer__inner .container.grid > div{
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,.06) !important;
  border-radius: 18px !important;
  padding: 18px 16px !important;

  box-shadow: 0 10px 25px rgba(2,6,23,.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;

  /* انميشن ترتيب دخول تدريجي */
  opacity: 0;
  transform: translateY(14px);
  animation: colFadeUp .6s ease forwards;
}

/* تأخير دخول لكل عمود */
.store-footer__inner .container.grid > div:nth-child(1){ animation-delay: .15s; }
.store-footer__inner .container.grid > div:nth-child(2){ animation-delay: .22s; }
.store-footer__inner .container.grid > div:nth-child(3){ animation-delay: .30s; }
.store-footer__inner .container.grid > div:nth-child(4){ animation-delay: .38s; }

@keyframes colFadeUp{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover للكروت الصغيرة */
.store-footer__inner .container.grid > div:hover{
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(2,6,23,.08);
  border-color: rgba(34,197,94,.25);
}

/* =========================
   Typography
========================= */
.store-footer h3,
.store-footer .s-contacts-title{
  font-size: 15px !important;
  font-weight: 900 !important;
  color: #0f172a !important;
  margin: 0 0 12px !important;
}

/* اسم المتجر */
.store-footer a h3{
  font-size: 22px !important;
  font-weight: 900 !important;
  margin: 0 0 10px !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.store-footer a h3::after{
  content:"";
  width: 26px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg,#22c55e,#16a34a);
  opacity: .9;
}

/* وصف المتجر */
.store-footer .max-w-sm p{
  font-size: 13.5px !important;
  line-height: 1.85 !important;
  color: #475569 !important;
  margin: 0 !important;
}

/* =========================
   Links list as premium pills
========================= */
.store-footer .s-menu-footer-list{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 641px){
  .store-footer .s-menu-footer-list{
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

.store-footer .s-menu-footer-item{
  background: #f8fafc !important;
  border: 1px solid rgba(0,0,0,.06) !important;
  border-radius: 14px !important;
  padding: 10px 12px !important;

  display: flex !important;
  align-items: center;
  gap: 10px;

  font-size: 13.3px !important;
  font-weight: 800 !important;
  color: #0f172a !important;

  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.store-footer .s-menu-footer-item::before{
  content:"";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex: 0 0 7px;
}

.store-footer .s-menu-footer-item:hover{
  transform: translateY(-2px);
  background: rgba(34,197,94,.08) !important;
  border-color: rgba(34,197,94,.25) !important;
}

/* =========================
   Contacts as premium blocks
========================= */
.store-footer .s-contacts-item{
  background: #f8fafc !important;
  border: 1px solid rgba(0,0,0,.06) !important;
  border-radius: 14px !important;
  padding: 12px !important;
  display: flex !important;
  align-items: center;
  gap: 12px;

  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.store-footer .s-contacts-item:hover{
  transform: translateY(-2px);
  background: rgba(59,130,246,.06) !important;
  border-color: rgba(59,130,246,.20) !important;
}

.store-footer .s-contacts-icon{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 18px rgba(2,6,23,.05);
}

.store-footer .s-contacts-icon svg{
  width: 18px !important;
  height: 18px !important;
  opacity: .9;
}

.store-footer .s-contacts-item .unicode{
  font-size: 13px !important;
  font-weight: 900 !important;
  color: #0f172a !important;
}

/* =========================
   3) تغليف الجزء السفلي كله بكارت ✅ (مرفوع لفوق)
========================= */
.store-footer > .md\:flex{
  position: relative;
  margin-top: 10px !important;      /* ✅ رفعناه لفوق */
  margin-bottom: 0 !important;
  padding: 16px 18px !important;

  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(2,6,23,.06);

  transform: translateY(10px);      /* ✅ أقل */
  opacity: 0;
  animation: bottomIn .6s ease forwards;
  animation-delay: .32s;
}

@keyframes bottomIn{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* النص */
.store-footer .copyright-text p{
  color: #64748b !important;
  font-size: 12.5px !important;
  margin: 0 !important;
}

/* =========================
   ✅ تكبير أيقونات وسائل الدفع
========================= */
.store-footer .s-payments-list{
  display: flex;
  gap: 10px; /* أكبر */
  flex-wrap: wrap;
  justify-content: center;
}

.store-footer .s-payments-list-item{
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 8px 12px; /* أكبر */
  box-shadow: 0 10px 18px rgba(2,6,23,.04);
  transition: transform .22s ease;
}

.store-footer .s-payments-list-item:hover{
  transform: translateY(-2px);
}

/* ✅ تكبير صورة الأيقونة نفسها */
.store-footer .s-payments-list-item img{
  width: 44px !important;
  height: 44px !important;
  object-fit: contain !important;
}

/* =========================
   Mobile polish
========================= */
@media (max-width: 640px){
  .store-footer__inner .container.grid{
    padding: 18px 14px !important;
    border-radius: 20px !important;
  }

  .store-footer__inner .container.grid > div{
    padding: 14px 12px !important;
  }

  .store-footer .s-payments-list-item img{
    width: 42px !important;
    height: 42px !important;
  }
}
/* =========================
   FOOTER "DALA3" ADD-ON 😄🔥
   Paste UNDER your current footer CSS
========================= */

/* 1) Border Gradient فاخر حوالين الكارت الكبير */
.store-footer__inner .container.grid::before{
  border: 1px solid transparent !important;
  background:
    linear-gradient(#ffffff,#ffffff) padding-box,
    linear-gradient(135deg,
      rgba(34,197,94,.35),
      rgba(59,130,246,.20),
      rgba(15,23,42,.10)
    ) border-box !important;
}

/* 2) Texture خفيفة جدا في الخلف (بدون إضاءة مزعجة) */
.store-footer__inner .container.grid{
  background: transparent !important;
}

.store-footer__inner .container.grid::before{
  box-shadow: 0 22px 60px rgba(2,6,23,.07) !important; /* أخف */
}

/* 3) إضافة Shine Effect على كروت الأعمدة */
.store-footer__inner .container.grid > div{
  position: relative;
  overflow: hidden;
}

/* لمعة خفيفة */
.store-footer__inner .container.grid > div::after{
  content:"";
  position:absolute;
  top:-40%;
  left:-60%;
  width: 120%;
  height: 180%;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255,255,255,.55) 50%,
    transparent 65%
  );
  transform: rotate(12deg);
  opacity: 0;
  transition: opacity .35s ease, left .55s ease;
  pointer-events: none;
}

.store-footer__inner .container.grid > div:hover::after{
  opacity: .75;
  left: 60%;
}

/* 4) Hover أهدى وأفخم للكروت (رفع بسيط + Border أشيك) */
.store-footer__inner .container.grid > div:hover{
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(34,197,94,.22) !important;
  box-shadow: 0 22px 55px rgba(2,6,23,.09) !important;
}

/* 5) عناوين الأعمدة: underline متحرك */
.store-footer h3,
.store-footer .s-contacts-title{
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.store-footer h3::after,
.store-footer .s-contacts-title::after{
  content:"";
  position:absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg,#22c55e,#16a34a);
  transition: width .35s ease;
  opacity: .85;
}

.store-footer__inner .container.grid > div:hover h3::after,
.store-footer__inner .container.grid > div:hover .s-contacts-title::after{
  width: 100%;
}

/* 6) اللينكات تبقى أنعم + hover أحلى */
.store-footer .s-menu-footer-item{
  box-shadow: 0 8px 18px rgba(2,6,23,.03) !important;
}

.store-footer .s-menu-footer-item:hover{
  transform: translateY(-3px) !important;
  box-shadow: 0 14px 30px rgba(2,6,23,.06) !important;
}

/* 7) أيقونات التواصل تكبر سنة بسيطة بالهوفر */
.store-footer .s-contacts-item:hover .s-contacts-icon{
  transform: scale(1.06);
  transition: transform .25s ease;
}

/* 8) كارت الحقوق والدفع: حركة بسيطة + Shine */
.store-footer > .md\:flex{
  overflow: hidden;
}

.store-footer > .md\:flex::after{
  content:"";
  position:absolute;
  top:-60%;
  left:-70%;
  width: 140%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255,255,255,.50) 50%,
    transparent 60%
  );
  transform: rotate(10deg);
  opacity: 0;
  transition: opacity .35s ease, left .65s ease;
  pointer-events:none;
}

.store-footer > .md\:flex:hover::after{
  opacity: .6;
  left: 70%;
}

/* 9) أيقونات الدفع أكبر وشكلها أفخم */
.store-footer .s-payments-list-item{
  transition: transform .22s ease, box-shadow .22s ease !important;
}

.store-footer .s-payments-list-item:hover{
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 16px 30px rgba(2,6,23,.08) !important;
}

/* 10) Smooth للكل */
.store-footer,
.store-footer *{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}