body {
  font-family: Arial, sans-serif;
}

.bg-light {
  display: flex;
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
  flex-direction: row;
  justify-content: space-around;
}

.header {
  text-align: center;
}

.category-scroll {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 1rem 0;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
  justify-content: space-around;
}

.category-scroll::-webkit-scrollbar {
  height: 8px;
}

.category-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.category-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.category-item {
  flex: 0 0 auto;
  text-align: center;
  min-width: 80px;
  position: relative;
}

.category-hr {
  margin: 0;
  height: 2px;
  width: 50%;
  background-color: #ccc;
  transition: all 0.3s ease;
}

.category-item:hover .category-hr {
  width: 100%;
  background-color: #ff5733;
}

.card-horizontal {
  display: flex;
  align-items: center;
  border: 1px solid #e4c4c8;
  border-radius: 8px;
  padding: 1rem;
  gap: 1rem;
  box-shadow: 0 4px 6px rgb(229 75 75 / 10%);
  flex-direction: row;
}

.card-horizontal img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.card-horizontal .card-body {
  flex: 1;
}

@media (max-width: 768px) {
  .card-horizontal {
    flex-direction: row; /* Always keep the image on the right */
  }
}
