.footer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: #fff;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
}

/* هر آیتم فوتر */
.footer-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #555; /* نوک مدادی */
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* آیکون‌ها */
.footer-item i {
  font-size: 21px;
  margin-bottom: 3px;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* افکت فعال و کلیک */
.footer-item.active i,
.footer-item.active span {
  color: #ff6600;
  transform: scale(1.15);
}

/* افکت کلیک لحظه‌ای */
.footer-item:active i {
  transform: scale(1.25);
}

/* hover فقط برای دسکتاپ */
@media (hover: hover) {
  .footer-item:hover i,
  .footer-item:hover span {
    color: #ff6600;
  }
}

/* شمارنده سبد خرید */
#cartCount {
  position: absolute;
  top: -8px;
  right: -6px;
  background: red;
  color: #fff;
  border-radius: 50%;
  padding: 3px 1px;
  font-size: 11px;
  font-weight: bold;
  display: none;
  min-width: 16px;
  text-align: center;
  line-height: 1;
}
/* ----------------------------------- */
/* حذف رنگ فوکس روی لینک‌ها و دکمه‌ها */
/* برای دسکتاپ */
a:focus, a:active,
button:focus, button:active {
    outline: none;
    box-shadow: none;
}

/* برای موبایل: حذف رنگ لمس (blue highlight) */
a, button {
    -webkit-tap-highlight-color: transparent;
}

/* اختصاصی برای دسته‌بندی‌ها و کارت محصولات */
.category-scroll a:focus,
.category-scroll a:active,
.product-card a:focus,
.product-card a:active {
    outline: none;
    box-shadow: none;
}

/* حالت موبایل */
@media (max-width: 600px) {
  .footer-bar {
    height: 50px;
  }
  .footer-item i {
    font-size: 19px;
  }
  #cartCount {
    top: -6px;
    right: -6px;
    font-size: 11px;
    padding: 1px 1px;
  }
}