.mobile-nav {
  background: #fff;
  position: fixed;
  bottom: 0;
  height: 65px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid #ddd;
  z-index: 9999;
}

.bloc-icon {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #555;
  font-size: 12px;
  position: relative;
  transition: color 0.2s ease-in-out;
}

.bloc-icon i {
  font-size: 20px;
  margin-bottom: 3px;
}

.bloc-icon .label {
  font-size: 11px;
}

.bloc-icon.active,
.bloc-icon:hover {
  color: #007bff;
}

/* Cart circle */
.cart .cart-circle {
  position: relative;
  width: 50px;
  height: 50px;
  background: #f1f1f1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3px;
}

.cart .cart-circle i {
  font-size: 22px;
  color: #333;
}

/* Badge inside circle */
.cart .badge {
  position: absolute;
  top: 6px;
  right: 8px;
  background: #e53935;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  line-height: 1;
}

@media screen and (min-width: 600px) {
  .mobile-nav {
    display: none;
  }
}
