/* Zestawy BHP — full page */
.ventabe-zestawy-page { max-width: 1200px; margin: 0 auto; }
.zestawy-intro { text-align: center; max-width: 800px; margin: 0 auto 40px; }
.zestawy-intro h2 { color: var(--v-navy); font-size: 1.8em; margin-bottom: 15px; }
.zestawy-intro p { color: var(--v-text-muted); line-height: 1.7; font-size: 0.95em; }
.zestawy-legal-note { background: var(--v-blue-bg); padding: 12px 18px; border-radius: var(--v-radius-sm); border-left: 3px solid var(--v-navy); text-align: left; margin-top: 20px; font-size: 0.88em !important; }
.zestawy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
@media (max-width: 849px) { .zestawy-grid { grid-template-columns: 1fr; } }

/* Card */
.zestaw-card { background: #fff; border: 1px solid var(--v-border); border-radius: var(--v-radius); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow var(--v-transition); }
.zestaw-card:hover { box-shadow: var(--v-shadow-hover); }
.zestaw-header { padding: 25px 25px 15px; border-bottom: 1px solid var(--v-border); }
.zestaw-icon { font-size: 2em; display: block; margin-bottom: 8px; }
.zestaw-header h3 { color: var(--v-navy); font-size: 1.3em; margin: 0 0 6px; }
.zestaw-target { color: var(--v-text-muted); font-size: 0.88em; margin: 0; }

/* Pricing */
.zestaw-pricing { padding: 18px 25px; background: var(--v-warm-bg); display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.zestaw-price-old { color: #999; text-decoration: line-through; font-size: 1em; }
.zestaw-price-new { color: var(--v-red); font-size: 1.6em; font-weight: 700; }
.zestaw-price-suffix { color: var(--v-text-muted); font-size: 0.8em; }
.zestaw-saving { background: var(--v-red); color: #fff; padding: 3px 10px; border-radius: 3px; font-size: 0.78em; font-weight: 600; }

/* Products list */
.zestaw-products { padding: 20px 25px 10px; flex: 1; }
.zestaw-products h4 { color: var(--v-navy); font-size: 0.95em; margin: 0 0 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.zestaw-products ul { list-style: none; padding: 0; margin: 0; }
.zestaw-products li { margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #f0f0f0; }
.zestaw-products li:last-child { border-bottom: none; margin-bottom: 0; }
.zestaw-product-row { display: flex; align-items: center; gap: 12px; }
.zestaw-product-img { width: 50px; height: 50px; flex-shrink: 0; border-radius: 4px; overflow: hidden; background: #f9f9f9; }
.zestaw-product-img img { width: 100%; height: 100%; object-fit: contain; }
.zestaw-product-info { flex: 1; min-width: 0; }
.zestaw-product-role { display: block; font-size: 0.72em; color: var(--v-text-muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.zestaw-product-name { display: block; color: var(--v-navy); font-size: 0.88em; font-weight: 500; text-decoration: none; line-height: 1.3; transition: color var(--v-transition); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.zestaw-product-name:hover { color: var(--v-red); }
.zestaw-product-price { display: block; font-size: 0.85em; font-weight: 600; color: var(--v-text); margin-top: 2px; }

/* Norms */
.zestaw-norms { padding: 15px 25px; background: var(--v-blue-bg); }
.zestaw-norms h4 { color: var(--v-navy); font-size: 0.85em; margin: 0 0 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.zestaw-norms ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.zestaw-norms li { background: #fff; padding: 3px 10px; border-radius: 3px; font-size: 0.78em; color: var(--v-navy); border: 1px solid var(--v-border); font-weight: 500; }
.zestaw-legal-ref { font-size: 0.75em; color: var(--v-text-muted); margin: 8px 0 0; font-style: italic; }

/* CTA */
.zestaw-cta { padding: 20px 25px; display: flex; gap: 10px; flex-wrap: wrap; }
.zestaw-btn { display: inline-block; padding: 12px 24px; border-radius: var(--v-radius-sm); font-weight: 700; font-size: 0.9em; text-decoration: none; text-align: center; transition: all var(--v-transition); flex: 1; min-width: 180px; }
.zestaw-btn-primary { background: var(--v-navy); color: #fff; border: 2px solid var(--v-navy); }
.zestaw-btn-primary:hover { background: var(--v-navy-light); border-color: var(--v-navy-light); box-shadow: 0 4px 15px rgba(25,20,72,0.3); transform: translateY(-1px); color: #fff; }
.zestaw-btn-secondary { background: transparent; color: var(--v-navy); border: 2px solid var(--v-navy); }
.zestaw-btn-secondary:hover { background: var(--v-navy); color: #fff; }

/* B2B info section */
.zestawy-b2b-info { margin-top: 50px; padding: 40px 30px; background: var(--v-navy); border-radius: var(--v-radius); color: #fff; }
.zestawy-b2b-info h3 { text-align: center; font-size: 1.4em; margin: 0 0 30px; }
.zestawy-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
@media (max-width: 849px) { .zestawy-benefits { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 549px) { .zestawy-benefits { grid-template-columns: 1fr; } }
.zestawy-benefit strong { display: block; font-size: 1em; margin-bottom: 6px; }
.zestawy-benefit p { font-size: 0.88em; color: rgba(255,255,255,0.8); line-height: 1.5; margin: 0; }

/* Preview (homepage) */
.ventabe-zestawy-preview { margin: 20px 0; }
.zestawy-preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 849px) { .zestawy-preview-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 549px) { .zestawy-preview-grid { grid-template-columns: 1fr; } }
.zestawy-preview-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 25px 18px; background: #fff; border: 1px solid var(--v-border); border-radius: var(--v-radius); text-decoration: none; color: var(--v-text); transition: all var(--v-transition); }
.zestawy-preview-card:hover { box-shadow: var(--v-shadow-hover); transform: translateY(-4px); border-color: var(--v-navy); }
.zp-icon { font-size: 2.2em; margin-bottom: 10px; }
.zp-name { color: var(--v-navy); font-size: 1em; margin: 0 0 6px; }
.zp-target { color: var(--v-text-muted); font-size: 0.78em; margin: 0 0 12px; line-height: 1.4; }
.zp-price { margin-bottom: 8px; }
.zp-price-old { display: block; color: #999; text-decoration: line-through; font-size: 0.85em; }
.zp-price-new { display: block; color: var(--v-red); font-size: 1.15em; font-weight: 700; }
.zp-count { color: var(--v-text-muted); font-size: 0.8em; margin-bottom: 10px; }
.zp-cta { color: var(--v-navy); font-weight: 600; font-size: 0.88em; }
.zestawy-preview-card:hover .zp-cta { color: var(--v-red); }

/* zp-icon with product image */
.zp-icon { margin-bottom: 10px; }
.zp-icon img { background: var(--v-blue-bg); padding: 8px; }
