.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.global-card.current-sense-card {
  min-width: 200px;
  max-width: 200px;
}

.global-card.current-sense-card:hover {
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.products-img {
  width: auto;
  object-fit: contain;
  height: 100px;
}

.product-details {
  display: none;
  margin-top: 20px;
  border-top: 4px solid #ff6633;
  padding-top: 20px;
}

.product-details-content {
  display: flex;
  padding: 20px 0;
  justify-content: space-between;
}

.details-image {
  width: 100%;
  max-width: 250px;
  height: auto;
}

@media only screen and (max-width: 425px) {
  .product-details-content {
    align-items: center;
    flex-direction: column;
  }
}
