:root {
  /* Eski Psikologa (vcsvs ps-design-system) */
  --pk-primary: #006d77;
  --pk-primary-dark: #005a62;
  --pk-primary-light: #d0eeeb;
  --pk-primary-soft: #ecf8f7;
  --pk-navy: #1d2d35;
  --pk-navy-light: #2a4550;
  --pk-bg: #f6f8f8;
  --pk-white: #ffffff;
  --pk-text: #1e2d3d;
  --pk-muted: #64748b;
  --pk-border: #e2e8f0;
  --pk-radius: 14px;
  --pk-radius-lg: 20px;
  --pk-radius-xl: 28px;
  --pk-shadow: 0 4px 24px rgba(30, 45, 61, 0.08);
  --pk-shadow-lg: 0 16px 48px rgba(30, 45, 61, 0.12);
  --pk-container: 1200px;

  /* Eski bileşenlerle uyumluluk */
  --bk-primary: var(--pk-primary);
  --bk-primary-dark: var(--pk-primary-dark);
  --bk-primary-light: var(--pk-primary-light);
  --bk-primary-soft: var(--pk-primary-soft);
  --bk-bg: var(--pk-bg);
  --bk-text: var(--pk-text);
  --bk-muted: var(--pk-muted);
  --bk-border: var(--pk-border);
  --bk-container: var(--pk-container);
}

@theme inline {
  --font-sans: var(--font-inter);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
  background: var(--pk-bg);
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  min-height: 100dvh;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  font-family: var(--font-inter), system-ui, sans-serif;
  color: var(--pk-text);
  background: var(--pk-bg);
  -webkit-font-smoothing: antialiased;
}

input,
select,
textarea,
button {
  font: inherit;
}

/* Layout */
.pk-container {
  width: 100%;
  max-width: var(--pk-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 1024px) {
  .pk-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.pk-section {
  padding: 4rem 0;
}

/* Marketing & yasal içerik sayfaları */
.marketing-page__body--narrow {
  max-width: 48rem;
}

.marketing-page__body--wide {
  max-width: 64rem;
}

.marketing-content > p {
  line-height: 1.7;
  color: var(--pk-muted);
}

.marketing-content > p + p {
  margin-top: 1rem;
}

.marketing-content h2 {
  margin-top: 2rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--pk-text);
}

.marketing-content h2:first-child {
  margin-top: 0;
}

.marketing-content ul {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
  list-style: disc;
  color: var(--pk-muted);
}

.marketing-content ul li + li {
  margin-top: 0.35rem;
}

.marketing-content .marketing-card-grid {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 640px) {
  .marketing-content .marketing-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.marketing-content .marketing-info-box {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--pk-radius);
  font-size: 0.875rem;
  line-height: 1.6;
}

.marketing-content .marketing-info-box--warn {
  border: 1px solid #fcd34d;
  background: #fffbeb;
  color: #92400e;
}

.marketing-content .marketing-info-box--soft {
  background: var(--pk-primary-soft);
  color: var(--pk-text);
}

.marketing-content .marketing-cta-box {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border-radius: var(--pk-radius-lg);
  background: var(--pk-primary-soft);
  text-align: center;
}

.marketing-steps {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 3rem 0 2rem;
}

.marketing-step {
  display: grid;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .marketing-step {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.marketing-step__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--pk-radius-lg);
  box-shadow: var(--pk-shadow-lg);
}

.marketing-step__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: var(--pk-primary);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: white;
}

.marketing-step__title {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pk-text);
}

.marketing-step__desc {
  margin-top: 0.75rem;
  line-height: 1.7;
  color: var(--pk-muted);
}

.marketing-banner {
  margin-bottom: 4rem;
  padding: 2.5rem 1.5rem;
  border-radius: var(--pk-radius-lg);
  background: var(--pk-navy);
  color: white;
  text-align: center;
}

@media (min-width: 768px) {
  .marketing-banner {
    padding: 2.5rem 3rem;
  }
}

.marketing-banner h2 {
  font-size: 1.5rem;
  font-weight: 800;
}

.marketing-banner p {
  margin: 0.5rem auto 0;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.8);
}

.marketing-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.pk-faq-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}

.pk-faq-link:hover {
  background: rgba(255, 255, 255, 0.28);
  color: white;
}

/* —— Panel shell (eski panel-master) —— */
.ps-panel-app {
  display: flex;
  min-height: 100vh;
  background: var(--pk-bg);
  color: var(--pk-text);
}

.ps-panel-app--sidebar-open {
  overflow: hidden;
}

.ps-panel-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 55;
  border: 0;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.ps-panel-app--sidebar-open .ps-panel-backdrop {
  display: block;
}

@media (min-width: 1024px) {
  .ps-panel-backdrop {
    display: none !important;
  }
}

.ps-panel-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: min(268px, 88vw);
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #0f766e 0%, #0d9488 42%, #0b534f 100%);
  color: rgba(255, 255, 255, 0.94);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.2s ease;
}

@media (min-width: 1024px) {
  .ps-panel-sidebar {
    position: sticky;
    top: 0;
    z-index: 10;
    width: 268px;
    min-height: 100vh;
    transform: translateX(0);
  }
}

.ps-panel-app--sidebar-open .ps-panel-sidebar {
  transform: translateX(0);
}

.ps-panel-sidebar__brand {
  padding: 1.25rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ps-panel-sidebar__brand a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.ps-panel-sidebar__brand a i {
  font-size: 1.35rem;
  color: var(--pk-primary-light);
}

.ps-panel-sidebar__brand small {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.75;
}

.ps-panel-sidebar__nav {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 0.65rem 0.5rem 1rem;
}

.ps-panel-sidebar__nav a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0.15rem 0.35rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.ps-panel-sidebar__nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.ps-panel-sidebar__nav a.active {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow: inset 3px 0 0 #fff;
}

.ps-panel-sidebar__nav a i {
  font-size: 1.15rem;
  opacity: 0.95;
}

.ps-panel-sidebar__foot {
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ps-panel-sidebar__greet {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.ps-panel-sidebar__date {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.15rem;
  margin-bottom: 0.35rem;
}

.ps-panel-sidebar__foot-nav a,
.ps-panel-sidebar__logout {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: calc(100% - 0.7rem);
  margin: 0.15rem 0.35rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}

.ps-panel-sidebar__foot-nav a:hover,
.ps-panel-sidebar__logout:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.ps-panel-sidebar__logout {
  color: rgba(254, 226, 226, 0.95);
}

.ps-panel-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

@media (min-width: 1024px) {
  .ps-panel-main {
    margin-left: 0;
  }
}

.ps-panel-topbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border-bottom: 1px solid var(--pk-border);
  position: sticky;
  top: 0;
  z-index: 40;
}

@media (min-width: 1024px) {
  .ps-panel-topbar {
    display: none;
  }
}

.ps-panel-topbar__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  border: 1px solid var(--pk-border);
  background: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}

.ps-panel-topbar__title {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--pk-text);
}

.ps-panel-topbar__site {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--pk-primary);
  text-decoration: none;
}

.ps-panel-content {
  flex: 1;
  padding: 1.25rem 1rem 2rem;
}

@media (min-width: 1024px) {
  .ps-panel-content {
    padding: 1.5rem 1.75rem 2.5rem;
  }
}

.ps-panel-card {
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--pk-border);
  box-shadow: 0 2px 12px rgba(22, 36, 42, 0.05);
  overflow: hidden;
}

.ps-panel-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--pk-border);
  background: linear-gradient(180deg, #fafcfb 0%, #fff 100%);
}

.ps-panel-card__head h2 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--pk-text);
}

.ps-panel-card__body {
  padding: 1.25rem;
}

.ps-panel-stat {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--pk-border);
  box-shadow: 0 2px 12px rgba(22, 36, 42, 0.05);
}

.ps-panel-stat__label {
  font-size: 0.8125rem;
  color: var(--pk-muted);
}

.ps-panel-stat__value {
  margin-top: 0.25rem;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--pk-text);
}

.ps-panel-stat__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: var(--pk-primary-soft);
  color: var(--pk-primary);
  font-size: 1.25rem;
}

/* Panel takvim grid */
.ps-cal__grid {
  display: grid;
  min-width: 640px;
}

.ps-cal__corner {
  border-bottom: 1px solid var(--pk-border);
  background: var(--pk-bg);
}

.ps-cal__day-head {
  padding: 0.5rem;
  text-align: center;
  border-bottom: 1px solid var(--pk-border);
  border-left: 1px solid var(--pk-border);
  background: var(--pk-bg);
}

.ps-cal__day-name {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--pk-muted);
}

.ps-cal__day-num {
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--pk-text);
}

.ps-cal__hour {
  padding: 0.35rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--pk-muted);
  border-bottom: 1px solid var(--pk-border);
  background: #fafafa;
}

.ps-cal__cell {
  position: relative;
  min-height: 2.75rem;
  border-bottom: 1px solid var(--pk-border);
  border-left: 1px solid var(--pk-border);
  padding: 2px;
}

.ps-cal__event {
  margin-bottom: 2px;
  padding: 0.25rem 0.35rem;
  border-radius: 6px;
  border-left: 3px solid var(--pk-primary);
  background: var(--pk-primary-soft);
  font-size: 0.625rem;
  line-height: 1.3;
  overflow: hidden;
}

.ps-cal__event--pending {
  border-left-color: #d97706;
  background: #fffbeb;
}

.ps-cal__event-time {
  display: block;
  font-weight: 800;
  color: var(--pk-primary-dark);
}

.ps-cal__event-name {
  display: block;
  font-weight: 600;
  color: var(--pk-text);
}

.ps-cal__event-meta {
  display: block;
  color: var(--pk-muted);
  font-size: 0.5625rem;
}

/* Panel anasayfa (eski pd-home) */
.pd-home__hero {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--pk-border);
  background: linear-gradient(135deg, #f6f8f8 0%, var(--pk-primary-soft) 100%);
  box-shadow: 0 4px 20px rgba(22, 36, 42, 0.06);
}

.pd-home__date {
  font-size: 0.8125rem;
  color: var(--pk-muted);
}

.pd-home__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pk-text);
}

.pd-home__title i {
  color: var(--pk-primary);
}

.pd-home__role {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  font-size: 0.875rem;
  color: var(--pk-muted);
}

.pd-home__summary {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--pk-muted);
}

.pd-home__alert {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid #fcd34d;
  background: #fffbeb;
}

.pd-home__alert--info {
  border-color: var(--pk-primary-light);
  background: var(--pk-primary-soft);
}

.pd-home__stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1024px) {
  .pd-home__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pd-home__stat {
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--pk-border);
  background: #fff;
  box-shadow: 0 2px 8px rgba(22, 36, 42, 0.04);
}

.pd-home__stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.pd-home__stat-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pk-muted);
}

.pd-home__stat-top i {
  color: var(--pk-primary);
  font-size: 1.15rem;
}

.pd-home__stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--pk-text);
  line-height: 1.1;
}

.pd-home__stat-sub {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--pk-muted);
}

.pd-home__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Ana sayfa hızlı aksiyonlar (eski quick-actions-home) */
.pk-quick-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .pk-quick-actions {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .pk-quick-actions {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
  }
}

.pk-quick-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.pk-quick-action__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(22, 36, 42, 0.08);
  background: #fff;
  font-size: 1.5rem;
  color: var(--pk-primary);
  box-shadow: 0 1px 2px rgba(22, 36, 42, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pk-quick-action:hover .pk-quick-action__icon {
  border-color: var(--pk-primary-light);
  box-shadow: 0 0 0 2px rgba(0, 109, 119, 0.12);
}

.pk-quick-action__title {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--pk-text);
}

.pk-quick-action__sub {
  margin-top: 0.125rem;
  font-size: 0.75rem;
  color: var(--pk-muted);
}

/* Header */
.pk-header {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(0, 109, 119, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.pk-header.pk-header--scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(0, 109, 119, 0.12);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.07);
}

.pk-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--pk-text);
  text-decoration: none;
}

.pk-logo__mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pk-primary), var(--pk-primary-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.pk-logo__img {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(170px, 52vw);
}

.pk-logo__img--drawer {
  height: 36px;
  max-width: 160px;
}

.pk-nav-link {
  padding: 0.45rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pk-muted);
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.pk-nav-link:hover {
  color: var(--pk-primary-dark);
  background: var(--pk-primary-soft);
}

.pk-nav-link.is-active {
  color: var(--pk-primary-dark);
  background: var(--pk-primary-soft);
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(0, 109, 119, 0.12);
}

/* Header user session (Hesabım / Çıkış) */
.pk-user-bar {
  align-items: stretch;
  border-radius: 14px;
  border: 1px solid var(--pk-border);
  background: linear-gradient(180deg, #fff 0%, var(--pk-bg) 100%);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.pk-user-bar__account {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.35rem 0.5rem 0.35rem 0.4rem;
  text-decoration: none;
  color: var(--pk-text);
  transition: background 0.2s;
  min-width: 0;
}

.pk-user-bar__account:hover {
  background: var(--pk-primary-soft);
}

.pk-user-bar__avatar {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--pk-primary), var(--pk-primary-dark));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
  box-shadow: 0 2px 8px rgba(0, 109, 119, 0.35);
}

.pk-user-bar__avatar--lg {
  width: 48px;
  height: 48px;
  font-size: 0.9rem;
  border-radius: 14px;
}

.pk-user-bar__text {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  min-width: 0;
}

@media (min-width: 768px) {
  .pk-user-bar__text {
    display: flex;
  }
}

.pk-user-bar__label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pk-primary-dark);
}

.pk-user-bar__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--pk-text);
  max-width: 7rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pk-user-bar__chevron {
  color: var(--pk-muted);
  font-size: 1.1rem;
  margin-right: 0.15rem;
  transition: transform 0.2s, color 0.2s;
}

.pk-user-bar__account:hover .pk-user-bar__chevron {
  color: var(--pk-primary);
  transform: translateX(2px);
}

.pk-user-bar__divider {
  width: 1px;
  align-self: stretch;
  background: var(--pk-border);
  margin: 0.4rem 0;
}

.pk-user-bar__logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0 0.85rem;
  border: none;
  background: transparent;
  color: var(--pk-muted);
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.pk-user-bar__logout:hover {
  background: #fef2f2;
  color: #dc2626;
}

.pk-user-bar__logout-text {
  display: none;
}

@media (min-width: 1024px) {
  .pk-user-bar__logout-text {
    display: inline;
  }
}

.pk-user-drawer {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--pk-border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pk-user-drawer__profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 14px;
  background: var(--pk-primary-soft);
  margin-bottom: 0.25rem;
}

.pk-user-drawer__account {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--pk-primary-dark);
  background: white;
  border: 1px solid var(--pk-primary);
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 109, 119, 0.12);
  transition: background 0.2s, box-shadow 0.2s;
}

.pk-user-drawer__account:hover {
  background: var(--pk-primary-light);
  box-shadow: 0 4px 14px rgba(0, 109, 119, 0.2);
}

.pk-user-drawer__logout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--pk-border);
  background: white;
  color: var(--pk-muted);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.pk-user-drawer__logout:hover {
  border-color: #fecaca;
  background: #fef2f2;
  color: #dc2626;
}

/* Buttons */
.pk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 12px;
  padding: 0.65rem 1.35rem;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.pk-btn:active {
  transform: scale(0.98);
}

.pk-btn--primary {
  background: var(--pk-primary);
  color: white;
  box-shadow: 0 4px 14px rgba(0, 109, 119, 0.35);
}

.pk-btn--primary:hover {
  background: var(--pk-primary-dark);
}

.pk-btn--outline {
  background: white;
  color: var(--pk-text);
  border: 2px solid var(--pk-border);
}

.pk-btn--outline:hover {
  border-color: var(--pk-primary);
  color: var(--pk-primary-dark);
}

.pk-btn--navy {
  background: var(--pk-navy);
  color: white;
}

.pk-btn--navy:hover {
  background: var(--pk-navy-light);
}

.pk-btn--white {
  background: white;
  color: var(--pk-primary-dark);
}

.pk-btn--ghost {
  background: transparent;
  color: var(--pk-text);
  border: 2px solid var(--pk-border);
}

.pk-btn--ghost:hover {
  border-color: var(--pk-primary);
  color: var(--pk-primary-dark);
  background: var(--pk-primary-soft);
}

.bk-btn,
.pk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 12px;
  padding: 0.65rem 1.35rem;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.bk-btn--primary,
.pk-btn--primary {
  background: var(--pk-primary);
  color: white;
}
.bk-btn--ghost,
.pk-btn--outline {
  background: white;
  color: var(--pk-text);
  border: 2px solid var(--pk-border);
}

/* Hero */
.pk-page-root {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background-color: var(--pk-bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 100% -10%, rgba(0, 109, 119, 0.06), transparent 55%),
    radial-gradient(ellipse 90% 60% at 0% 100%, rgba(29, 45, 53, 0.04), transparent 50%);
}

#main-content:focus {
  outline: none;
}

.pk-img-fallback {
  background: linear-gradient(145deg, var(--pk-primary-soft), var(--pk-primary-light));
  color: var(--pk-primary-dark);
}

.pk-hero {
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, #fff 0%, var(--pk-bg) 100%);
  text-align: center;
}

.pk-hero__brand {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pk-hero__brand-link {
  display: inline-flex;
  text-decoration: none;
}

.pk-hero__logo-img {
  display: block;
  height: auto;
  width: min(220px, 72vw);
  max-height: 52px;
}

.pk-hero__seo-lead {
  max-width: 560px;
  margin: 0.75rem auto 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--pk-muted);
  font-weight: 500;
}

.pk-home-seo__title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.pk-home-seo__lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--pk-muted);
  max-width: 52rem;
  margin-bottom: 2rem;
}

.pk-home-seo__block {
  margin-bottom: 1.75rem;
  max-width: 52rem;
}

.pk-home-seo__heading {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--pk-text);
}

.pk-home-seo__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--pk-muted);
}

.pk-home-seo__highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 2rem 0;
}

@media (min-width: 640px) {
  .pk-home-seo__highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pk-home-seo__highlights {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pk-home-seo__highlight {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--pk-border);
  background: var(--pk-bg);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pk-home-seo__highlight strong {
  font-size: 0.9375rem;
  color: var(--pk-text);
}

.pk-home-seo__highlight span {
  font-size: 0.8125rem;
  color: var(--pk-muted);
  line-height: 1.45;
}

.pk-home-seo__highlight:hover {
  border-color: var(--pk-primary);
  box-shadow: var(--pk-shadow);
}

.pk-home-seo__links-wrap {
  margin-top: 2rem;
}

.pk-home-seo__links-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.pk-hero h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  max-width: 680px;
  margin: 0 auto;
}

.pk-hero h1 em {
  font-style: normal;
  color: var(--pk-primary);
}

.pk-hero__avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.pk-hero__avatars span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -10px;
  overflow: hidden;
  background: var(--pk-primary-light);
  box-shadow: var(--pk-shadow);
}

.pk-hero__avatars span img,
.pk-hero__avatars span .pk-img-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.pk-hero__avatars span:first-child {
  margin-left: 0;
}

.pk-hero-search {
  max-width: 720px;
  margin: 2rem auto 0;
}

/* Ana sayfa arama + konum kutusu */
.pk-hero-search__box {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(0, 109, 119, 0.14);
  border-radius: 22px;
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.03),
    0 16px 40px rgba(0, 109, 119, 0.11);
  overflow: hidden;
}

.pk-hero-search__box .pk-search-bar {
  margin: 0;
  max-width: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid rgba(0, 109, 119, 0.08);
  padding: 0.65rem 0.65rem 0.65rem 1.15rem;
}

.pk-hero-search__box .pk-search-bar:focus-within {
  box-shadow: inset 0 -1px 0 rgba(0, 109, 119, 0.12);
}

.pk-hero-search__location {
  margin: 0;
}

.pk-search-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  background: white;
  border-radius: 999px;
  border: 1px solid var(--pk-border);
  box-shadow: var(--pk-shadow-lg);
  gap: 0.5rem;
}

.pk-search-bar input {
  flex: 1;
  min-width: 140px;
  border: none;
  outline: none;
  font-size: 0.9375rem;
  padding: 0.75rem 0;
  background: transparent;
}

.pk-search-bar .pk-divider {
  width: 1px;
  height: 28px;
  background: var(--pk-border);
  display: none;
}

@media (min-width: 640px) {
  .pk-search-bar .pk-divider {
    display: block;
  }
}

.pk-store-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.pk-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid var(--pk-border);
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pk-text);
  text-decoration: none;
  transition: box-shadow 0.2s;
}

.pk-store-badge:hover {
  box-shadow: var(--pk-shadow);
}

/* Service cards */
.pk-service-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .pk-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pk-service-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pk-service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--pk-radius-xl);
  padding: 1.5rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--pk-text);
  transition: transform 0.3s, box-shadow 0.3s;
}

.pk-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--pk-shadow-lg);
}

.pk-service-card h3 {
  font-size: 1.125rem;
  font-weight: 800;
  z-index: 2;
}

.pk-service-card p {
  font-size: 0.8125rem;
  color: var(--pk-muted);
  margin-top: 0.35rem;
  max-width: 160px;
  z-index: 2;
  line-height: 1.45;
}

.pk-service-card__go {
  margin-top: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pk-primary);
  box-shadow: var(--pk-shadow);
  z-index: 2;
  transition: transform 0.2s;
}

.pk-service-card:hover .pk-service-card__go {
  transform: scale(1.08);
  background: var(--pk-primary);
  color: white;
}

.pk-service-card__img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  max-height: 85%;
  height: auto;
  min-height: 120px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px 0 0 0;
  opacity: 0.95;
}

/* Expert grid */
.pk-expert-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

@media (min-width: 768px) {
  .pk-expert-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .pk-expert-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .pk-expert-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1536px) {
  .pk-expert-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.pk-expert-card {
  background: white;
  border-radius: var(--pk-radius-lg);
  border: 1px solid var(--pk-border);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  transition: transform 0.25s, box-shadow 0.25s;
}

.pk-expert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pk-shadow-lg);
}

button.pk-expert-card--pick {
  width: 100%;
  cursor: pointer;
  font: inherit;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
}

/* Fotoğraf kutusu: 4:5 sabit çerçeve; uzun/dikey yüklemeler cover ile kırpılır */
.pk-expert-card__img-wrap {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(165deg, var(--pk-primary-soft) 0%, #e8eef2 100%);
}

.pk-expert-card__img-wrap img,
.pk-expert-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.pk-expert-card__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  padding: 0.25rem 0.55rem;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 6px;
  background: var(--pk-primary);
  color: white;
}

.pk-expert-card__badge--clinic {
  background: var(--pk-navy);
}

.pk-expert-card__body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pk-expert-card__name {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pk-expert-card__spec {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  color: var(--pk-muted);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pk-expert-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  margin-top: auto;
  padding-top: 0.5rem;
  min-height: 1.25rem;
  min-width: 0;
  font-size: 0.75rem;
  line-height: 1.25;
  color: var(--pk-muted);
}

.pk-expert-card__meta-rating {
  flex: 0 0 auto;
  white-space: nowrap;
  font-weight: 700;
  color: var(--pk-text, #0f172a);
}

.pk-expert-card__meta-rating + .pk-expert-card__meta-detail::before {
  content: '·';
  margin: 0 0.35rem;
  font-weight: 400;
  color: var(--pk-muted);
}

.pk-expert-card__meta-detail {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pk-expert-card__meta .stars {
  color: #f59e0b;
}

.pk-expert-card__btn {
  margin-top: auto;
  padding-top: 0.75rem;
}

.pk-expert-card__btn span {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.55rem;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 10px;
  background: var(--pk-primary);
  color: white;
}

.pk-expert-card:hover .pk-expert-card__btn span {
  background: var(--pk-primary-dark);
}

/* How it works */
.pk-split {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .pk-split {
    grid-template-columns: 1fr 1fr;
  }
}

.pk-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pk-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.pk-step__num {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(0, 109, 119, 0.2);
  flex-shrink: 0;
  width: 72px;
}

.pk-step h3 {
  font-size: 1.125rem;
  font-weight: 800;
}

.pk-step p {
  margin-top: 0.35rem;
  font-size: 0.875rem;
  color: var(--pk-muted);
  line-height: 1.55;
}

.pk-phone-mock {
  position: relative;
  border-radius: var(--pk-radius-xl);
  overflow: hidden;
  box-shadow: var(--pk-shadow-lg);
  background: linear-gradient(145deg, var(--pk-primary-light), white);
  aspect-ratio: 4/5;
  max-width: 400px;
  margin: 0 auto;
}

/* Reviews */
.pk-hscroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}

.pk-hscroll > * {
  scroll-snap-align: start;
  flex-shrink: 0;
}

.pk-review-card {
  width: 320px;
  padding: 1.5rem;
  background: white;
  border-radius: var(--pk-radius-lg);
  border: 1px solid var(--pk-border);
  box-shadow: var(--pk-shadow);
}

.pk-review-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pk-review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

/* FAQ section */
.pk-faq-section {
  position: relative;
  border-radius: var(--pk-radius-xl);
  overflow: hidden;
  min-height: 420px;
}

.pk-faq-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pk-primary-dark) 0%, var(--pk-primary) 55%, #00838f 100%);
  overflow: hidden;
}

.pk-faq-section__bg > * {
  position: absolute;
  inset: 0;
}

.pk-faq-section__bg img,
.pk-faq-section__bg .pk-img-fallback {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  opacity: 0.22;
}

.pk-faq-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  padding: 2rem;
}

@media (min-width: 992px) {
  .pk-faq-layout {
    grid-template-columns: 1fr 1fr;
    padding: 3rem;
    align-items: start;
  }
}

.pk-faq-left {
  color: white;
}

.pk-faq-left h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  line-height: 1.3;
}

.pk-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.75rem 1.25rem;
  background: white/20;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.pk-stats-row {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.pk-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
}

.pk-stat span {
  font-size: 0.8125rem;
  opacity: 0.9;
}

.pk-faq-panel {
  background: white;
  border-radius: var(--pk-radius-lg);
  padding: 0.5rem 1.25rem;
  box-shadow: var(--pk-shadow-lg);
}

.pk-faq-panel details {
  border-bottom: 1px solid var(--pk-border);
}

.pk-faq-panel details:last-child {
  border-bottom: none;
}

.pk-faq-panel summary {
  padding: 1rem 0;
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pk-faq-panel summary::-webkit-details-marker {
  display: none;
}

.pk-faq-panel summary::after {
  content: "+";
  color: var(--pk-primary);
  font-size: 1.25rem;
  font-weight: 400;
}

.pk-faq-panel details[open] summary::after {
  content: "−";
}

/* Pro section */
.pk-pro-section {
  background: var(--pk-primary-soft);
  border-radius: var(--pk-radius-xl);
  overflow: hidden;
}

.pk-pro-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem;
}

@media (min-width: 992px) {
  .pk-pro-grid {
    grid-template-columns: 1fr 1fr;
    padding: 3.5rem;
  }
}

.pk-check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  font-size: 0.9375rem;
}

.pk-check-list i {
  color: var(--pk-primary);
  font-size: 1.25rem;
  margin-top: 0.1rem;
}

/* CTA banner */
.pk-cta-banner {
  display: grid;
  gap: 2rem;
  align-items: center;
  background: var(--pk-navy);
  border-radius: var(--pk-radius-xl);
  padding: 2.5rem;
  color: white;
  overflow: hidden;
}

@media (min-width: 768px) {
  .pk-cta-banner {
    grid-template-columns: auto 1fr;
    padding: 3rem;
  }
}

.pk-cta-banner__faces {
  display: flex;
}

.pk-cta-banner__faces span {
  display: inline-flex;
  overflow: hidden;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid var(--pk-navy);
  margin-left: -12px;
  overflow: hidden;
  background: #475569;
}

.pk-cta-banner__faces span:first-child {
  margin-left: 0;
}

/* Footer — koyu (önceki tasarım) */
.pk-footer--dark {
  background: linear-gradient(180deg, #152a38 0%, #0f2433 100%);
  color: #94a8b8;
}

.pk-footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.pk-footer__logo-img {
  display: block;
  height: auto;
  width: auto;
  max-width: 180px;
  max-height: 42px;
}

.pk-footer__logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pk-primary), var(--pk-primary-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.pk-footer__logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
  text-transform: lowercase;
}

.pk-footer__tagline {
  color: #94a8b8;
}

.pk-footer__store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s;
}

.pk-footer__store-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.pk-footer__social {
  display: flex;
  height: 36px;
  width: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1.1rem;
  transition: background 0.2s;
}

.pk-footer__social:hover {
  background: var(--pk-primary);
}

.pk-footer__col-title {
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: white;
}

.pk-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.pk-footer__links a {
  color: #94a8b8;
  text-decoration: none;
  transition: color 0.2s;
}

.pk-footer__links a:hover {
  color: white;
}

.pk-footer__badge {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.35rem 0.65rem;
  font-weight: 600;
  font-size: 0.6875rem;
}

.pk-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pk-section-head h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pk-section-head p {
  margin-top: 0.35rem;
  font-size: 0.9375rem;
  color: var(--pk-muted);
}

.pk-link {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--pk-primary);
  text-decoration: none;
}

.pk-link:hover {
  color: var(--pk-primary-dark);
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 200;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--pk-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.pk-input,
.pk-select {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--pk-border);
  border-radius: 12px;
  font-size: 1rem;
  line-height: 1.35;
  outline: none;
  background: #fafaf9;
  color: var(--pk-text);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.pk-input:focus,
.pk-select:focus {
  border-color: var(--pk-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 109, 119, 0.12);
}

/* Akıllı e-posta / telefon girişi (vcsvs uyumlu) */
.smart-contact__shell {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--pk-border);
  border-radius: 12px;
  background: #fafaf9;
  min-height: 48px;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.smart-contact__shell:focus-within {
  border-color: var(--pk-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 109, 119, 0.12);
}
.smart-contact__prefix {
  display: none;
  align-items: center;
  padding: 0 0 0 0.875rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--pk-primary-dark);
  font-variant-numeric: tabular-nums;
  user-select: none;
  pointer-events: none;
  flex-shrink: 0;
  z-index: 2;
}
.smart-contact__shell.is-phone .smart-contact__prefix {
  display: inline-flex;
}
.smart-contact__input {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  border: 0;
  outline: none;
  background: transparent;
  padding: 0.75rem 2.5rem 0.75rem 0.875rem;
  color: var(--pk-text);
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
  line-height: 1.35;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}
.smart-contact__shell.is-phone .smart-contact__input {
  padding-left: 0.35rem;
}
.smart-contact__ghost {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  padding: 0 2.5rem 0 0.875rem;
  pointer-events: none;
  font-size: 1rem;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  font-variant-numeric: tabular-nums;
}
.smart-contact__shell.is-phone .smart-contact__ghost {
  padding-left: 2.75rem;
}
.smart-contact__ghost .ghost-typed {
  visibility: hidden;
}
.smart-contact__ghost .ghost-suggest {
  color: #a8a29e;
}
.smart-contact__kind {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #a8a29e;
  pointer-events: none;
}
.smart-contact__kind [data-kind-email],
.smart-contact__kind [data-kind-phone] {
  display: none;
}
.smart-contact__shell.is-email .smart-contact__kind [data-kind-email] {
  display: block;
  color: var(--pk-primary-dark);
}
.smart-contact__shell.is-phone .smart-contact__kind [data-kind-phone] {
  display: block;
  color: var(--pk-primary-dark);
}
.smart-contact--phone-only .smart-contact__kind [data-kind-email] {
  display: none !important;
}
.smart-contact--phone-only .smart-contact__shell.is-phone .smart-contact__kind [data-kind-phone],
.smart-contact--phone-only .smart-contact__shell:not(.is-phone) .smart-contact__kind [data-kind-phone] {
  display: block;
}

.smart-contact {
  display: block;
  width: 100%;
}

/* ——— Auth sayfaları (giriş / kayıt) ——— */
.auth-page {
  flex: 1;
  width: 100%;
  min-height: min(100%, calc(100dvh - 4.5rem));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem 2.5rem;
  background: transparent;
}

.auth-page__inner {
  width: 100%;
  max-width: 28rem;
}

.auth-page__back {
  margin: 0 0 1rem;
}

.auth-page__back-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pk-primary-dark);
  text-decoration: none;
}

.auth-page__back-link:hover {
  color: var(--pk-primary);
}

.auth-card {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--pk-border);
  background: #fff;
  box-shadow: 0 4px 24px rgba(29, 45, 53, 0.08);
}

.auth-card__head {
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, var(--pk-navy) 0%, var(--pk-primary-dark) 100%);
  color: #fff;
}

.auth-card__brand {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.auth-card__title {
  margin: 0.35rem 0 0;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
}

.auth-card__subtitle {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  line-height: 1.45;
  opacity: 0.9;
}

.auth-card__body {
  padding: 1.5rem;
}

.auth-page__footer {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--pk-muted);
}

.auth-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.auth-field {
  width: 100%;
}

.auth-form__row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  width: 100%;
}

@media (max-width: 420px) {
  .auth-form__row-2 {
    grid-template-columns: 1fr;
  }
}

.auth-form__label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--pk-text);
}

.auth-form__label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}

.auth-form__label-row .auth-form__label {
  margin-bottom: 0;
}

.auth-form__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--pk-primary-dark);
  text-decoration: none;
}

.auth-form__link:hover {
  color: var(--pk-primary);
}

.auth-field-shell {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  border: 1px solid var(--pk-border);
  border-radius: 12px;
  background: #fafaf9;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.auth-field-shell:focus-within {
  border-color: var(--pk-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 109, 119, 0.12);
}

.auth-field-shell__input {
  flex: 1;
  min-width: 0;
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--pk-text);
}

.auth-field-shell__input--password {
  padding-right: 4.5rem;
}

.auth-field-shell__toggle {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  padding: 0.35rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pk-muted);
  cursor: pointer;
  border-radius: 6px;
}

.auth-field-shell__toggle:hover {
  background: #f5f5f4;
  color: var(--pk-text);
}

.auth-form__remember {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pk-muted);
  cursor: pointer;
}

.auth-form__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.auth-stack--center {
  align-items: center;
  text-align: center;
}

.auth-form__legal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--pk-border);
  background: #fafaf9;
}

.auth-form__legal-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--pk-muted);
  cursor: pointer;
}

.auth-form__demo {
  margin-bottom: 0.25rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: var(--pk-primary-soft);
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--pk-muted);
}

.auth-form__demo strong {
  color: var(--pk-text);
}

.auth-form__divider {
  margin: 0.25rem 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pk-muted);
}

.pk-btn--block {
  width: 100%;
}

a.pk-btn {
  text-decoration: none;
}

a.pk-btn.pk-btn--block {
  display: flex;
}

.pk-btn--outline {
  border: 2px solid var(--pk-border) !important;
}

.auth-alert {
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: #fef2f2;
  font-size: 0.875rem;
  font-weight: 600;
  color: #b91c1c;
}

.pk-chip,
.bk-chip {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 999px;
  background: var(--pk-primary-soft);
  color: var(--pk-primary-dark);
}

.bk-search-input {
  padding: 0.75rem 1rem;
  border: 1px solid var(--pk-border);
  border-radius: 12px;
  font-size: 0.9375rem;
  outline: none;
}

.bk-search-input:focus {
  border-color: var(--pk-primary);
}

.bk-filter-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.65rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: var(--pk-muted);
  cursor: pointer;
  transition: background 0.15s;
}

.bk-filter-item:hover {
  background: var(--pk-bg);
}

.bk-filter-item--active {
  background: var(--pk-primary-light);
  color: var(--pk-primary-dark);
}

.pk-cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--pk-border);
  box-shadow: 0 -8px 32px rgba(30, 45, 61, 0.1);
  padding: 1rem 1.25rem;
}

/* —— Hesabım sayfası —— */
.account-page {
  background: linear-gradient(180deg, #e8f5f3 0%, var(--pk-bg) 280px);
  min-height: 60vh;
  padding-bottom: 3rem;
}

.account-hero {
  position: relative;
  padding: 1.5rem 0 0;
}

.account-hero__card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 20px;
  background: white;
  border: 1px solid var(--pk-border);
  box-shadow: 0 12px 40px rgba(0, 109, 119, 0.12);
}

.account-hero__avatar {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--pk-primary), var(--pk-primary-dark));
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 109, 119, 0.35);
}

.account-hero__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-left: auto;
}

.account-hero__quick a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  background: var(--pk-primary-soft);
  color: var(--pk-primary-dark);
  transition: background 0.2s, transform 0.15s;
}

.account-hero__quick a:hover {
  background: var(--pk-primary-light);
  transform: translateY(-1px);
}

.account-shell {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 1024px) {
  .account-shell {
    grid-template-columns: 240px 1fr;
    align-items: start;
  }
}

.account-sidebar {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.75rem;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--pk-border);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  position: sticky;
  top: 88px;
}

@media (min-width: 1024px) {
  .account-sidebar {
    display: flex;
  }
}

.account-sidebar__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--pk-muted);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.account-sidebar__link i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: var(--pk-bg);
  transition: background 0.2s, color 0.2s;
}

.account-sidebar__link:hover {
  color: var(--pk-text);
  background: var(--pk-bg);
}

.account-sidebar__link--active {
  color: var(--pk-primary-dark);
  background: var(--pk-primary-soft);
}

.account-sidebar__link--active i {
  background: var(--pk-primary);
  color: white;
}

.account-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.25rem;
  margin-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 1024px) {
  .account-tabs {
    display: none;
  }
}

.account-tabs__link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  color: var(--pk-muted);
  background: white;
  border: 1px solid var(--pk-border);
  transition: all 0.2s;
}

.account-tabs__link--active {
  color: white;
  background: var(--pk-primary);
  border-color: var(--pk-primary);
  box-shadow: 0 4px 12px rgba(0, 109, 119, 0.35);
}

.account-stat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
  .account-stat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.account-stat {
  padding: 1.25rem;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--pk-border);
  position: relative;
  overflow: hidden;
}

.account-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pk-primary), var(--pk-primary-dark));
}

.account-stat__value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--pk-text);
  line-height: 1.1;
}

.account-stat__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--pk-muted);
  margin-top: 0.25rem;
}

.account-stat__icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--pk-primary);
  opacity: 0.2;
}

.account-card {
  border-radius: 16px;
  background: white;
  border: 1px solid var(--pk-border);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.account-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--pk-border);
  background: linear-gradient(180deg, #fafcfb 0%, white 100%);
}

.account-card__head h2 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--pk-text);
}

.account-card__body {
  padding: 1.25rem;
}

.account-appt {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 14px;
  border: 1px solid var(--pk-border);
  background: var(--pk-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.account-appt:hover {
  border-color: var(--pk-primary);
  box-shadow: 0 4px 16px rgba(0, 109, 119, 0.1);
}

.account-appt--highlight {
  background: linear-gradient(135deg, var(--pk-primary-soft) 0%, white 100%);
  border-color: rgba(0, 109, 119, 0.35);
}

.account-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 999px;
}

.account-badge--confirmed {
  background: var(--pk-primary-light);
  color: var(--pk-primary-dark);
}

.account-badge--pending {
  background: #fef3c7;
  color: #b45309;
}

.account-badge--cancelled {
  background: #f1f5f9;
  color: #64748b;
}

.account-inbox__meta {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--pk-muted);
}

.account-inbox-filter {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.account-inbox-filter__btn {
  flex: 1;
  text-align: center;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--pk-border, #e2e8f0);
  background: #fff;
  color: var(--pk-muted);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.account-inbox-filter__btn:hover {
  color: var(--pk-primary);
  border-color: rgba(0, 109, 119, 0.25);
}

.account-inbox-filter__btn--active {
  background: var(--pk-primary-soft);
  border-color: rgba(0, 109, 119, 0.2);
  color: var(--pk-primary);
}

.account-inbox-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.account-inbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--pk-border, #e2e8f0);
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.account-inbox-row:hover {
  border-color: rgba(0, 109, 119, 0.25);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.account-inbox-row--unread {
  background: rgba(0, 109, 119, 0.05);
  border-color: rgba(0, 109, 119, 0.12);
}

.account-inbox-row__avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pk-primary-soft);
  color: var(--pk-primary);
  font-size: 0.8125rem;
  font-weight: 800;
}

.account-inbox-row__avatar--lg {
  width: 52px;
  height: 52px;
  font-size: 0.9375rem;
}

.account-inbox-row__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.account-inbox-row__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.account-inbox-row__sender {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--pk-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-inbox-row--unread .account-inbox-row__sender {
  font-weight: 800;
}

.account-inbox-row__time {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--pk-muted);
}

.account-inbox-row__subject {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--pk-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-inbox-row__preview {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--pk-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.account-inbox-row__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: var(--pk-primary);
}

.account-inbox-detail__head {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.account-inbox-detail__sender {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--pk-primary);
}

.account-inbox-detail__time {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.8125rem;
  color: var(--pk-muted);
}

.account-inbox-detail__subject {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--pk-text);
}

.account-inbox-detail__body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--pk-text);
  white-space: pre-wrap;
}

.account-empty {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.account-empty__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--pk-primary-soft);
  color: var(--pk-primary);
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.account-cta-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: linear-gradient(120deg, var(--pk-primary) 0%, var(--pk-primary-dark) 100%);
  color: white;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0, 109, 119, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.account-cta-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 109, 119, 0.45);
  color: white;
}

.account-main {
  min-width: 0;
  max-width: 100%;
}

.account-content {
  min-width: 0;
  max-width: 100%;
}

.account-card__action {
  flex-shrink: 0;
}

/* Hesabım — mobil */
@media (max-width: 639.98px) {
  .account-page {
    padding-bottom: calc(2.5rem + env(safe-area-inset-bottom, 0px));
  }

  .account-hero {
    padding-top: 0.75rem;
  }

  .account-hero .pk-container {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  .account-hero__card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "avatar identity"
      "quick quick";
    align-items: center;
    gap: 0.85rem 1rem;
    padding: 1.125rem;
    border-radius: 16px;
  }

  .account-hero__avatar {
    grid-area: avatar;
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
    border-radius: 14px;
  }

  .account-hero__identity {
    grid-area: identity;
    min-width: 0;
  }

  .account-hero__identity h1 {
    font-size: 1.125rem;
    line-height: 1.25;
  }

  .account-hero__quick {
    grid-area: quick;
    margin-left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .account-hero__quick a {
    justify-content: center;
    width: 100%;
    padding: 0.6rem 0.5rem;
    font-size: 0.75rem;
  }

  .account-shell {
    margin-top: 0.85rem;
    gap: 0.65rem;
  }

  .account-shell > .account-main {
    min-width: 0;
  }

  .account-tabs {
    flex-wrap: nowrap;
    gap: 0.4rem;
    margin: 0 0 0.75rem;
    padding: 0.25rem 0 0.5rem;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -ms-overflow-style: none;
    mask-image: linear-gradient(90deg, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, #000 92%, transparent 100%);
  }

  .account-tabs::-webkit-scrollbar {
    display: none;
  }

  .account-tabs__link {
    scroll-snap-align: start;
    padding: 0.5rem 0.8rem;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .account-tabs__link i {
    font-size: 1rem;
  }

  .account-stat-grid {
    gap: 0.65rem;
  }

  .account-stat {
    padding: 1rem 1.125rem;
  }

  .account-stat__value {
    font-size: 1.5rem;
  }

  .account-stat__icon {
    font-size: 1.65rem;
    right: 0.75rem;
  }

  .account-card__head {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
  }

  .account-card__head h2,
  .account-card__title {
    font-size: 0.9375rem;
  }

  .account-card__action {
    width: 100%;
  }

  .account-card__action a {
    display: inline-block;
    width: 100%;
  }

  .account-card__body {
    padding: 1rem;
  }

  .account-appt {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 1rem;
  }

  .account-appt > .flex,
  .account-appt > .shrink-0,
  .account-appt > div:last-child {
    width: 100%;
    max-width: 100%;
  }

  .account-appt .flex.shrink-0,
  .account-appt > div.flex {
    flex-direction: column;
    align-items: stretch;
  }

  .account-appt .pk-btn,
  .account-appt button,
  .account-appt form,
  .account-appt form button,
  .account-appt a.inline-flex {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .account-appt--highlight .pk-btn {
    margin-top: 0.25rem;
  }

  .account-cta-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
  }

  .account-cta-banner i {
    align-self: flex-end;
    margin-top: -0.25rem;
  }

  .account-fav-grid {
    grid-template-columns: 1fr !important;
  }

  .account-appt__actions {
    width: 100%;
  }

  .account-content .account-appt.flex-nowrap {
    flex-wrap: wrap !important;
  }
}

@media (max-width: 380px) {
  .account-tabs__link {
    font-size: 0;
    gap: 0;
    padding: 0.55rem 0.7rem;
  }

  .account-tabs__link i {
    font-size: 1.15rem;
    margin: 0;
  }

  .account-hero__quick {
    grid-template-columns: 1fr;
  }
}

/* —— Uzman profil sayfası —— */
.expert-profile {
  background: var(--pk-bg);
}

.expert-hero {
  position: relative;
  background: linear-gradient(135deg, #1a3a4a 0%, #0d9488 50%, #26a69a 100%);
  overflow: hidden;
}

.expert-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
}

.expert-hero__bg img {
  object-fit: cover;
  filter: blur(2px);
  transform: scale(1.05);
}

.expert-hero__inner {
  position: relative;
  z-index: 1;
  padding: 2rem 0 3rem;
}

.expert-hero__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
}

.expert-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.expert-hero__breadcrumb a:hover {
  color: white;
  opacity: 0.92;
}

.expert-hero__profile {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1.5rem;
}

.expert-hero__photo {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 24px;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .expert-hero__photo {
    width: 160px;
    height: 160px;
  }
}

.expert-hero__info {
  flex: 1;
  min-width: 200px;
  color: white;
  padding-bottom: 0.25rem;
}

.expert-hero__title {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.9;
}

.expert-hero__name {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .expert-hero__name {
    font-size: 2.25rem;
  }
}

.expert-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-top: 0.75rem;
  font-size: 0.9375rem;
}

.expert-hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.expert-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.expert-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(8px);
}

.expert-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .expert-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.expert-stat {
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--pk-border);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  text-align: center;
}

.expert-stat__value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--pk-primary-dark);
}

.expert-stat__label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pk-muted);
  margin-top: 0.15rem;
}

.expert-layout {
  display: grid;
  gap: 2rem;
  padding-bottom: 3rem;
}

@media (min-width: 1024px) {
  .expert-layout {
    grid-template-columns: 1fr 360px;
    align-items: start;
  }
}

.expert-layout > * {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 1023px) {
  .expert-aside {
    margin-top: 0.5rem;
  }
}

.expert-booking-card {
  border-radius: 20px;
  background: white;
  border: 1px solid var(--pk-border);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .expert-booking-card {
    position: sticky;
    top: 88px;
    z-index: 2;
    align-self: start;
    max-height: calc(100vh - 104px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

.expert-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-self: start;
  min-width: 0;
  max-width: 100%;
}

.expert-booking,
.clinic-booking {
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
}

.clinic-booking {
  padding: 1.25rem 1.5rem 1.5rem;
}

.expert-booking--compact {
  padding: 0;
}

#clinic-booking {
  scroll-margin-top: 96px;
}

.clinic-booking[data-clinic-booking] {
  min-height: 12rem;
}

.expert-booking-card__head {
  padding: 1rem 1.25rem;
  background: linear-gradient(180deg, var(--pk-primary-soft) 0%, white 100%);
  border-bottom: 1px solid var(--pk-border);
  font-weight: 800;
  font-size: 0.9375rem;
  color: var(--pk-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Eski sınıflar — sertifika / randevu widget uyumluluğu */

/* Klinik profili — uzman seçim kartları */
.clinic-staff-pick {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: min(420px, 55vh);
  overflow-y: auto;
  padding-right: 0.15rem;
}

.clinic-staff-pick__card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--pk-border);
  border-radius: 14px;
  background: #fff;
  text-align: left;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.clinic-staff-pick__card:hover,
.clinic-staff-pick__card.is-selected {
  border-color: var(--pk-primary);
  background: var(--pk-primary-soft);
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.12);
}

.clinic-staff-pick__photo {
  width: 64px;
  height: 76px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  background: #f1f5f9;
}

.clinic-staff-pick__body {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.clinic-staff-pick__name {
  display: block;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--pk-text);
}

.clinic-staff-pick__spec {
  display: block;
  font-size: 0.75rem;
  color: var(--pk-muted);
  line-height: 1.3;
}

.clinic-staff-pick__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--pk-muted);
  margin-top: 0.15rem;
}

.clinic-staff-pick__arrow {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--pk-primary);
}

.clinic-booking__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  padding: 0;
  border: 0;
  background: none;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--pk-primary);
  cursor: pointer;
}

.clinic-booking__back:hover {
  text-decoration: underline;
}

.clinic-booking__selected {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: var(--pk-primary-soft);
  border: 1px solid rgba(13, 148, 136, 0.15);
}

.clinic-booking__selected-photo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.expert-certificates-card {
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--pk-border);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.expert-certificates-card__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.15rem;
  border-bottom: 1px solid var(--pk-border);
  background: linear-gradient(180deg, #fafcfb 0%, #fff 100%);
}

.expert-certificates-card__title {
  margin: 0;
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--pk-text);
}

.expert-certificates-card__count {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pk-primary-dark);
  background: var(--pk-primary-soft);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.expert-certificates-card__body {
  padding: 0.75rem;
  max-height: none;
  overflow: visible;
}

@media (min-width: 1024px) {
  .expert-aside .expert-certificates-card__body {
    max-height: min(420px, 50vh);
    overflow-y: auto;
  }
}

.expert-certificates-card__empty {
  margin: 0;
  padding: 0.75rem 0.5rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--pk-muted);
}

.expert-certificates-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.expert-certificates-list__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--pk-border);
  background: var(--pk-bg);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.expert-certificates-list__link:hover {
  border-color: var(--pk-primary);
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 109, 119, 0.1);
}

.expert-certificates-list__thumb {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--pk-border);
  color: var(--pk-primary);
  font-size: 1.35rem;
}

.expert-certificates-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-certificates-list__meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.expert-certificates-list__name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--pk-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.expert-certificates-list__action {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pk-primary-dark);
}

.expert-section {
  border-radius: 16px;
  background: white;
  border: 1px solid var(--pk-border);
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.03);
}

.expert-section__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--pk-text);
  margin-bottom: 1rem;
}

.expert-section__title i {
  color: var(--pk-primary);
  font-size: 1.25rem;
}

.expert-review {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--pk-border);
}

.expert-review:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.expert-review__stars {
  color: #f59e0b;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.expert-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 999px;
  background: var(--pk-bg);
  border: 1px solid var(--pk-border);
  color: var(--pk-text);
  transition: border-color 0.2s, background 0.2s;
}

.expert-chip:hover {
  border-color: var(--pk-primary);
  background: var(--pk-primary-soft);
}

.pk-seo-links {
  padding-bottom: 2.5rem;
}

.pk-seo-links__group {
  margin-bottom: 1.75rem;
}

.pk-seo-links__title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--pk-text);
}

.pk-seo-links__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pk-seo-links__list a {
  display: inline-flex;
  padding: 0.4rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--pk-primary-dark);
  background: var(--pk-primary-light);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.pk-seo-links__list a:hover {
  background: var(--pk-primary);
  color: #fff;
}

.pk-cities-index {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
  gap: 0.65rem;
}

.pk-cities-index__item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--pk-border);
  background: #fff;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pk-cities-index__item:hover {
  border-color: var(--pk-primary);
  box-shadow: 0 4px 16px rgba(0, 109, 119, 0.1);
}

.pk-cities-index__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--pk-text);
}

.pk-cities-index__meta {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pk-muted);
}

/* —— Uzman profili: canlı randevu widget —— */
.expert-booking {
  padding: 1.25rem 1.5rem 1.5rem;
}

.expert-booking__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.expert-booking__stars {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-weight: 800;
  color: #f59e0b;
}

.pk-booking-steps {
  display: flex;
  gap: 0.5rem;
  margin: 0.75rem 0 1rem;
  padding: 0.35rem;
  background: var(--pk-surface-2, #f1f5f9);
  border-radius: 12px;
}

.pk-booking-steps__item {
  flex: 1;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--pk-muted);
  padding: 0.35rem 0.25rem;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}

.pk-booking-steps__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem;
  margin-right: 0.2rem;
  border-radius: 999px;
  font-size: 0.625rem;
  background: rgba(15, 23, 42, 0.08);
}

.pk-booking-steps__item.is-active {
  background: #fff;
  color: var(--pk-primary);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
}

.pk-booking-steps__item.is-done {
  color: var(--pk-text);
}

.pk-booking-label {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pk-muted);
  margin: 0 0 0.35rem;
}

.pk-booking-dates {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100%;
  padding-bottom: 0.25rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  min-height: 5.25rem;
}

.pk-booking-date {
  position: relative;
  flex: 0 0 auto;
  min-width: 4.25rem;
  padding: 0.5rem 0.35rem 0.6rem;
  border: 1px solid var(--pk-border);
  border-radius: 12px;
  background: #fff;
  text-align: center;
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.pk-booking-date__dow {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--pk-muted);
  text-transform: uppercase;
}

.pk-booking-date__num {
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--pk-text);
  line-height: 1.2;
}

.pk-booking-date__mon {
  display: block;
  font-size: 0.625rem;
  color: var(--pk-muted);
}

.pk-booking-date__badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.2rem;
  border-radius: 999px;
  background: var(--pk-primary);
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 800;
  line-height: 1rem;
}

.pk-booking-date.is-selected {
  border-color: var(--pk-primary);
  background: var(--pk-primary-soft, #e6f4f5);
  box-shadow: 0 0 0 2px rgba(0, 109, 119, 0.15);
}

.pk-booking-date.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.pk-booking-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  min-width: 0;
  max-width: 100%;
  min-height: 5.5rem;
}

@media (min-width: 400px) {
  .pk-booking-slots {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.pk-booking-slot {
  padding: 0.55rem 0.35rem;
  border: 1px solid var(--pk-border);
  border-radius: 10px;
  background: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--pk-text);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.pk-booking-slot:hover {
  border-color: var(--pk-primary);
}

.pk-booking-slot.is-selected {
  border-color: var(--pk-primary);
  background: var(--pk-primary-soft, #e6f4f5);
  color: var(--pk-primary);
}

.pk-booking-slot.is-available {
  border-color: #6ee7b7;
  background: #ecfdf5;
  color: #047857;
  font-weight: 800;
}

.pk-booking-slot.is-available:hover {
  border-color: var(--pk-primary);
  box-shadow: 0 0 0 2px rgba(0, 109, 119, 0.12);
}

.pk-booking-slot.is-closing {
  border-color: #fcd34d;
  background: #fffbeb;
  color: #b45309;
  animation: pk-booking-pulse 1.5s ease-in-out infinite;
}

.pk-booking-slot.is-unavailable {
  border-color: #fecaca;
  background: #fef2f2;
  color: #b91c1c;
  cursor: not-allowed;
  opacity: 0.92;
}

.pk-booking-slot.is-past {
  border-color: #e2e8f0;
  background: #f8fafc;
  color: #94a3b8;
}

.pk-booking-slot__time {
  display: block;
  font-size: 0.8125rem;
}

.pk-booking-slot__sub {
  display: block;
  font-size: 0.5625rem;
  font-weight: 700;
  margin-top: 0.15rem;
  opacity: 0.9;
}

.pk-booking-slots-section {
  grid-column: 1 / -1;
  margin: 0.35rem 0 0.15rem;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pk-primary-dark);
}

.pk-booking-slots-section--muted {
  margin-top: 0.65rem;
  color: var(--pk-muted);
}

.pk-booking-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.pk-booking-legend__item {
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--pk-border);
}

.pk-booking-legend__item--ok {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #047857;
}

.pk-booking-legend__item--warn {
  background: #fffbeb;
  border-color: #fcd34d;
  color: #b45309;
}

.pk-booking-legend__item--busy {
  background: #fef2f2;
  border-color: #fecaca;
  color: #b91c1c;
}

.pk-booking-countdown {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  font-size: 0.75rem;
  line-height: 1.4;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  color: #92400e;
}

.pk-booking-countdown.is-urgent {
  background: #fef3c7;
  border-color: #f59e0b;
}

@keyframes pk-booking-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
  50% { box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.25); }
}

.pk-booking-review {
  padding: 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pk-primary-soft, #e6f4f5) 0%, #fff 100%);
  border: 1px solid var(--pk-border);
}

.pk-booking-review__title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--pk-muted);
  margin: 0 0 0.35rem;
}

.pk-booking-review__line {
  font-size: 1rem;
  font-weight: 800;
  color: var(--pk-text);
  margin: 0;
}

.pk-booking-alert {
  margin-top: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  font-size: 0.8125rem;
}

.pk-booking-alert--ok {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #047857;
}

.pk-booking-alert--err {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

.expert-booking__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
