.card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.2s ease;
  flex-direction: row;
}

.card:hover {
  transform: translateY(-3px);
}

.info {
  flex: 1;
}

.info h3 {
  font-size: 20px;
  margin: 0 0 8px;
  color: #2c3e50;
}

.info p {
  font-size: 14px;
  color: #555;
  margin: 0 0 10px;
}

.price {
  font-size: 20px;
  font-weight: bold;
  color: #27ae60;
}

.actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.btn {
  display: inline-block;
  background: #2980b9;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #1f5e82;
}

/* Badge */
.badge {
  position: absolute;
  top: -10px;
  left: -10px;
  background: #e67e22;
  color: white;
  font-size: 11px;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 0 8px 8px 0;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
