:root {
  --zk-bg: #e8e0f5;
  --zk-panel: #ffffff;
  --zk-text: #2d2640;
  --zk-muted: #7a718f;
  --zk-accent: #7c3aed;
  --zk-accent-deep: #5b21b6;
  --zk-accent-soft: #f3eeff;
  --zk-border: #e8e2f4;
  --zk-shadow: 0 20px 50px rgba(91, 33, 182, 0.14);
  --zk-radius: 32px;
  --zk-radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--zk-bg);
}

body {
  margin: 0;
  font-family: "Segoe UI", ui-sans-serif, system-ui, -apple-system, Roboto, Arial, sans-serif;
  background: var(--zk-bg);
  color: var(--zk-text);
  min-height: 100vh;
}

.zk-page {
  min-height: 100vh;
  padding: 20px 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Единая карточка как на эскизе */
.zk-card {
  width: 100%;
  max-width: 1080px;
  background: var(--zk-panel);
  border-radius: var(--zk-radius);
  box-shadow: var(--zk-shadow);
  display: grid;
  grid-template-columns: minmax(300px, 42%) minmax(360px, 58%);
  grid-template-rows: 1fr;
  align-items: stretch;
  min-height: min(720px, 92vh);
  overflow: hidden;
}

body.zk-step-wizard .zk-card {
  overflow: visible;
  min-height: auto;
}

@media (min-width: 901px) {
  /* Desktop wizard: одна белая панель (прогресс + шаг + кнопки + privacy) */
  body.zk-step-wizard:not(.zk-step-phone) .zk-card {
    align-items: center;
    min-height: min(640px, 88vh);
  }

  body.zk-step-wizard:not(.zk-step-phone) .zk-form-col {
    min-height: auto;
    align-self: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 20px;
    padding: 20px 24px 14px;
    box-shadow: 0 10px 40px rgba(91, 33, 182, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
  }

  body.zk-step-wizard:not(.zk-step-phone) .zk-form-col .zk-progress {
    background: var(--zk-accent-soft);
    margin-bottom: 16px;
  }

  body.zk-step-wizard:not(.zk-step-phone) .zk-form-col .zk-steps {
    flex: 1 1 auto;
    min-height: 0;
    max-height: min(56vh, 500px);
    overflow-x: hidden;
    overflow-y: auto;
    background: transparent;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
  }

  body.zk-step-wizard:not(.zk-step-phone) .zk-form-col .zk-privacy {
    margin-top: 12px;
    background: transparent;
    border-radius: 0;
    padding: 12px 0 0;
  }

  body.zk-step-wizard:not(.zk-step-phone) .step.active[data-step="wizard"] {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  body.zk-step-wizard:not(.zk-step-phone) .zk-hero-panel-content {
    padding-top: clamp(32px, 5vw, 52px);
  }
}

@media (max-width: 900px) {
  body.zk-step-wizard .zk-card {
    grid-template-columns: 1fr;
    gap: 0;
    max-height: none;
  }

  body.zk-step-wizard .zk-hero {
    display: none;
  }

  body.zk-step-wizard .zk-form-col {
    padding: 12px 16px 24px;
    width: 100%;
    align-items: stretch;
  }

  body.zk-step-wizard .zk-form-col .zk-steps {
    max-height: none;
    overflow: visible;
    width: 100%;
    box-shadow: none;
    border-radius: 16px;
    padding: 16px 14px;
  }

  body.zk-step-wizard .zk-page {
    align-items: flex-start;
    padding-top: 12px;
  }
}

.zk-hero {
  background: linear-gradient(165deg, #f7f3ff 0%, #ebe4f8 50%, #f3edff 100%);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--zk-border);
}

/* Единая сцена: фон макета на всю карточку (собака + стол + лаванда) */
body:not(.zk-step-phone) .zk-card {
  grid-template-columns: minmax(280px, 40%) minmax(340px, 60%);
  background-color: #e5ddf3;
  background-image: url("/static/zookalendar/hero-panel.png?v=3");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left bottom;
}

body:not(.zk-step-phone) .zk-hero {
  padding: 0;
  margin: 0;
  background: transparent;
  border-right: none;
  align-self: stretch;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

body:not(.zk-step-phone) .zk-hero-extra,
body:not(.zk-step-phone) .zk-hero-panel-content {
  pointer-events: auto;
}

body:not(.zk-step-phone) .zk-form-col {
  background: transparent;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 100%;
  padding: clamp(20px, 3vw, 32px) clamp(22px, 3.5vw, 36px) clamp(18px, 2.5vw, 24px)
    clamp(12px, 2vw, 20px);
}

body:not(.zk-step-phone) .zk-form-col > .err {
  flex: 0 0 auto;
}

body:not(.zk-step-phone) .zk-form-col .zk-progress {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.55);
}

body:not(.zk-step-phone) .zk-form-col .zk-steps {
  flex: 0 1 auto;
  width: 100%;
  min-height: 0;
  max-height: min(52vh, 480px);
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 20px;
  padding: 22px 24px 18px;
  box-shadow: 0 10px 40px rgba(91, 33, 182, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

body:not(.zk-step-phone) .zk-form-col .zk-privacy {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  padding: 10px 12px;
  margin-top: auto;
}

.zk-logo {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--zk-accent-deep);
  margin-bottom: 16px;
}

.zk-logo span {
  color: var(--zk-accent);
}

.zk-hero-title {
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.12;
  font-weight: 800;
  color: var(--zk-accent-deep);
  margin: 0 0 16px;
}

.zk-hero-extra {
  display: flex;
  flex: 1 1 auto;
  min-height: 100%;
  width: 100%;
  height: 100%;
}

.zk-hero-panel-content {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  width: 100%;
  min-height: 100%;
  height: 100%;
  max-width: 360px;
  padding: clamp(24px, 4.5vw, 40px) clamp(12px, 2vw, 20px) clamp(20px, 3vw, 28px)
    clamp(16px, 2.5vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
}

.zk-hero-panel-content .zk-hero-title {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.1;
}

.zk-hero-panel-content .zk-bubble {
  margin: 0;
}

.zk-hero-panel-content .zk-tip {
  margin-top: auto;
}

.zk-hero-panel-content .zk-bubble,
.zk-hero-panel-content .zk-tip {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
}

.zk-bubble {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.45;
  box-shadow: 0 8px 24px rgba(91, 33, 182, 0.1);
  text-align: left;
  flex-shrink: 0;
  border: 1px solid rgba(124, 58, 237, 0.08);
}

.zk-hero-panel-content .zk-bubble::after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: -7px;
  margin: 0;
  border: 7px solid transparent;
  border-right-color: #fff;
}

.zk-mascot-wrap {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0 0 12px;
  overflow: hidden;
}

.zk-mascot {
  width: min(300px, 100%);
  max-height: min(300px, 38vh);
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

.zk-tip {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--zk-muted);
  box-shadow: 0 4px 16px rgba(91, 33, 182, 0.08);
}

.zk-tip-icon {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--zk-accent-soft);
  color: var(--zk-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.zk-form-col {
  padding: 28px 32px 20px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.zk-progress {
  height: 4px;
  background: var(--zk-accent-soft);
  border-radius: 99px;
  margin-bottom: 22px;
  overflow: hidden;
}

.zk-progress div {
  height: 100%;
  background: linear-gradient(90deg, #a78bfa, var(--zk-accent));
  border-radius: 99px;
  transition: width 0.3s ease;
}

.zk-steps {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.zk-field {
  margin-bottom: 16px;
}

.zk-field-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.zk-field-head label {
  font-size: 13px;
  font-weight: 700;
  color: var(--zk-text);
  margin: 0;
}

.zk-ico {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--zk-accent);
}

.zk-field input[type="text"],
.zk-field input[type="tel"],
.zk-field input[type="number"],
.zk-field input[type="date"] {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid var(--zk-border);
  background: #faf9fc;
  font-size: 15px;
  color: var(--zk-text);
  margin: 0;
}

.zk-field input:focus {
  outline: none;
  border-color: var(--zk-accent);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
  background: #fff;
}

.zk-hint {
  font-size: 12px;
  color: var(--zk-muted);
  line-height: 1.45;
  margin: 6px 0 0;
}

.zk-crm-box {
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--zk-accent-soft);
  border: 1px solid rgba(124, 58, 237, 0.18);
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.5;
}

.zk-loyalty-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 14px;
  border-radius: 14px;
  background: linear-gradient(145deg, #fffbeb 0%, #fef3c7 55%, #fff7ed 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.55;
}

.zk-loyalty-box--ok {
  background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 55%, #f0fdf4 100%);
  border-color: rgba(16, 185, 129, 0.35);
}

.zk-loyalty-box p {
  margin: 0;
}

.zk-loyalty-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.18);
  color: #d97706;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

.zk-loyalty-box--ok .zk-loyalty-ico {
  background: rgba(16, 185, 129, 0.18);
  color: #059669;
}

/* Найденные в CRM питомцы — главный акцент шага */
.zk-household-hero {
  margin: 0 0 16px;
  padding: 18px 16px 16px;
  border-radius: 18px;
  background: linear-gradient(145deg, #f3eeff 0%, #ebe4f8 55%, #f7f3ff 100%);
  border: 2px solid rgba(124, 58, 237, 0.35);
  box-shadow: 0 12px 32px rgba(91, 33, 182, 0.14);
}

.zk-household-hero[hidden] {
  display: none !important;
}

.zk-household-greet-line {
  margin: 0 0 4px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--zk-text);
}

.zk-household-greet-sub {
  margin: 0 0 14px;
  font-size: 12px;
  color: var(--zk-muted);
}

.zk-pet-found-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}

.zk-pet-found-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 14px 10px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(124, 58, 237, 0.2);
  box-shadow: 0 4px 14px rgba(91, 33, 182, 0.08);
}

.zk-pet-found-avatar {
  flex-shrink: 0;
  line-height: 0;
}

.zk-pet-found-ico {
  width: 64px;
  height: 64px;
  display: block;
}

.zk-pet-found-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--zk-accent-deep);
  line-height: 1.2;
}

.zk-pet-found-age {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--zk-accent);
  line-height: 1.3;
}

.zk-household-source {
  margin: 12px 0 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--zk-muted);
  text-align: center;
}

.zk-household-summary {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 8px;
  color: var(--zk-accent-deep);
}

.zk-add-species-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
}

.zk-add-species-card {
  position: relative;
  z-index: 2;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 148px;
  border: 2px solid var(--zk-border);
  border-radius: 18px;
  background: #faf9fc;
  padding: 20px 12px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.12s;
}

.zk-add-species-card:hover {
  border-color: #c4b5fd;
}

.zk-add-species-card.selected {
  border-color: var(--zk-accent);
  background: var(--zk-accent-soft);
  box-shadow: 0 0 0 3px rgba(106, 75, 193, 0.12);
}

.zk-add-species-ico {
  font-size: 48px;
  line-height: 1;
}

.zk-add-species-label {
  font-size: 17px;
  font-weight: 800;
  color: var(--zk-text);
}

.zk-step-add-pet .zk-btn.secondary::before {
  content: none;
}

body.zk-step-edit-single .zk-step-title#wizardTitle {
  font-size: 20px;
  line-height: 1.25;
  margin: 4px 0 10px;
}

.zk-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.zk-step-add-pet-single #wizardTitle {
  display: none;
}

.zk-step-add-pet-single .zk-progress,
.zk-step-add-pet-single .zk-wizard-step-label,
body.zk-step-edit-single .zk-wizard-step-label {
  display: none;
}

body.zk-step-edit-single.zk-edit-wizard-substep .zk-add-pet-title,
body.zk-step-edit-single.zk-edit-wizard-substep .zk-add-pet-lead {
  display: none;
}

body.zk-step-edit-single .zk-page,
body.zk-step-add-pet-single .zk-page {
  align-items: flex-start;
  padding-top: max(16px, env(safe-area-inset-top));
  padding-bottom: max(40px, env(safe-area-inset-bottom));
  min-height: 100dvh;
  overflow-x: hidden;
}

body.zk-step-edit-single,
body.zk-step-add-pet-single {
  overflow-x: hidden;
}

body.zk-step-edit-single .zk-add-pet-card,
body.zk-step-add-pet-single .zk-add-pet-card {
  display: block;
  max-width: 640px;
  min-height: auto;
  padding: 0 0 24px;
  overflow: visible;
  background-image: none !important;
  background-color: var(--zk-panel);
}

body.zk-step-edit-single .zk-hero,
body.zk-step-add-pet-single .zk-hero {
  display: none;
}

body.zk-step-edit-single .zk-form-col,
body.zk-step-edit-single .zk-add-pet-form-col,
body.zk-step-add-pet-single .zk-form-col,
body.zk-step-add-pet-single .zk-add-pet-form-col {
  max-width: none;
  width: 100%;
  min-height: auto;
  padding: 0 20px 8px;
  background: transparent;
  border: none;
  box-shadow: none;
}

body.zk-step-edit-single .zk-form-col .zk-steps,
body.zk-step-edit-single .zk-add-pet-steps,
body.zk-step-add-pet-single .zk-form-col .zk-steps,
body.zk-step-add-pet-single .zk-add-pet-steps {
  max-height: none;
  overflow: visible;
  padding: 0;
  border: none;
  box-shadow: none;
}

.zk-add-pet-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px 8px;
  border-bottom: 1px solid var(--zk-border);
}

.zk-add-pet-back {
  font-size: 14px;
  font-weight: 600;
  color: var(--zk-accent-deep);
  text-decoration: none;
}

.zk-add-pet-back:hover {
  text-decoration: underline;
}

.zk-add-pet-logo {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
}

.zk-add-pet-title {
  margin: 20px 0 8px;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 800;
  color: var(--zk-accent-deep);
  line-height: 1.15;
}

.zk-add-pet-lead {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--zk-muted);
}

.zk-step-add-pet-single .zk-wizard-body,
.zk-step-add-pet-single .zk-add-pet-body {
  max-height: none;
  overflow: visible;
}

.zk-step-add-pet-single .zk-add-pet-form .zk-roster-card {
  border: none;
  background: transparent;
  padding: 0;
}

.zk-step-add-pet-single .zk-add-species-field {
  margin-bottom: 4px;
}

.zk-step-add-pet-single .zk-field {
  margin-bottom: 14px;
}

.zk-step-add-pet-single .zk-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--zk-text);
}

.zk-step-add-pet-single .zk-select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid var(--zk-border);
  background: #faf9fc;
  font-size: 15px;
  color: var(--zk-text);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237a718f' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.zk-add-pet-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  position: relative;
  z-index: 5;
}

.zk-btn-add-pet-submit {
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(124, 58, 237, 0.25);
  position: relative;
  z-index: 2;
}

.zk-btn-add-pet-submit.zk-btn-flash,
.zk-add-pet-actions.zk-btn-flash .zk-btn-add-pet-submit {
  background: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.45) !important;
  outline: 2px solid #b91c1c;
}

.zk-add-pet-toast {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 100000;
  padding: 14px 16px;
  border-radius: 14px;
  background: #b91c1c;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.zk-add-pet-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.zk-field-miss {
  border-radius: 12px;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.45);
}

.zk-field-miss label {
  color: #b91c1c;
}

.zk-cat-only[hidden] {
  display: none !important;
}

.zk-add-pet-privacy {
  margin: 16px 0 0;
  padding: 0;
  font-size: 12px;
  color: var(--zk-muted);
  text-align: center;
  background: transparent;
}

.zk-species-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.zk-species-tile {
  position: relative;
  border: 2px solid var(--zk-border);
  border-radius: 12px;
  background: #faf9fc;
  padding: 10px 4px 8px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s, background 0.15s;
}

.zk-species-tile.selected {
  border-color: var(--zk-accent);
  background: var(--zk-accent-soft);
}

.zk-species-tile.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.zk-species-tile .zk-tile-ico {
  font-size: 26px;
  line-height: 1;
  display: block;
  margin-bottom: 2px;
}

.zk-species-tile .zk-tile-label {
  font-size: 11px;
  font-weight: 700;
}

.zk-species-tile .zk-tile-dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #c4b5fd;
  background: #fff;
}

.zk-species-tile.selected .zk-tile-dot {
  border-color: var(--zk-accent);
  background: var(--zk-accent);
  box-shadow: inset 0 0 0 2px #fff;
}

.zk-intro-list-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--zk-text);
}

.zk-intro-pets-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.zk-intro-pet {
  border: 1px solid var(--zk-border);
  border-radius: 14px;
  padding: 14px 14px 10px;
  background: #faf9fc;
}

.zk-intro-pet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.zk-intro-pet-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--zk-accent);
}

.zk-intro-pet-remove {
  border: none;
  background: transparent;
  color: #9ca3af;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}

.zk-intro-pet-remove:hover {
  color: #ef4444;
}

.zk-intro-pet-species {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.zk-species-mini {
  flex: 1;
  border: 2px solid var(--zk-border);
  border-radius: 10px;
  background: #fff;
  padding: 8px 6px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.zk-species-mini.selected {
  border-color: var(--zk-accent);
  background: var(--zk-accent-soft);
  color: var(--zk-accent);
}

.zk-btn-add-pet {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  border: 2px dashed #c4b5fd;
  border-radius: 12px;
  background: #fff;
  color: var(--zk-accent);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.zk-btn-add-pet:hover {
  background: var(--zk-accent-soft);
}

.zk-intro-pet .zk-field {
  margin-bottom: 12px;
}

.zk-intro-pet .zk-field:last-child {
  margin-bottom: 0;
}

.zk-slider-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.zk-slider-row input[type="range"] {
  flex: 1;
  height: 6px;
  accent-color: var(--zk-accent);
  margin: 0;
}

.zk-slider-val {
  flex: 0 0 76px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--zk-accent-deep);
  background: var(--zk-accent-soft);
  border-radius: 10px;
  padding: 8px 4px;
}

.zk-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--zk-muted);
  margin-top: 4px;
}

.choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.choice {
  flex: 1 1 30%;
  min-width: 64px;
  padding: 10px 8px;
  border-radius: 12px;
  border: 1px solid var(--zk-border);
  background: #faf9fc;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

.choice.selected {
  border-color: var(--zk-accent);
  background: var(--zk-accent-soft);
  color: var(--zk-accent-deep);
}

.choice.compact {
  flex: 1 1 28%;
}

.choice.wide {
  flex: 1 1 100%;
}

.section-title {
  font-weight: 700;
  font-size: 13px;
  margin: 14px 0 8px;
  color: var(--zk-accent-deep);
}

.hint-multi {
  font-size: 11px;
  color: var(--zk-muted);
  margin: -4px 0 8px;
}

.zk-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, #8b5cf6, var(--zk-accent-deep));
  color: #fff;
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.32);
  margin-top: 6px;
}

.zk-btn svg {
  width: 18px;
  height: 18px;
}

.zk-btn.secondary {
  background: #fff;
  border: 1px solid var(--zk-border);
  color: var(--zk-accent-deep);
  box-shadow: none;
  margin-top: 10px;
}

.zk-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.zk-privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 10px;
  color: var(--zk-muted);
  line-height: 1.45;
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--zk-border);
}

.zk-privacy svg {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  margin-top: 1px;
  color: #a78bfa;
}

.err {
  color: #b91c1c;
  font-size: 12px;
  margin-bottom: 12px;
  display: none;
  padding: 10px 12px;
  background: #fef2f2;
  border-radius: 10px;
}

.pet-card.pet-card-invalid {
  border-color: #f87171;
  box-shadow: 0 0 0 2px rgba(248, 113, 113, 0.25);
}

.zk-all-pets-consent {
  margin: 14px 0 10px;
  font-size: 12px;
  line-height: 1.45;
}

.zk-inline-err {
  margin: 0 0 10px;
}

.zk-step-add-pet-single .zk-inline-err.is-visible,
.zk-step-add-pet-single .zk-inline-err:not([hidden]) {
  display: block;
  margin: 12px 0 4px;
  padding: 10px 12px;
  color: #b91c1c;
  font-size: 13px;
  line-height: 1.4;
  background: #fef2f2;
  border-radius: 10px;
}

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

.zk-btn-shake {
  animation: zk-btn-shake 0.45s ease;
}

.zk-add-pet-actions.zk-btn-shake {
  animation: zk-btn-shake 0.45s ease;
}

.zk-add-pet-actions.zk-btn-shake .zk-btn-add-pet-submit {
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.35);
}

.pet-card {
  border: 1px solid var(--zk-border);
  background: #faf9fc;
  border-radius: var(--zk-radius-sm);
  padding: 16px;
  margin-bottom: 14px;
}

.pet-card-title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 800;
  color: var(--zk-accent-deep);
}

.pet-card-sub {
  margin: 0 0 10px;
  font-size: 11px;
  color: var(--zk-muted);
}

.field-other {
  display: none;
  margin-bottom: 12px;
}

.field-other.visible {
  display: block;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 14px;
}

.check[hidden],
.zk-wizard-consent[hidden] {
  display: none !important;
}

.check input {
  width: auto;
  margin: 3px 0 0;
  accent-color: var(--zk-accent);
}

.done-icon {
  font-size: 52px;
  text-align: center;
  margin: 8px 0 14px;
  color: var(--zk-accent);
}

a.link {
  color: var(--zk-accent);
  font-weight: 600;
}

.zk-step-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--zk-accent-deep);
  margin: 0 0 14px;
}

@media (max-width: 900px) {
  .zk-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .zk-hero {
    border-right: none;
    border-bottom: 1px solid var(--zk-border);
    padding: 24px 20px 20px;
  }

  body:not(.zk-step-phone) .zk-card {
    background-size: cover;
    background-position: 15% bottom;
  }

  body:not(.zk-step-phone) .zk-hero {
    padding: 0;
    min-height: min(200px, 34vh);
    pointer-events: none;
  }

  body:not(.zk-step-phone) .zk-hero-extra {
    min-height: min(200px, 34vh);
  }

  body:not(.zk-step-phone) .zk-hero-panel-content {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 16px 18px 14px;
    min-height: auto;
    height: auto;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(229, 221, 243, 0.72) 100%
    );
    border-radius: 0 0 16px 16px;
  }

  body:not(.zk-step-phone) .zk-hero-panel-content .zk-tip {
    display: none;
  }

  body:not(.zk-step-phone) .zk-hero-panel-content .zk-bubble::after {
    bottom: auto;
    top: -7px;
    left: 28px;
    border: 7px solid transparent;
    border-bottom-color: rgba(255, 255, 255, 0.92);
    border-right-color: transparent;
  }

  body:not(.zk-step-phone) .zk-form-col .zk-steps {
    box-shadow: 0 8px 28px rgba(91, 33, 182, 0.12);
  }

  .zk-form-col {
    padding: 22px 20px 18px;
  }

  .zk-species-row {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 480px) {
  .zk-species-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* —— Экран 1: телефон (макет 16-56-53) —— */
body.zk-step-phone {
  background: #ffffff;
}

body.zk-step-phone html,
body.zk-step-phone {
  background: #ffffff;
}

body.zk-step-phone .zk-page {
  padding: 16px 12px 24px;
}

body.zk-step-phone .zk-card {
  max-width: 1100px;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  grid-template-columns: 1fr 1fr;
  min-height: min(600px, 88vh);
  gap: 32px 48px;
  align-items: center;
}

body.zk-step-phone .zk-hero {
  background: transparent;
  border: none;
  padding: 16px 12px 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
}

body.zk-step-phone .zk-form-col {
  padding: 16px 20px 16px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}

body.zk-step-phone .zk-hide-phone {
  display: none !important;
}

body:not(.zk-step-phone) .zk-only-phone {
  display: none !important;
}

.zk-only-phone {
  display: none;
}

body.zk-step-phone .zk-only-phone {
  display: block;
}

/* Иконка приложения ЗооКалендарь */
.zk-logo-main {
  display: block;
  width: 96px;
  height: 96px;
  border-radius: 22px;
  object-fit: cover;
  margin: 0 0 16px;
  flex-shrink: 0;
}

.zk-hero-scene {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 260px;
  margin: 0;
}

.zk-hero-scene .zk-hero-mascot {
  width: 100%;
  max-width: min(100%, 420px);
  max-height: min(400px, 50vh);
  object-position: center bottom;
}

/* Карточка телефона */
.zk-phone-card {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 16px 48px rgba(106, 75, 193, 0.2), 0 0 0 1px rgba(106, 75, 193, 0.06);
  padding: 32px 28px 24px;
  width: 100%;
  max-width: 380px;
  margin: 0;
  text-align: center;
}

body.zk-step-phone .zk-steps {
  width: 100%;
  max-width: 380px;
}

body.zk-step-phone .err {
  width: 100%;
  max-width: 380px;
}

.zk-phone-pets {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 0 auto 16px;
}

.zk-phone-pet {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 6px 14px rgba(106, 75, 193, 0.25));
}

.zk-phone-pet svg {
  display: block;
  width: 56px;
  height: 56px;
}

.zk-phone-pet-dog svg {
  width: 58px;
  height: 58px;
}

.zk-phone-title {
  font-size: 17px;
  font-weight: 800;
  color: #2f2a4a;
  margin: 0 0 20px;
  line-height: 1.35;
}

.zk-phone-confirm-text {
  margin: -8px 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f5f0ff;
  color: #5b21b6;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.zk-phone-split {
  display: flex;
  align-items: stretch;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #fafafa;
}

.zk-phone-code {
  flex: 0 0 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #374151;
  border-right: 1px solid #e5e7eb;
  background: #fff;
}

.zk-phone-split input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 12px;
  font-size: 15px;
  color: var(--zk-text);
  min-width: 0;
}

.zk-phone-split input:focus {
  outline: none;
}

.zk-pd-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  text-align: left;
  font-size: 12px;
  line-height: 1.45;
  color: #4b5563;
  margin-bottom: 18px;
  cursor: pointer;
}

.zk-pd-check input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  flex-shrink: 0;
  accent-color: #6a4bc1;
}

.zk-pd-check a {
  color: #6a4bc1;
  font-weight: 700;
  text-decoration: none;
}

.zk-pd-check a:hover {
  text-decoration: underline;
}

.zk-btn-send {
  display: block;
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  background: #6a4bc1;
  color: #fff;
  box-shadow: 0 8px 20px rgba(106, 75, 193, 0.35);
}

.zk-btn-send:hover {
  background: #5b3dad;
}

.zk-btn-send:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.zk-phone-shield {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 16px 0 0;
  font-size: 11px;
  color: #9ca3af;
}

.zk-phone-shield svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #a78bfa;
}

body:not(.zk-step-phone) .zk-phone-card {
  box-shadow: var(--zk-shadow);
}

@media (max-width: 900px) {
  body.zk-step-phone .zk-card {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: stretch;
  }

  body.zk-step-phone .zk-hero {
    align-items: center;
    padding: 12px 16px 0;
  }

  body.zk-step-phone .zk-logo-main {
    width: min(180px, 70%);
    margin-bottom: 12px;
  }

  body.zk-step-phone .zk-hero-scene {
    min-height: 220px;
    max-width: 420px;
    margin: 0 auto;
  }

  body.zk-step-phone .zk-form-col {
    padding: 8px 16px 20px;
  }
}

.zk-wizard-step-label {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--zk-muted);
}

.zk-wizard-body {
  margin-bottom: 14px;
}

.zk-wizard-consent {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.45;
}

.zk-wizard-inline-err {
  display: none;
  margin: 0 0 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 13px;
  line-height: 1.45;
}

.zk-wizard-inline-err.is-visible {
  display: block;
}

.zk-wizard-inline-err[hidden] {
  display: none !important;
}

.zk-wizard-inline-err .zk-val-list,
.err .zk-val-list {
  margin: 6px 0 0;
  padding-left: 18px;
}

.zk-wizard-inline-err .zk-val-list li,
.err .zk-val-list li {
  margin: 4px 0;
}

.zk-field-miss label,
.zk-care-section.zk-field-miss > .zk-care-title {
  color: #b91c1c;
}

.zk-field-miss .zk-select,
.zk-field-miss input[type="text"],
.zk-field-miss input[type="number"],
.zk-field-miss .zk-birthday-row .zk-select {
  border-color: #f87171;
  box-shadow: 0 0 0 2px rgba(248, 113, 113, 0.2);
}

.zk-recency-row.zk-field-miss {
  outline: 2px solid rgba(248, 113, 113, 0.35);
  outline-offset: 4px;
  border-radius: 10px;
}

.choices.zk-field-miss,
.zk-yesno.zk-field-miss,
#addSpeciesPick.zk-field-miss {
  outline: 2px solid rgba(248, 113, 113, 0.45);
  outline-offset: 4px;
  border-radius: 12px;
}

.check.zk-field-miss,
.zk-wizard-consent.zk-field-miss {
  padding: 10px 10px 10px 8px;
  border-radius: 10px;
  background: #fef2f2;
  outline: 2px solid rgba(248, 113, 113, 0.45);
  outline-offset: 2px;
}

.zk-select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--zk-border);
  background: #fff;
  font-size: 14px;
  font-family: inherit;
  color: var(--zk-text);
}

.zk-pet-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 640px) {
  .zk-pet-columns {
    grid-template-columns: 1fr;
  }
}

.zk-pet-col {
  border: 1px solid var(--zk-border);
  border-radius: var(--zk-radius-sm);
  padding: 12px;
  background: #faf9fc;
}

.zk-pet-col--focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.18);
  background: #f5f3ff;
}

.zk-yesno {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.zk-yesno .choice {
  flex: 1 1 120px;
  min-width: 120px;
}

.zk-birthday-row {
  display: grid;
  grid-template-columns: 72px 1fr 88px;
  gap: 8px;
  align-items: center;
}

.zk-birthday-row .zk-select {
  width: 100%;
  min-width: 0;
}

@media (max-width: 480px) {
  .zk-birthday-row {
    grid-template-columns: 1fr 1fr;
  }

  .zk-birthday-row .zk-bday-year {
    grid-column: 1 / -1;
  }
}

.zk-roster-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.zk-roster-card {
  border: 1px solid var(--zk-border);
  border-radius: var(--zk-radius-sm);
  padding: 12px 14px;
  background: #faf9fc;
}

.zk-roster-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.zk-roster-card-title {
  flex: 1;
  font-weight: 800;
  font-size: 14px;
}

.zk-roster-card .zk-field {
  margin-bottom: 10px;
}

.zk-roster-card .zk-field:last-child {
  margin-bottom: 0;
}

.zk-roster-card .zk-select {
  width: 100%;
}

.zk-breed-wrap {
  position: relative;
}

.zk-breed-wrap input[type="text"] {
  width: 100%;
}

.zk-breed-suggest {
  position: absolute;
  z-index: 30;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  margin: 0;
  padding: 4px 0;
  list-style: none;
  max-height: 220px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--zk-border);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(91, 33, 182, 0.14);
}

.zk-breed-suggest li {
  margin: 0;
}

.zk-breed-opt {
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--zk-text);
  cursor: pointer;
}

.zk-breed-opt:hover,
.zk-breed-opt:focus {
  background: var(--zk-accent-soft);
}

.zk-weight-exact {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--zk-border);
  font-size: 14px;
  font-family: inherit;
}

.zk-roster-del {
  border: none;
  background: #fee2e2;
  color: #b91c1c;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

.zk-roster-del:hover {
  background: #fecaca;
}

.zk-roster-sp-switch {
  display: inline-flex;
  gap: 4px;
  margin-left: auto;
  flex-shrink: 0;
}
.zk-roster-sp-btn {
  border: 1px solid var(--zk-border);
  background: #fff;
  color: var(--zk-text);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  line-height: 1.2;
}
.zk-roster-sp-btn.is-on {
  background: var(--zk-accent-soft, #efe9fb);
  border-color: var(--zk-accent, #7c3aed);
  color: var(--zk-accent, #5b21b6);
}
.zk-roster-card-head .zk-roster-card-title {
  flex: 1 1 auto;
  min-width: 0;
}
@media (max-width: 420px) {
  .zk-roster-card-head {
    flex-wrap: wrap;
  }
  .zk-roster-sp-switch {
    order: 3;
    margin-left: 28px;
    width: calc(100% - 28px);
  }
  .zk-roster-sp-btn {
    flex: 1;
  }
  .zk-roster-del {
    margin-left: auto;
  }
}

.zk-opt-tag {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  vertical-align: middle;
}

.zk-care-optional .zk-hint-inline {
  margin-top: -4px;
  margin-bottom: 10px;
}

.zk-care-fold {
  margin-top: 18px;
  padding: 14px 14px 6px;
  border: 1px solid var(--zk-border);
  border-radius: 16px;
  background: #faf9fc;
}

.zk-care-fold-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--zk-accent-deep);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.zk-care-fold-title::-webkit-details-marker {
  display: none;
}

.zk-care-fold-title::before {
  content: "›";
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--zk-accent-soft);
  color: var(--zk-accent-deep);
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.zk-care-fold[open] .zk-care-fold-title::before {
  transform: rotate(90deg);
}

.zk-care-fold-lead {
  margin: 8px 0 12px 30px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--zk-muted);
}

.zk-care-fold-body {
  padding-top: 4px;
}

.zk-care-section {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--zk-border);
}

.zk-care-fold-body > .zk-care-section:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.zk-care-title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--zk-accent);
  letter-spacing: 0.02em;
}

.zk-roster-card .zk-recency-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.zk-roster-card .zk-recency-row .choice {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12px;
  padding: 8px 10px;
}

.zk-product-wrap {
  position: relative;
}

.zk-product-wrap input[type="text"] {
  width: 100%;
}

.zk-product-suggest {
  position: absolute;
  z-index: 30;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  margin: 0;
  padding: 4px 0;
  list-style: none;
  max-height: 200px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--zk-border);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(91, 33, 182, 0.14);
}

.zk-product-suggest li {
  margin: 0;
}

.zk-product-opt {
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--zk-text);
  cursor: pointer;
}

.zk-product-opt:hover,
.zk-product-opt:focus {
  background: var(--zk-accent-soft);
}

.zk-vet-pick {
  margin-top: 14px;
}

.zk-other-field {
  margin-top: 10px;
}


.zk-step-add-pet-single .zk-add-pet-form .zk-care-fold {
  margin-top: 8px;
  border: 1px solid var(--zk-border);
  border-radius: 14px;
  padding: 0 14px 12px;
  background: #faf9fc;
}

.zk-step-add-pet-single .zk-add-pet-form .zk-care-fold-title {
  font-weight: 800;
  padding: 12px 0 8px;
}

.zk-step-add-pet-single .zk-add-pet-actions {
  position: relative;
  z-index: 3;
}

.zk-add-pet-form-wrap {
  display: block;
}

.zk-edit-pick-group {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
}

.zk-edit-pick-label {
  margin: 4px 0 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

.zk-edit-pick-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  text-align: left;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(30, 27, 75, 0.1);
  background: #fff;
  color: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.zk-edit-pick-link:active,
.zk-edit-pick-link:hover {
  background: #f8f7ff;
}

.zk-edit-pick-link strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.zk-edit-pick-link small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  opacity: 0.82;
}

.zk-edit-pick-ico {
  flex: 0 0 auto;
  font-size: 22px;
  line-height: 1;
  margin-top: 2px;
}
