/* ===================== 04 UTILITIES ===================== */
/* Small reusable helpers; keep selectors simple and explicit */

.firstLineBold::first-line {
  font-weight: bold;
}

.flexWrap {
  flex-wrap: wrap;
  margin-right: -20px;
  margin-left: -20px;
}

.transition-all {
  transition: all 0.2s ease-in-out;
}

.hover-bg-light:hover {
  background-color: #f8f9fa;
}

.object-fit-cover {
  object-fit: cover;
}

/* Modal/cart helpers */
.delivery-scroll-area::-webkit-scrollbar {
  width: 6px;
}

.delivery-scroll-area::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.delivery-scroll-area::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.delivery-scroll-area::-webkit-scrollbar-thumb:hover {
  background: var(--bs-primary);
}

#func_submit_wk {
  display: inline-block;
  background-color: var(--bs-primary);
  border: none;
}
