/* ===== GLOBAL FOOTER (RESPONSIVE + SMALLER) ===== */
.appFooter{
  background:#fff;
  border-top:1px solid rgba(0,0,0,.06);
  padding: 18px 12px 14px; /* أصغر */
}

.appFooter .ftWrap{
  max-width: 980px;
  margin: 0 auto;
  text-align:center;
}

/* عنوان */
.appFooter .ftTitle{
  font-weight: 900;
  letter-spacing: .08em;
  color:#2f2f2f;
  font-size: 16px;        /* أصغر */
  margin: 8px 0 10px;     /* أقل */
}

/* ===== Stores ===== */
.appFooter .ftStores{
  display:flex;
  gap: 12px;              /* أقل */
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
}

.appFooter .ftStore{
  display:inline-flex;
  border-radius: 10px;
  overflow:hidden;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
  transform: translateY(0);
  transition: transform .15s ease, box-shadow .15s ease;
}
.appFooter .ftStore:active{ transform: scale(.985); }

.appFooter .ftStore img{
  height: 42px;           /* أصغر */
  width: auto;
  display:block;
}

/* فاصل */
.appFooter .ftDivider{
  height:1px;
  background: rgba(0,0,0,.06);
  margin: 16px auto 12px; /* أقل */
  width: min(820px, 92%);
}

/* ===== Social ===== */
.appFooter .ftSocial{
  display:flex;
  gap: 12px;              /* أقل */
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  margin: 8px 0 12px;
}

.appFooter .ftSoc{
  width: 46px;            /* أصغر */
  height: 46px;
  border-radius: 999px;
  background: #b3262d;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  box-shadow: 0 10px 20px rgba(179,38,45,.20);
  transition: transform .14s ease, filter .14s ease, box-shadow .14s ease;
}
.appFooter .ftSoc i{
  color:#fff;
  font-size: 20px;        /* أصغر */
  line-height:1;
}
.appFooter .ftSoc:active{ transform: scale(.96); }

/* ===== Copy ===== */
.appFooter .ftCopy{
  color:#6b7280;
  font-size: 14px;        /* أصغر */
  margin: 12px 0 10px;
}

/* ===== Payment ===== */
.appFooter .ftPay{
  display:flex;
  gap: 10px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  padding-top: 6px;
}

.appFooter .ftPay img{
  height: 20px;           /* أصغر */
  width:auto;
  opacity: .95;
  filter: grayscale(.05);
}

/* ===== Links ===== */
.ftLinks{
  margin-top:10px;        /* أقل */
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  flex-wrap:wrap;
}

.ftLink{
  font-size:12px;         /* أصغر */
  font-weight:700;
  color:#666;
  text-decoration:none;
  transition:color .15s ease;
}
.ftLink:hover{
  color:#b3262d;
  text-decoration:underline;
}

.ftDot{
  color:#bbb;
  font-size:12px;
}

/* =========================
   ✅ RESPONSIVE LEVELS
   ========================= */

/* موبايل صغير جداً */
@media (max-width: 360px){
  .appFooter{ padding: 16px 10px 12px; }
  .appFooter .ftTitle{ font-size: 15px; }
  .appFooter .ftStore img{ height: 38px; }
  .appFooter .ftSoc{ width: 42px; height: 42px; }
  .appFooter .ftSoc i{ font-size: 18px; }
  .appFooter .ftCopy{ font-size: 13px; }
  .appFooter .ftPay img{ height: 18px; }
}

/* موبايل عادي */
@media (max-width: 480px){
  .appFooter{ padding: 16px 10px 12px; }
  .appFooter .ftTitle{ font-size: 15px; }
  .appFooter .ftStore img{ height: 40px; }
  .appFooter .ftSoc{ width: 44px; height: 44px; }
  .appFooter .ftSoc i{ font-size: 19px; }
  .appFooter .ftCopy{ font-size: 13px; }
  .appFooter .ftPay img{ height: 19px; }
}

/* تابلت */
@media (min-width: 700px){
  .appFooter{ padding: 20px 12px 14px; }
  .appFooter .ftTitle{ font-size: 17px; }
  .appFooter .ftStore img{ height: 44px; }
  .appFooter .ftSoc{ width: 48px; height: 48px; }
  .appFooter .ftSoc i{ font-size: 20px; }
  .appFooter .ftPay img{ height: 21px; }
}

/* ديسكتوب كبير */
@media (min-width: 1100px){
  .appFooter .ftWrap{ max-width: 1040px; }
}