.product-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.page-item:first-child .page-link {
  background: transparent;
  border: none;
  outline: none;
  color: rgba(0, 0, 0, 1);
}

.page-item:not(:first-child) .page-link {
  background: transparent;
  color: rgba(0, 0, 0, 1);
  outline: none;
  border: none;
  /* border-radius: 8px;
  border: 1px solid #666; */
}

.page-link:focus {
  border-radius: 8px;
  border: 1px solid #666 !important;
  box-shadow: none;
}
.product-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/***** FOOTER Section *****/
.footer-section {
  background: #c00;
  margin-top: 5rem !important;
}
.custom-hr {
  color: rgba(255, 255, 255, 0.7);
  height: 2px;
  align-self: stretch;
  margin-top: 2rem !important;
}

/***** End FOOTER Section *****/
.product-img {
  width: 100%;
  height: 250px; /* adjust based on your design */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px; /* optional for rounded corners */
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image fills the box without distortion */
}
