/* components.css */
/* Shared Card Styles */
.card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-img-top {
  height: 300px;
  object-fit: cover;
  width: 90%;
  margin: 0 auto;
  display: block;
}

.card-body {
  background-color: rgb(252, 247, 255);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-title {
  font-weight: 600;
}

.text-muted {
  font-size: 1rem;
}

/* Buttons */
.btn-outline-primary,
.btn-outline-danger {
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-outline-danger:hover {
  background-color: #ff4d4d;
  color: white;
  border-color: #ff4d4d;
}

/* Price Styles */
.text-danger.fw-bold {
  font-size: 1.1rem;
}

.text-decoration-line-through {
  font-size: 0.9rem;
  margin-left: 8px;
  color: #777;
}