/* Prosty styl kafli pod klimat DrrDamson */
.products-section {
  padding: 56px 0;
  background: #0f1715;
  color: #f3ead8;
}
.section-header {
  max-width: 860px;
  margin: 0 auto 32px;
  text-align: center;
}
.eyebrow {
  color: #d7a74f;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .82rem;
  margin-bottom: 8px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 12px;
}
.notice {
  color: #f0c46b;
  font-weight: 600;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.product-card {
  background: linear-gradient(180deg, #17221f, #101816);
  border: 1px solid rgba(215, 167, 79, .28);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.product-card__image {
  display: block;
  aspect-ratio: 4 / 3;
  background: #1f2b27;
  overflow: hidden;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__body {
  padding: 18px;
}
.product-card__badge {
  color: #8ee6c0;
  font-size: .85rem;
  margin: 0 0 8px;
}
.product-card h3 {
  font-size: 1.2rem;
  margin: 0 0 10px;
}
.product-card h3 a {
  color: #fff7e8;
  text-decoration: none;
}
.product-card p {
  line-height: 1.55;
}
.product-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin: 16px 0;
}
.product-card__price {
  color: #f0c46b;
  font-size: 1.35rem;
  font-weight: 800;
}
.product-card__note {
  color: #b7c7bf;
  font-size: .86rem;
}
.btn.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #00b894;
  color: #07110e;
  font-weight: 800;
  text-decoration: none;
}


.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
body { margin: 0; font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background:#0f1715; }
.product-detail { max-width: 860px; margin: 0 auto; }
.product-detail ul { line-height: 1.8; }
