.giftty-produtos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.giftty-card {
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 8px;
  background: #fff;
}

.giftty-img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.giftty-skus {
  list-style: none;
  padding: 0;
}

.giftty-skus li {
  margin-bottom: 8px;
}

.btn-comprar {
  background: #0073aa;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  margin-left: 10px;
  transition: background-color 0.3s ease;
}

.btn-comprar:hover {
  background: #005177;
}
