/* Pudełka na alkohole — DrrDamson / Świat ze Sklejki */
.drr-offer-category {
  padding: 56px 0;
  background: #0f1715;
  color: #f3ead8;
}
.drr-offer-category .container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.drr-breadcrumbs {
  color: #b7c7bf;
  font-size: .92rem;
  margin-bottom: 18px;
}
.drr-breadcrumbs a {
  color: #8ee6c0;
  text-decoration: none;
}
.drr-category-hero {
  border: 1px solid rgba(215, 167, 79, .28);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 44px);
  background:
    radial-gradient(circle at top right, rgba(0,184,148,.18), transparent 35%),
    linear-gradient(180deg, #17221f, #101816);
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
  margin-bottom: 32px;
}
.drr-eyebrow {
  color: #d7a74f;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .82rem;
  margin: 0 0 8px;
}
.drr-category-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  margin: 0 0 14px;
  line-height: 1.05;
}
.drr-category-hero p {
  max-width: 860px;
  line-height: 1.65;
}
.drr-notice {
  color: #f0c46b;
  font-weight: 700;
}
.drr-category-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.drr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: #00b894;
  color: #07110e;
  font-weight: 850;
  text-decoration: none;
}
.drr-btn-secondary {
  background: transparent;
  color: #f3ead8;
  border: 1px solid rgba(243,234,216,.25);
}
.drr-section-title {
  margin: 34px 0 18px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}
.drr-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.drr-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);
}
.drr-product-card__image {
  display: block;
  aspect-ratio: 4 / 3;
  background: #1f2b27;
  overflow: hidden;
}
.drr-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.drr-product-card__body {
  padding: 18px;
}
.drr-product-card__badge {
  color: #8ee6c0;
  font-size: .85rem;
  margin: 0 0 8px;
}
.drr-product-card h2,
.drr-product-card h3 {
  font-size: 1.2rem;
  margin: 0 0 10px;
}
.drr-product-card h2 a,
.drr-product-card h3 a {
  color: #fff7e8;
  text-decoration: none;
}
.drr-product-card p {
  line-height: 1.55;
}
.drr-product-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin: 16px 0;
}
.drr-product-card__price {
  color: #f0c46b;
  font-size: 1.35rem;
  font-weight: 900;
}
.drr-product-card__note {
  color: #b7c7bf;
  font-size: .86rem;
}
.drr-product-detail {
  max-width: 930px;
  margin: 0 auto;
}
.drr-product-detail img {
  width: 100%;
  max-width: 760px;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.drr-product-detail ul {
  line-height: 1.85;
}
.drr-related-box {
  margin-top: 28px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
}