
.gotowykod-products-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin: 2rem 0;
}
.gotowykod-product {
  background: #111;
  color: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #333;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.gotowykod-product h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.gotowykod-desc {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.gotowykod-price {
  font-weight: bold;
  margin-bottom: 1rem;
}
.gotowykod-btn {
  background: #00cc88;
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 5px;
  text-decoration: none;
}
