/* ============================================
   E.ON V2 Product Views
   Component Styles
   ============================================ */

/* ---- SCREEN VARIANT ---- */
.screen--v2 {
  transform: none;
}

/* ---- TOPBAR ---- */
.v2-topbar {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 8px;
  background: var(--bg-white);
  flex-shrink: 0;
  position: relative;
}

.v2-topbar h2,
.v2-topbar-title {
  flex: 1;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.v2-topbar-spacer {
  width: 36px;
}

/* ---- BACK BUTTON ---- */
.v2-back {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
  color: var(--text-primary);
  transition: background 0.15s ease;
}

.v2-back:not(:disabled):hover {
  background: #F3F4F6;
}

.v2-back:disabled {
  opacity: 0.3;
  cursor: default;
}

/* ---- STEPPER (kompaktowy, etykieta tylko dla aktywnego kroku) ---- */
.v2-stepper {
  display: flex;
  align-items: center;
  padding: 10px 16px 14px;
  background: var(--bg-white);
  flex-shrink: 0;
  gap: 0;
}

.v2-step {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 6px;
}

.v2-step-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
  font-weight: 700;
  color: #9CA3AF;
  flex-shrink: 0;
  transition: all 0.2s ease;
  line-height: 1;
}

.v2-step--active .v2-step-dot {
  background: var(--text-primary, #1E1E2E);
  border-color: var(--text-primary, #1E1E2E);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(30, 30, 46, 0.08);
}

.v2-step--done .v2-step-dot {
  background: var(--text-primary, #1E1E2E);
  border-color: var(--text-primary, #1E1E2E);
  color: #fff;
}

.v2-step-line {
  flex: 1;
  height: 2px;
  background: #E5E7EB;
  min-width: 12px;
  border-radius: 2px;
  transition: background 0.2s ease;
  margin: 0 2px;
}

.v2-step-line--done {
  background: var(--text-primary, #1E1E2E);
}

/* Etykiety domyślnie ukryte, widoczna TYLKO dla aktywnego */
.v2-step-label {
  display: none;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary, #1E1E2E);
  white-space: nowrap;
  letter-spacing: -0.005em;
  line-height: 1;
}

.v2-step--active .v2-step-label {
  display: inline-block;
}

/* ---- TARIFF INFO ---- */
.v2-tariff-info {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  padding: 0 16px 12px;
  font-size: 11.5px;
  color: var(--text-muted, #6B7280);
  flex-shrink: 0;
  letter-spacing: 0.01em;
}

.v2-tariff-info svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.v2-tariff-info strong {
  color: var(--text-secondary, #4B5563);
  font-weight: 700;
}

/* ---- CONTENT ---- */
.v2-content {
  padding: 0 16px 16px;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  word-break: break-word;
}

.v2-content--details {
  padding-bottom: 80px;
}

.v2-content--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ---- SHELF / OFFER PICKER ---- */
.v2-shelf-header {
  padding: 20px 0 12px;
}

.v2-shelf-header h1,
.v2-shelf-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.v2-shelf-header p,
.v2-shelf-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
}

.v2-offer-carousel {
  overflow: hidden;
}

.v2-offer-track {
  display: flex;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  gap: 12px;
  scrollbar-width: none;
}

.v2-offer-card {
  width: 330px;
  min-width: 330px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-white);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  flex-shrink: 0;
  box-sizing: border-box;
}

.v2-offer-graphic {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #1E1E2E, #3a3a4a);
}

.v2-offer-graphic-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-offer-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.25);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.v2-offer-body {
  padding: 16px;
  overflow: hidden;
  min-width: 0;
}

.v2-offer-type {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.v2-offer-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.v2-offer-period {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--green);
  margin-bottom: 8px;
}

.v2-offer-price {
  margin-bottom: 8px;
}

.v2-offer-price-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
}

.v2-offer-price-unit {
  font-size: 13px;
  color: var(--text-secondary);
}

.v2-offer-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.5;
}

.v2-offer-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.v2-offer-benefit {
  display: flex;
  gap: 8px;
  font-size: 13px;
  align-items: flex-start;
  color: var(--text-primary);
}

.v2-offer-cta {
  width: 100%;
  background: var(--text-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: background var(--transition-fast);
  text-decoration: none;
  box-sizing: border-box;
}

.v2-offer-cta:hover {
  background: #2d2d3d;
}

.v2-offer-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.v2-offer-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D1D5DB;
  transition: background var(--transition-fast);
}

.v2-offer-dot.active {
  background: var(--text-primary);
}

/* ---- DETAIL HERO ---- */
.v2-detail-hero {
  padding: 24px 0 20px;
  margin-bottom: 20px;
}

.v2-detail-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted, #6B7280);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light, #E5E7EB);
}

.v2-detail-hero-graphic {
  height: 120px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1E1E2E, #3a3a4a);
}

.v2-detail-hero-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-detail-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.v2-detail-title span {
  color: var(--text-secondary);
  font-weight: 400;
}

/* ---- SECTION SYSTEM ---- */
.v2-section {
  margin-bottom: 16px;
}

.v2-section--card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.v2-section-header {
  padding: 16px 16px 0;
}

.v2-section-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 6px;
}

.v2-section-badge--green,
.v2-section-badge--blue,
.v2-section-badge--purple,
.v2-section-badge--emerald {
  color: var(--text-primary);
  background: #F3F4F6;
}

.v2-section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.v2-section-body {
  padding: 16px;
}

.v2-section-intro {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.v2-product-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ---- PREMIUM TIERS ---- */
.v2-premium-tiers {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.v2-tier {
  flex: 1;
  background: #F9FAFB;
  border-radius: var(--radius-md);
  padding: 12px;
  text-align: center;
}

.v2-tier-range {
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-primary);
}

.v2-tier-icon {
  font-size: 20px;
}

.v2-tier-value {
  font-size: 13px;
  margin-top: 8px;
  color: var(--text-primary);
  font-weight: 700;
}

/* ---- PRICE FREEZE ---- */
.v2-price-freeze {
  display: flex;
  border-radius: var(--radius-md);
  background: #F9FAFB;
  overflow: hidden;
  margin-bottom: 12px;
}

.v2-price-freeze-item {
  flex: 1;
  padding: 16px;
  text-align: center;
}

.v2-price-freeze-year {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: block;
  letter-spacing: 0.03em;
}

.v2-price-freeze-val {
  font-size: 24px;
  font-weight: 800;
  display: block;
  margin-top: 4px;
  color: var(--text-primary);
}

.v2-price-freeze-unit {
  font-size: 11px;
  color: var(--text-secondary);
}

.v2-price-freeze-divider {
  width: 1px;
  background: var(--border-light);
}

/* ---- FEE ROW ---- */
.v2-fee-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--border-light);
  font-size: 13px;
  color: var(--text-primary);
}

/* ---- LEGAL TEXT ---- */
.v2-legal {
  font-size: 11px;
  color: #9CA3AF;
  margin-top: 12px;
  line-height: 1.4;
}

/* ---- LINK BUTTON ---- */
.v2-link-button {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  background: transparent;
  border: 1px solid var(--text-primary);
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.v2-link-button:hover {
  background: #F3F4F6;
}

/* ---- FACHOWCY LAYOUT ---- */
.v2-fachowcy-layout {
  display: flex;
  gap: 16px;
}

.v2-fachowcy-text {
  flex: 1;
}

.v2-fachowcy-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.v2-fachowcy-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.v2-fachowcy-price {
  margin-top: 16px;
}

.v2-fachowcy-price-val {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
}

.v2-fachowcy-price-unit {
  font-size: 12px;
  color: var(--text-secondary);
}

.v2-fachowcy-graphic {
  width: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-fachowcy-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- STEPS CAROUSEL ---- */
.v2-steps-carousel {
  overflow: hidden;
}

.v2-steps-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 12px;
  padding: 0 0 12px;
  scrollbar-width: none;
}

.v2-step-card {
  width: 300px;
  min-width: 300px;
  scroll-snap-align: start;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  flex-shrink: 0;
}

.v2-step-card-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 12px;
}

.v2-step-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.v2-step-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.v2-steps-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.v2-steps-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D1D5DB;
  transition: background var(--transition-fast);
}

.v2-steps-dot.active {
  background: var(--text-primary);
}

/* ---- THRESHOLD SELECTOR ---- */
.v2-threshold-selector {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.v2-threshold-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.v2-threshold-option--selected {
  border-color: var(--text-primary);
  background: #F3F4F6;
}

.v2-threshold-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #D1D5DB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: border-color var(--transition-fast);
}

.v2-threshold-option--selected .v2-threshold-radio {
  border-color: var(--text-primary);
}

.v2-threshold-option--selected .v2-threshold-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-primary);
}

.v2-threshold-option input {
  display: none;
}

/* ---- ACCORDION ---- */
.v2-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.v2-accordion-item {
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
}

.v2-accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: transparent;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-primary);
  text-align: left;
}

.v2-accordion-chevron {
  transition: transform 200ms ease;
  flex-shrink: 0;
}

.v2-accordion-item--open .v2-accordion-chevron {
  transform: rotate(180deg);
}

.v2-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.v2-accordion-item--open .v2-accordion-content {
  max-height: 500px;
}

/* ---- PREMIUM TABLE ---- */
.v2-premium-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.v2-premium-table th {
  background: #F3F4F6;
  padding: 8px;
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
}

.v2-premium-table td {
  padding: 8px;
  border-top: 1px solid var(--border-light);
  color: var(--text-primary);
}

.v2-premium-table-highlight {
  background: #F3F4F6;
}

.v2-table-note {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: var(--text-primary);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  align-items: flex-start;
}

/* ---- DOCUMENT LIST ---- */
.v2-doc-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.v2-doc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #F3F4F6;
  text-decoration: none;
  color: inherit;
}

.v2-doc-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v2-doc-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.v2-doc-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

.v2-doc-meta {
  font-size: 11px;
  color: var(--text-secondary);
}

/* ---- STICKY CTA ---- */
.v2-sticky-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px 16px;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  z-index: 100;
}

.v2-sticky-cta-btn {
  width: 100%;
  background: var(--text-primary);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.v2-sticky-cta-text {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.v2-sticky-cta-btn .v2-cta-price {
  font-weight: 700;
  opacity: 0.95;
}

.v2-sticky-cta-btn svg {
  flex-shrink: 0;
}

.v2-sticky-cta-btn:hover {
  background: #2d2d3d;
}

.v2-sticky-cta-btn:focus {
  outline: none;
}

/* ---- SUMMARY ---- */
.v2-summary-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.v2-summary-product {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 12px;
}

.v2-summary-product-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v2-summary-product-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.v2-summary-product-period {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.v2-summary-rows {
  display: flex;
  flex-direction: column;
}

.v2-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #F3F4F6;
  font-size: 13px;
  color: var(--text-primary);
}

.v2-summary-row--highlight strong {
  color: var(--text-primary);
  font-weight: 800;
}

/* ---- CONSENT ---- */
.v2-consent {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  cursor: pointer;
  align-items: flex-start;
}

.v2-consent-cb {
  display: none;
}

.v2-consent-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid #D1D5DB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.v2-consent-cb:checked + .v2-consent-check,
.v2-consent-cb-master:checked + .v2-consent-check,
.v2-consent-check.checked {
  background: var(--text-primary);
  border-color: var(--text-primary);
}

.v2-consent-cb-master {
  display: none;
}

.v2-consent-check.indeterminate {
  background: var(--text-primary);
  border-color: var(--text-primary);
  position: relative;
}

.v2-consent-check.indeterminate::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 4px;
  right: 4px;
  height: 2px;
  background: #fff;
  transform: translateY(-50%);
  border-radius: 1px;
}

.v2-consent--master .v2-consent-text {
  color: var(--text-primary);
  font-size: 14px;
}

.v2-consent-divider {
  height: 1px;
  background: var(--border-light);
  margin: 4px 0 4px;
}

.v2-consent-text {
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-secondary);
}

.v2-consent-error {
  display: none;
  gap: 8px;
  padding: 10px 14px;
  background: #F3F4F6;
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-primary);
  margin-bottom: 12px;
  align-items: center;
}

.v2-consent-error.visible {
  display: flex;
}

.v2-shake {
  animation: v2shake 400ms ease;
}

@keyframes v2shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

/* ---- CONFIRMATION SCREEN ---- */
.v2-confirm-animation {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
}

.v2-confirm-circle {
  width: 100%;
  height: 100%;
  background: #F3F4F6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-confirm-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--text-primary);
  opacity: 0;
  animation: v2pulse 2s infinite;
}

@keyframes v2pulse {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.v2-confirm-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.v2-confirm-text {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

.v2-confirm-card {
  background: #F9FAFB;
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 20px;
  text-align: left;
}

.v2-confirm-card-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-primary);
}

.v2-confirm-card-row:not(:last-child) {
  border-bottom: 1px solid var(--border-light);
}

.v2-confirm-email-note {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted, #6B7280);
  justify-content: center;
  margin: 0 auto 28px;
  align-items: center;
  text-align: center;
  line-height: 1.45;
  max-width: 280px;
}

.v2-confirm-close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 auto;
  padding: 12px 20px;
  background: transparent;
  border: 1.5px solid var(--border-light, #E5E7EB);
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary, #1E1E2E);
  cursor: pointer;
  transition: all 0.15s ease;
  min-height: 44px;
}

.v2-confirm-close-btn:hover {
  background: #F9FAFB;
  border-color: #D1D5DB;
}

/* Chip e-mail w karcie potwierdzenia */
.v2-confirm-card {
  background: #F9FAFB;
  border: 1px solid var(--border-light, #E5E7EB);
}

.v2-confirm-card-row {
  align-items: center;
  gap: 12px;
}

.v2-confirm-card-row span {
  color: var(--text-muted, #6B7280);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.v2-confirm-card-row strong {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  word-break: break-all;
  text-align: right;
}

/* ---- COMPARISON BAR ---- */
.v2-compare-bar {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
  background: #F9FAFB;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.v2-compare-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
}

.v2-compare-item--market {
  border-bottom: 1px solid var(--border-light);
}

.v2-compare-item--eon {
  background: #fff;
}

.v2-compare-item-label {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.3;
}

.v2-compare-item-label span {
  font-weight: 400;
  font-size: 11px;
  color: var(--text-secondary);
}

.v2-compare-item-amount {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  white-space: nowrap;
}

.v2-compare-item--eon .v2-compare-item-amount {
  color: #16A34A;
}

.v2-compare-track {
  display: none;
}

/* ---- VARIANT CAROUSEL ---- */
.v2-variant-carousel {
  overflow: hidden;
}

.v2-variant-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 12px;
  padding: 0 0 12px;
  scrollbar-width: none;
}

.v2-variant-card {
  width: 280px;
  min-width: 280px;
  scroll-snap-align: start;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 18px;
  flex-shrink: 0;
  background: var(--bg-white);
}

.v2-variant-card--active {
  border-color: var(--text-primary);
}

.v2-variant-badge {
  display: inline-block;
  background: var(--text-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.v2-variant-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text-primary);
}

.v2-variant-pricing {
  margin-bottom: 14px;
}

.v2-variant-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.v2-variant-price-unit {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 400;
}

.v2-variant-price-yearly {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 1px;
}

.v2-variant-stats {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.v2-variant-stat {
  flex: 1;
  text-align: center;
  background: #F3F4F6;
  border-radius: 8px;
  padding: 10px 4px;
}

.v2-variant-stat-val {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.v2-variant-stat-label {
  display: block;
  font-size: 9px;
  color: var(--text-secondary);
  margin-top: 2px;
  line-height: 1.2;
}

.v2-variant-specialists {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}

.v2-variant-specialist-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-right: 2px;
}

.v2-variant-specialist-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-primary);
  background: #F3F4F6;
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.v2-variant-features {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

.v2-variant-features li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--text-primary);
}

.v2-variant-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.v2-variant-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D1D5DB;
  transition: background var(--transition-fast);
}

.v2-variant-dot.active {
  background: var(--text-primary);
}

/* ---- TABS ---- */
.v2-tabs {
  display: flex;
  border-bottom: 2px solid var(--border-light);
  margin-bottom: 16px;
}

.v2-tab {
  flex: 1;
  text-align: center;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.v2-tab--active,
.v2-tab.active {
  color: var(--text-primary);
  border-bottom-color: var(--text-primary);
}

.v2-tab-content {
  display: none;
}

.v2-tab-content--active,
.v2-tab-content.active {
  display: block;
}

/* ---- BENEFIT SUMMARY LIST ---- */
.v2-benefits-summary {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.v2-benefit-summary-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #F3F4F6;
  align-items: flex-start;
}

.v2-benefit-summary-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

.v2-benefit-summary-icon--green,
.v2-benefit-summary-icon--blue,
.v2-benefit-summary-icon--purple,
.v2-benefit-summary-icon--emerald {
  background: #F3F4F6;
  color: var(--text-primary);
}

.v2-benefit-summary-body h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--text-primary);
}

.v2-benefit-summary-body p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ---- EV / CHARGE SPECIFIC ---- */
.v2-ev-hero {
  background: linear-gradient(135deg, #1E1E2E, #3a3a4a);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: #fff;
  margin-bottom: 16px;
}

.v2-ev-hero h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.v2-ev-hero p {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.5;
}

.v2-ev-hours {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.v2-ev-hour-badge {
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
}

.v2-compat-section {
  background: #F9FAFB;
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 16px;
}

.v2-compat-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.v2-compat-select {
  width: 100%;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  margin-bottom: 12px;
  appearance: none;
  background: var(--bg-white);
  color: var(--text-primary);
}

.v2-compat-btn {
  background: var(--text-primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.v2-compat-btn:hover {
  background: #2d2d3d;
}

/* ---- SEASON INFO ---- */
.v2-season-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.v2-season-card {
  background: #F9FAFB;
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
}

.v2-season-card h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.v2-season-card p {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.v2-season-card--summer {
  border-left: 3px solid #9CA3AF;
}

.v2-season-card--winter {
  border-left: 3px solid var(--text-primary);
}

/* ---- OZE / GREEN ENERGY ---- */
.v2-oze-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.v2-oze-stat {
  background: var(--text-primary);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  color: #fff;
}

.v2-oze-stat-value {
  font-size: 24px;
  font-weight: 800;
  display: block;
}

.v2-oze-stat-unit {
  font-size: 11px;
  opacity: 0.7;
}

.v2-oze-stat-label {
  font-size: 11px;
  opacity: 0.7;
  display: block;
  margin-top: 4px;
}

.v2-oze-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #F3F4F6;
  font-size: 13px;
  color: var(--text-primary);
}

/* ---- CONTACT 24/7 ---- */
.v2-contact-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v2-contact-row {
  display: flex;
  gap: 12px;
  font-size: 13px;
}

.v2-contact-label {
  min-width: 80px;
  color: var(--text-secondary);
}

.v2-contact-value {
  font-weight: 600;
  color: var(--text-primary);
}

.v2-contact-phone {
  color: var(--text-primary);
  text-decoration: underline;
  font-weight: 600;
}

/* ---- SCROLLBAR HIDE ---- */
.v2-offer-track::-webkit-scrollbar,
.v2-steps-track::-webkit-scrollbar,
.v2-variant-track::-webkit-scrollbar {
  display: none;
}

/* ---- DASHBOARD V2 ---- */
.v2-dash-header {
  background: #1E1E2E;
  padding: 12px 16px 20px;
  color: #fff;
}

.v2-dash-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.v2-dash-greeting {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2px;
}

.v2-dash-address {
  font-size: 12px;
  opacity: 0.7;
}

.v2-dash-header-icons {
  display: flex;
  gap: 8px;
}

.v2-dash-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.v2-dash-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.v2-dash-action {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 4px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-primary);
}

.v2-dash-action-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-dash-contract-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1E1E2E;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v2-dash-offer-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  margin-bottom: 8px;
  transition: background var(--transition-fast);
}

.v2-dash-offer-card:hover {
  background: #F9FAFB;
}

.v2-dash-offer-match {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1E1E2E;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v2-dash-match-score {
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.v2-dash-match-label {
  font-size: 7px;
  opacity: 0.7;
}

.v2-dash-offer-body {
  flex: 1;
  min-width: 0;
}

.v2-dash-offer-badge {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #F3F4F6;
  color: var(--text-primary);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 4px;
}

.v2-dash-offer-body h3 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}

.v2-dash-offer-body p {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.v2-dash-tabbar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  padding: 6px 0 12px;
  z-index: 100;
}

.v2-dash-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: transparent;
  border: none;
  color: #9CA3AF;
  font-size: 10px;
  cursor: pointer;
  padding: 4px 0;
}

.v2-dash-tab--active {
  color: var(--text-primary);
}

/* ---- DASHBOARD RECO CARDS ---- */
.v2-dash-reco-card {
  width: 330px;
  min-width: 330px;
  scroll-snap-align: start;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  flex-shrink: 0;
  background: var(--bg-white);
  box-sizing: border-box;
}

.v2-dash-reco-match {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1E1E2E;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v2-dash-reco-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  border: 1px solid var(--text-primary);
  border-radius: 10px;
  padding: 10px 16px;
  transition: background var(--transition-fast);
}

.v2-dash-reco-cta:hover {
  background: #F3F4F6;
}

/* ---- DISCLAIMER TOGGLE [i] ---- */
.v2-disclaimer {
  margin-top: 12px;
}

.v2-disclaimer-toggle {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  margin-top: 14px;
  min-height: 44px;
  padding: 10px 0 8px;
  font-size: 12px;
  font-weight: 500;
  color: #6B7280;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1.45;
  text-align: left;
}

/* Litera „i” w kółku — wyrównanie z pierwszą linią tekstu przy zawijaniu */
.v2-disclaimer-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1.5px solid #9CA3AF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  font-style: normal;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #4B5563;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 1px;
}

.v2-disclaimer-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
  font-size: 11px;
  color: #9CA3AF;
  line-height: 1.4;
}

.v2-disclaimer--open .v2-disclaimer-content {
  max-height: 200px;
  margin-top: 6px;
}

/* ---- MODAL ---- */
.v2-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.v2-modal--open {
  display: flex;
}

.v2-modal-body {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  max-width: 400px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 20px;
  position: relative;
}

.v2-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--text-primary);
}

.v2-modal-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
  padding-right: 32px;
}

.v2-modal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  margin-bottom: 16px;
}

.v2-modal-table th {
  background: #F3F4F6;
  padding: 8px 6px;
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 11px;
}

.v2-modal-table td {
  padding: 8px 6px;
  border-top: 1px solid var(--border-light);
  color: var(--text-primary);
}

.v2-modal-table tfoot td {
  font-size: 11px;
  color: #9CA3AF;
  padding-top: 12px;
  border-top: 2px solid var(--border-light);
}

/* ---- COMPAT RESULT ---- */
.v2-compat-result {
  margin-top: 12px;
}

.v2-compat-result--success,
.v2-compat-result--warning {
  display: flex;
  gap: 10px;
  padding: 12px;
  border-radius: 10px;
  font-size: 13px;
  align-items: flex-start;
  line-height: 1.4;
}

.v2-compat-result--success {
  background: #F0FDF4;
  color: var(--text-primary);
}

.v2-compat-result--warning {
  background: #FEF2F2;
  color: var(--text-primary);
}

/* ---- FACHOWCY CARD LAYOUT (for EBG) ---- */
.v2-fachowcy-stats {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.v2-fachowcy-stat {
  flex: 1;
  text-align: center;
  background: #F9FAFB;
  border-radius: var(--radius-md);
  padding: 12px 8px;
  border: 1px solid var(--border-light);
}

.v2-fachowcy-stat-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
}

.v2-fachowcy-stat-label {
  font-size: 10px;
  color: var(--text-secondary);
  display: block;
  margin-top: 2px;
}

/* ---- ELASTYCZNOSC CARDS (Zawodowiec) ---- */
.v2-elastycznosc-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v2-elastycznosc-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: #F9FAFB;
  border-radius: var(--radius-md);
}

.v2-elastycznosc-card svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.v2-elastycznosc-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.v2-elastycznosc-card p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ---- VARIANT YEARLY PRICE ---- */
.v2-variant-price-yearly {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: -2px;
  margin-bottom: 8px;
}

/* ---- COMPAT CARDS (Happy Charge) ---- */
.v2-compat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.v2-compat-card {
  background: #F9FAFB;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 20px 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.v2-compat-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-compat-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.v2-compat-card .v2-compat-select {
  width: 100%;
  margin-top: 4px;
}

.v2-compat-card .v2-compat-btn {
  width: 100%;
  margin-top: 4px;
  font-size: 13px;
  padding: 10px 12px;
}

/* ---- BOTTOM SHEET ---- */
.v2-bottomsheet {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 100;
  overflow: hidden;
  border-radius: inherit;
}

.v2-bottomsheet--open {
  display: block;
}

.v2-bottomsheet-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 300ms ease;
}

.v2-bottomsheet--open .v2-bottomsheet-overlay {
  background: rgba(0, 0, 0, 0.45);
}

.v2-bottomsheet-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-radius: 20px 20px 0 0;
  max-height: 75%;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 350ms cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
}

.v2-bottomsheet--open .v2-bottomsheet-panel {
  transform: translateY(0);
}

.v2-bottomsheet-handle {
  width: 40px;
  height: 4px;
  background: #D1D5DB;
  border-radius: 2px;
  margin: 10px auto 0;
  flex-shrink: 0;
}

.v2-bottomsheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 10px;
  flex-shrink: 0;
  border-bottom: 1px solid var(--border-light);
}

.v2-bottomsheet-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  padding-right: 8px;
}

.v2-bottomsheet-close {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  border: none;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--text-primary);
  line-height: 1;
}

.v2-bottomsheet-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px 20px calc(24px + env(safe-area-inset-bottom, 0px));
}

/* Krótkie copy (disclaimery): panel dopasowuje się do treści, bez „uciętego” bloku i zbędnego scrolla */
#infoSheet .v2-bottomsheet-panel {
  max-height: min(90vh, 100%);
  padding-bottom: max(12px, env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
}

#infoSheet .v2-bottomsheet-body {
  flex: 0 1 auto;
  max-height: calc(90vh - 120px);
  padding-top: 18px;
  padding-bottom: max(40px, calc(28px + env(safe-area-inset-bottom, 0px)));
}

#infoSheet #infoSheetBody.v2-section-intro,
#infoSheet .v2-bottomsheet-body .v2-section-intro {
  margin: 0;
  padding-bottom: 4px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.v2-bottomsheet-body .v2-compat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.v2-bottomsheet-body .v2-compat-table th {
  position: sticky;
  top: 0;
  background: #F3F4F6;
  padding: 10px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.v2-bottomsheet-body .v2-compat-table td {
  padding: 12px 16px;
  border-top: 1px solid var(--border-light);
  color: var(--text-primary);
  vertical-align: middle;
  line-height: 1.35;
}

.v2-bottomsheet-body .v2-compat-table td:first-child {
  font-weight: 500;
}

.v2-bottomsheet-body .v2-compat-table .v2-compat-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  background: #EEF2FF;
  color: #4338CA;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.v2-bottomsheet-body .v2-compat-table .v2-compat-years {
  font-size: 12px;
  color: var(--text-secondary);
  white-space: nowrap;
}

.v2-bottomsheet-body .v2-station-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.v2-bottomsheet-body .v2-station-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--text-primary);
}

.v2-bottomsheet-body .v2-station-list li:last-child {
  border-bottom: none;
}

.v2-bottomsheet-body .v2-station-note {
  font-size: 12px;
  color: var(--text-secondary);
  display: block;
  margin-top: 2px;
}

.v2-compat-empty {
  text-align: center;
  padding: 32px 16px;
  color: var(--text-secondary);
  font-size: 14px;
}

/* ---- CAROUSEL CURSOR ---- */
.v2-offer-track,
.v2-steps-track,
.v2-variant-track {
  cursor: grab;
}

.v2-offer-track:active,
.v2-steps-track:active,
.v2-variant-track:active {
  cursor: grabbing;
}

/* ============================================
   HAPPY HOURS V2 – CARD ONBOARDING
   ============================================ */

/* ---- HERO TITLE (benefit headline) ---- */
.v2-detail-title--benefit {
  font-size: 26px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.v2-detail-title--benefit span {
  color: var(--brand-red, #E30613);
  font-weight: 900;
}

/* ---- SIMULATOR ---- */
.v2-simulator .v2-section-body {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

.v2-simulator .v2-section-intro {
  margin-bottom: 4px;
}

.v2-slider {
  padding: 12px 0 4px;
  margin: 0;
  border: none;
  background: transparent;
  border-top: 1px solid var(--border-light, #E5E7EB);
}

.v2-slider:first-of-type {
  border-top: none;
  padding-top: 0;
}

.v2-slider-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.v2-slider-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary, #1E1E2E);
  line-height: 1.3;
  flex: 1;
  min-width: 0;
}

.v2-slider-value {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-red, #E30613);
  white-space: nowrap;
  background: #FEF2F2;
  padding: 3px 8px;
  border-radius: 999px;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}

.v2-slider-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(to right,
      var(--brand-red, #E30613) 0%,
      var(--brand-red, #E30613) var(--slider-pct, 50%),
      #E5E7EB var(--slider-pct, 50%),
      #E5E7EB 100%);
  outline: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.v2-slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--brand-red, #E30613);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.1s ease, border-color 0.2s ease;
}

.v2-slider-input::-webkit-slider-thumb:active {
  transform: scale(1.1);
}

.v2-slider-input::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--brand-red, #E30613);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* HH slider – no bonus state */
.v2-slider--no-bonus .v2-slider-input {
  background: linear-gradient(to right,
      #9CA3AF 0%,
      #9CA3AF var(--slider-pct, 0%),
      #E5E7EB var(--slider-pct, 0%),
      #E5E7EB 100%);
}

.v2-slider--no-bonus .v2-slider-input::-webkit-slider-thumb {
  border-color: #9CA3AF;
}

.v2-slider--no-bonus .v2-slider-input::-moz-range-thumb {
  border-color: #9CA3AF;
}

.v2-slider--no-bonus .v2-slider-value {
  color: #6B7280;
}

/* HH slider – bonus (green) */
.v2-slider--bonus .v2-slider-input {
  background: linear-gradient(to right,
      #16A34A 0%,
      #16A34A var(--slider-pct, 50%),
      #E5E7EB var(--slider-pct, 50%),
      #E5E7EB 100%);
}

.v2-slider--bonus .v2-slider-input::-webkit-slider-thumb {
  border-color: #16A34A;
}

.v2-slider--bonus .v2-slider-input::-moz-range-thumb {
  border-color: #16A34A;
}

.v2-slider--bonus .v2-slider-value {
  color: #16A34A;
}

.v2-slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  padding: 0 4px;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted, #6B7280);
  line-height: 1.2;
}

.v2-slider-ticks span {
  text-align: center;
  flex: 1;
  min-width: 0;
}

.v2-slider-ticks span:first-child {
  text-align: left;
}

.v2-slider-ticks span:last-child {
  text-align: right;
}

.v2-slider-hint {
  margin-top: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--border-light, #E5E7EB);
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-secondary, #374151);
  font-weight: 500;
}

.v2-slider--no-bonus .v2-slider-hint {
  color: #991B1B;
  background: #FEF2F2;
  border-color: #FECACA;
}

.v2-slider--bonus .v2-slider-hint {
  color: #166534;
  background: #F0FDF4;
  border-color: #BBF7D0;
}

/* ---- SIMULATOR RESULT ---- */
.v2-simulator-result {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
  color: #fff;
  margin-top: 8px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
}

.v2-simulator-result-label {
  font-size: 11px;
  font-weight: 700;
  opacity: 0.95;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  flex-shrink: 0;
}

.v2-simulator-result-value {
  font-size: 13px;
  font-weight: 500;
  text-align: right;
  line-height: 1.1;
  white-space: nowrap;
  letter-spacing: -0.01em;
  opacity: 0.9;
}

.v2-simulator-result-value strong {
  font-size: 26px;
  font-weight: 800;
  display: inline;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-right: 2px;
  opacity: 1;
}

.v2-simulator-result--no-bonus {
  background: linear-gradient(135deg, #6B7280 0%, #4B5563 100%);
  box-shadow: 0 4px 12px rgba(107, 114, 128, 0.18);
}

.v2-simulator-result--no-bonus .v2-simulator-result-value {
  font-size: 12px;
  font-weight: 600;
  white-space: normal;
  text-align: right;
  max-width: 60%;
  line-height: 1.35;
  opacity: 1;
}

.v2-simulator-result--no-bonus .v2-simulator-result-value strong {
  font-size: 12px;
  font-weight: 600;
  margin: 0;
}

/* ---- HAPPY HOURS — kafelki godzin ---- */
.v2-hh-hours-caption {
  display: block;
  margin: 4px 0 8px;
  font-size: 12px;
  color: var(--text-muted, #6B7280);
  font-weight: 500;
  text-align: center;
}

.v2-hh-hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.v2-hh-section .v2-show-table-btn {
  margin-top: 8px;
}

.v2-hh-hours-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 10px 12px;
  border-radius: 14px;
  border: 1.5px solid #FCE7F3;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF5F8 100%);
  text-align: center;
}

.v2-hh-hours-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FCE7F3;
  color: var(--brand-red, #E30613);
  margin-bottom: 2px;
}

.v2-hh-hours-time {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary, #1E1E2E);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.v2-hh-hours-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-red, #E30613);
  text-transform: none;
  letter-spacing: 0.01em;
}

/* ---- SHOW TABLE BUTTON (otwiera bottom sheet) ---- */
.v2-show-table-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin-top: 4px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border-light, #E5E7EB);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary, #1E1E2E);
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
  font-family: inherit;
}

.v2-show-table-btn:hover {
  background: #F9FAFB;
  border-color: #D1D5DB;
}

.v2-show-table-btn span {
  flex: 1;
  min-width: 0;
}

.v2-show-table-btn svg:first-child {
  color: var(--brand-red, #E30613);
  flex-shrink: 0;
}

.v2-show-table-btn svg:last-child {
  color: var(--text-muted, #6B7280);
  flex-shrink: 0;
}

/* ---- COMPACT PRICE GUARANTEE ---- */
.v2-price-compact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v2-price-compact-main,
.v2-price-compact-next {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #DBEAFE;
  background: linear-gradient(135deg, #EEF2FF 0%, #F5F3FF 100%);
}

.v2-price-compact-year,
.v2-price-compact-next-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.v2-price-compact-val,
.v2-price-compact-next-val {
  font-size: 30px;
  font-weight: 800;
  color: #1E40AF;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.v2-price-compact-unit,
.v2-price-compact-next-unit {
  font-size: 12px;
  color: var(--text-muted, #6B7280);
  font-weight: 500;
  margin-top: 2px;
}

.v2-price-compact-main,
.v2-price-compact-next {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 2px;
  align-items: baseline;
}

.v2-price-compact-year,
.v2-price-compact-next-year {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

.v2-price-compact-val,
.v2-price-compact-next-val {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
}

.v2-price-compact-unit,
.v2-price-compact-next-unit {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  align-self: end;
  text-align: right;
  margin-top: 0;
}

.v2-price-compact-sep {
  display: none;
}

.v2-price-compact-fee {
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 600;
}

/* ---- FACHOWCY CAROUSEL ---- */
.v2-fachowcy-section .v2-section-body {
  padding: 16px;
}

.v2-fachowcy-section .v2-section-header {
  padding-left: 14px;
  padding-right: 14px;
}

.v2-fachowcy-badge {
  display: inline-block;
  margin: 0 14px 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #7C3AED;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.v2-fachowcy-price {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 2px;
  align-items: baseline;
  margin: 0 0 4px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #EDE9FE;
  background: #FAF5FF;
}

.v2-fachowcy-price-label {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.v2-fachowcy-price-val {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
  font-size: 30px;
  font-weight: 800;
  color: #6D28D9;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.v2-fachowcy-price-unit {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  align-self: end;
  text-align: right;
  font-size: 12px;
  color: var(--text-muted, #6B7280);
  font-weight: 500;
}

/* Happy Hours (index.html #stepDetails): neutral price tile zamiast akcentu fioletowego */
#stepDetails .v2-fachowcy-section .v2-fachowcy-price {
  background: #F3F4F6;
  border: 1px solid var(--border-light);
}

#stepDetails .v2-fachowcy-section .v2-fachowcy-price-val {
  color: var(--text-primary);
}

.v2-fachowcy-carousel {
  position: relative;
}

.v2-fachowcy-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 14px 14px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.v2-fachowcy-track::-webkit-scrollbar {
  display: none;
}

.v2-fachowcy-card {
  flex: 0 0 85%;
  min-width: 0;
  scroll-snap-align: start;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #F5F3FF 0%, #FAF5FF 100%);
  border: 1px solid #E9D5FF;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.v2-fachowcy-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7C3AED;
  box-shadow: 0 2px 6px rgba(124, 58, 237, 0.15);
}

.v2-fachowcy-card-title {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary, #1E1E2E);
  line-height: 1.25;
}

.v2-fachowcy-card-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-secondary, #374151);
}

.v2-fachowcy-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 6px 0 14px;
}

.v2-fachowcy-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #E5E7EB;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.v2-fachowcy-dot.active {
  background: #7C3AED;
  width: 20px;
  border-radius: 999px;
}

/* ---- LEGAL SUMMARY ---- */
.v2-legal--summary {
  margin: 8px 4px 0;
  padding: 10px 12px;
  background: #F9FAFB;
  border-radius: 8px;
  border-left: 3px solid #D1D5DB;
  font-size: 11px;
  color: var(--text-muted, #6B7280);
  line-height: 1.5;
}

/* ---- DOCS STEP – LEGAL CARDS ---- */
.v2-legal-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v2-legal-card {
  padding: 12px 14px;
  border-radius: 10px;
  background: #F9FAFB;
  border: 1px solid var(--border-light, #E5E7EB);
}

.v2-legal-card h3 {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary, #1E1E2E);
}

.v2-legal-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-secondary, #374151);
}

/* ---- BOTTOM SHEET – PREMIUM TABLE ---- */
#premiumTableSheet .v2-bottomsheet-panel {
  max-height: 88vh;
}

#premiumTableSheet .v2-bottomsheet-body {
  max-height: calc(88vh - 80px);
  overflow-y: auto;
  padding: 12px 16px 24px;
}

#premiumTableSheet .v2-section-intro {
  font-size: 12.5px;
  line-height: 1.45;
  margin: 0 0 14px;
  color: var(--text-secondary, #4B5563);
}

/* === Segmented control (poziomy selektor progu) === */
#premiumTableSheet .v2-threshold-selector {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #F3F4F6;
  border-radius: 10px;
  padding: 4px;
}

#premiumTableSheet .v2-threshold-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 6px;
  margin: 0;
  border-radius: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s ease;
  min-height: 36px;
}

#premiumTableSheet .v2-threshold-option--selected {
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 0 0 0.5px rgba(0, 0, 0, 0.04);
}

#premiumTableSheet .v2-threshold-radio {
  display: none;
}

#premiumTableSheet .v2-threshold-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted, #6B7280);
  line-height: 1.2;
  letter-spacing: -0.005em;
}

#premiumTableSheet .v2-threshold-option--selected .v2-threshold-label {
  color: var(--text-primary, #1E1E2E);
}

/* === Panele tabel (tylko aktywny widoczny) === */
#premiumTableSheet .v2-premium-panels {
  border: 1px solid var(--border-light, #E5E7EB);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

#premiumTableSheet .v2-premium-panel {
  display: none;
  border: none;
  border-radius: 0;
  overflow: visible;
}

#premiumTableSheet .v2-premium-panel.v2-accordion-item--open {
  display: block;
}

#premiumTableSheet .v2-premium-panels {
  display: block;
}

#premiumTableSheet .v2-premium-table {
  font-size: 13px;
  width: 100%;
}

#premiumTableSheet .v2-premium-table th,
#premiumTableSheet .v2-premium-table td {
  padding: 10px 12px;
  vertical-align: middle;
}

#premiumTableSheet .v2-premium-table th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-secondary, #374151);
  background: #F3F4F6;
}

#premiumTableSheet .v2-premium-table th:last-child,
#premiumTableSheet .v2-premium-table td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

#premiumTableSheet .v2-premium-table-highlight td {
  background: #F0FDF4;
  color: #14532D;
  font-weight: 700;
}

/* ---- BENEFITS NAV (clickable anchors) ---- */
.v2-benefits-nav .v2-section-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.v2-benefit-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  transition: background 150ms ease;
  cursor: pointer;
}

.v2-benefit-link:last-child {
  border-bottom: none;
}

.v2-benefit-link span {
  flex: 1;
}

.v2-benefit-link:active {
  background: #F3F4F6;
}

/* ---- FACHOWCY SIMPLE LIST (HH) ---- */
.v2-fachowcy-simple {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 12px;
  padding: 0 4px;
}

.v2-fachowcy-simple-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.45;
  padding: 12px 0;
  border-bottom: 1px solid #F3F4F6;
}

.v2-fachowcy-simple-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.v2-fachowcy-simple-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- PREMIUM TABLE SWIPE ---- */
.v2-premium-swipe {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  gap: 10px;
  padding: 4px 2px 10px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
}

.v2-premium-swipe::-webkit-scrollbar {
  display: none;
}

.v2-premium-swipe-card {
  flex: 0 0 calc(100% - 32px);
  width: calc(100% - 32px);
  max-width: calc(100% - 32px);
  min-width: 0;
  scroll-snap-align: center;
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid var(--border-light);
  padding: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
}

.v2-premium-swipe-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  padding: 12px 14px 10px;
  text-align: center;
  background: #F3F4F6;
  border-bottom: 1px solid var(--border-light);
  margin: 0;
}

#premiumTableSheet .v2-premium-swipe-card .v2-premium-table,
.v2-premium-swipe-card .v2-premium-table {
  margin: 0;
  table-layout: fixed;
  width: 100%;
}

#premiumTableSheet .v2-premium-swipe-card .v2-premium-table th:first-child,
#premiumTableSheet .v2-premium-swipe-card .v2-premium-table td:first-child,
.v2-premium-swipe-card .v2-premium-table th:first-child,
.v2-premium-swipe-card .v2-premium-table td:first-child {
  width: 40%;
}

#premiumTableSheet .v2-premium-swipe-card .v2-premium-table th:last-child,
#premiumTableSheet .v2-premium-swipe-card .v2-premium-table td:last-child,
.v2-premium-swipe-card .v2-premium-table th:last-child,
.v2-premium-swipe-card .v2-premium-table td:last-child {
  width: 60%;
}

#premiumTableSheet .v2-premium-swipe-card .v2-premium-table th,
.v2-premium-swipe-card .v2-premium-table th {
  background: transparent;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 10px 8px 6px;
  border-bottom: 1px solid var(--border-light);
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.3;
  vertical-align: bottom;
  text-align: left;
}

#premiumTableSheet .v2-premium-swipe-card .v2-premium-table td,
.v2-premium-swipe-card .v2-premium-table td {
  padding: 10px 8px;
  font-size: 13px;
  border-top: 1px solid #F3F4F6;
  overflow-wrap: anywhere;
}

#premiumTableSheet .v2-premium-swipe-card .v2-premium-table td:first-child,
.v2-premium-swipe-card .v2-premium-table td:first-child {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #16A34A;
}

.v2-premium-swipe-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding-top: 6px;
}

.v2-premium-swipe-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D1D5DB;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 200ms, transform 200ms;
}

.v2-premium-swipe-dot.active {
  background: #E30613;
  transform: scale(1.15);
}

/* ---- DISCLAIMER INLINE ---- */
.v2-disclaimer-inline {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-top: 8px;
  padding: 10px 12px;
  background: #F9FAFB;
  border-radius: 8px;
  border-left: 3px solid #D1D5DB;
}

/* ============================================================ */
/* BRIEF v2: nowe komponenty produktowe                         */
/* ============================================================ */

/* ---- WARIANTY EBG (stack 2 kart na stepEbgVariants) ---- */
.v2-detail-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 6px 0 0;
}

.v2-variants-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 14px 24px;
}

.v2-offer-card--variant {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  flex: 0 0 auto;
  scroll-snap-align: none;
}

.v2-offer-badge--bestseller {
  background: #1E40AF;
  color: #fff;
}

/* ---- ZAWODOWIEC: tabela porownawcza (K1) ---- */
.v2-fachowcy-compare {
  background: #F9FAFB;
  border-radius: 12px;
  padding: 12px 14px;
  margin: 0 14px 16px;
  border: 1px solid var(--border-light);
}

.v2-fachowcy-compare-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  gap: 12px;
}

.v2-fachowcy-compare-row + .v2-fachowcy-compare-row {
  border-top: 1px solid var(--border-light);
}

.v2-fachowcy-compare-label {
  font-size: 13px;
  color: var(--text-primary);
  line-height: 1.3;
}

.v2-fachowcy-compare-label small {
  display: block;
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 400;
}

.v2-fachowcy-compare-value {
  font-size: 18px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.v2-fachowcy-compare-value--positive {
  color: #16A34A;
}

/* ---- ZAWODOWIEC: karuzela 3 wariantow (K1) ---- */
.v2-variants-swipe {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 12px;
  padding: 4px 14px 14px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.v2-variants-swipe::-webkit-scrollbar { display: none; }

.v2-variant-card {
  flex: 0 0 calc(100% - 56px);
  width: calc(100% - 56px);
  max-width: calc(100% - 56px);
  min-width: 0;
  scroll-snap-align: center;
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid var(--border-light);
  padding: 18px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: relative;
}

.v2-variant-card--popular {
  border-color: #1F2937;
  border-width: 2px;
}

/* Zawodowiec karuzela: ramka na aktywnym wariancie, klik w kartę */
.v2-variants-swipe .v2-variant-card {
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.v2-variants-swipe .v2-variant-card--popular:not(.v2-variant-card--active) {
  border-color: var(--border-light);
  border-width: 1.5px;
}

.v2-variants-swipe .v2-variant-card--active {
  border-color: #E30613;
  border-width: 2px;
  box-shadow: 0 0 0 1px rgba(227, 6, 19, 0.35), 0 6px 20px rgba(227, 6, 19, 0.12);
}

.v2-variant-card-badge {
  display: inline-block;
  background: #1F2937;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.v2-variant-card-badge--muted {
  background: #4B5563;
}

.v2-variant-card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 6px;
}

.v2-variant-card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}

.v2-variant-card-price-val {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.v2-variant-card-price-unit {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.v2-variant-card-price-year {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.v2-variant-card-specialists {
  margin-top: 2px;
}

.v2-variant-card-specialists-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.v2-variant-card-specialists-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.v2-variant-card-tag {
  display: inline-flex;
  align-items: center;
  background: #F3F4F6;
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  line-height: 1.25;
  max-width: 100%;
  box-sizing: border-box;
}

.v2-variant-shared-footnote {
  margin: 6px 14px 0;
  padding: 0 4px;
  font-size: 11px;
  line-height: 1.45;
  color: #6B7280;
  text-align: center;
}

/* Zawodowiec: wspólne limity pod karuzelą — bez drobnego druku */
.v2-zaw-variant-limits {
  margin: 14px 0 0;
  padding: 14px 16px;
  background: #F3F4F6;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-sizing: border-box;
}

.v2-zaw-variant-limits > span {
  font-size: 14px;
}

.v2-zaw-hotline {
  margin: 4px 0 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.v2-zaw-hotline a {
  color: var(--text-primary);
  text-decoration: none;
}

.v2-variant-card-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}

.v2-variant-card-chip {
  background: #F3F4F6;
  border-radius: 8px;
  padding: 8px 4px;
  text-align: center;
}

.v2-variant-card-chip-val {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}

.v2-variant-card-chip-label {
  display: block;
  font-size: 10px;
  color: var(--text-secondary);
  margin-top: 2px;
  line-height: 1.2;
}

.v2-variant-card-spec {
  font-size: 12px;
  color: var(--text-secondary);
}

.v2-variant-card-spec strong {
  color: var(--text-primary);
}

.v2-variant-card-spec-tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-left: 4px;
}

.v2-variant-card-spec-tag {
  display: inline-block;
  background: #E5E7EB;
  color: var(--text-primary);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
}

.v2-variant-card-spec--has-more:not(.v2-variant-card-spec--expanded) .v2-variant-card-spec-tag--extra {
  display: none;
}

.v2-spec-more {
  display: block;
  margin-top: 10px;
  padding: 0;
  border: none;
  background: none;
  color: #E30613;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-align: left;
}

.v2-spec-more:focus {
  outline: none;
}

.v2-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.v2-price-table th,
.v2-price-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
  vertical-align: top;
}

.v2-price-table th {
  position: sticky;
  top: 0;
  background: var(--bg-white);
  font-weight: 600;
  z-index: 1;
}

.v2-price-table tbody tr:last-child td {
  border-bottom: none;
}

.v2-price-table td:nth-child(2),
.v2-price-table td:nth-child(3),
.v2-price-table th:nth-child(2),
.v2-price-table th:nth-child(3) {
  text-align: right;
}

.v2-price-table-note {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 12px;
  margin-bottom: 0;
}

/* ---- ZAWODOWIEC: lista elastycznosci (K2) ---- */
.v2-elasticity-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.v2-elasticity-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.v2-elasticity-item:last-child { border-bottom: none; }

.v2-elasticity-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #F0FDF4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #16A34A;
}

.v2-elasticity-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.v2-elasticity-text span {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ---- ZAWODOWIEC: lista kontaktowa (K3) ---- */
.v2-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}

.v2-contact-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 13px;
}

.v2-contact-row:last-child { border-bottom: none; }

.v2-contact-row-label {
  color: var(--text-secondary);
  flex-shrink: 0;
}

.v2-contact-row-value {
  font-weight: 700;
  color: var(--text-primary);
  text-align: right;
}

.v2-contact-row-value--phone {
  color: #1E40AF;
  text-decoration: underline;
  font-variant-numeric: tabular-nums;
}

.v2-contact-note {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed var(--border-light);
}

/* ---- HAPPY CHARGE: karuzela "Sprawdz jak to dziala" ---- */
.v2-howto-section {
  margin-top: 6px;
}

.v2-howto-swipe {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 10px;
  padding: 4px 14px 12px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.v2-howto-swipe::-webkit-scrollbar { display: none; }

.v2-howto-card {
  flex: 0 0 calc(100% - 56px);
  width: calc(100% - 56px);
  max-width: calc(100% - 56px);
  min-width: 0;
  scroll-snap-align: center;
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid var(--border-light);
  padding: 18px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.v2-howto-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--text-primary);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.v2-howto-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 8px;
  line-height: 1.3;
}

.v2-howto-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
}

.v2-howto-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding-top: 6px;
}

.v2-howto-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D1D5DB;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 200ms, transform 200ms;
}

.v2-howto-dot.active {
  background: #E30613;
  transform: scale(1.15);
}

/* ---- HAPPY CHARGE: godziny (analog v2-hh-hours) ---- */
.v2-hc-hours-caption {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.v2-hc-hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.v2-hc-hours-card {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.v2-hc-hours-icon {
  color: #16A34A;
  margin-bottom: 2px;
}

.v2-hc-hours-time {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

.v2-hc-hours-label {
  font-size: 11px;
  color: #16A34A;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---- EBG-TG: opcje taryfowe G12/G12w ---- */
.v2-tariff-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.v2-tariff-card {
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid var(--border-light);
  padding: 16px;
}

.v2-tariff-card-header {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.v2-tariff-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #FEF3C7;
  color: #D97706;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v2-tariff-card-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.v2-tariff-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-top: 2px;
}

.v2-tariff-card-caption {
  font-size: 12px;
  font-style: italic;
  color: #92400E;
  background: #FEF3C7;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.v2-tariff-card-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}

.v2-tariff-card-bullets li {
  font-size: 13px;
  color: var(--text-primary);
  padding: 6px 0;
  line-height: 1.4;
}

.v2-tariff-card-bullets li.bullet-strong {
  font-weight: 700;
  margin-top: 4px;
}

.v2-tariff-card-bullets ul {
  list-style: disc;
  padding-left: 20px;
  margin: 4px 0 0;
}

.v2-tariff-card-bullets ul li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 3px 0;
}

.v2-tariff-card-tip {
  font-size: 12px;
  color: var(--text-secondary);
  font-style: italic;
  padding-top: 8px;
  border-top: 1px dashed var(--border-light);
  line-height: 1.4;
}

/* ---- EBG-TG: siatka sezonow (K4) ---- */
.v2-season-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 10px 0 12px;
}

.v2-season-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
}

.v2-season-card--summer {
  background: #FEF3C7;
  border-color: #FCD34D;
}

.v2-season-card--winter {
  background: #DBEAFE;
  border-color: #93C5FD;
}

.v2-season-card-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.v2-season-card-range {
  font-size: 12px;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}

/* ---- ZIELONA ENERGIA (wspolny) ---- */
.v2-green-energy {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.v2-green-energy-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #DCFCE7;
  color: #16A34A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v2-green-energy-text {
  font-size: 13px;
  color: var(--text-primary);
  line-height: 1.5;
}

.v2-green-energy-text p { margin: 0 0 8px; }
.v2-green-energy-text p:last-child { margin-bottom: 0; }
.v2-green-energy-text strong { font-weight: 700; }

/* ---- EBG-TG: panel cen (ukryty do momentu interakcji) ---- */
.v2-ebg-tg-season-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 8px;
}

.v2-ebg-tg-season-pill {
  flex: 1;
  min-width: 120px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.v2-ebg-tg-season-pill--active {
  background: #EEF2FF;
  border-color: #6366F1;
  color: #312E81;
}

.v2-ebg-tg-season-pill:focus-visible {
  outline: 2px solid #6366F1;
  outline-offset: 2px;
}

.v2-ebg-tg-season-hint {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0 0 14px;
}

.v2-ebg-tg-prices-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: #F9FAFB;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  margin-bottom: 12px;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.v2-ebg-tg-prices-btn:hover {
  background: #F3F4F6;
}

.v2-ebg-tg-prices-btn:focus-visible {
  outline: 2px solid #6366F1;
  outline-offset: 2px;
}

.v2-ebg-tg-prices-btn-arrow {
  font-weight: 800;
}

.v2-ebg-tg-prices-panel {
  margin-bottom: 10px;
  padding-top: 4px;
}

.v2-ebg-tg-prices-panel[hidden] {
  display: none !important;
}
