/* dark-theme-card.css */

.product-card {
  background-color: #1f1f1f; /* deep gray */
  color: #f0f0f0; /* high contrast text */
  border: 1px solid #333;
}

.product-card .card-title,
.product-card .card-text {
  color: #4f46e5;
}


/* Call-to-action button */
.product-card a.btn.btn-primary {
  background-color: #4f46e5 !important;
  color: #ffffff !important;
  border: none !important;
}

.product-card a.btn.btn-primary:hover {
  background-color: #787729 !important;
  color: #ffffff !important;
}

/* Badges product image card*/
.product-card .badge.bg-light {
  background-color: #aaa83b !important;
  color: #202119 !important;
}

.product-card .badge.bg-info {
  background-color: #202119 !important;
  color: #aaa83b !important;
}

.product-card .badge.bg-warning {
  background-color: #facc15 !important;
  color: #000 !important;
}
