/*
 * zone-detail.css — Canopy v2 zone-detail bottom sheet (Mockup B follow-up)
 * Components: window.Components.ZoneDetail + per-plant health detail sheet.
 * Idea #438 — chrome strip + plant collection + photo timeline rebuild.
 *
 * Consumes ONLY --v2-* tokens. Zero raw hex.
 */

/* ─── Outer sheet layout (zone detail + nested suggestions + plant health) ── */

.zone-detail-sheet,
.zone-suggestions-sheet,
.plant-health-detail-sheet {
  position: relative;
  width: 100%;
  max-height: 92vh;
  max-height: 92dvh;
  background: var(--v2-bg-panel);
  border-radius: var(--v2-radius-xl) var(--v2-radius-xl) 0 0;
  box-shadow: 0 -4px 32px oklch(18% 0.02 150 / 0.18), 0 -1px 4px oklch(18% 0.02 150 / 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.zone-suggestions-sheet { max-height: 75vh; max-height: 75dvh; }
.plant-health-detail-sheet { max-height: 78vh; max-height: 78dvh; }

.zone-detail-sheet .sheet-scroll,
.plant-health-detail-sheet .sheet-scroll {
  flex: 1; overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 12px;
}
.zone-detail-sheet .sheet-scroll { padding-bottom: 96px; }
.plant-health-detail-sheet .sheet-scroll { padding: 0 20px 28px; }

.zone-detail-sheet .grab,
.plant-health-detail-sheet .grab {
  width: 40px; height: 4px;
  border-radius: 999px;
  background: var(--v2-edge-strong);
  margin: 10px auto 0;
  flex-shrink: 0;
}

.zone-detail-sheet .sheet-close,
.plant-health-detail-sheet .sheet-close {
  position: absolute;
  top: 18px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--v2-bg-secondary);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--v2-text-secondary);
  z-index: 3;
}

/* ─── Top identity strip ──────────────────────────────────────────────────── */

.zd-top {
  flex-shrink: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 4px 56px 12px 16px;
  gap: 12px;
  background: var(--v2-bg-panel);
  border-bottom: 1px solid var(--v2-edge);
}
.zd-id { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.zd-id-thumb {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background-size: cover; background-position: center;
  background-color: var(--v2-accent-botanical-bg, var(--v2-bg-secondary));
  border: 1px solid var(--v2-edge);
  display: flex; align-items: center; justify-content: center;
  color: var(--v2-accent-botanical);
}
.zd-id-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.zd-id-label {
  font-family: var(--v2-font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v2-text-secondary);
  line-height: 1;
}
.zd-id-name {
  font-family: var(--v2-font-heading);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--v2-text-primary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.zd-top-actions { display: flex; gap: 6px; flex-shrink: 0; }
.zd-icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--v2-bg-secondary);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--v2-text-primary);
}
.zd-icon-btn:active { transform: scale(0.96); }
.zd-icon-btn--edit { color: var(--v2-accent-botanical); }

/* ─── Hero photo strip ────────────────────────────────────────────────────── */

.zd-hero-photo {
  flex-shrink: 0;
  position: relative;
  display: block;
  width: 100%;
  height: 240px;
  background-size: cover; background-position: center;
  background-color: var(--v2-accent-botanical);
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
  /* <button> default is display:inline-block with content-sized width.
     Inner .zd-hero-scrim + .zd-hero-meta are position:absolute and
     contribute zero layout width, so without explicit width:100% the
     button collapses to 0px wide and the background paints nothing.
     appearance:none also suppresses UA button chrome for safety. */
  appearance: none;
  -webkit-appearance: none;
}
.zd-hero-photo--populated:focus-visible {
  outline: 2px solid var(--v2-pop-sage);
  outline-offset: 2px;
}
.zd-hero-photo--empty {
  height: 168px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  color: oklch(98% 0 0 / 0.85);
  background: var(--v2-accent-botanical);
  border: none; padding: 0; width: 100%;
  cursor: pointer;
}
.zd-hero-photo--empty svg { width: 36px; height: 36px; opacity: 0.7; }
.zd-hero-photo--empty span {
  font-family: var(--v2-font-body);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.zd-hero-scrim {
  position: absolute; left: 0; right: 0; bottom: 0; height: 50%;
  background: linear-gradient(180deg, transparent, oklch(0% 0 0 / 0.55));
  pointer-events: none;
}
.zd-hero-meta {
  position: absolute; left: 16px; right: 16px; bottom: 14px;
  display: flex; gap: 8px; align-items: center;
}

/* ─── Chips on hero ───────────────────────────────────────────────────────── */

.zd-chip {
  display: inline-flex; align-items: center; gap: 6px;
  height: 24px; padding: 0 10px;
  border-radius: var(--v2-radius-xs);
  font-family: var(--v2-font-body);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  line-height: 1;
}
.zd-chip-dot { width: 6px; height: 6px; border-radius: 50%; }
.zd-chip--health-good    { background: oklch(98% 0 0 / 0.95); color: var(--v2-pop-sage); }
.zd-chip--health-okay    { background: oklch(98% 0 0 / 0.95); color: var(--v2-pop-ochre); }
.zd-chip--health-concern { background: oklch(98% 0 0 / 0.95); color: var(--v2-pop-coral); }
.zd-chip--sun            { background: oklch(98% 0 0 / 0.85); color: var(--v2-pop-ochre); }
.zd-chip--analyzing      { background: oklch(98% 0 0 / 0.95); color: var(--v2-pop-slate); }

/* ─── Health card ─────────────────────────────────────────────────────────── */

.zd-health {
  margin: 14px 16px 0;
  background: var(--v2-bg-card);
  border: 1px solid var(--v2-edge);
  border-radius: var(--v2-radius-lg);
  padding: 16px 18px;
  box-shadow: 0 1px 2px oklch(0% 0 0 / 0.03);
}
.zd-health-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px;
}
.zd-health-label {
  font-family: var(--v2-font-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--v2-text-secondary);
}
.zd-health-window {
  font-size: 10px; color: var(--v2-text-tertiary);
  text-transform: none; letter-spacing: 0; font-weight: 400; margin-left: 4px;
}
.zd-health-score { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.zd-vigor {
  font-family: var(--v2-font-heading);
  font-size: 44px; font-weight: 500;
  line-height: 1; letter-spacing: -0.02em;
  color: var(--v2-text-primary);
}
.zd-vigor-divisor { font-family: var(--v2-font-heading); font-size: 18px; color: var(--v2-text-tertiary); }
.zd-vigor-label {
  margin-left: 8px;
  font-family: var(--v2-font-body);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 10px; border-radius: 999px;
}
.zd-vigor-label--good    { background: var(--v2-pop-sage-bg); color: var(--v2-pop-sage); }
.zd-vigor-label--okay    { background: var(--v2-pop-ochre-bg); color: var(--v2-pop-ochre); }
.zd-vigor-label--concern { background: var(--v2-pop-coral-bg); color: var(--v2-pop-coral); }
.zd-health-trend { font-size: 12px; color: var(--v2-text-secondary); margin-bottom: 10px; }
.zd-spark { width: 100%; height: 44px; display: block; }
.zd-narrative {
  font-family: var(--v2-font-body);
  font-size: 13.5px; line-height: 1.55;
  color: var(--v2-text-secondary);
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px dashed var(--v2-edge);
}
.zd-health-placeholder {
  font-family: var(--v2-font-body);
  font-size: 13px; color: var(--v2-text-tertiary);
  margin: 6px 0 0;
}
.zd-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px; border-radius: 999px;
  font-family: var(--v2-font-body);
  font-size: 11px; font-weight: 500;
}
.zd-pill--info    { background: var(--v2-pop-slate); color: var(--v2-text-on-dark); }
.zd-pill--concern { background: var(--v2-pop-coral-bg); color: var(--v2-pop-coral); }
.zd-spin {
  width: 10px; height: 10px;
  border: 1.5px solid oklch(100% 0 0 / 0.5);
  border-top-color: oklch(100% 0 0);
  border-radius: 50%;
  animation: zd-spin 1s linear infinite;
}
.zd-spin--dark { border-color: oklch(50% 0.04 230 / 0.4); border-top-color: var(--v2-pop-slate); }
@keyframes zd-spin { to { transform: rotate(360deg); } }
.zd-warn-chip {
  display: inline-flex; margin-top: 10px;
  padding: 6px 10px; border-radius: 999px;
  background: var(--v2-pop-ochre-bg);
  color: var(--v2-pop-ochre);
  font-family: var(--v2-font-body); font-size: 11px; font-weight: 500;
  border: none; cursor: pointer;
}
.zd-failed-row {
  display: flex; align-items: center; gap: 8px;
  margin-top: 10px; padding-top: 10px;
  border-top: 1px dashed var(--v2-edge);
}
.zd-retry-btn {
  padding: 6px 14px; border-radius: 999px;
  background: var(--v2-bg-secondary); color: var(--v2-text-primary);
  border: 1px solid var(--v2-edge);
  font-family: var(--v2-font-body); font-size: 12px; font-weight: 500;
  cursor: pointer;
}

/* ─── Section: plant collection + photo history ───────────────────────────── */

.zd-section { margin: 22px 16px 0; }
.zd-section-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0 4px; margin-bottom: 10px;
}
.zd-section-title {
  font-family: var(--v2-font-heading);
  font-style: italic; font-weight: 500;
  font-size: 17px; color: var(--v2-text-primary);
  margin: 0;
}
.zd-section-count {
  font-family: var(--v2-font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--v2-text-tertiary);
}
.zd-empty-row {
  font-family: var(--v2-font-body);
  font-size: 13px; color: var(--v2-text-tertiary);
  padding: 12px 4px; margin: 0;
}

/* ─── Plant rows ──────────────────────────────────────────────────────────── */

.zd-plant-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.zd-plant-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: var(--v2-bg-card);
  border: 1px solid var(--v2-edge);
  border-radius: var(--v2-radius-md);
  box-shadow: 0 1px 2px oklch(0% 0 0 / 0.03);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.zd-plant-row:active { background: var(--v2-bg-secondary); }
.zd-plant-row:focus-visible { outline: 2px solid var(--v2-accent-botanical); outline-offset: 2px; }
.zd-plant-thumb {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--v2-accent-botanical-bg, var(--v2-bg-secondary));
  display: flex; align-items: center; justify-content: center;
  color: var(--v2-accent-botanical);
}
.zd-plant-thumb svg { width: 18px; height: 18px; }
.zd-plant-info { flex: 1; min-width: 0; }
.zd-plant-name {
  font-family: var(--v2-font-body);
  font-size: 14px; font-weight: 500;
  color: var(--v2-text-primary);
  line-height: 1.3;
}
.zd-plant-meta {
  font-size: 11px;
  color: var(--v2-text-tertiary);
  margin-top: 2px; letter-spacing: 0.02em;
}
.zd-plant-score {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--v2-font-heading);
  font-weight: 600; font-size: 14px;
  color: var(--v2-text-on-dark);
  box-shadow: 0 2px 6px oklch(0% 0 0 / 0.12);
}
.zd-plant-score--good    { background: var(--v2-pop-sage); }
.zd-plant-score--okay    { background: var(--v2-pop-ochre); }
.zd-plant-score--concern { background: var(--v2-pop-coral); }
.zd-plant-score--pending {
  background: var(--v2-bg-secondary);
  color: var(--v2-text-tertiary);
  box-shadow: none;
  border: 1px dashed var(--v2-edge-strong);
}
.zd-plant-actions { display: flex; gap: 4px; flex-shrink: 0; }
.zd-row-icon-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: transparent; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--v2-text-tertiary);
}
.zd-row-icon-btn:active { background: var(--v2-bg-secondary); }
.zd-row-icon-btn--danger:hover,
.zd-row-icon-btn--danger:active { color: var(--v2-pop-coral); }

/* ─── Photo timeline ──────────────────────────────────────────────────────── */

.zd-timeline {
  list-style: none; margin: 0;
  padding: 6px 0 0 44px;
  position: relative;
  display: flex; flex-direction: column; gap: 18px;
}
.zd-timeline::before {
  content: "";
  position: absolute; left: 22px; top: 22px; bottom: 22px;
  width: 1.5px; background: var(--v2-edge-strong);
}
.zd-timeline-row { position: relative; display: flex; flex-direction: column; gap: 6px; }
.zd-timeline-dot {
  position: absolute; left: -32px; top: 4px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--v2-bg-card);
  border: 1.5px solid var(--v2-edge-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--v2-text-secondary);
}
.zd-timeline-dot svg { width: 13px; height: 13px; }
.zd-timeline-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
}
.zd-timeline-title {
  font-family: var(--v2-font-heading);
  font-weight: 500; font-size: 15px;
  color: var(--v2-text-primary);
}
.zd-timeline-date {
  font-family: var(--v2-font-body);
  font-size: 11px; color: var(--v2-text-tertiary);
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.zd-timeline-thumb-wrap {
  position: relative; display: inline-block; margin-top: 2px;
  padding: 0; border: none; background: transparent; cursor: pointer;
}
.zd-timeline-thumb {
  width: 96px; height: 96px;
  border-radius: 14px 4px 14px 4px;
  object-fit: cover;
  background: var(--v2-edge);
  display: block;
}
.zd-timeline-thumb-wrap::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 14px 4px 14px 4px;
  box-shadow: inset 0 0 0 2px transparent;
  transition: box-shadow 120ms ease-out;
  pointer-events: none;
}
.zd-timeline-thumb-wrap:active::after { box-shadow: inset 0 0 0 2px var(--v2-accent-botanical); }
.zd-timeline-score {
  position: absolute; right: -6px; bottom: -6px;
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--v2-font-heading);
  font-weight: 600; font-size: 13px;
  color: var(--v2-text-on-dark);
  box-shadow: 0 2px 6px oklch(0% 0 0 / 0.18);
}
.zd-timeline-score--good    { background: var(--v2-pop-sage); }
.zd-timeline-score--okay    { background: var(--v2-pop-ochre); }
.zd-timeline-score--concern { background: var(--v2-pop-coral); }
.zd-carousel-hint {
  position: absolute; top: -6px; left: -6px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--v2-bg-card);
  border: 1px solid var(--v2-edge);
  display: flex; align-items: center; justify-content: center;
  color: var(--v2-text-secondary);
  box-shadow: 0 2px 6px oklch(0% 0 0 / 0.08);
}
.zd-carousel-hint svg { width: 12px; height: 12px; }
.zd-timeline-caption {
  font-family: var(--v2-font-body);
  font-style: italic; font-size: 13px;
  color: var(--v2-text-secondary);
  line-height: 1.5;
  border-left: 2px solid var(--v2-pop-ochre);
  padding-left: 10px; margin: 4px 0 0;
}

/* ─── Compose bar (sticky bottom) ─────────────────────────────────────────── */

.zd-compose-bar {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 12px 16px max(16px, env(safe-area-inset-bottom));
  background: var(--v2-bg-card);
  border-top: 1px solid var(--v2-edge);
  display: flex; gap: 8px; align-items: stretch;
  z-index: 2;
}
.zd-compose-btn {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  height: 44px;
  border-radius: 999px;
  border: 1.5px solid var(--v2-edge-strong);
  background: var(--v2-bg-card);
  color: var(--v2-text-secondary);
  font-family: var(--v2-font-body);
  font-size: 13px; font-weight: 500;
  cursor: pointer; min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}
.zd-compose-btn:active { background: var(--v2-bg-secondary); }
.zd-compose-btn--primary {
  flex: 1.4;
  background: var(--v2-accent-botanical);
  color: var(--v2-text-on-dark);
  border-color: var(--v2-accent-botanical);
  font-weight: 600;
}
.zd-compose-btn--primary:active { background: var(--v2-accent-botanical-dark, var(--v2-accent-botanical)); }
.zd-compose-btn--icon { flex: 0 0 44px; padding: 0; }

/* ─── Per-plant health detail sheet ───────────────────────────────────────── */

.phd-head {
  flex-shrink: 0;
  padding: 12px 20px 18px;
  border-bottom: 1px solid var(--v2-edge);
}
.phd-id { display: flex; flex-direction: column; gap: 4px; padding-right: 40px; }
.phd-id-label {
  font-family: var(--v2-font-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--v2-text-secondary);
}
.phd-id-name {
  font-family: var(--v2-font-heading);
  font-style: italic; font-weight: 500;
  font-size: 22px; letter-spacing: -0.01em;
  color: var(--v2-text-primary);
  margin: 0;
}
.phd-score-card {
  margin: 18px 0 8px;
  padding: 14px 16px;
  background: var(--v2-bg-card);
  border: 1px solid var(--v2-edge);
  border-radius: var(--v2-radius-lg);
  box-shadow: 0 1px 2px oklch(0% 0 0 / 0.03);
}
.phd-score-row { display: flex; align-items: center; gap: 14px; }
.phd-score {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--v2-font-heading);
  font-weight: 600; font-size: 22px;
  color: var(--v2-text-on-dark);
  box-shadow: 0 2px 8px oklch(0% 0 0 / 0.15);
  flex-shrink: 0;
}
.phd-score--good    { background: var(--v2-pop-sage); }
.phd-score--okay    { background: var(--v2-pop-ochre); }
.phd-score--concern { background: var(--v2-pop-coral); }
.phd-score-meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.phd-score-label {
  font-family: var(--v2-font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  align-self: flex-start;
}
.phd-score-label--good    { background: var(--v2-pop-sage-bg); color: var(--v2-pop-sage); }
.phd-score-label--okay    { background: var(--v2-pop-ochre-bg); color: var(--v2-pop-ochre); }
.phd-score-label--concern { background: var(--v2-pop-coral-bg); color: var(--v2-pop-coral); }
.phd-score-when {
  font-family: var(--v2-font-body);
  font-size: 12px; color: var(--v2-text-tertiary);
}
.phd-block { margin-top: 18px; }
.phd-block-title {
  font-family: var(--v2-font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--v2-text-secondary);
  margin: 0 0 6px;
}
.phd-block p {
  font-family: var(--v2-font-body);
  font-size: 14px; line-height: 1.55;
  color: var(--v2-text-primary);
  margin: 0;
}
.phd-block--concerns p {
  padding: 10px 12px;
  background: var(--v2-pop-ochre-bg);
  border-left: 3px solid var(--v2-pop-ochre);
  border-radius: var(--v2-radius-sm);
}
.phd-block--recommendations p {
  padding: 10px 12px;
  background: var(--v2-pop-sage-bg);
  border-left: 3px solid var(--v2-pop-sage);
  border-radius: var(--v2-radius-sm);
}
.phd-empty {
  text-align: center; padding: 40px 20px;
  color: var(--v2-text-secondary);
}
.phd-empty svg { color: var(--v2-text-tertiary); margin-bottom: 12px; }
.phd-empty-title {
  font-family: var(--v2-font-heading);
  font-style: italic; font-size: 17px;
  color: var(--v2-text-primary);
  margin: 0 0 8px;
}
.phd-empty-sub {
  font-family: var(--v2-font-body);
  font-size: 13px; color: var(--v2-text-tertiary);
  line-height: 1.5; margin: 0;
}

/* ─── Suggestions sheet (kept minimal — pre-existing surface) ─────────────── */

.zone-suggestions-sheet .sheet-scroll {
  flex: 1; overflow-y: auto;
  padding: 0 16px 28px;
}
.zone-suggestions-sheet .sheet-header {
  padding: 8px 20px 14px;
  border-bottom: 1px solid var(--v2-edge);
}
.zone-suggestions-sheet .sheet-header h2 {
  font-family: var(--v2-font-heading);
  font-style: italic; font-weight: 500;
  font-size: 22px; color: var(--v2-text-primary);
  margin: 0;
}
.zone-suggestions-sheet .grab {
  width: 40px; height: 4px; border-radius: 999px;
  background: var(--v2-edge-strong);
  margin: 10px auto 0;
}
.zone-suggestions-sheet .sheet-close {
  position: absolute; top: 18px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--v2-bg-secondary);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--v2-text-secondary);
  z-index: 3;
}

/* ─── Zone form: section titles + optional label ──────────────────────────── */

.zone-form-section-title {
  font-family: var(--v2-font-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--v2-text-secondary);
  margin: 4px 0 12px;
  padding-top: 4px;
}
.zone-form-section-title + .form-field { margin-top: 0; }
.zone-form .form-field + .zone-form-section-title { margin-top: 22px; }

.form-label-optional {
  font-family: var(--v2-font-body);
  font-size: 11px; font-weight: 400;
  color: var(--v2-text-tertiary);
  text-transform: none; letter-spacing: 0;
  margin-left: 6px;
}
