/* ================================================================
   protetyk.css — Katalog Protetykow Słuchu
   BEM: block__element--modifier
   Zmienne: --brand, --ink, --line, --bg, --muted (z main.css)
   ================================================================ */

/* ---------------------------------------------------------------
   HERO SEKCJA KATALOGU
   --------------------------------------------------------------- */
.protetyk-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 64px 0 48px;
  color: #fff;
}

.protetyk-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255,255,255,.15);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.protetyk-hero__title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}

.protetyk-hero__sub {
  font-size: 16px;
  opacity: .85;
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.protetyk-hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.protetyk-hero__stat-num {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.protetyk-hero__stat-label {
  font-size: 12px;
  opacity: .75;
  margin-top: 3px;
}

/* ---------------------------------------------------------------
   FILTRY KATALOGU
   --------------------------------------------------------------- */
.protetyk-filters {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
  position: sticky;
  top: 60px;
  z-index: 90;
}

.protetyk-filters__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.protetyk-filters__search {
  position: relative;
  flex: 1;
  min-width: 200px;
  max-width: 320px;
}

.protetyk-filters__search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-ink-soft);
  font-size: 14px;
  pointer-events: none;
}

.protetyk-filters__search-input {
  width: 100%;
  padding: 9px 12px 9px 36px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-size: 13.5px;
  font-family: inherit;
  color: var(--color-ink);
  background: var(--color-white);
  transition: border-color .15s;
}

.protetyk-filters__search-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.protetyk-filters__select {
  padding: 9px 32px 9px 12px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  color: var(--color-ink);
  background: var(--color-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 10px center;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color .15s;
}

.protetyk-filters__select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.protetyk-filters__chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  background: #fff;
  color: var(--color-ink);
  transition: all .15s;
  white-space: nowrap;
}

.protetyk-filters__chip:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.protetyk-filters__chip--active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* ---------------------------------------------------------------
   MIASTO TABS
   --------------------------------------------------------------- */
.protetyk-cities {
  padding: 20px 0 4px;
}

.protetyk-cities__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-ink-soft);
  margin-bottom: 10px;
}

.protetyk-cities__list {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.protetyk-cities__item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-ink);
  border: 1.5px solid var(--color-border);
  background: #fff;
  transition: all .15s;
}

.protetyk-cities__item:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.protetyk-cities__item--active {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: var(--color-primary);
}

.protetyk-cities__item-count {
  font-size: 10.5px;
  font-weight: 700;
  background: var(--color-border);
  color: var(--color-ink-soft);
  padding: 1px 6px;
  border-radius: 10px;
}

.protetyk-cities__item--active .protetyk-cities__item-count {
  background: #bfdbfe;
  color: var(--color-primary);
}

/* ---------------------------------------------------------------
   LAYOUT KATALOGU
   --------------------------------------------------------------- */
.protetyk-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  padding: 28px 0 60px;
  align-items: start;
}

/* ---------------------------------------------------------------
   PANEL BOCZNY
   --------------------------------------------------------------- */
.protetyk-sidebar {
  position: sticky;
  top: 120px;
}

.protetyk-sidebar__section {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 12px;
}

.protetyk-sidebar__title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-ink-soft);
  margin-bottom: 12px;
}

.protetyk-sidebar__option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
  font-size: 13.5px;
  color: var(--color-ink);
}

.protetyk-sidebar__option:last-child { border-bottom: none; }

.protetyk-sidebar__option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

/* ---------------------------------------------------------------
   KARTA PROTETYKA — lista
   --------------------------------------------------------------- */
.protetyk-card {
  display: block;
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 12px;
  text-decoration: none;
  color: inherit;
  transition: all .18s;
  position: relative;
}

.protetyk-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 20px rgba(29,78,216,.1);
  transform: translateY(-1px);
}

.protetyk-card--premium {
  border-color: #fbbf24;
  background: linear-gradient(to bottom right, #fffbeb, #fff);
}

.protetyk-card__premium-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fbbf24;
  padding: 3px 8px;
  border-radius: 10px;
}

.protetyk-card__inner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.protetyk-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-border);
  flex-shrink: 0;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  color: var(--color-primary);
}

.protetyk-card__body {
  flex: 1;
  min-width: 0;
}

.protetyk-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 3px;
}

.protetyk-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12.5px;
  color: var(--color-ink-soft);
  margin-bottom: 10px;
}

.protetyk-card__city {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: var(--color-ink);
}

.protetyk-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.protetyk-card__rating-stars {
  color: #f59e0b;
  font-size: 13px;
}

.protetyk-card__rating-num {
  font-weight: 700;
  color: var(--color-ink);
  font-size: 13px;
}

.protetyk-card__rating-count {
  color: var(--color-ink-soft);
  font-size: 12px;
}

.protetyk-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}

.protetyk-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 10px;
  font-size: 11.5px;
  font-weight: 600;
  background: #f1f5f9;
  color: #475569;
}

.protetyk-card__tag--nfz {
  background: #dcfce7;
  color: #15803d;
}

.protetyk-card__tag--verified {
  background: #eff6ff;
  color: var(--color-primary);
}

.protetyk-card__excerpt {
  font-size: 13px;
  color: var(--color-ink-soft);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.protetyk-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}

.protetyk-card__brands {
  display: flex;
  gap: 6px;
  align-items: center;
}

.protetyk-card__brand-dot {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  color: #475569;
}

.protetyk-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
}

/* ---------------------------------------------------------------
   STRONA PROFILU PROTETYKA
   --------------------------------------------------------------- */
.protetyk-profile-hero {
  background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
  border-bottom: 1px solid var(--color-border);
  padding: 40px 0;
}

.protetyk-profile-hero__inner {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.protetyk-profile-hero__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  flex-shrink: 0;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 36px;
  color: var(--color-primary);
}

.protetyk-profile-hero__body { flex: 1; }

.protetyk-profile-hero__badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.protetyk-profile-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.protetyk-profile-hero__badge--verified {
  background: #eff6ff;
  color: var(--color-primary);
  border: 1px solid #bfdbfe;
}

.protetyk-profile-hero__badge--nfz {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #86efac;
}

.protetyk-profile-hero__badge--premium {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fbbf24;
}

.protetyk-profile-hero__name {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: 6px;
  line-height: 1.2;
}

.protetyk-profile-hero__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--color-ink-soft);
  margin-bottom: 14px;
}

.protetyk-profile-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.protetyk-profile-hero__rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.protetyk-profile-hero__rating-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--color-ink);
}

.protetyk-profile-hero__stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 1px;
}

.protetyk-profile-hero__rating-count {
  font-size: 13px;
  color: var(--color-ink-soft);
}

.protetyk-profile-hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* ---------------------------------------------------------------
   PROFIL — LAYOUT (sidebar + main)
   --------------------------------------------------------------- */
.protetyk-profile-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  padding: 32px 0 64px;
  align-items: start;
}

/* ---------------------------------------------------------------
   SEKCJE PROFILU
   --------------------------------------------------------------- */
.protetyk-section {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 16px;
}

.protetyk-section__title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-ink-soft);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.protetyk-section__bio {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--color-ink);
}

/* Specjalizacje */
.protetyk-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.protetyk-specs__item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  background: #eff6ff;
  color: var(--color-primary);
  border: 1px solid #bfdbfe;
}

/* Godziny pracy */
.protetyk-hours {
  display: grid;
  gap: 0;
}

.protetyk-hours__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 13.5px;
}

.protetyk-hours__row:last-child { border-bottom: none; }

.protetyk-hours__day {
  font-weight: 600;
  color: var(--color-ink);
  width: 100px;
}

.protetyk-hours__day--today { color: var(--color-primary); }

.protetyk-hours__time { color: var(--color-ink-soft); }
.protetyk-hours__closed { color: #ef4444; font-weight: 500; }

/* Opinie */
.protetyk-review {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.protetyk-review:last-child { border-bottom: none; }

.protetyk-review__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.protetyk-review__author { font-weight: 700; font-size: 14px; color: var(--color-ink); }
.protetyk-review__date   { font-size: 12px; color: var(--color-ink-soft); }
.protetyk-review__stars  { color: #f59e0b; font-size: 13px; margin-bottom: 6px; }
.protetyk-review__title  { font-weight: 700; font-size: 14px; margin-bottom: 6px; color: var(--color-ink); }
.protetyk-review__body   { font-size: 13.5px; line-height: 1.65; color: var(--color-ink-soft); }

/* ---------------------------------------------------------------
   SIDEBAR PROFILU (kontakt, mapa)
   --------------------------------------------------------------- */
.protetyk-contact-card {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 12px;
}

.protetyk-contact-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 16px;
}

.protetyk-contact-card__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13.5px;
}

.protetyk-contact-card__item:last-child { margin-bottom: 0; }

.protetyk-contact-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #eff6ff;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.protetyk-contact-card__label {
  font-size: 11px;
  color: var(--color-ink-soft);
  margin-bottom: 2px;
}

.protetyk-contact-card__value {
  color: var(--color-ink);
  font-weight: 500;
  text-decoration: none;
}

.protetyk-contact-card__value:hover { color: var(--color-primary); }

/* Formularz kontaktowy */
.protetyk-contact-form {
  background: linear-gradient(135deg, #1d4ed8 0%, var(--color-primary-dark) 100%);
  border-radius: 14px;
  padding: 20px;
  color: #fff;
  margin-bottom: 12px;
}

.protetyk-contact-form__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.protetyk-contact-form__sub {
  font-size: 12.5px;
  opacity: .8;
  margin-bottom: 14px;
}

.protetyk-contact-form__field {
  margin-bottom: 10px;
}

.protetyk-contact-form__input,
.protetyk-contact-form__textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  background: rgba(255,255,255,.1);
  color: #fff;
  box-sizing: border-box;
  transition: border-color .15s;
}

.protetyk-contact-form__input::placeholder,
.protetyk-contact-form__textarea::placeholder { color: rgba(255,255,255,.5); }

.protetyk-contact-form__input:focus,
.protetyk-contact-form__textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.15);
}

.protetyk-contact-form__textarea { resize: vertical; min-height: 80px; }

.protetyk-contact-form__submit {
  width: 100%;
  padding: 10px;
  background: #fff;
  color: var(--color-primary);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s;
  margin-top: 4px;
}

.protetyk-contact-form__submit:hover {
  background: #f0f9ff;
  transform: translateY(-1px);
}

/* ---------------------------------------------------------------
   PANEL PROTETYKA — zarządzanie profilem
   --------------------------------------------------------------- */
.protetyk-panel-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 32px 0;
  color: #fff;
}

.protetyk-panel-header__title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
}

.protetyk-panel-header__sub {
  font-size: 14px;
  opacity: .8;
}

.protetyk-panel-nav {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 60px;
  z-index: 80;
}

.protetyk-panel-nav__inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.protetyk-panel-nav__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-ink-soft);
  text-decoration: none;
  border-bottom: 2.5px solid transparent;
  white-space: nowrap;
  transition: all .15s;
}

.protetyk-panel-nav__item:hover { color: var(--color-ink); }

.protetyk-panel-nav__item--active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.protetyk-panel-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 28px 0 60px;
  align-items: start;
}

.protetyk-panel-sidebar {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  position: sticky;
  top: 120px;
}

.protetyk-panel-sidebar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
  transition: all .12s;
}

.protetyk-panel-sidebar__item:last-child { border-bottom: none; }
.protetyk-panel-sidebar__item:hover { background: #f8fafc; color: var(--color-primary); }
.protetyk-panel-sidebar__item--active { background: #eff6ff; color: var(--color-primary); font-weight: 700; }

.protetyk-panel-sidebar__icon { font-size: 15px; width: 20px; text-align: center; }

.protetyk-panel-main { }

.protetyk-panel-block {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
}

.protetyk-panel-block__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
}

.protetyk-panel-block__head-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-ink);
}

.protetyk-panel-block__head-sub {
  font-size: 12px;
  color: var(--color-ink-soft);
  margin-top: 2px;
}

.protetyk-panel-block__body { padding: 20px; }

/* Form row */
.protetyk-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.protetyk-form-row--full { grid-template-columns: 1fr; }

.protetyk-form-field { display: flex; flex-direction: column; gap: 5px; }

.protetyk-form-field__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-ink-soft);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.protetyk-form-field__input,
.protetyk-form-field__textarea,
.protetyk-form-field__select {
  padding: 9px 12px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-size: 13.5px;
  font-family: inherit;
  color: var(--color-ink);
  background: var(--color-white);
  transition: border-color .15s;
}

.protetyk-form-field__input:focus,
.protetyk-form-field__textarea:focus,
.protetyk-form-field__select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.protetyk-form-field__textarea { resize: vertical; min-height: 100px; }

.protetyk-form-field__hint {
  font-size: 11.5px;
  color: var(--color-ink-soft);
}

/* Toggle switch */
.protetyk-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.protetyk-toggle:last-child { border-bottom: none; }

.protetyk-toggle__label { font-size: 13.5px; color: var(--color-ink); font-weight: 500; }
.protetyk-toggle__hint  { font-size: 11.5px; color: var(--color-ink-soft); margin-top: 2px; }

.protetyk-toggle__switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.protetyk-toggle__switch input { opacity: 0; width: 0; height: 0; }

.protetyk-toggle__slider {
  position: absolute;
  inset: 0;
  background: #cbd5e1;
  border-radius: 22px;
  cursor: pointer;
  transition: .2s;
}

.protetyk-toggle__slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
}

.protetyk-toggle__switch input:checked + .protetyk-toggle__slider {
  background: var(--color-primary);
}

.protetyk-toggle__switch input:checked + .protetyk-toggle__slider::before {
  transform: translateX(18px);
}

/* Statystyki w panelu */
.protetyk-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.protetyk-stat {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.protetyk-stat__num {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.protetyk-stat__label {
  font-size: 11.5px;
  color: var(--color-ink-soft);
  font-weight: 500;
}

/* ---------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------- */
@media (max-width: 1024px) {
  .protetyk-layout { grid-template-columns: 1fr; }
  .protetyk-sidebar { position: static; }
  .protetyk-profile-layout { grid-template-columns: 1fr; }
  .protetyk-panel-layout { grid-template-columns: 1fr; }
  .protetyk-panel-sidebar { position: static; display: flex; flex-wrap: wrap; }
  .protetyk-panel-sidebar__item { border-bottom: none; border-right: 1px solid var(--color-border); }
}

@media (max-width: 768px) {
  .protetyk-hero { padding: 40px 0 32px; }
  .protetyk-hero__stats { gap: 20px; }
  .protetyk-form-row { grid-template-columns: 1fr; }
  .protetyk-stats { grid-template-columns: 1fr 1fr; }
  .protetyk-profile-hero__inner { flex-direction: column; }
  .protetyk-card__inner { flex-direction: column; }
}
