/* ===== BUTTONS ===== */

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 14px;
  transition: 0.2s ease;
}

.btn-primary {
  background: #ff9900;
  color: #ffffff;
}

.btn-primary:hover {
  background: #e68a00;
}

.btn-outline {
  border: 1px solid #111111;
  color: #111111;
}

.btn-outline:hover {
  background: #111111;
  color: #ffffff;
}

/* ===== PRODUCT CARD ===== */

.product-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  transition: 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card-image {
  background: #f7f7f8;
  padding: 16px;
}

.product-card-content {
  padding: 16px;
}

.product-card-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.product-card-price {
  font-size: 14px;
  font-weight: 600;
  color: #111111;
}