 body { background: #f8f9fa; }
    .food-card img { height: 120px; object-fit: cover; border-radius: 8px; }
    .food-card { border-radius: 10px; }
    .cart-badge {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #198754;
      color: white;
      border-radius: 50px;
      padding: 12px 18px;
      font-size: 16px;
      box-shadow: 0 4px 10px rgba(0,0,0,.2);
      z-index: 999;
    }
    .cart-badge i { font-size: 20px; margin-right: 6px; }



 
.cart-badge {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #198754;
  color: white;
  border-radius: 50px;
  padding: 12px 18px;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
  z-index: 999;
  cursor: pointer;
}
.cart-badge i {
  font-size: 20px;
  margin-right: 6px;
}
 
 
/* Pagination căn giữa */
.pagination {
  margin: 0;
  justify-content: center;
  flex-wrap: wrap; /* tránh tràn hàng trên mobile */
}

/* Page item cách nhau */
.pagination .page-item {
  margin: 0 3px; /* khoảng cách giữa các nút */
}

/* Nút mặc định */
.pagination .page-item .page-link {
  color: #0d6efd;
  border: 1px solid #dee2e6;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 6px; /* bo tròn đẹp hơn */
  transition: all 0.2s ease-in-out;
}

/* Hover */
.pagination .page-item .page-link:hover {
  background-color: #f1f3f5;
  color: #0a58ca;
}

/* Active */
.pagination .page-item.active .page-link {
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 5px rgba(13,110,253,0.4);
}

/* Disabled */
.pagination .page-item.disabled .page-link {
  color: #adb5bd;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}

/* Icon trong nút */
.pagination .fa {
  font-size: 16px;
  vertical-align: middle;
}
 
  
