.pgw-availability {
  --pgw-surface: #fffdf7;
  --pgw-panel: #fff;
  --pgw-border: #dccfb7;
  --pgw-text: #2f2418;
  --pgw-muted: #6e5e4d;
  --pgw-accent: #a35a1d;
  --pgw-available-bg: #f3ede2;
  --pgw-available-border: #d6c3a2;
  background:
    radial-gradient(circle at top right, rgba(163, 90, 29, 0.08), transparent 30%),
    linear-gradient(180deg, #fffcf6 0%, #f6efe3 100%);
  border: 1px solid var(--pgw-border);
  border-radius: 24px;
  color: var(--pgw-text);
  margin: 2rem 0;
  padding: 1.5rem;
  position: relative;
}

.pgw-availability.is-booking-picker {
  box-sizing: border-box;
  margin-left: 50%;
  margin-right: 0;
  max-width: none;
  transform: translateX(-50%);
  width: min(1180px, calc(100vw - 32px));
}

.pgw-availability:not([data-pgw-hydrated]) [data-pgw-booked-intro],
.pgw-availability:not([data-pgw-hydrated]) [data-pgw-booked-list],
.pgw-availability:not([data-pgw-hydrated]) [data-pgw-selection-list] {
  opacity: 0;
}

.pgw-availability:not([data-pgw-hydrated]) [data-pgw-slot],
.pgw-availability:not([data-pgw-hydrated]) .pgw-availability__slots,
.pgw-availability:not([data-pgw-hydrated]) [data-pgw-selection] {
  pointer-events: none;
  user-select: none;
}

.pgw-availability:not([data-pgw-hydrated]) [data-pgw-slot] {
  visibility: hidden;
}

.pgw-availability:not([data-pgw-hydrated]) .pgw-availability__reload-veil {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.pgw-availability:not([data-pgw-hydrated]) {
  min-height: 560px;
}

.pgw-availability:not([data-pgw-hydrated]) > :not(.pgw-availability__reload-veil) {
  display: none !important;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.pgw-availability[data-pgw-hydrated] [data-pgw-booked-intro],
.pgw-availability[data-pgw-hydrated] [data-pgw-booked-list],
.pgw-availability[data-pgw-hydrated] [data-pgw-selection-list] {
  opacity: 1;
  transition: opacity 140ms ease-in;
}

.pgw-availability__reload-veil {
  align-items: center;
  background: rgba(255, 252, 246, 0.94);
  border-radius: inherit;
  color: var(--pgw-muted);
  display: none;
  font-size: 0.95rem;
  font-weight: 600;
  inset: 0;
  justify-content: center;
  letter-spacing: 0.01em;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 160ms ease-in;
  z-index: 50;
}

.pgw-availability__reload-veil.is-visible {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.pgw-availability__reload-veil-inner {
  align-items: center;
  background: #fff;
  border: 1px solid var(--pgw-border);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(47, 36, 24, 0.08);
  display: inline-flex;
  gap: 0.65rem;
  padding: 0.65rem 1.15rem;
}

.pgw-availability__reload-veil-dot {
  animation: pgw-reload-veil-pulse 1.1s ease-in-out infinite;
  background: var(--pgw-accent);
  border-radius: 50%;
  display: inline-block;
  height: 0.55rem;
  width: 0.55rem;
}

@keyframes pgw-reload-veil-pulse {
  0%, 100% { opacity: 0.35; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* --------------------------------------------------------------------------
 * Unified slot lozenge
 * One component used by the slot picker, booked rail, selection list,
 * checkout review, and dashboard bookings. Variants set a single accent
 * colour via --pgw-lozenge-accent and vibrant soft backgrounds via
 * --pgw-lozenge-bg. Sizes: compact (chip), row (default), expanded (payment).
 * ----------------------------------------------------------------------- */

.pgw-slot-lozenge {
  --pgw-lozenge-accent: #6e5e4d;
  --pgw-lozenge-accent-strong: #3a2f22;
  --pgw-lozenge-bg: #f6f1e6;
  --pgw-lozenge-bg-strong: #ebe3d1;
  --pgw-lozenge-border: #d6cab0;
  --pgw-lozenge-ink: #3a2f22;
  --pgw-lozenge-muted: #6e5e4d;
  align-items: center;
  background: var(--pgw-lozenge-bg);
  border: 1px solid var(--pgw-lozenge-border);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(47, 36, 24, 0.05);
  box-sizing: border-box;
  color: var(--pgw-lozenge-ink);
  display: inline-flex;
  font-family: inherit;
  font-weight: 600;
  gap: 0.55rem;
  line-height: 1.15;
  max-width: 100%;
  min-width: 0;
  padding: 0.4rem 0.85rem 0.4rem 0.4rem;
  position: relative;
  text-align: left;
  transition: background 140ms ease, border-color 140ms ease, box-shadow 160ms ease, transform 140ms ease;
}

.pgw-slot-lozenge__indicator {
  align-items: center;
  background: var(--pgw-lozenge-accent);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  height: 1.75rem;
  justify-content: center;
  width: 1.75rem;
}

.pgw-slot-lozenge__glyph {
  color: inherit;
  display: block;
}

.pgw-slot-lozenge__body {
  align-items: baseline;
  column-gap: 0.65rem;
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  min-width: 0;
  row-gap: 0.1rem;
}

.pgw-slot-lozenge__time {
  color: var(--pgw-lozenge-ink);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.pgw-slot-lozenge__time small {
  font-size: 0.78em;
  font-weight: 700;
}

.pgw-slot-lozenge__status {
  color: var(--pgw-lozenge-accent-strong);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pgw-slot-lozenge__extra {
  color: var(--pgw-lozenge-muted);
  display: flex;
  flex: 1 0 100%;
  flex-direction: column;
  font-size: 0.85rem;
  font-weight: 500;
  gap: 0.15rem;
  margin-top: 0.25rem;
}

.pgw-slot-lozenge__extra-line {
  display: block;
}

/* Sizes */

.pgw-slot-lozenge--compact {
  gap: 0.4rem;
  padding: 0.25rem 0.7rem 0.25rem 0.3rem;
}

.pgw-slot-lozenge--compact .pgw-slot-lozenge__indicator {
  height: 1.35rem;
  width: 1.35rem;
}

.pgw-slot-lozenge--compact .pgw-slot-lozenge__glyph {
  height: 12px;
  width: 12px;
}

.pgw-slot-lozenge--compact .pgw-slot-lozenge__time {
  font-size: 0.85rem;
}

.pgw-slot-lozenge--expanded {
  border-radius: 22px;
  padding: 0.7rem 1rem 0.75rem 0.6rem;
  width: 100%;
}

.pgw-slot-lozenge--expanded .pgw-slot-lozenge__indicator {
  height: 2.1rem;
  width: 2.1rem;
}

.pgw-slot-lozenge--expanded .pgw-slot-lozenge__glyph {
  height: 18px;
  width: 18px;
}

.pgw-slot-lozenge--expanded .pgw-slot-lozenge__time {
  font-size: 1.05rem;
}

/* Status variants. Doubled class selector lifts specificity above legacy
 * .pgw-slot--{status} rules that appear later in this file. */

.pgw-slot-lozenge.pgw-slot-lozenge--open {
  --pgw-lozenge-accent: #4da648;
  --pgw-lozenge-accent-strong: #2e6b2b;
  --pgw-lozenge-bg: #ecf6e5;
  --pgw-lozenge-bg-strong: #d7ebd0;
  --pgw-lozenge-border: #b4d69c;
  --pgw-lozenge-ink: #2e6b2b;
  --pgw-lozenge-muted: #4d7a43;
  background: var(--pgw-lozenge-bg);
  border-color: var(--pgw-lozenge-border);
  color: var(--pgw-lozenge-ink);
}

.pgw-slot-lozenge.pgw-slot-lozenge--selected {
  --pgw-lozenge-accent: #2f8a3a;
  --pgw-lozenge-accent-strong: #1f5a24;
  --pgw-lozenge-bg: #d7ebd0;
  --pgw-lozenge-bg-strong: #bddbb2;
  --pgw-lozenge-border: #8cc070;
  --pgw-lozenge-ink: #1f5a24;
  --pgw-lozenge-muted: #3f7a3a;
  background: var(--pgw-lozenge-bg);
  border-color: var(--pgw-lozenge-border);
  box-shadow: 0 2px 6px rgba(47, 110, 44, 0.18);
  color: var(--pgw-lozenge-ink);
}

.pgw-slot-lozenge.pgw-slot-lozenge--yours,
.pgw-slot-lozenge.pgw-slot-lozenge--recurring {
  --pgw-lozenge-accent: #c96a23;
  --pgw-lozenge-accent-strong: #7a3a0e;
  --pgw-lozenge-bg: #fbe6d4;
  --pgw-lozenge-bg-strong: #f4cfac;
  --pgw-lozenge-border: #e9b585;
  --pgw-lozenge-ink: #7a3a0e;
  --pgw-lozenge-muted: #a15d2a;
  background: var(--pgw-lozenge-bg);
  border-color: var(--pgw-lozenge-border);
  color: var(--pgw-lozenge-ink);
}

.pgw-slot-lozenge.pgw-slot-lozenge--yours-protected {
  --pgw-lozenge-accent: #2f8a3a;
  --pgw-lozenge-accent-strong: #1f5a24;
  --pgw-lozenge-bg: #dff0d8;
  --pgw-lozenge-bg-strong: #c3e2b8;
  --pgw-lozenge-border: #8fc47c;
  --pgw-lozenge-ink: #1f5a24;
  --pgw-lozenge-muted: #3f7a3a;
  background: var(--pgw-lozenge-bg);
  border-color: var(--pgw-lozenge-border);
  color: var(--pgw-lozenge-ink);
}

.pgw-slot-lozenge.pgw-slot-lozenge--recurring .pgw-slot-lozenge__indicator {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--pgw-lozenge-accent-strong);
}

.pgw-slot-lozenge.pgw-slot-lozenge--hold,
.pgw-slot-lozenge.pgw-slot-lozenge--reserved,
.pgw-slot-lozenge.pgw-slot-lozenge--grace {
  --pgw-lozenge-accent: #d98a1a;
  --pgw-lozenge-accent-strong: #7a5410;
  --pgw-lozenge-bg: #fbecc7;
  --pgw-lozenge-bg-strong: #f4d989;
  --pgw-lozenge-border: #e9c570;
  --pgw-lozenge-ink: #7a5410;
  --pgw-lozenge-muted: #9c6d18;
  background: var(--pgw-lozenge-bg);
  border-color: var(--pgw-lozenge-border);
  color: var(--pgw-lozenge-ink);
}

.pgw-slot-lozenge.pgw-slot-lozenge--from {
  --pgw-lozenge-accent: #c55a79;
  --pgw-lozenge-accent-strong: #802f4a;
  --pgw-lozenge-bg: #fae0e7;
  --pgw-lozenge-bg-strong: #f4c3d0;
  --pgw-lozenge-border: #e3a3b5;
  --pgw-lozenge-ink: #802f4a;
  --pgw-lozenge-muted: #a55268;
  background: var(--pgw-lozenge-bg);
  border-color: var(--pgw-lozenge-border);
  color: var(--pgw-lozenge-ink);
}

.pgw-slot-lozenge.pgw-slot-lozenge--to {
  --pgw-lozenge-accent: #2a9a93;
  --pgw-lozenge-accent-strong: #1f615c;
  --pgw-lozenge-bg: #d9f1ef;
  --pgw-lozenge-bg-strong: #b3e1dc;
  --pgw-lozenge-border: #8dcac4;
  --pgw-lozenge-ink: #1f615c;
  --pgw-lozenge-muted: #3a7a75;
  background: var(--pgw-lozenge-bg);
  border-color: var(--pgw-lozenge-border);
  color: var(--pgw-lozenge-ink);
}

.pgw-slot-lozenge.pgw-slot-lozenge--taken,
.pgw-slot-lozenge.pgw-slot-lozenge--failed {
  --pgw-lozenge-accent: #7a7366;
  --pgw-lozenge-accent-strong: #4d483e;
  --pgw-lozenge-bg: #ece8e0;
  --pgw-lozenge-bg-strong: #d8d2c4;
  --pgw-lozenge-border: #c8c0b0;
  --pgw-lozenge-ink: #4d483e;
  --pgw-lozenge-muted: #746d5f;
  background: var(--pgw-lozenge-bg);
  border-color: var(--pgw-lozenge-border);
  color: var(--pgw-lozenge-ink);
  opacity: 0.88;
}

.pgw-slot-lozenge.pgw-slot-lozenge--failed {
  text-decoration: line-through;
  text-decoration-color: rgba(77, 72, 62, 0.55);
  text-decoration-thickness: 1.5px;
}

.pgw-slot-lozenge.pgw-slot-lozenge--past {
  --pgw-lozenge-accent: #8f8877;
  --pgw-lozenge-accent-strong: #615a4c;
  --pgw-lozenge-bg: #f2eee5;
  --pgw-lozenge-bg-strong: #e4ddce;
  --pgw-lozenge-border: #d0c9b6;
  --pgw-lozenge-ink: #615a4c;
  --pgw-lozenge-muted: #847c6c;
  background: var(--pgw-lozenge-bg);
  border-color: var(--pgw-lozenge-border);
  color: var(--pgw-lozenge-ink);
  opacity: 0.78;
}

/* Button wrappers inherit the lozenge look and gain interaction affordance */

button.pgw-slot-lozenge,
a.pgw-slot-lozenge {
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
}

button.pgw-slot-lozenge--open:hover,
button.pgw-slot-lozenge--open:focus-visible,
a.pgw-slot-lozenge--open:hover,
a.pgw-slot-lozenge--open:focus-visible {
  background: var(--pgw-lozenge-bg-strong);
  border-color: var(--pgw-lozenge-accent);
  box-shadow: 0 4px 10px rgba(77, 166, 72, 0.22);
  outline: none;
  transform: translateY(-1px);
}

button.pgw-slot-lozenge--yours:hover,
button.pgw-slot-lozenge--yours:focus-visible,
a.pgw-slot-lozenge--yours:hover,
a.pgw-slot-lozenge--yours:focus-visible {
  background: var(--pgw-lozenge-bg-strong);
  border-color: var(--pgw-lozenge-accent);
  box-shadow: 0 4px 10px rgba(201, 106, 35, 0.22);
  outline: none;
  transform: translateY(-1px);
}

button.pgw-slot-lozenge--hold:hover,
button.pgw-slot-lozenge--hold:focus-visible,
button.pgw-slot-lozenge--reserved:hover,
button.pgw-slot-lozenge--reserved:focus-visible {
  background: var(--pgw-lozenge-bg-strong);
  border-color: var(--pgw-lozenge-accent);
  box-shadow: 0 4px 10px rgba(217, 138, 26, 0.22);
  outline: none;
  transform: translateY(-1px);
}

button.pgw-slot-lozenge[aria-pressed="true"] {
  border-color: var(--pgw-lozenge-accent);
  box-shadow: 0 0 0 2px var(--pgw-lozenge-accent);
}

button.pgw-slot-lozenge:disabled,
button.pgw-slot-lozenge[aria-disabled="true"] {
  cursor: default;
}

button.pgw-slot-lozenge--taken:disabled,
button.pgw-slot-lozenge--taken[aria-disabled="true"],
button.pgw-slot-lozenge--failed:disabled,
button.pgw-slot-lozenge--failed[aria-disabled="true"] {
  transform: none;
}

button.pgw-slot-lozenge:focus-visible {
  outline: 2px solid var(--pgw-lozenge-accent-strong);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .pgw-slot-lozenge,
  button.pgw-slot-lozenge {
    transition: none;
  }
}

.pgw-availability__header {
  margin-bottom: 1.25rem;
}

.pgw-availability__eyebrow {
  color: var(--pgw-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}

.pgw-availability__title {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.1;
  margin: 0 0 0.75rem;
}

.pgw-availability__intro,
.pgw-availability__window,
.pgw-availability__snapshot-note {
  color: var(--pgw-muted);
  margin: 0.25rem 0 0;
}

.pgw-availability__readiness {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(220, 207, 183, 0.95);
  border-radius: 14px;
  display: grid;
  gap: 0.45rem;
  margin-top: 0.85rem;
  padding: 0.7rem 0.8rem;
}

.pgw-availability__readiness.is-loading {
  border-style: dashed;
}

.pgw-availability__readiness.is-ready {
  background: rgba(239, 248, 240, 0.92);
  border-color: rgba(88, 141, 92, 0.34);
}

.pgw-availability__readiness.is-blocked {
  background: rgba(255, 249, 238, 0.95);
  border-color: rgba(183, 119, 58, 0.34);
}

.pgw-availability__readiness.is-warning {
  background: rgba(244, 247, 250, 0.92);
  border-color: rgba(114, 132, 152, 0.34);
}

.pgw-availability__readiness-eyebrow {
  color: var(--pgw-accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.pgw-availability__readiness-title {
  font-size: 1.05rem;
  margin: 0;
}

.pgw-availability__readiness-message {
  color: var(--pgw-muted);
  margin: 0;
}

.pgw-availability__readiness-steps {
  margin: 0.1rem 0 0;
  padding-left: 1.1rem;
}

.pgw-availability__readiness-steps li {
  color: var(--pgw-text);
  font-size: 0.88rem;
  line-height: 1.35;
  margin: 0.15rem 0;
}

.pgw-availability__readiness-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pgw-availability__readiness-action {
  text-decoration: none;
}

.pgw-availability__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.pgw-availability__legend-bar {
  align-items: center;
  display: flex;
  gap: 0.8rem;
  justify-content: space-between;
  margin-top: 0.75rem;
}

.pgw-availability__legend--key {
  margin-top: 0;
  margin-bottom: 0.2rem;
}

.pgw-availability__checkout-launcher {
  align-items: center;
  background: #eef3f8;
  border: 1px solid #cddaea;
  border-radius: 999px;
  color: #8a97a5;
  cursor: not-allowed;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 0.84rem;
  font-weight: 700;
  gap: 0.42rem;
  justify-content: center;
  min-height: 36px;
  padding: 0.45rem 0.85rem;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease, box-shadow 120ms ease;
}

.pgw-availability__checkout-launcher.is-active {
  background: linear-gradient(180deg, #e9f6fa 0%, #dceff5 100%);
  border-color: #7bb0c4;
  box-shadow: 0 6px 18px rgba(41, 94, 114, 0.12);
  color: #18576b;
  cursor: pointer;
}

.pgw-availability__checkout-launcher.is-active:hover,
.pgw-availability__checkout-launcher.is-active:focus-visible {
  background: linear-gradient(180deg, #eef9fc 0%, #e2f3f8 100%);
  border-color: #4e96af;
  color: #0f4f62;
  outline: none;
}

.pgw-legend-chip {
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 700;
  padding: 0.42rem 0.7rem;
}

.pgw-legend-chip--available {
  background: var(--pgw-available-bg);
  color: #6a451d;
}

.pgw-legend-chip--held-self {
  background: #f4f0e6;
  border: 1px dashed #8b7557;
  color: #5b4731;
}

.pgw-legend-chip--held-self-protected {
  background:
    linear-gradient(180deg, #f7f2e8 0%, #ece2cf 100%);
  border: 2px solid #5b4731;
  color: #4c3a25;
}

.pgw-legend-chip--held-self-recurring {
  background:
    linear-gradient(180deg, #f8f2eb 0%, #ead7bf 100%);
  border: 2px solid #8a4f1a;
  color: #5a3413;
}

.pgw-legend-chip--held-self-checkout {
  background:
    linear-gradient(180deg, #fbf6ea 0%, #f1e4b9 100%);
  border: 2px solid #7d6a2c;
  color: #5e4d17;
}

.pgw-legend-chip--held-other {
  background:
    repeating-linear-gradient(
      -45deg,
      #efe9dd,
      #efe9dd 8px,
      #e3dbcd 8px,
      #e3dbcd 16px
    );
  color: #5f564c;
}

.pgw-legend-chip--unavailable {
  background: #f2ebe4;
  border: 1px solid #a59a8c;
  color: #75695d;
}

.pgw-availability__stats {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-top: 1.25rem;
}

.pgw-availability__toolbar {
  align-items: end;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 1fr);
  margin-top: 1.4rem;
}

.pgw-availability__toolbar-eyebrow {
  color: var(--pgw-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 0.35rem;
  text-transform: uppercase;
}

.pgw-availability__toolbar-text {
  color: var(--pgw-muted);
  margin: 0;
  max-width: 42rem;
}

.pgw-availability__toolbar-actions {
  display: grid;
  gap: 0.75rem;
  justify-items: end;
}

.pgw-range-preset {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.pgw-range-preset__button,
.pgw-range-window__button {
  appearance: none;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--pgw-border);
  border-radius: 999px;
  color: var(--pgw-text);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.55rem 0.9rem;
}

.pgw-range-preset__button:hover,
.pgw-range-preset__button:focus-visible,
.pgw-range-window__button:hover,
.pgw-range-window__button:focus-visible {
  border-color: var(--pgw-accent);
  box-shadow: 0 8px 18px rgba(72, 44, 20, 0.1);
  outline: none;
}

.pgw-range-preset__button.is-active {
  background: #fff;
  border-color: var(--pgw-accent);
  color: #6a451d;
}

.pgw-range-window {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}

.pgw-range-window__summary {
  color: var(--pgw-muted);
  font-size: 0.92rem;
}

.pgw-move-mode {
  display: grid;
  gap: 0.4rem;
  justify-items: end;
}

.pgw-move-mode__button {
  appearance: none;
  background: rgba(255, 255, 255, 0.72);
  border: 1px dashed #8b7557;
  border-radius: 999px;
  color: #5b4731;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.55rem 0.95rem;
}

.pgw-move-mode__button.is-active {
  background: #f4f0e6;
  box-shadow: 0 8px 18px rgba(72, 44, 20, 0.1);
}

.pgw-move-mode__note {
  color: var(--pgw-muted);
  font-size: 0.84rem;
  margin: 0;
  max-width: 22rem;
  text-align: right;
}

.pgw-range-window__button[disabled] {
  cursor: not-allowed;
  opacity: 0.4;
}

.pgw-stat {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--pgw-border);
  border-radius: 18px;
  padding: 0.9rem 1rem;
}

.pgw-stat__label {
  color: var(--pgw-muted);
  display: block;
  font-size: 0.84rem;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.pgw-stat__value {
  font-size: 1.15rem;
}

.pgw-availability__day {
  margin-top: 1.5rem;
}

.pgw-availability__layout {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.9fr);
  margin-top: 1.5rem;
}

.pgw-booked-accordion {
  min-width: 0;
}

.pgw-booked-accordion__summary {
  align-items: center;
  background: #fff;
  border: 1px solid var(--pgw-border);
  border-radius: 14px;
  color: var(--pgw-text);
  cursor: pointer;
  display: flex;
  font-weight: 800;
  justify-content: space-between;
  list-style: none;
  margin-bottom: 0.65rem;
  padding: 0.75rem 0.9rem;
}

.pgw-booked-accordion__summary::-webkit-details-marker {
  display: none;
}

.pgw-booked-accordion__summary::after {
  content: "+";
  font-size: 1.2rem;
  line-height: 1;
}

.pgw-booked-accordion[open] .pgw-booked-accordion__summary::after {
  content: "-";
}

.pgw-booked-accordion__hint {
  color: var(--pgw-muted);
  font-size: 0.78rem;
  font-weight: 600;
  margin-left: auto;
  margin-right: 0.75rem;
}

.pgw-availability__main {
  min-width: 0;
}

.pgw-day-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.pgw-day-nav__button {
  appearance: none;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--pgw-border);
  border-radius: 999px;
  color: var(--pgw-text);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.55rem 0.9rem;
}

.pgw-day-nav__button.is-active,
.pgw-day-nav__button:hover,
.pgw-day-nav__button:focus-visible {
  background: #fff;
  border-color: var(--pgw-accent);
  box-shadow: 0 8px 18px rgba(72, 44, 20, 0.1);
  outline: none;
}

.pgw-availability__day-title {
  border-bottom: 1px solid var(--pgw-border);
  font-size: 1.2rem;
  margin: 0 0 0.85rem;
  padding-bottom: 0.5rem;
}

.pgw-availability__day {
  display: none;
}

.pgw-availability__day.is-active {
  display: block;
}

.pgw-availability__slots {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.pgw-slot {
  appearance: none;
  background: var(--pgw-panel);
  border: 1px solid var(--pgw-border);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(72, 44, 20, 0.08);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-height: 124px;
  padding: 1rem;
  text-align: left;
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.pgw-slot--available {
  background: var(--pgw-available-bg);
  border-color: var(--pgw-available-border);
}

.pgw-slot--held {
  background: #f5f0ff;
  border-color: #d5c5ff;
}

.pgw-slot--held-self {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(244, 240, 230, 0.95));
  border-color: #8b7557;
  border-style: dashed;
}

.pgw-slot--held-self-protected,
.pgw-slot--paid {
  background:
    linear-gradient(180deg, rgba(246, 255, 242, 0.96), rgba(190, 226, 178, 0.98));
  border: 3px solid #1f7a32;
  box-shadow:
    inset 5px 0 0 #1f7a32,
    inset 0 0 0 2px rgba(31, 122, 50, 0.12),
    0 8px 18px rgba(31, 122, 50, 0.1);
}

.pgw-slot--held-self-recurring {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(234, 215, 191, 0.98));
  border: 2px solid #8a4f1a;
  box-shadow: inset 0 0 0 2px rgba(138, 79, 26, 0.08);
}

.pgw-slot--recurring-moved {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(226, 239, 245, 0.98));
  border-color: #2f6f88;
  box-shadow: inset 0 0 0 2px rgba(47, 111, 136, 0.1);
}

.pgw-slot--held-self-checkout {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 228, 185, 0.98));
  border: 2px solid #7d6a2c;
  box-shadow: inset 0 0 0 2px rgba(125, 106, 44, 0.08);
}

.pgw-slot--held-other {
  background: #f5f0ff;
  background:
    repeating-linear-gradient(
      -45deg,
      #f3eee5,
      #f3eee5 10px,
      #e8e0d3 10px,
      #e8e0d3 20px
    );
  border-color: #b7aa95;
}

.pgw-slot--unavailable {
  background: #f6f1ea;
  border-color: #ded4c8;
  border-style: dotted;
  cursor: not-allowed;
  opacity: 0.72;
}

.pgw-slot:hover,
.pgw-slot:focus-visible {
  border-color: var(--pgw-accent);
  box-shadow: 0 14px 28px rgba(72, 44, 20, 0.14);
  outline: none;
  transform: translateY(-1px);
}

.pgw-slot--held-self:hover,
.pgw-slot--held-self:focus-visible,
.pgw-slot--held-self-protected:hover,
.pgw-slot--held-self-protected:focus-visible,
.pgw-slot--paid:hover,
.pgw-slot--paid:focus-visible,
.pgw-slot--held-self-recurring:hover,
.pgw-slot--held-self-recurring:focus-visible,
.pgw-slot--held-self-checkout:hover,
.pgw-slot--held-self-checkout:focus-visible,
.pgw-slot--held-other:hover,
.pgw-slot--held-other:focus-visible,
.pgw-slot--unavailable:hover,
.pgw-slot--unavailable:focus-visible {
  border-color: inherit;
  box-shadow: 0 12px 32px rgba(72, 44, 20, 0.08);
  transform: none;
}

.pgw-slot.pgw-slot--held-self {
  cursor: pointer;
}

.pgw-slot.pgw-slot--held-self:hover,
.pgw-slot.pgw-slot--held-self:focus-visible {
  border-color: #8b7557;
  box-shadow: 0 14px 28px rgba(72, 44, 20, 0.14);
  transform: translateY(-1px);
}

.pgw-slot.pgw-slot--held-self-recurring {
  cursor: pointer;
}

.pgw-slot.pgw-slot--held-self-protected[aria-disabled="false"] {
  cursor: pointer;
}

.pgw-slot.pgw-slot--held-self-protected[aria-disabled="false"]:hover,
.pgw-slot.pgw-slot--held-self-protected[aria-disabled="false"]:focus-visible,
.pgw-slot.pgw-slot--paid[aria-disabled="false"]:hover,
.pgw-slot.pgw-slot--paid[aria-disabled="false"]:focus-visible {
  border-color: #2f8a3a;
  box-shadow: 0 14px 28px rgba(47, 138, 58, 0.14);
  transform: translateY(-1px);
}

.pgw-slot.pgw-slot--held-self-recurring:hover,
.pgw-slot.pgw-slot--held-self-recurring:focus-visible {
  border-color: #8a4f1a;
  box-shadow: 0 14px 28px rgba(72, 44, 20, 0.14);
  transform: translateY(-1px);
}

.pgw-slot.is-selected {
  border-color: #8c3f00;
  box-shadow: 0 0 0 2px rgba(140, 63, 0, 0.18), 0 14px 28px rgba(72, 44, 20, 0.14);
}

.pgw-slot.is-move-origin {
  border-color: #5b4731;
  box-shadow: 0 0 0 2px rgba(91, 71, 49, 0.18), 0 14px 28px rgba(72, 44, 20, 0.14);
}

.pgw-slot__time {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.pgw-slot__status {
  color: var(--pgw-accent);
  font-weight: 600;
  margin: 0 0 0.2rem;
}

.pgw-slot--held-self .pgw-slot__status,
.pgw-slot--held-self-protected .pgw-slot__status,
.pgw-slot--paid .pgw-slot__status,
.pgw-slot--held-self-recurring .pgw-slot__status,
.pgw-slot--held-self-checkout .pgw-slot__status,
.pgw-slot--held-other .pgw-slot__status,
.pgw-slot--unavailable .pgw-slot__status {
  color: #4e4438;
}

.pgw-slot__recurring-override-badge {
  align-items: center;
  align-self: flex-start;
  background: #e7f2f6;
  border: 1px solid #8fb9c7;
  border-radius: 999px;
  color: #245a70;
  display: inline-flex;
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1;
  margin-top: 0.18rem;
  padding: 0.18rem 0.4rem;
  text-transform: uppercase;
}

.pgw-slot__meta {
  color: var(--pgw-muted);
  font-size: 0.95rem;
  margin: 0;
}

.pgw-selection {
  align-self: start;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--pgw-border);
  border-radius: 20px;
  padding: 1rem 1.1rem;
  position: sticky;
  top: 1rem;
}

.pgw-selection__eyebrow {
  color: var(--pgw-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 0.35rem;
  text-transform: uppercase;
}

.pgw-selection__title {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.pgw-selection__intro {
  color: var(--pgw-muted);
  font-size: 0.95rem;
  margin: 0 0 0.8rem;
}

.pgw-selection__list {
  display: grid;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pgw-selection__item,
.pgw-selection__empty {
  background: #fff;
  border: 1px solid var(--pgw-border);
  border-radius: 14px;
  color: var(--pgw-text);
  padding: 0.75rem 0.8rem;
}

.pgw-selection__item {
  display: grid;
  gap: 0.75rem;
}

.pgw-selection__empty {
  color: var(--pgw-muted);
}

.pgw-selection__item-header {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.7rem;
  justify-content: space-between;
}

.pgw-selection__day {
  font-size: 0.98rem;
}

.pgw-selection__day-meta {
  color: var(--pgw-muted);
  font-size: 0.88rem;
}

.pgw-selection__segments {
  display: grid;
  gap: 0.55rem;
}

.pgw-selection__segment {
  background: #fbf8f2;
  border: 1px solid rgba(220, 207, 183, 0.9);
  border-radius: 12px;
  display: grid;
  gap: 0.2rem;
  padding: 0.65rem 0.75rem;
}

.pgw-selection__segment-time {
  font-weight: 700;
}

.pgw-selection__segment-detail {
  color: var(--pgw-muted);
  font-size: 0.88rem;
}

.pgw-selection__footer {
  border-top: 1px solid var(--pgw-border);
  margin-top: 0.9rem;
  padding-top: 0.75rem;
}

.pgw-selection__duration {
  color: var(--pgw-muted);
  margin: 0.45rem 0 0;
}

.pgw-selection__note {
  color: var(--pgw-muted);
  font-size: 0.88rem;
  margin: 0.75rem 0 0;
}

.pgw-selection__move-summary {
  background: #f7f2e8;
  border: 1px dashed #8b7557;
  border-radius: 14px;
  margin-bottom: 0.9rem;
  padding: 0.8rem 0.85rem;
}

.pgw-selection__recovery--sidebar {
  margin-bottom: 0.7rem;
  padding: 0.7rem 0.78rem;
}

.pgw-selection__move-title {
  color: #5b4731;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 0.4rem;
  text-transform: uppercase;
}

.pgw-selection__move-copy {
  color: var(--pgw-muted);
  font-size: 0.9rem;
  margin: 0;
}

.pgw-selection__move-status {
  background: rgba(19, 111, 138, 0.08);
  border: 1px solid rgba(19, 111, 138, 0.2);
  border-radius: 10px;
  color: #155066;
  font-size: 0.82rem;
  font-weight: 600;
  margin: 0.55rem 0 0;
  padding: 0.34rem 0.5rem;
}

.pgw-selection__move-status.is-success {
  background: rgba(90, 138, 60, 0.1);
  border-color: rgba(90, 138, 60, 0.28);
  color: #2d5f1f;
}

.pgw-selection__move-status.is-error {
  background: rgba(163, 90, 29, 0.12);
  border-color: rgba(163, 90, 29, 0.32);
  color: #7d3f0f;
}

.pgw-selection__move-list {
  display: grid;
  gap: 0.45rem;
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
}

.pgw-selection__move-item {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(19, 111, 138, 0.2);
  border-radius: 10px;
  display: grid;
  gap: 0.24rem;
  padding: 0.45rem 0.55rem;
}

.pgw-selection__move-item--pending {
  border-color: rgba(139, 117, 87, 0.45);
  border-style: dashed;
}

.pgw-selection__move-item-tag {
  align-items: center;
  background: rgba(19, 111, 138, 0.12);
  border-radius: 999px;
  color: #0f6079;
  display: inline-flex;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1;
  padding: 0.16rem 0.4rem;
  text-transform: uppercase;
  width: fit-content;
}

.pgw-selection__move-line {
  color: #254156;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}

.pgw-selection__move-line--from {
  color: #3f3222;
}

.pgw-selection__move-line--to {
  color: #165166;
}

.pgw-selection__move-line--pending {
  color: #6a4e2d;
}

.pgw-selection__move-actions {
  display: flex;
  gap: 0.35rem;
  justify-content: flex-end;
  margin-top: 0.06rem;
}

.pgw-selection__move-apply {
  align-items: center;
  background: linear-gradient(180deg, #1d7f9f 0%, #136f8a 100%);
  border: 1px solid rgba(13, 92, 118, 0.9);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.73rem;
  font-weight: 700;
  gap: 0.26rem;
  line-height: 1;
  padding: 0.24rem 0.5rem;
}

.pgw-selection__move-apply:hover,
.pgw-selection__move-apply:focus-visible {
  box-shadow: 0 0 0 2px rgba(19, 111, 138, 0.18);
  outline: none;
}

.pgw-selection__move-apply:disabled {
  cursor: default;
  opacity: 0.62;
}

.pgw-selection__move-remove {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(143, 165, 182, 0.72);
  border-radius: 999px;
  color: #5f7283;
  cursor: pointer;
  display: inline-flex;
  height: 1.55rem;
  justify-content: center;
  padding: 0;
  width: 1.55rem;
}

.pgw-selection__move-remove:hover,
.pgw-selection__move-remove:focus-visible {
  border-color: rgba(171, 55, 55, 0.58);
  color: #a13737;
  outline: none;
}

.pgw-selection__move-remove:disabled {
  cursor: default;
  opacity: 0.62;
}

.pgw-selection__selected-row {
  align-items: center;
  display: flex;
  gap: 0.45rem;
  justify-content: space-between;
}

.pgw-selection__item--slot {
  gap: 0.5rem;
  padding: 0.5rem 0.6rem;
}

.pgw-selection__window-body--selected {
  align-items: center;
}

.pgw-selection__window-meta {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.pgw-selection__selected-time {
  font-weight: 700;
  margin: 0;
}

.pgw-selection__selected-detail {
  color: var(--pgw-muted);
  font-size: 0.84rem;
  margin: 0.2rem 0 0;
}

.pgw-selection__selected-remove {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(173, 197, 214, 0.9);
  border-radius: 999px;
  color: #5f7283;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  height: 1.3rem;
  justify-content: center;
  padding: 0;
  width: 1.3rem;
}

.pgw-selection__selected-remove:hover,
.pgw-selection__selected-remove:focus-visible {
  border-color: rgba(171, 55, 55, 0.58);
  color: #a13737;
  outline: none;
}

.pgw-selection__review {
  background: #fbf8f2;
  border: 1px solid rgba(220, 207, 183, 0.95);
  border-radius: 14px;
  margin-top: 0.9rem;
  padding: 0.8rem 0.85rem;
}

.pgw-selection__review.is-error {
  background: #fff5f2;
  border-color: #e3b9ab;
}

.pgw-selection__review-title {
  color: var(--pgw-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 0.55rem;
  text-transform: uppercase;
}

.pgw-selection__review-draft {
  color: var(--pgw-muted);
  font-size: 0.88rem;
  margin: 0 0 0.55rem;
}

.pgw-selection__review-flow {
  background: #fff;
  border: 1px solid rgba(220, 207, 183, 0.95);
  border-radius: 12px;
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
  padding: 0.7rem 0.75rem;
}

.pgw-selection__review-flow-title {
  font-weight: 700;
  margin: 0;
}

.pgw-selection__review-flow-copy {
  color: var(--pgw-muted);
  margin: 0;
}

.pgw-selection__review-sections {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
}

.pgw-selection__stage {
  background: #fff;
  border: 1px solid rgba(220, 207, 183, 0.95);
  border-radius: 12px;
  display: grid;
  gap: 0.28rem;
  padding: 0.7rem 0.75rem;
}

.pgw-selection__stage--moves {
  border-left: 4px solid #6c5335;
}

.pgw-selection__stage--credit {
  border-left: 4px solid #7d6a2c;
}

.pgw-selection__stage--payable {
  border-left: 4px solid #a35a1d;
}

.pgw-selection__stage--owned {
  border-left: 4px solid #8b7557;
}

.pgw-selection__stage-title,
.pgw-selection__stage-summary,
.pgw-selection__stage-detail,
.pgw-selection__stage-window {
  margin: 0;
}

.pgw-selection__stage-title {
  font-weight: 700;
}

.pgw-selection__stage-detail,
.pgw-selection__stage-window {
  color: var(--pgw-muted);
  font-size: 0.9rem;
}

.pgw-selection__review-actions {
  border-top: 1px solid rgba(220, 207, 183, 0.95);
  display: grid;
  gap: 0.45rem;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
}

.pgw-selection__next-action {
  background: #fff;
  border: 1px solid rgba(220, 207, 183, 0.95);
  border-radius: 12px;
  margin: 0;
  padding: 0.65rem 0.75rem;
}

.pgw-selection__next-action--available {
  border-left: 4px solid #365226;
}

.pgw-selection__next-action--pending {
  border-left: 4px solid #a35a1d;
}

.pgw-selection__next-action--required {
  border-left: 4px solid #8a3f22;
}

.pgw-selection__next-action--complete {
  border-left: 4px solid #8b7557;
}

.pgw-selection__review-summary {
  display: grid;
  gap: 0.35rem;
}

.pgw-selection__review-verification {
  border-top: 1px solid rgba(220, 207, 183, 0.95);
  display: grid;
  gap: 0.35rem;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
}

.pgw-selection__review-line {
  margin: 0;
}

.pgw-selection__review-windows {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.pgw-selection__window {
  background: #fff;
  border: 1px solid rgba(220, 207, 183, 0.95);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
}

.pgw-selection__window--slot {
  align-items: center;
  background: linear-gradient(180deg, #fafdff 0%, #eef7fb 100%);
  border-color: #cfe1ea;
  box-shadow: 0 6px 14px rgba(16, 40, 64, 0.05);
  display: grid;
  gap: 0.5rem;
  grid-template-columns: auto minmax(0, 1fr);
  min-height: 0;
  padding: 0.5rem 0.6rem;
}

.pgw-selection__window-indicator {
  align-items: center;
  background: #5f8d53;
  border-radius: 999px;
  display: inline-flex;
  height: 0.88rem;
  justify-content: center;
  position: relative;
  width: 0.88rem;
}

.pgw-selection__window-indicator::before {
  color: #fff;
  content: '✓';
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1;
}

.pgw-selection__window-body {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
  min-width: 0;
}

.pgw-selection__window--reschedule .pgw-selection__window-indicator {
  background: #b7722d;
}

.pgw-selection__window--reschedule .pgw-selection__window-indicator::before {
  content: '↻';
  font-size: 0.56rem;
}

.pgw-selection__window--credit .pgw-selection__window-indicator {
  background: #2f7285;
}

.pgw-selection__window--credit .pgw-selection__window-indicator::before {
  content: '•';
  font-size: 0.5rem;
}

.pgw-selection__window--owned .pgw-selection__window-indicator {
  background: #6b7787;
}

.pgw-selection__window--owned .pgw-selection__window-indicator::before {
  content: '•';
  font-size: 0.5rem;
}

.pgw-selection__window-heading,
.pgw-selection__window-detail {
  margin: 0;
}

.pgw-selection__window-heading {
  flex: 1 1 auto;
  font-weight: 700;
  font-size: 0.84rem;
  line-height: 1.15;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pgw-selection__window-detail {
  color: var(--pgw-muted);
  flex: 0 0 auto;
  font-size: 0.74rem;
  margin-top: 0;
  white-space: nowrap;
}

.pgw-selection__window--checkout {
  background: #f8f3ea;
  border-style: dashed;
}

.pgw-selection__review-warnings {
  color: var(--pgw-muted);
  display: grid;
  gap: 0.45rem;
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
}

.pgw-selection__review-conflicts {
  color: #8a3f22;
  display: grid;
  gap: 0.45rem;
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
}

.pgw-selection__commit {
  border-top: 1px solid rgba(220, 207, 183, 0.95);
  display: grid;
  gap: 0.55rem;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
}

.pgw-selection__commit-title {
  color: #5b4731;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.pgw-selection__commit-copy,
.pgw-selection__commit-status {
  color: var(--pgw-muted);
  font-size: 0.9rem;
  margin: 0;
}

.pgw-selection__commit-status.is-error {
  color: #8a3f22;
}

.pgw-selection__commit-status.is-success {
  color: #365226;
}

.pgw-selection__commit-list {
  display: grid;
  gap: 0.4rem;
  margin: 0;
  padding-left: 1.1rem;
}

.pgw-selection__button--commit {
  justify-self: start;
}

.pgw-selection__checkout {
  border-top: 1px solid rgba(220, 207, 183, 0.95);
  display: grid;
  gap: 0.55rem;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
}

.pgw-selection__checkout-title {
  color: #5b4731;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.pgw-selection__checkout-copy,
.pgw-selection__checkout-status {
  color: var(--pgw-muted);
  font-size: 0.9rem;
  margin: 0;
}

.pgw-selection__checkout-countdown {
  color: #5e4d17;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

.pgw-selection__checkout-status.is-error {
  color: #8a3f22;
}

.pgw-selection__checkout-status.is-success {
  color: #365226;
}

.pgw-selection__checkout-detail {
  display: grid;
  gap: 0.35rem;
}

.pgw-selection__checkout-line {
  background: #fff;
  border: 1px solid rgba(220, 207, 183, 0.95);
  border-radius: 12px;
  margin: 0;
  padding: 0.65rem 0.75rem;
}

.pgw-selection__checkout-line--failed {
  border-left: 4px solid #8a3f22;
}

.pgw-selection__checkout-slot {
  align-items: center;
  background: linear-gradient(180deg, #fafdff 0%, #eef7fb 100%);
  border: 1px solid #cfe1ea;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(16, 40, 64, 0.05);
  display: grid;
  gap: 0.5rem;
  grid-template-columns: auto minmax(0, 1fr);
  margin: 0;
  min-height: 0;
  padding: 0.5rem 0.6rem;
}

.pgw-selection__checkout-slot-indicator {
  align-items: center;
  background: #5f8d53;
  border-radius: 999px;
  display: inline-flex;
  height: 0.88rem;
  justify-content: center;
  position: relative;
  width: 0.88rem;
}

.pgw-selection__checkout-slot-indicator::before {
  color: #fff;
  content: '✓';
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1;
}

.pgw-selection__checkout-slot--reschedule .pgw-selection__checkout-slot-indicator {
  background: #b7722d;
}

.pgw-selection__checkout-slot--reschedule .pgw-selection__checkout-slot-indicator::before {
  content: '↻';
  font-size: 0.56rem;
}

.pgw-selection__checkout-slot--credit .pgw-selection__checkout-slot-indicator {
  background: #2f7285;
}

.pgw-selection__checkout-slot--credit .pgw-selection__checkout-slot-indicator::before {
  content: '•';
  font-size: 0.5rem;
}

.pgw-selection__checkout-slot--owned .pgw-selection__checkout-slot-indicator {
  background: #6b7787;
}

.pgw-selection__checkout-slot--owned .pgw-selection__checkout-slot-indicator::before {
  content: '•';
  font-size: 0.5rem;
}

.pgw-selection__checkout-slot-body {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
  min-width: 0;
}

.pgw-selection__checkout-slot-heading,
.pgw-selection__checkout-slot-detail {
  margin: 0;
}

.pgw-selection__checkout-slot-heading {
  flex: 1 1 auto;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.15;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pgw-selection__checkout-slot-detail {
  color: var(--pgw-muted);
  flex: 0 0 auto;
  font-size: 0.74rem;
  margin-top: 0;
  white-space: nowrap;
}

.pgw-selection__button--checkout {
  justify-self: start;
}

.pgw-selection__button--recurring {
  background: linear-gradient(145deg, #8a4f1a, #6f3f15);
  border-color: #6b3a12;
  box-shadow: 0 10px 18px rgba(111, 63, 21, 0.2);
  color: #fff;
}

.pgw-selection__button--recurring:hover,
.pgw-selection__button--recurring:focus-visible {
  box-shadow: 0 12px 22px rgba(111, 63, 21, 0.28);
}

.pgw-checkout-draft {
  background:
    radial-gradient(circle at top right, rgba(163, 90, 29, 0.08), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, #f8f1e5 100%);
  border: 1px solid var(--pgw-border);
  border-radius: 24px;
  color: var(--pgw-text);
  margin: 2rem 0;
  padding: 1.5rem;
}

.pgw-checkout-draft__header {
  margin-bottom: 1.2rem;
}

.pgw-checkout-draft__eyebrow {
  color: var(--pgw-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 0.45rem;
  text-transform: uppercase;
}

.pgw-checkout-draft__title {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  line-height: 1.1;
  margin: 0 0 0.7rem;
}

.pgw-checkout-draft__intro {
  color: var(--pgw-muted);
  margin: 0;
  max-width: 46rem;
}

.pgw-checkout-draft__meta,
.pgw-checkout-draft__summary {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 1rem;
}

.pgw-checkout-draft__meta-card,
.pgw-checkout-draft__summary-card,
.pgw-checkout-draft__panel {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--pgw-border);
  border-radius: 18px;
  padding: 0.9rem 1rem;
}

.pgw-checkout-draft__meta-label,
.pgw-checkout-draft__summary-label {
  color: var(--pgw-muted);
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.pgw-checkout-draft__meta-value,
.pgw-checkout-draft__summary-value {
  font-size: 1.08rem;
}

.pgw-checkout-draft__layout {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.9fr);
  margin-top: 1.4rem;
}

.pgw-checkout-draft__main {
  display: grid;
  gap: 0.9rem;
}

.pgw-checkout-draft__sidebar {
  align-self: start;
  display: grid;
  gap: 0.9rem;
  position: sticky;
  top: 1rem;
}

.pgw-checkout-draft__section {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--pgw-border);
  border-radius: 18px;
  padding: 1rem 1.05rem;
}

.pgw-checkout-draft__section--moves {
  border-left: 4px solid #6c5335;
}

.pgw-checkout-draft__section--owned {
  border-left: 4px solid #8b7557;
}

.pgw-checkout-draft__section--credit {
  border-left: 4px solid #7d6a2c;
}

.pgw-checkout-draft__section--payable {
  border-left: 4px solid #a35a1d;
}

.pgw-checkout-draft__section-title,
.pgw-checkout-draft__section-summary,
.pgw-checkout-draft__section-detail,
.pgw-checkout-draft__window-heading,
.pgw-checkout-draft__window-detail,
.pgw-checkout-draft__panel-title,
.pgw-checkout-draft__panel-copy,
.pgw-checkout-draft__action {
  margin: 0;
}

.pgw-checkout-draft__section-title,
.pgw-checkout-draft__panel-title {
  font-size: 1rem;
  font-weight: 700;
}

.pgw-checkout-draft__section-detail,
.pgw-checkout-draft__window-detail,
.pgw-checkout-draft__panel-copy {
  color: var(--pgw-muted);
}

.pgw-checkout-draft__status {
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.pgw-checkout-draft__status.is-success {
  color: #365226;
}

.pgw-checkout-draft__status.is-error {
  color: #8a3f22;
}

.pgw-checkout-draft__windows {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.pgw-checkout-draft__window {
  background: #fff;
  border: 1px solid rgba(220, 207, 183, 0.95);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
}

.pgw-checkout-draft__window--held {
  border-left: 4px solid #365226;
}

.pgw-checkout-draft__window--failed {
  border-left: 4px solid #8a3f22;
}

.pgw-checkout-draft__window-heading {
  font-weight: 700;
}

.pgw-checkout-draft__action {
  background: #fff;
  border: 1px solid rgba(220, 207, 183, 0.95);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
}

.pgw-checkout-draft__action--available {
  border-left: 4px solid #365226;
}

.pgw-checkout-draft__action--pending {
  border-left: 4px solid #a35a1d;
}

.pgw-checkout-draft__action--required {
  border-left: 4px solid #8a3f22;
}

.pgw-checkout-draft__action--complete {
  border-left: 4px solid #8b7557;
}

.pgw-checkout-draft__pricing,
.pgw-checkout-draft__payment-warnings {
  margin-top: 0.8rem;
}

.pgw-checkout-draft__payment-warnings {
  color: #8a3f22;
  padding-left: 1.2rem;
}

.pgw-selection__actions {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.pgw-selection__button {
  appearance: none;
  background: var(--pgw-accent);
  border: none;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  padding: 0.7rem 1rem;
}

.pgw-selection__button[disabled] {
  cursor: not-allowed;
  opacity: 0.45;
}

.pgw-selection__button.is-muted {
  background: #f0e8dd;
  color: var(--pgw-text);
}

.pgw-selection__recovery {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.95), rgba(246, 236, 217, 0.92));
  border: 1px solid rgba(192, 160, 112, 0.4);
  border-radius: 18px;
  margin-top: 1rem;
  padding: 1rem 1rem 1.1rem;
}

.pgw-selection__recovery-title,
.pgw-selection__checkout-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.pgw-selection__recovery-copy,
.pgw-selection__checkout-copy {
  color: var(--pgw-muted);
  margin: 0;
}

.pgw-selection__recovery-countdown,
.pgw-selection__checkout-countdown {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0.65rem 0 0;
}

.pgw-selection__recovery-detail,
.pgw-selection__checkout-detail {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.7rem;
}

.pgw-checkout-draft__return-link {
  color: var(--pgw-accent);
  font-weight: 700;
  text-decoration: none;
}

.pgw-checkout-draft__return-link:hover,
.pgw-checkout-draft__return-link:focus {
  text-decoration: underline;
}

body.pgw-inline-checkout-open {
  overflow: hidden;
}

body.pgw-recurring-modal-open {
  overflow: hidden;
}

body.pgw-restriction-modal-open {
  overflow: hidden;
}

body.pgw-booked-actions-modal-open {
  overflow: hidden;
}

.pgw-availability.has-inline-checkout-open > .pgw-availability__header,
.pgw-availability.has-inline-checkout-open > .pgw-availability__window,
.pgw-availability.has-inline-checkout-open > .pgw-availability__snapshot-note,
.pgw-availability.has-inline-checkout-open > .pgw-availability__legend,
.pgw-availability.has-inline-checkout-open > .pgw-availability__stats,
.pgw-availability.has-inline-checkout-open > .pgw-availability__toolbar,
.pgw-availability.has-inline-checkout-open > .pgw-availability__layout {
  filter: none;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.pgw-availability__modal {
  align-items: flex-start;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 1.6rem;
  position: fixed;
  z-index: 9999;
}

.pgw-availability__modal[hidden] {
  display: none;
}

.pgw-availability__modal-backdrop {
  backdrop-filter: blur(3px);
  background:
    linear-gradient(180deg, rgba(21, 16, 12, 0.92), rgba(21, 16, 12, 0.88)),
    radial-gradient(circle at top left, rgba(163, 90, 29, 0.08), transparent 36%);
  inset: 0;
  position: absolute;
}

.pgw-recurring-modal {
  background:
    radial-gradient(circle at top right, rgba(163, 90, 29, 0.1), transparent 32%),
    linear-gradient(180deg, #fffdf8 0%, #f8f1e5 100%);
  border: 1px solid var(--pgw-border);
  border-radius: 22px;
  box-shadow:
    0 24px 80px rgba(37, 24, 14, 0.22),
    0 8px 24px rgba(37, 24, 14, 0.12);
  color: var(--pgw-text);
  display: grid;
  gap: 1rem;
  margin: 0;
  max-height: calc(100vh - 3.2rem);
  overflow: auto;
  padding: 1.2rem 1.2rem 1.25rem;
  position: relative;
  width: min(980px, calc(100vw - 3.2rem));
  z-index: 1;
}

.pgw-recurring-modal__header h3 {
  margin: 0 0 0.35rem;
}

.pgw-recurring-modal__header p {
  color: var(--pgw-muted);
  margin: 0;
}

.pgw-recurring-modal__body {
  display: grid;
  gap: 0.9rem;
}

.pgw-recurring-modal__summary {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(220, 207, 183, 0.95);
  border-radius: 14px;
  padding: 0.7rem 0.8rem;
}

.pgw-recurring-modal__summary p {
  margin: 0.2rem 0;
}

.pgw-recurring-modal__controls[hidden],
.pgw-recurring-modal__coverage[hidden],
.pgw-recurring-modal__payment-summary[hidden],
.pgw-recurring-modal__stripe[hidden] {
  display: none !important;
}

.pgw-recurring-modal__controls {
  align-items: end;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pgw-recurring-modal__controls label {
  color: var(--pgw-muted);
  display: grid;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 0.35rem;
}

.pgw-recurring-modal__controls select,
.pgw-recurring-modal__controls input {
  background: #fff;
  border: 1px solid rgba(199, 170, 132, 0.75);
  border-radius: 10px;
  color: var(--pgw-text);
  font-size: 0.94rem;
  min-height: 42px;
  padding: 0.4rem 0.55rem;
}

.pgw-recurring-modal__status {
  border-radius: 12px;
  font-size: 0.9rem;
  margin: 0;
  min-height: 1.2rem;
  padding: 0.15rem 0.2rem;
}

.pgw-recurring-modal__busy {
  align-items: center;
  color: var(--pgw-muted);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 700;
  gap: 0.45rem;
  margin: 0;
}

.pgw-recurring-modal__busy-dot {
  animation: pgw-reload-veil-pulse 1.1s ease-in-out infinite;
  background: var(--pgw-accent);
  border-radius: 999px;
  display: inline-block;
  flex: 0 0 auto;
  height: 0.55rem;
  width: 0.55rem;
}

.pgw-recurring-modal__status.is-error {
  background: rgba(166, 55, 42, 0.08);
  color: #8f2f24;
  padding: 0.55rem 0.7rem;
}

.pgw-recurring-modal__status.is-success {
  background: rgba(56, 124, 76, 0.11);
  color: #2f6f43;
  padding: 0.55rem 0.7rem;
}

.pgw-recurring-modal__status.is-warning {
  background: rgba(191, 118, 25, 0.13);
  color: #7a4b0f;
  padding: 0.55rem 0.7rem;
}

.pgw-recurring-modal__coverage {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

.pgw-recurring-modal__coverage article {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(220, 207, 183, 0.95);
  border-radius: 14px;
  min-height: 0;
  padding: 0.65rem 0.75rem;
}

.pgw-recurring-modal__coverage h4 {
  font-size: 0.88rem;
  margin: 0 0 0.45rem;
}

.pgw-recurring-modal__coverage-copy {
  color: var(--pgw-muted);
  font-size: 0.78rem;
  line-height: 1.35;
  margin: -0.1rem 0 0.4rem;
}

.pgw-recurring-modal__coverage ul {
  display: grid;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  max-height: 220px;
  overflow: auto;
  padding: 0;
}

.pgw-recurring-modal__coverage li {
  font-size: 0.86rem;
  line-height: 1.35;
}

.pgw-recurring-modal__coverage li.is-empty {
  color: var(--pgw-muted);
  list-style: none;
  margin-left: 0;
}

.pgw-recurring-modal__companion-list {
  display: grid;
  gap: 0.65rem;
}

.pgw-recurring-modal__companion-group {
  border: 0;
  display: grid;
  gap: 0.4rem;
  margin: 0;
  min-width: 0;
  padding: 0;
}

.pgw-recurring-modal__companion-group legend {
  color: var(--pgw-text);
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
  padding: 0;
}

.pgw-recurring-modal__companion-option {
  align-items: flex-start;
  color: var(--pgw-muted);
  display: flex;
  font-size: 0.84rem;
  gap: 0.45rem;
  line-height: 1.35;
}

.pgw-recurring-modal__companion-option input {
  flex: 0 0 auto;
  margin-top: 0.18rem;
}

.pgw-recurring-modal__coverage-item {
  margin: 0;
}

.pgw-recurring-modal__coverage-item .pgw-selection__window-body {
  align-items: flex-start;
  flex-direction: column;
  gap: 0.12rem;
}

.pgw-recurring-modal__coverage-item .pgw-selection__window-heading {
  white-space: normal;
}

.pgw-recurring-modal__coverage-item .pgw-selection__window-detail {
  white-space: normal;
}

.pgw-recurring-modal__coverage-item.is-unavailable .pgw-selection__window-indicator {
  background: #b7722d;
}

.pgw-recurring-modal__coverage-item.is-unavailable .pgw-selection__window-indicator::before {
  content: '!';
  font-size: 0.58rem;
}

.pgw-recurring-modal__stripe {
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(246, 236, 217, 0.92));
  border: 1px solid rgba(220, 207, 183, 0.95);
  border-radius: 14px;
  display: grid;
  gap: 0.65rem;
  padding: 0.85rem;
}

.pgw-recurring-modal__payment-summary {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(220, 207, 183, 0.9);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
}

.pgw-recurring-modal__payment-summary-title {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.pgw-recurring-modal__payment-summary-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  font-size: 0.88rem;
}

.pgw-recurring-modal__payment-summary-row {
  border-top: 1px solid rgba(220, 207, 183, 0.7);
  display: grid;
  gap: 0.35rem;
  grid-template-columns: minmax(8rem, 0.42fr) minmax(0, 1fr);
  padding-top: 0.6rem;
}

.pgw-recurring-modal__payment-summary-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.pgw-recurring-modal__payment-summary-row.is-emphasis {
  background: rgba(244, 249, 246, 0.85);
  border: 1px solid rgba(142, 184, 163, 0.45);
  border-radius: 8px;
  padding: 0.55rem 0.65rem;
}

.pgw-recurring-modal__payment-summary-row.is-muted {
  color: #665d4e;
}

.pgw-recurring-modal__payment-summary-row.is-covered-dates {
  align-items: start;
}

.pgw-recurring-modal__payment-summary-label {
  font-weight: 600;
  color: #5a4a2f;
}

.pgw-recurring-modal__payment-summary-value {
  color: #3a2f20;
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.pgw-recurring-modal__payment-summary-value ul {
  display: grid;
  gap: 0.18rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pgw-recurring-modal__payment-summary-value li {
  line-height: 1.32;
}

@media (max-width: 560px) {
  .pgw-recurring-modal__payment-summary-row {
    grid-template-columns: 1fr;
  }
}

.pgw-recurring-modal__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

.pgw-restriction-modal {
  background:
    radial-gradient(circle at top right, rgba(163, 90, 29, 0.1), transparent 32%),
    linear-gradient(180deg, #fffdf8 0%, #f8f1e5 100%);
  border: 1px solid var(--pgw-border);
  border-radius: 22px;
  box-shadow:
    0 24px 80px rgba(37, 24, 14, 0.22),
    0 8px 24px rgba(37, 24, 14, 0.12);
  color: var(--pgw-text);
  display: grid;
  gap: 0.95rem;
  margin: 0;
  max-height: calc(100vh - 3.2rem);
  overflow: auto;
  padding: 1.2rem 1.2rem 1.25rem;
  position: relative;
  width: min(760px, calc(100vw - 3.2rem));
  z-index: 1;
}

.pgw-restriction-modal__header h3 {
  margin: 0 0 0.35rem;
}

.pgw-restriction-modal__header p {
  color: var(--pgw-muted);
  margin: 0;
}

.pgw-restriction-modal__body {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(220, 207, 183, 0.95);
  border-radius: 14px;
  padding: 0.7rem 0.8rem;
}

.pgw-restriction-modal__eyebrow {
  color: var(--pgw-accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 0.45rem;
  text-transform: uppercase;
}

.pgw-restriction-modal__steps {
  margin: 0;
  padding-left: 1.15rem;
}

.pgw-restriction-modal__steps li {
  color: var(--pgw-text);
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0.2rem 0;
}

.pgw-restriction-modal__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.pgw-restriction-modal__action {
  text-decoration: none;
}

.pgw-restriction-modal__action:hover,
.pgw-restriction-modal__action:focus-visible {
  text-decoration: none;
}

@media (max-width: 900px) {
  .pgw-recurring-modal {
    max-height: calc(100vh - 1.5rem);
    padding: 1rem;
    width: min(980px, calc(100vw - 1.5rem));
  }

  .pgw-recurring-modal__controls {
    grid-template-columns: 1fr;
  }

  .pgw-recurring-modal__coverage {
    grid-template-columns: 1fr;
  }

  .pgw-restriction-modal {
    max-height: calc(100vh - 1.5rem);
    padding: 1rem;
    width: min(760px, calc(100vw - 1.5rem));
  }
}

.pgw-checkout-draft--inline {
  box-shadow:
    0 24px 80px rgba(37, 24, 14, 0.24),
    0 8px 24px rgba(37, 24, 14, 0.14);
  display: grid;
  gap: 1.35rem;
  margin: 0;
  max-height: calc(100vh - 3.2rem);
  overflow: auto;
  padding: 1.45rem 1.45rem 1.6rem;
  position: relative;
  width: min(1320px, calc(100vw - 3.2rem));
  z-index: 1;
}

.pgw-checkout-draft--inline:focus {
  outline: none;
}

.pgw-checkout-draft__modal-head {
  align-items: center;
  border-bottom: 1px solid rgba(220, 207, 183, 0.72);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding-bottom: 1rem;
}

.pgw-checkout-draft__modal-kicker {
  color: var(--pgw-accent);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.pgw-checkout-draft__modal-close {
  appearance: none;
  background: #f0e8dd;
  border: 1px solid var(--pgw-border);
  border-radius: 999px;
  color: var(--pgw-text);
  cursor: pointer;
  font-weight: 700;
  padding: 0.7rem 1rem;
}

.pgw-checkout-draft__modal-close--floating {
  position: absolute;
  right: 0.9rem;
  top: 0.9rem;
  z-index: 2;
}

.pgw-checkout-draft__modal-close:hover,
.pgw-checkout-draft__modal-close:focus-visible {
  border-color: var(--pgw-accent);
  box-shadow: 0 10px 22px rgba(72, 44, 20, 0.12);
  outline: none;
}

.pgw-checkout-draft--inline .pgw-checkout-draft__header {
  margin-bottom: 0;
}

.pgw-checkout-draft--inline .pgw-checkout-draft__title {
  font-size: clamp(2.15rem, 3vw, 3.15rem);
  letter-spacing: -0.02em;
}

.pgw-checkout-draft--inline .pgw-checkout-draft__intro {
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 58rem;
}

.pgw-checkout-draft--inline .pgw-checkout-draft__meta {
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 0;
}

.pgw-checkout-draft--inline .pgw-checkout-draft__meta-card,
.pgw-checkout-draft--inline .pgw-checkout-draft__section,
.pgw-checkout-draft--inline .pgw-checkout-draft__panel {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(72, 44, 20, 0.07);
}

.pgw-checkout-draft--inline .pgw-selection__review,
.pgw-checkout-draft--inline .pgw-selection__commit,
.pgw-checkout-draft--inline .pgw-selection__checkout,
.pgw-checkout-draft--inline .pgw-selection__recovery {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
}

.pgw-checkout-draft--inline .pgw-selection__review-flow,
.pgw-checkout-draft--inline .pgw-selection__stage,
.pgw-checkout-draft--inline .pgw-selection__window,
.pgw-checkout-draft--inline .pgw-selection__checkout-slot,
.pgw-checkout-draft--inline .pgw-selection__checkout-line,
.pgw-checkout-draft--inline .pgw-selection__next-action {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(72, 44, 20, 0.05);
}

.pgw-checkout-draft--inline .pgw-selection__review-actions,
.pgw-checkout-draft--inline .pgw-selection__review-verification,
.pgw-checkout-draft--inline .pgw-selection__commit,
.pgw-checkout-draft--inline .pgw-selection__checkout {
  border-top-color: rgba(220, 207, 183, 0.72);
}

.pgw-checkout-draft--inline .pgw-selection__review-title,
.pgw-checkout-draft--inline .pgw-selection__commit-title,
.pgw-checkout-draft--inline .pgw-selection__checkout-title {
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.pgw-checkout-draft--inline .pgw-selection__review-draft {
  margin-bottom: 0.8rem;
}

.pgw-checkout-draft--inline .pgw-selection__commit-list {
  margin-bottom: 0;
}

.pgw-checkout-draft__layout--inline {
  align-items: start;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 1fr);
  height: auto;
}

.pgw-checkout-draft__sidebar--inline {
  position: static;
}

.pgw-checkout-draft--inline .pgw-checkout-draft__main {
  gap: 1rem;
}

.pgw-checkout-draft--inline .pgw-checkout-draft__section {
  padding: 1.1rem 1.15rem;
}

.pgw-checkout-draft--inline .pgw-checkout-draft__section--recovery {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(246, 236, 217, 0.92));
}

.pgw-checkout-draft--inline .pgw-checkout-draft__section-title,
.pgw-checkout-draft--inline .pgw-checkout-draft__panel-title {
  font-size: 1.06rem;
}

.pgw-checkout-draft--inline .pgw-checkout-draft__section-detail,
.pgw-checkout-draft--inline .pgw-checkout-draft__window-detail,
.pgw-checkout-draft--inline .pgw-checkout-draft__panel-copy,
.pgw-checkout-draft--inline .pgw-checkout-draft__action {
  line-height: 1.5;
}

.pgw-checkout-draft--inline .pgw-checkout-draft__window {
  border-radius: 14px;
  padding: 0.85rem 0.9rem;
}

.pgw-checkout-draft--inline .pgw-checkout-draft__window-heading {
  font-size: 0.98rem;
}

.pgw-checkout-draft--inline .pgw-checkout-draft__action {
  border-radius: 14px;
  font-weight: 600;
}

.pgw-checkout-draft--inline .pgw-checkout-draft__panel {
  padding: 1.1rem 1.15rem;
}

.pgw-checkout-draft--inline .pgw-checkout-draft__sidebar {
  gap: 1rem;
}

.pgw-checkout-draft--inline .pgw-checkout-draft__panel + .pgw-checkout-draft__panel {
  margin-top: 0;
}

.pgw-checkout-draft--inline .pgw-checkout-draft__summary-value {
  color: #5e4d17;
  font-size: 1.35rem;
  font-weight: 800;
}

.pgw-checkout-draft--inline .pgw-checkout-draft__pricing {
  display: grid;
  gap: 0.4rem;
}

.pgw-checkout-draft--inline .pgw-checkout-draft__pricing .pgw-selection__checkout-line {
  border-radius: 10px;
  font-size: 0.92rem;
  padding: 0.58rem 0.7rem;
}

.pgw-checkout-draft--inline .pgw-checkout-draft__pricing .pgw-selection__checkout-slot {
  border-radius: 10px;
  padding: 0.56rem 0.66rem;
}

.pgw-checkout-draft--inline .pgw-checkout-draft__pricing .pgw-selection__checkout-line:first-child,
.pgw-checkout-draft--inline .pgw-checkout-draft__pricing .pgw-selection__checkout-line:nth-child(2) {
  font-weight: 700;
}

.pgw-checkout-draft--inline .pgw-checkout-draft__pricing .pgw-selection__checkout-slot-heading {
  font-size: 0.88rem;
}

.pgw-checkout-draft--inline .pgw-checkout-draft__pricing .pgw-selection__checkout-slot-detail {
  font-size: 0.78rem;
}

.pgw-checkout-draft--inline .pgw-selection__button {
  min-height: 46px;
}

.pgw-selection__button[hidden],
.pgw-checkout-draft__modal-close[hidden] {
  display: none !important;
}

.pgw-checkout-draft--inline .pgw-selection__button--checkout {
  box-shadow: 0 10px 18px rgba(163, 90, 29, 0.18);
}

.pgw-checkout-draft--inline .pgw-selection__button--checkout:hover,
.pgw-checkout-draft--inline .pgw-selection__button--checkout:focus-visible {
  transform: translateY(-1px);
}

.pgw-checkout-draft--inline .pgw-checkout-draft__stripe {
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(246, 236, 217, 0.92));
  border: 1px solid rgba(220, 207, 183, 0.95);
  border-radius: 18px;
  margin-top: 0.9rem;
  padding: 1rem;
}

.pgw-availability__modal[data-pgw-inline-stage="payment"] .pgw-checkout-draft__layout--inline {
  grid-template-columns: minmax(0, 1fr);
}

.pgw-availability__modal[data-pgw-has-live-payment="true"] .pgw-checkout-draft__layout--inline {
  grid-template-columns: minmax(0, 1fr);
}

.pgw-availability__modal[data-pgw-inline-stage="payment"] .pgw-checkout-draft--inline {
  gap: 0.9rem;
  max-height: calc(100vh - 2rem);
  padding: 1rem 1rem 1.1rem;
  width: min(920px, calc(100vw - 2rem));
}

.pgw-availability__modal[data-pgw-has-live-payment="true"] .pgw-checkout-draft--inline {
  gap: 0.9rem;
  max-height: calc(100vh - 2rem);
  padding: 1rem 1rem 1.1rem;
  width: min(920px, calc(100vw - 2rem));
}

.pgw-availability__modal[data-pgw-inline-stage="payment"] .pgw-checkout-draft__main {
  display: none;
}

.pgw-availability__modal[data-pgw-has-live-payment="true"] .pgw-checkout-draft__main {
  display: none;
}

.pgw-availability__modal[data-pgw-inline-stage="payment"] .pgw-checkout-draft__sidebar--inline {
  max-width: none;
  width: 100%;
}

.pgw-availability__modal[data-pgw-has-live-payment="true"] .pgw-checkout-draft__sidebar--inline {
  max-width: none;
  width: 100%;
}

.pgw-availability__modal[data-pgw-inline-stage="payment"] .pgw-checkout-draft__panel {
  padding: 1.3rem 1.35rem;
}

.pgw-availability__modal[data-pgw-has-live-payment="true"] .pgw-checkout-draft__panel {
  padding: 1.3rem 1.35rem;
}

.pgw-availability__modal[data-pgw-inline-stage="payment"] [data-pgw-prepare-payment],
.pgw-availability__modal[data-pgw-inline-stage="payment"] [data-pgw-open-stripe-checkout] {
  display: none !important;
}

.pgw-availability__modal[data-pgw-inline-stage="payment"] [data-pgw-confirm-booking],
.pgw-availability__modal[data-pgw-has-live-payment="true"] [data-pgw-confirm-booking] {
  display: none !important;
}

.pgw-checkout-draft__stripe-element {
  min-height: 96px;
}

.pgw-availability__empty {
  background: rgba(255, 255, 255, 0.7);
  border: 1px dashed var(--pgw-border);
  border-radius: 18px;
  margin-top: 1rem;
  padding: 1rem 1.2rem;
}

.pgw-onboarding {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.6rem;
  border: 1px solid rgba(184, 132, 77, 0.24);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(250, 243, 232, 0.96));
  box-shadow: 0 20px 60px rgba(54, 40, 25, 0.08);
}

.pgw-onboarding__eyebrow {
  margin: 0 0 0.75rem;
  color: #b0692e;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pgw-onboarding__title {
  margin: 0 0 0.75rem;
}

.pgw-onboarding__intro {
  max-width: 52rem;
  margin: 0 0 1rem;
  color: #5c5247;
}

.pgw-onboarding__status {
  margin-bottom: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(184, 132, 77, 0.24);
  background: rgba(255, 251, 245, 0.9);
}

.pgw-onboarding__status.is-success {
  border-color: rgba(60, 112, 62, 0.35);
  background: rgba(243, 250, 242, 0.95);
}

.pgw-onboarding__status.is-error {
  border-color: rgba(158, 66, 44, 0.35);
  background: rgba(252, 244, 241, 0.95);
}

.pgw-onboarding__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.pgw-onboarding__panel,
.pgw-onboarding__signed-in {
  padding: 1rem;
  border: 1px solid rgba(184, 132, 77, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
}

.pgw-onboarding__panel-title {
  margin: 0 0 0.5rem;
}

.pgw-onboarding__panel-copy,
.pgw-onboarding__signed-in-copy {
  margin: 0 0 0.75rem;
  color: #5c5247;
}

.pgw-onboarding__form {
  display: grid;
  gap: 0.7rem;
}

.pgw-onboarding__field {
  display: grid;
  gap: 0.35rem;
}

.pgw-onboarding__field input {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(184, 132, 77, 0.32);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
}

.pgw-onboarding__checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: #4b4238;
}

.pgw-onboarding__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border: 0;
  border-radius: 12px;
  background: #b0692e;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.pgw-onboarding__cta:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.pgw-account-cta {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.5rem;
  border: 1px solid rgba(184, 132, 77, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(232, 196, 154, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(250, 243, 232, 0.96));
  box-shadow: 0 20px 60px rgba(54, 40, 25, 0.08);
}

.pgw-account-cta__eyebrow {
  margin: 0 0 0.75rem;
  color: #b0692e;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pgw-account-cta__title {
  margin: 0 0 0.85rem;
}

.pgw-account-cta__copy {
  max-width: 46rem;
  margin: 0 0 0.9rem;
  color: #5c5247;
}

.pgw-account-cta__service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 1.25rem;
}

.pgw-account-cta__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(184, 132, 77, 0.22);
  color: #6e4725;
  font-size: 0.82rem;
  font-weight: 700;
}

.pgw-account-cta__grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 0 0 1.4rem;
}

.pgw-account-cta__info-card {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(184, 132, 77, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.pgw-account-cta__card-title {
  margin: 0 0 0.55rem;
}

.pgw-account-cta__card-copy {
  margin: 0;
  color: #5c5247;
}

.pgw-account-cta__list {
  margin: 0;
  padding-left: 1.2rem;
  color: #5c5247;
}

.pgw-account-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.pgw-account-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  background: #b0692e;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.pgw-account-cta__button--ghost {
  background: transparent;
  color: #6e4725;
  border: 1px solid rgba(184, 132, 77, 0.32);
}

.pgw-account-cta__link {
  color: #6e4725;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.pgw-dashboard {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.35rem;
  border: 1px solid rgba(184, 132, 77, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(232, 196, 154, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(250, 243, 232, 0.96));
  box-shadow: 0 20px 60px rgba(54, 40, 25, 0.08);
}

.pgw-dashboard__eyebrow {
  margin: 0 0 0.75rem;
  color: #b0692e;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pgw-dashboard__header {
  margin-bottom: 0.8rem;
}

.pgw-dashboard__title {
  margin: 0 0 0.45rem;
}

.pgw-dashboard__intro,
.pgw-dashboard__section-copy,
.pgw-dashboard__empty,
.pgw-dashboard__pet-copy,
.pgw-dashboard__service-copy,
.pgw-dashboard__booking span {
  color: #5c5247;
}

.pgw-dashboard__summary {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 0.85rem 0 1rem;
}

.pgw-dashboard__hero-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  margin-bottom: 1rem;
}

.pgw-dashboard__status {
  margin-bottom: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  background: rgba(232, 219, 200, 0.45);
  color: #5c5247;
}

.pgw-dashboard__status.is-success {
  background: rgba(68, 130, 82, 0.12);
  color: #2f5a35;
}

.pgw-dashboard__status.is-error {
  background: rgba(166, 75, 75, 0.12);
  color: #7a2f2f;
}

.pgw-dashboard__approval {
  margin: 0.4rem 0 0.75rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(184, 132, 77, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
}

.pgw-dashboard__approval-label {
  margin: 0 0 0.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #286f95;
}

.pgw-dashboard__approval-copy {
  margin: 0 0 0.55rem;
  color: #5c5247;
}

.pgw-dashboard__requirements {
  margin: 0.15rem 0 0.85rem;
  padding: 0.72rem 0.82rem;
  border: 1px solid rgba(84, 137, 160, 0.24);
  border-radius: 12px;
  background: rgba(244, 250, 252, 0.82);
}

.pgw-dashboard__requirements-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.pgw-dashboard__requirements-title {
  margin: 0;
  font-size: 0.95rem;
}

.pgw-dashboard__requirements-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.2rem 0.56rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(84, 137, 160, 0.32);
}

.pgw-dashboard__requirements-badge--ready {
  border-color: rgba(72, 134, 77, 0.42);
  color: #2f6d39;
  background: rgba(237, 248, 239, 0.9);
}

.pgw-dashboard__requirements-badge--blocked {
  border-color: rgba(170, 84, 64, 0.45);
  color: #7a2f2f;
  background: rgba(253, 244, 241, 0.92);
}

.pgw-dashboard__requirements-copy {
  margin: 0.45rem 0 0;
  color: #5c5247;
}

.pgw-dashboard__requirements-list {
  list-style: none;
  margin: 0.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.34rem;
}

.pgw-dashboard__requirements-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border-top: 1px dashed rgba(84, 137, 160, 0.2);
  padding-top: 0.34rem;
}

.pgw-dashboard__requirements-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.pgw-dashboard__requirements-state {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pgw-dashboard__requirements-state--ok {
  color: #2f6d39;
}

.pgw-dashboard__requirements-state--missing {
  color: #7a2f2f;
}

.pgw-dashboard__requirements-footnote {
  margin: 0.58rem 0 0;
  color: #5c5247;
  font-size: 0.88rem;
}

.pgw-dashboard__pet-approval-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 0.2rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 132, 77, 0.28);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pgw-dashboard__pet-approval-badge--approved {
  border-color: rgba(72, 134, 77, 0.42);
  color: #2f6d39;
  background: rgba(237, 248, 239, 0.9);
}

.pgw-dashboard__pet-approval-badge--pending {
  border-color: rgba(204, 138, 56, 0.45);
  color: #7a5720;
  background: rgba(255, 248, 234, 0.92);
}

.pgw-dashboard__pet-approval-badge--rejected,
.pgw-dashboard__pet-approval-badge--draft {
  border-color: rgba(170, 84, 64, 0.45);
  color: #7a2f2f;
  background: rgba(253, 244, 241, 0.92);
}

.pgw-dashboard__pet-approval-panel {
  margin: 0.5rem 0 0.75rem;
  padding: 0.7rem 0.8rem;
  border: 1px dashed rgba(184, 132, 77, 0.36);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
}

.pgw-dashboard__pet-approval-title {
  margin: 0 0 0.2rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #286f95;
}

.pgw-dashboard__pet-approval-copy {
  margin: 0 0 0.55rem;
  color: #5c5247;
}

.pgw-dashboard__pet-approval-hint {
  margin: 0.45rem 0 0;
  color: #5c5247;
  font-size: 0.9rem;
}

.pgw-dashboard__summary-card,
.pgw-dashboard__panel,
.pgw-dashboard__service {
  border: 1px solid rgba(184, 132, 77, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(54, 40, 25, 0.05);
}

.pgw-dashboard__summary-card,
.pgw-dashboard__panel,
.pgw-dashboard__service {
  padding: 0.8rem 0.9rem;
}

.pgw-dashboard__summary-label {
  margin: 0 0 0.3rem;
  color: #b0692e;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pgw-dashboard__summary-value {
  margin: 0;
  font-size: 1.05rem;
}

.pgw-dashboard__section {
  margin-bottom: 0.9rem;
}

.pgw-dashboard__section-title,
.pgw-dashboard__panel-title {
  margin: 0 0 0.35rem;
}

.pgw-dashboard__services {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pgw-dashboard__service.is-primary {
  border-color: rgba(176, 105, 46, 0.42);
}

.pgw-dashboard__service.is-warning {
  border-color: rgba(189, 145, 64, 0.48);
}

.pgw-dashboard__service.is-danger {
  border-color: rgba(167, 93, 93, 0.5);
}

.pgw-dashboard__service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
}

.pgw-dashboard__service-title {
  margin: 0;
  font-size: 1.05rem;
}

.pgw-dashboard__service-state,
.pgw-dashboard__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(232, 219, 200, 0.6);
  color: #6e4725;
  font-size: 0.78rem;
  font-weight: 700;
}

.pgw-dashboard__tag.is-success {
  background: rgba(184, 215, 180, 0.75);
  color: #35592e;
}

.pgw-dashboard__service-link,
.pgw-dashboard__link {
  color: #6e4725;
  font-weight: 700;
  text-decoration: none;
}

.pgw-dashboard__panel--highlight {
  background:
    radial-gradient(circle at top right, rgba(232, 196, 154, 0.2), transparent 40%),
    rgba(255, 255, 255, 0.92);
}

.pgw-dashboard__field-stats {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-top: 0.75rem;
}

.pgw-dashboard__field-stat {
  padding: 0.7rem 0.8rem;
  border-radius: 14px;
  border: 1px solid rgba(184, 132, 77, 0.18);
  background: rgba(255, 255, 255, 0.75);
}

.pgw-dashboard__field-stat-value {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 700;
}

.pgw-dashboard__field-stat-copy {
  margin: 0.25rem 0 0;
  color: #5c5247;
}

.pgw-dashboard__notice {
  margin: 0.75rem 0 0;
  color: #8a5a2b;
  font-weight: 600;
}

.pgw-dashboard__quick-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.pgw-dashboard__accordion {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--pgw-border);
  border-radius: 14px;
  margin: 0.75rem 0 0;
  overflow: hidden;
}

.pgw-dashboard__accordion:first-of-type {
  margin-top: 0;
}

.pgw-dashboard__accordion-summary {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  gap: 0.7rem;
  list-style: none;
  padding: 0.7rem 0.85rem;
}

.pgw-dashboard__accordion-summary::-webkit-details-marker {
  display: none;
}

.pgw-dashboard__accordion-summary::marker {
  content: '';
}

.pgw-dashboard__accordion-title {
  color: var(--pgw-text);
  font-size: 1rem;
  font-weight: 700;
}

.pgw-dashboard__accordion-copy {
  color: var(--pgw-muted);
  font-size: 0.82rem;
  margin-left: auto;
  text-align: right;
}

.pgw-dashboard__accordion-summary::after {
  color: var(--pgw-accent);
  content: '+';
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.pgw-dashboard__accordion[open] .pgw-dashboard__accordion-summary::after {
  content: '−';
}

.pgw-dashboard__accordion[open] .pgw-dashboard__accordion-summary {
  border-bottom: 1px solid var(--pgw-border);
}

.pgw-dashboard__accordion-body {
  display: grid;
  gap: 0.8rem;
  padding: 0.75rem 0.75rem 0.8rem;
}

.pgw-dashboard__accordion-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pgw-dashboard__accordion-grid > .pgw-dashboard__panel {
  min-width: 0;
}

.pgw-dashboard__accordion-grid--bookings {
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.4fr);
  grid-template-areas:
    "upcoming recurring"
    "credit recurring";
  align-items: start;
}

.pgw-dashboard__accordion-grid--bookings > .pgw-dashboard__panel--upcoming {
  grid-area: upcoming;
}

.pgw-dashboard__accordion-grid--bookings > .pgw-dashboard__panel--credit {
  grid-area: credit;
}

.pgw-dashboard__accordion-grid--bookings > .pgw-dashboard__panel--recurring {
  grid-area: recurring;
}

@media (max-width: 900px) {
  .pgw-dashboard__accordion-grid--bookings {
    grid-template-columns: 1fr;
    grid-template-areas:
      "upcoming"
      "recurring"
      "credit";
  }
}

.pgw-calm-toggle {
  margin-top: 0.75rem;
}

.pgw-calm-toggle[open] {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--pgw-border, #d7e3ee);
  border-radius: 14px;
  overflow: hidden;
}

.pgw-calm-toggle__summary {
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--pgw-border, #d7e3ee);
  border-radius: 14px;
  color: var(--pgw-text, #17324a);
  cursor: pointer;
  display: flex;
  font-weight: 700;
  list-style: none;
  padding: 0.7rem 0.85rem;
}

.pgw-calm-toggle__summary::-webkit-details-marker {
  display: none;
}

.pgw-calm-toggle__summary::marker {
  content: '';
}

.pgw-calm-toggle__summary::after {
  color: var(--pgw-accent, #136f8a);
  content: '+';
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  margin-left: auto;
}

.pgw-calm-toggle[open] > .pgw-calm-toggle__summary::after {
  content: '−';
}

.pgw-calm-toggle[open] > .pgw-calm-toggle__summary {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--pgw-border, #d7e3ee);
  border-radius: 0;
}

.pgw-calm-toggle__body {
  padding: 0.7rem 0 0;
}

.pgw-calm-toggle[open] > .pgw-calm-toggle__body {
  padding: 0.7rem 0.85rem 0.85rem;
}

.pgw-dashboard__quick-link {
  display: grid;
  gap: 0.2rem;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(184, 132, 77, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: #6e4725;
  text-decoration: none;
}

.pgw-dashboard__quick-link--button {
  width: 100%;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.pgw-dashboard__quick-link span {
  color: #5c5247;
  font-weight: 500;
}

.pgw-dashboard__service-link:hover,
.pgw-dashboard__service-link:focus-visible,
.pgw-dashboard__link:hover,
.pgw-dashboard__link:focus-visible,
.pgw-dashboard__quick-link:hover,
.pgw-dashboard__quick-link:focus-visible {
  text-decoration: underline;
}

.pgw-dashboard__grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-bottom: 0.8rem;
}

.pgw-dashboard__panel--pets {
  margin-bottom: 0.8rem;
}

.pgw-dashboard__pet-list,
.pgw-dashboard__action-list,
.pgw-dashboard__booking-list {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pgw-dashboard__form {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.65rem;
}

.pgw-dashboard__field {
  display: grid;
  gap: 0.25rem;
}

.pgw-dashboard__required-token {
  display: inline-flex;
  align-items: center;
  margin-left: 0.45rem;
  border-radius: 999px;
  padding: 0.12rem 0.45rem;
  border: 1px solid rgba(204, 138, 56, 0.4);
  color: #7a5720;
  background: rgba(255, 248, 234, 0.92);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pgw-dashboard__field input,
.pgw-dashboard__field select,
.pgw-dashboard__field textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(184, 132, 77, 0.32);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
}

.pgw-dashboard__checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  color: #4b4238;
}

.pgw-dashboard__pet,
.pgw-dashboard__booking {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(184, 132, 77, 0.16);
}

.pgw-dashboard__booking .pgw-slot-lozenge {
  max-width: 100%;
  width: 100%;
}

.pgw-dashboard__booking .pgw-slot-lozenge__time,
.pgw-dashboard__booking .pgw-slot-lozenge__status {
  white-space: normal;
}

.pgw-dashboard__pet-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.pgw-dashboard__booking-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 0.75rem;
}

.pgw-dashboard__booking-type {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(232, 219, 200, 0.65);
  color: #6e4725;
  font-size: 0.75rem;
  font-weight: 700;
}

.pgw-dashboard__pet:first-child,
.pgw-dashboard__booking:first-child {
  padding-top: 0;
  border-top: 0;
}

.pgw-dashboard__pet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pgw-dashboard__activation-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.pgw-dashboard__activation-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(184, 132, 77, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.pgw-dashboard__activation-row form {
  margin: 0;
}

.pgw-dashboard__subheading {
  margin: 0.9rem 0 0;
}

.pgw-dashboard__pet-create {
  margin-top: 0.9rem;
  padding-top: 0.8rem;
  border-top: 1px dashed rgba(184, 132, 77, 0.24);
}

.pgw-dashboard__form-actions {
  display: flex;
  justify-content: flex-start;
}

.pgw-dashboard__action-list {
  list-style: disc;
  margin-left: 1.2rem;
}

.pgw-dashboard__guest-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 0.85rem;
}

.pgw-dashboard__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  background: #b0692e;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.pgw-dashboard__panel--hero-cta {
  background:
    radial-gradient(circle at top right, rgba(236, 196, 147, 0.22), transparent 45%),
    rgba(255, 255, 255, 0.94);
}

.pgw-dashboard__button--hero {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(176, 105, 46, 0.2);
}

.pgw-dashboard__button--hero:hover,
.pgw-dashboard__button--hero:focus-visible {
  background: #9e5d27;
  text-decoration: none;
}

.pgw-dashboard__button--ghost {
  background: transparent;
  color: #6e4725;
  border: 1px solid rgba(184, 132, 77, 0.32);
}

.pgw-dashboard__booking a.pgw-slot-lozenge {
  text-decoration: none;
}

.pgw-team {
  padding: clamp(1.35rem, 2vw, 2rem);
  border: 1px solid rgba(184, 132, 77, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(226, 208, 182, 0.18), transparent 48%),
    rgba(253, 250, 245, 0.96);
}

.pgw-team__eyebrow {
  margin: 0 0 0.65rem;
  color: #b0692e;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pgw-team__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.pgw-team__intro,
.pgw-team__empty,
.pgw-team__qualifications,
.pgw-team__bio p {
  color: #5f5347;
}

.pgw-team__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 1.5rem;
}

.pgw-team__card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(184, 132, 77, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.pgw-team__image-wrap {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 4 / 3;
  background: rgba(226, 208, 182, 0.24);
}

.pgw-team__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pgw-team__content {
  display: grid;
  gap: 0.8rem;
}

.pgw-team__name {
  margin: 0;
  font-size: 1.2rem;
}

.pgw-team__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pgw-team__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(232, 219, 200, 0.6);
  color: #6e4725;
  font-size: 0.78rem;
  font-weight: 700;
}

.pgw-team__qualifications,
.pgw-team__bio p {
  margin: 0;
}

.pgw-walking {
  padding: clamp(1.35rem, 2vw, 2rem);
  border: 1px solid rgba(184, 132, 77, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(226, 208, 182, 0.18), transparent 48%),
    rgba(253, 250, 245, 0.96);
}

.pgw-walking__eyebrow {
  margin: 0 0 0.65rem;
  color: #b0692e;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pgw-walking__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.pgw-walking__intro,
.pgw-walking__empty,
.pgw-walking__request-copy {
  color: #5f5347;
}

.pgw-walking__status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(184, 132, 77, 0.12);
}

.pgw-walking__status.is-success {
  background: rgba(79, 116, 65, 0.12);
  color: #365e30;
}

.pgw-walking__status.is-error {
  background: rgba(160, 73, 65, 0.12);
  color: #8d3a2d;
}

.pgw-walking__summary {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 1.35rem;
}

.pgw-walking__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  margin-top: 1.35rem;
}

.pgw-walking__panel,
.pgw-walking__request {
  padding: 1rem;
  border: 1px solid rgba(184, 132, 77, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.pgw-walking__panel-title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
}

.pgw-walking__form {
  display: grid;
  gap: 0.95rem;
}

.pgw-walking__fieldset {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  border: 1px dashed rgba(184, 132, 77, 0.28);
  border-radius: 18px;
}

.pgw-walking__request-list {
  display: grid;
  gap: 0.85rem;
}

.pgw-walking__request-head {
  display: flex;
  justify-content: space-between;
  gap: 0.85rem;
  align-items: start;
  margin-bottom: 0.65rem;
}

.pgw-walking__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
@media (max-width: 640px) {
  .pgw-availability {
    padding: 1.1rem;
  }

  .pgw-availability__toolbar {
    grid-template-columns: 1fr;
  }

  .pgw-availability__toolbar-actions,
  .pgw-range-preset,
  .pgw-move-mode,
  .pgw-range-window {
    justify-content: flex-start;
    justify-items: start;
  }

  .pgw-move-mode__note {
    text-align: left;
  }

  .pgw-availability__layout {
    grid-template-columns: 1fr;
  }

  .pgw-availability__slots {
    grid-template-columns: 1fr;
  }

  .pgw-selection {
    position: static;
  }

  .pgw-checkout-draft__layout {
    grid-template-columns: 1fr;
  }

  .pgw-checkout-draft__sidebar {
    position: static;
  }

  .pgw-availability__modal {
    padding: 1rem;
  }

  .pgw-checkout-draft--inline {
    max-height: calc(100vh - 2rem);
    padding: 1.15rem;
    width: calc(100vw - 2rem);
  }

  .pgw-dashboard__activation-row {
    flex-direction: column;
    align-items: stretch;
  }

  .pgw-checkout-draft__modal-head {
    align-items: start;
    flex-direction: column;
  }

  .pgw-checkout-draft__sidebar--inline {
    position: static;
  }

  .pgw-onboarding {
    padding: 1.5rem;
  }

  .pgw-onboarding__layout {
    grid-template-columns: 1fr;
  }

  .pgw-account-cta {
    padding: 1.5rem;
  }

  .pgw-dashboard {
    padding: 1.5rem;
  }

  .pgw-dashboard__hero-grid {
    grid-template-columns: 1fr;
  }

  .pgw-dashboard__accordion-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .pgw-dashboard__accordion-copy {
    margin-left: 0;
    text-align: left;
  }

  .pgw-walking {
    padding: 1.5rem;
  }

  .pgw-walking__grid {
    grid-template-columns: 1fr;
  }

  .pgw-walking__request-head,
  .pgw-dashboard__service-header,
  .pgw-dashboard__guest-actions,
  .pgw-dashboard__booking-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ── SVG Icon System ── */

.pgw-icon {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}

.pgw-icon--paw {
  color: var(--pgw-accent);
}

.pgw-icon--clock {
  opacity: 0.55;
}

.pgw-availability__brand {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

/* ── Simplified Toolbar ── */

.pgw-availability__toolbar {
  grid-template-columns: 1fr;
}

.pgw-availability__toolbar-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-start;
}

.pgw-range-window__button {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-width: 36px;
  padding: 0.5rem;
}

/* ── Simplified Stats ── */

.pgw-availability__stats {
  grid-template-columns: repeat(3, 1fr);
}

.pgw-stat {
  align-items: center;
  display: flex;
  gap: 0.6rem;
}

.pgw-stat--accent {
  background: rgba(163, 90, 29, 0.06);
  border-color: rgba(163, 90, 29, 0.2);
}

.pgw-stat--accent .pgw-stat__value {
  color: var(--pgw-accent);
}

/* ── Icon-Led Slot Cards ── */

.pgw-slot {
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
  min-height: auto;
  padding: 0.6rem 0.8rem;
}

.pgw-slot__indicator {
  flex-shrink: 0;
  line-height: 1;
}

.pgw-slot__time {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.pgw-slot__endtime {
  color: var(--pgw-muted);
  font-size: 0.88rem;
  margin-left: auto;
}

.pgw-slot__status {
  display: none;
}

.pgw-slot__meta {
  display: none;
}

.pgw-availability__slots {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

/* ── Simplified Selection Basket ── */

.pgw-selection__title {
  align-items: center;
  display: flex;
  gap: 0.45rem;
}

/* ── Progress Stepper ── */

.pgw-checkout-draft__progress {
  display: flex;
  gap: 0;
  justify-content: space-between;
  margin: 1rem 0;
  position: relative;
}

.pgw-checkout-draft__progress::before {
  background: var(--pgw-border);
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 12px;
}

.pgw-progress-step {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
}

.pgw-progress-step__dot {
  background: #fff;
  border: 2px solid var(--pgw-border);
  border-radius: 50%;
  display: block;
  height: 24px;
  width: 24px;
}

.pgw-progress-step.is-complete .pgw-progress-step__dot {
  background: var(--pgw-accent);
  border-color: var(--pgw-accent);
  position: relative;
}

.pgw-progress-step.is-complete .pgw-progress-step__dot::after {
  border: solid #fff;
  border-width: 0 2px 2px 0;
  content: '';
  display: block;
  height: 10px;
  left: 50%;
  position: absolute;
  top: 42%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 5px;
}

.pgw-progress-step.is-active .pgw-progress-step__dot {
  background: #fff;
  border-color: var(--pgw-accent);
  box-shadow: 0 0 0 3px rgba(163, 90, 29, 0.15);
}

.pgw-progress-step__label {
  color: var(--pgw-muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.pgw-progress-step.is-active .pgw-progress-step__label {
  color: var(--pgw-accent);
  font-weight: 700;
}

.pgw-progress-step.is-complete .pgw-progress-step__label {
  color: var(--pgw-text);
}

/* ── Countdown Highlight ── */

.pgw-checkout-draft__countdown {
  color: var(--pgw-accent);
  font-size: 1.2rem;
  font-weight: 800;
}

/* ── Credit Note ── */

.pgw-checkout-draft__credit-note {
  color: var(--pgw-muted);
  font-size: 0.85rem;
  font-weight: 400;
}

/* ── Timer Summary Card ── */

.pgw-checkout-draft__summary-card--timer {
  background: rgba(163, 90, 29, 0.04);
  border-color: rgba(163, 90, 29, 0.2);
}

/* ── Close Button with Icon ── */

.pgw-checkout-draft__modal-close {
  align-items: center;
  display: inline-flex;
  gap: 0.3rem;
  justify-content: center;
  min-width: 40px;
  padding: 0.55rem;
}

/* ── Button Icons ── */

.pgw-selection__button {
  align-items: center;
  display: inline-flex;
  gap: 0.4rem;
}

/* ── Move Mode Simplified ── */

.pgw-move-mode__button {
  align-items: center;
  display: inline-flex;
  gap: 0.35rem;
}

/* ── Panel Title Icons ── */

.pgw-checkout-draft__panel-title {
  align-items: center;
  display: flex;
  gap: 0.4rem;
}

/* ── Timer Intro ── */

.pgw-checkout-draft__intro--timer {
  align-items: center;
  background: rgba(163, 90, 29, 0.06);
  border: 1px solid rgba(163, 90, 29, 0.15);
  border-radius: 12px;
  color: var(--pgw-accent);
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 600;
  gap: 0.35rem;
  margin-top: 0.5rem;
  padding: 0.45rem 0.85rem;
}

/* ── Slot Icon Hover Effects ── */

.pgw-slot--available:hover .pgw-slot__icon--available,
.pgw-slot--available:focus-visible .pgw-slot__icon--available {
  transform: scale(1.15);
  transition: transform 120ms ease;
}

.pgw-slot.is-selected .pgw-slot__indicator {
  transform: scale(1.1);
}

/* Accounts / Spend Summary */
.pgw-accounts {
  margin: 24px 0;
}
.pgw-accounts__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.pgw-accounts__summary {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.pgw-accounts__card {
  background: var(--pgw-panel, #fff);
  border: 1px solid var(--pgw-border, #ddd);
  border-radius: 6px;
  padding: 14px 18px;
  min-width: 140px;
  flex: 1;
}
.pgw-accounts__card-label {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.pgw-accounts__card-value {
  font-size: 22px;
  font-weight: 700;
  margin-top: 2px;
}
.pgw-accounts__card-sub {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}
.pgw-accounts__services {
  margin-bottom: 20px;
}
.pgw-accounts__service-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--pgw-border, #eee);
  font-size: 14px;
}
.pgw-accounts__service-name {
  color: #555;
}
.pgw-accounts__service-amount {
  font-weight: 600;
}
.pgw-accounts__subtitle {
  font-size: 15px;
  font-weight: 600;
  margin: 16px 0 8px;
}
.pgw-accounts__transactions {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pgw-accounts__tx-row {
  display: flex;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid var(--pgw-border, #f0f0f0);
  font-size: 13px;
}
.pgw-accounts__tx-date {
  color: #888;
  min-width: 80px;
}
.pgw-accounts__tx-desc {
  flex: 1;
}
.pgw-accounts__tx-amount {
  font-weight: 600;
  text-align: right;
}
.pgw-accounts__empty {
  color: #999;
  font-style: italic;
  font-size: 14px;
}
.pgw-accounts__guest {
  color: #666;
  font-size: 14px;
  padding: 16px;
}

/* Admin Accounts View (frontend) */
.pgw-admin-accounts {
  margin: 24px 0;
}
.pgw-admin-accounts__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
.pgw-admin-accounts__filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: end;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: var(--pgw-panel, #fff);
  border: 1px solid var(--pgw-border, #ddd);
  border-radius: 6px;
}
.pgw-admin-accounts__filter {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
}
.pgw-admin-accounts__filter span {
  font-weight: 600;
  color: #555;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.pgw-admin-accounts__filter select,
.pgw-admin-accounts__filter input {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 13px;
  background: #fff;
}
.pgw-admin-accounts__filter input[type="number"] {
  width: 80px;
}
.pgw-admin-accounts__filter input[type="text"] {
  width: 130px;
}
.pgw-admin-accounts__btn {
  padding: 7px 16px;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: var(--pgw-text, #2f2418);
  color: #fff;
  text-decoration: none;
  align-self: end;
}
.pgw-admin-accounts__btn:hover {
  opacity: .85;
}
.pgw-admin-accounts__btn--ghost {
  background: transparent;
  color: var(--pgw-text, #2f2418);
  border: 1px solid var(--pgw-border, #ccc);
}
.pgw-admin-accounts__summary {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.pgw-admin-accounts__card {
  background: var(--pgw-panel, #fff);
  border: 1px solid var(--pgw-border, #ddd);
  border-radius: 6px;
  padding: 14px 18px;
  min-width: 110px;
  flex: 1;
}
.pgw-admin-accounts__card-label {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.pgw-admin-accounts__card-value {
  font-size: 22px;
  font-weight: 700;
  margin-top: 2px;
}
.pgw-admin-accounts__panels {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.pgw-admin-accounts__panel {
  flex: 1;
  min-width: 280px;
}
.pgw-admin-accounts__panel-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
}
.pgw-admin-accounts__table-wrap {
  overflow-x: auto;
}
.pgw-admin-accounts__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.pgw-admin-accounts__table th {
  text-align: left;
  padding: 8px 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: #666;
  background: #f8f8f6;
  border-bottom: 2px solid var(--pgw-border, #ddd);
}
.pgw-admin-accounts__table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--pgw-border, #eee);
}
.pgw-admin-accounts__table tbody tr:hover {
  background: #faf9f7;
}
.pgw-admin-accounts__table .pgw-num {
  text-align: right;
}
.pgw-admin-accounts__empty {
  color: #999;
  font-style: italic;
}
.pgw-admin-accounts__link {
  color: var(--pgw-text, #2f2418);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pgw-admin-accounts__status {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.pgw-status--paid {
  background: #e8f5e9;
  color: #2e7d32;
}
.pgw-status--pending {
  background: #fff3e0;
  color: #e65100;
}
.pgw-status--failed {
  background: #ffebee;
  color: #c62828;
}

.pgw-availability__guide-list {
  color: var(--pgw-muted);
  display: grid;
  gap: 0.45rem;
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
}

.pgw-account-cta__details,
.pgw-accounts__details,
.pgw-team__details,
.pgw-checkout-draft__details {
  margin-top: 1rem;
}

.pgw-admin-zone {
  --pgw-admin-red: #b42318;
  --pgw-admin-red-soft: #fff3f1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid var(--pgw-border);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(19, 111, 138, 0.06), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
  box-shadow: 0 8px 20px rgba(16, 40, 64, 0.06);
}

.pgw-admin-zone--locked {
  color: #6a2d2a;
}

.pgw-admin-zone__banner {
  margin-bottom: 0.7rem;
}

.pgw-admin-zone__eyebrow {
  margin: 0 0 0.4rem;
  color: var(--pgw-admin-red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pgw-admin-zone__title {
  margin: 0 0 0.35rem;
  color: #13293d;
}

.pgw-admin-zone__intro,
.pgw-admin-zone__panel-copy,
.pgw-admin-zone__section-copy,
.pgw-admin-zone__field-copy,
.pgw-admin-zone__health-row p {
  color: #5a7288;
}

.pgw-admin-zone__notice {
  margin-bottom: 0.85rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  border: 1px solid #cfe5d8;
  background: #edf8f1;
  color: #1f7a53;
  font-weight: 700;
}

.pgw-admin-zone__grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.9fr);
  margin-bottom: 0.75rem;
}

.pgw-admin-zone__panel,
.pgw-admin-zone__section {
  border: 1px solid var(--pgw-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--pgw-shadow-soft);
}

.pgw-admin-zone__panel {
  padding: 0.75rem 0.85rem;
}

.pgw-admin-zone__panel-title {
  margin: 0 0 0.25rem;
}

.pgw-admin-zone__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.45rem;
}

.pgw-admin-zone__link {
  align-items: center;
  background: #edf4f8;
  border: 1px solid #d4e1ea;
  border-radius: 999px;
  color: #234257;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 700;
  min-height: 32px;
  padding: 0.35rem 0.75rem;
  text-decoration: none;
}

.pgw-admin-zone__link:hover,
.pgw-admin-zone__link:focus-visible {
  text-decoration: underline;
}

.pgw-admin-zone__health-cards {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.pgw-admin-zone__health-card {
  min-width: 170px;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--pgw-border);
  border-radius: 999px;
  background: #f4f9fc;
}

.pgw-admin-zone__health-card--warning {
  border-color: rgba(180, 35, 24, 0.2);
  background: var(--pgw-admin-red-soft);
}

.pgw-admin-zone__health-label {
  display: block;
  color: #5f778d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pgw-admin-zone__health-value {
  color: #13293d;
  display: block;
  font-size: 1.1rem;
  margin-top: 0.05rem;
}

.pgw-admin-zone__health-details {
  margin-top: 0.7rem;
}

.pgw-admin-zone__health-list {
  display: grid;
  gap: 0.65rem;
}

.pgw-admin-zone__health-row {
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  border: 1px solid var(--pgw-border);
  background: #fbfdff;
}

.pgw-admin-zone__health-row span {
  color: var(--pgw-admin-red);
  display: inline-block;
  font-weight: 700;
  margin-top: 0.2rem;
}

.pgw-admin-zone__health-row p {
  margin: 0.35rem 0 0;
}

.pgw-admin-zone__form {
  display: grid;
  gap: 0.65rem;
}

.pgw-admin-zone__section-summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  line-height: 1.2;
  list-style: none;
  min-height: 44px;
  padding: 0.65rem 0.85rem;
  font-weight: 700;
}

.pgw-admin-zone__section-summary::-webkit-details-marker {
  display: none;
}

.pgw-admin-zone__section-summary::after {
  content: '+';
  color: var(--pgw-admin-red);
  font-size: 1rem;
  line-height: 1;
  margin-left: auto;
}

.pgw-admin-zone__section[open] > .pgw-admin-zone__section-summary::after {
  content: '−';
}

.pgw-admin-zone__section--out-of-scope {
  border-color: rgba(180, 35, 24, 0.24);
}

.pgw-admin-zone__section-body {
  padding: 0 0.85rem 0.75rem;
}

.pgw-admin-zone__field-groups {
  display: grid;
  gap: 0.6rem;
}

.pgw-admin-zone__fields {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 0.55rem;
}

.pgw-admin-zone__fields--toggles {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pgw-admin-zone__field {
  display: grid;
  gap: 0.22rem;
}

.pgw-admin-zone__field-label {
  color: #17324a;
  font-weight: 700;
}

.pgw-admin-zone__field input,
.pgw-admin-zone__field textarea,
.pgw-admin-zone__field select {
  width: 100%;
  min-height: 38px;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--pgw-border);
  border-radius: 12px;
  background: #fcfeff;
  color: #17324a;
}

.pgw-admin-zone__field input:focus,
.pgw-admin-zone__field textarea:focus,
.pgw-admin-zone__field select:focus {
  border-color: var(--pgw-accent);
  box-shadow: 0 0 0 4px rgba(19, 111, 138, 0.12);
  outline: none;
}

.pgw-admin-zone__checkbox {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  min-height: 38px;
  padding: 0.45rem 0.6rem;
  border: 1px solid var(--pgw-border);
  border-radius: 12px;
  background: #fcfeff;
}

.pgw-admin-zone__checkbox input {
  height: 1rem;
  margin: 0;
  width: 1rem;
}

.pgw-admin-zone__checkbox-label {
  color: #27465c;
  font-size: 0.9rem;
  font-weight: 700;
}

.pgw-admin-zone__checkbox-group {
  border: 1px solid var(--pgw-border);
  border-radius: 12px;
  background: #fcfeff;
  margin: 0;
  min-height: 38px;
  padding: 0.5rem 0.65rem;
}

.pgw-admin-zone__checkbox-grid {
  display: grid;
  gap: 0.4rem 0.7rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.pgw-admin-zone__checkbox-group-item {
  align-items: center;
  color: #27465c;
  display: flex;
  font-size: 0.9rem;
  gap: 0.45rem;
  min-height: 1.8rem;
}

.pgw-admin-zone__checkbox-group-item input {
  height: 1rem;
  margin: 0;
  width: 1rem;
}

.pgw-admin-zone__field-copy {
  font-size: 0.84rem;
  line-height: 1.35;
}

.pgw-admin-zone__actions {
  display: flex;
  justify-content: flex-start;
}

/* Clinical launch refresh */

:is(
  .pgw-availability,
  .pgw-checkout-draft,
  .pgw-onboarding,
  .pgw-account-cta,
  .pgw-dashboard,
  .pgw-admin-zone,
  .pgw-team
) {
  --pgw-surface: #f3f7fb;
  --pgw-panel: rgba(255, 255, 255, 0.96);
  --pgw-border: #d7e3ee;
  --pgw-border-strong: #bfd0df;
  --pgw-text: #17324a;
  --pgw-muted: #5a7288;
  --pgw-accent: #136f8a;
  --pgw-accent-strong: #0f5b72;
  --pgw-accent-soft: #e6f3f7;
  --pgw-success: #1f7a53;
  --pgw-warning: #a86d1b;
  --pgw-danger: #a14646;
  --pgw-shadow: 0 14px 36px rgba(16, 40, 64, 0.07);
  --pgw-shadow-soft: 0 8px 18px rgba(16, 40, 64, 0.05);
  color: var(--pgw-text);
  font-family: "Aptos", "Segoe UI Variable", "Segoe UI", "Helvetica Neue", sans-serif;
}

:is(
  .pgw-availability,
  .pgw-checkout-draft,
  .pgw-onboarding,
  .pgw-account-cta,
  .pgw-dashboard,
  .pgw-admin-zone,
  .pgw-team
) {
  background:
    radial-gradient(circle at top right, rgba(19, 111, 138, 0.07), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, var(--pgw-surface) 100%);
  border: 1px solid var(--pgw-border);
  border-radius: 18px;
  box-shadow: var(--pgw-shadow);
}

.pgw-availability {
  padding: 1.2rem;
}

:is(
  .pgw-availability__eyebrow,
  .pgw-checkout-draft__eyebrow,
  .pgw-onboarding__eyebrow,
  .pgw-dashboard__eyebrow,
  .pgw-account-cta__eyebrow,
  .pgw-team__eyebrow,
  .pgw-availability__toolbar-eyebrow,
  .pgw-selection__eyebrow,
  .pgw-selection__review-title,
  .pgw-selection__commit-title,
  .pgw-selection__checkout-title,
  .pgw-selection__move-title,
  .pgw-dashboard__summary-label,
  .pgw-checkout-draft__meta-label,
  .pgw-checkout-draft__summary-label
) {
  color: var(--pgw-accent);
  letter-spacing: 0.12em;
}

:is(
  .pgw-availability__title,
  .pgw-checkout-draft__title,
  .pgw-onboarding__title,
  .pgw-dashboard__title,
  .pgw-account-cta__title
) {
  color: #10293d;
  letter-spacing: -0.03em;
}

:is(
  .pgw-availability__intro,
  .pgw-availability__window,
  .pgw-availability__snapshot-note,
  .pgw-checkout-draft__intro,
  .pgw-checkout-draft__section-detail,
  .pgw-checkout-draft__window-detail,
  .pgw-checkout-draft__panel-copy,
  .pgw-onboarding__intro,
  .pgw-onboarding__panel-copy,
  .pgw-onboarding__signed-in-copy,
  .pgw-dashboard__intro,
  .pgw-dashboard__section-copy,
  .pgw-dashboard__empty,
  .pgw-dashboard__pet-copy,
  .pgw-dashboard__service-copy,
  .pgw-dashboard__booking span,
  .pgw-account-cta__copy,
  .pgw-account-cta__card-copy
) {
  color: var(--pgw-muted);
}

:is(
  .pgw-stat,
  .pgw-selection,
  .pgw-selection__item,
  .pgw-selection__empty,
  .pgw-selection__segment,
  .pgw-selection__review,
  .pgw-selection__review-flow,
  .pgw-selection__stage,
  .pgw-selection__window,
  .pgw-selection__checkout-slot,
  .pgw-selection__next-action,
  .pgw-selection__checkout-line,
  .pgw-selection__recovery,
  .pgw-checkout-draft__meta-card,
  .pgw-checkout-draft__summary-card,
  .pgw-checkout-draft__panel,
  .pgw-checkout-draft__section,
  .pgw-checkout-draft__window,
  .pgw-checkout-draft__action,
  .pgw-onboarding__panel,
  .pgw-onboarding__signed-in,
  .pgw-account-cta__info-card,
  .pgw-dashboard__summary-card,
  .pgw-dashboard__panel,
  .pgw-dashboard__service,
  .pgw-dashboard__field-stat,
  .pgw-dashboard__quick-link
) {
  background: var(--pgw-panel);
  border: 1px solid var(--pgw-border);
  border-radius: 14px;
  box-shadow: var(--pgw-shadow-soft);
}

:is(
  .pgw-availability__stats,
  .pgw-checkout-draft__summary,
  .pgw-checkout-draft__meta,
  .pgw-dashboard__summary
) {
  gap: 0.6rem;
}

:is(
  .pgw-range-preset__button,
  .pgw-range-window__button,
  .pgw-day-nav__button,
  .pgw-move-mode__button,
  .pgw-checkout-draft__modal-close
) {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--pgw-border);
  border-radius: 14px;
  box-shadow: none;
  color: var(--pgw-text);
}

:is(
  .pgw-range-preset__button:hover,
  .pgw-range-preset__button:focus-visible,
  .pgw-range-window__button:hover,
  .pgw-range-window__button:focus-visible,
  .pgw-day-nav__button:hover,
  .pgw-day-nav__button:focus-visible,
  .pgw-move-mode__button:hover,
  .pgw-move-mode__button:focus-visible,
  .pgw-checkout-draft__modal-close:hover,
  .pgw-checkout-draft__modal-close:focus-visible
) {
  border-color: var(--pgw-accent);
  box-shadow: 0 0 0 3px rgba(19, 111, 138, 0.12);
}

:is(
  .pgw-range-preset__button.is-active,
  .pgw-day-nav__button.is-active,
  .pgw-move-mode__button.is-active
) {
  background: var(--pgw-accent-soft);
  border-color: rgba(19, 111, 138, 0.35);
  color: var(--pgw-accent-strong);
}

:is(
  .pgw-selection__button,
  .pgw-onboarding__cta,
  .pgw-account-cta__button,
  .pgw-dashboard__button
) {
  background: linear-gradient(180deg, var(--pgw-accent) 0%, var(--pgw-accent-strong) 100%);
  border: 1px solid rgba(15, 91, 114, 0.25);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(19, 111, 138, 0.14);
  color: #f7fbfd;
  transition: transform 120ms ease, box-shadow 120ms ease, filter 120ms ease;
}

:is(
  .pgw-selection__button:hover,
  .pgw-selection__button:focus-visible,
  .pgw-onboarding__cta:hover,
  .pgw-onboarding__cta:focus-visible,
  .pgw-account-cta__button:hover,
  .pgw-account-cta__button:focus-visible,
  .pgw-dashboard__button:hover,
  .pgw-dashboard__button:focus-visible
) {
  box-shadow: 0 10px 22px rgba(19, 111, 138, 0.18);
  filter: saturate(1.03);
  transform: translateY(-1px);
  outline: none;
}

:is(
  .pgw-selection__button.is-muted,
  .pgw-account-cta__button--ghost,
  .pgw-dashboard__button--ghost
) {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--pgw-border-strong);
  box-shadow: none;
  color: var(--pgw-text);
}

:is(
  .pgw-onboarding__field input,
  .pgw-dashboard__field input,
  .pgw-dashboard__field select,
  .pgw-dashboard__field textarea
) {
  background: #fcfeff;
  border: 1px solid var(--pgw-border);
  border-radius: 12px;
  color: var(--pgw-text);
  min-height: 42px;
}

:is(
  .pgw-onboarding__field input:focus,
  .pgw-dashboard__field input:focus,
  .pgw-dashboard__field select:focus,
  .pgw-dashboard__field textarea:focus
) {
  border-color: var(--pgw-accent);
  box-shadow: 0 0 0 4px rgba(19, 111, 138, 0.12);
  outline: none;
}

.pgw-slot {
  background: #fcfeff;
  border: 1px solid var(--pgw-border);
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(16, 40, 64, 0.05);
  min-height: 92px;
  padding: 0.7rem 0.8rem;
}

.pgw-slot--available {
  background: linear-gradient(180deg, #fafdff 0%, #eef7fb 100%);
  border-color: #cfe1ea;
}

.pgw-slot--held-self,
.pgw-slot--held-self-protected,
.pgw-slot--held-self-recurring,
.pgw-slot--held-self-checkout {
  background: linear-gradient(180deg, #fbfdff 0%, #edf4fa 100%);
}

.pgw-slot--held-other {
  background:
    repeating-linear-gradient(
      -45deg,
      #f6f9fc,
      #f6f9fc 10px,
      #edf3f8 10px,
      #edf3f8 20px
    );
  border-color: #cfdae5;
}

.pgw-slot--unavailable {
  background: #f4f7fa;
  border-color: #d8e0e8;
}

.pgw-slot:hover,
.pgw-slot:focus-visible {
  border-color: var(--pgw-accent);
  box-shadow: 0 14px 28px rgba(16, 40, 64, 0.12);
}

.pgw-slot.is-selected {
  border-color: var(--pgw-accent);
  box-shadow:
    0 0 0 3px rgba(19, 111, 138, 0.14),
    0 14px 28px rgba(16, 40, 64, 0.12);
}

.pgw-selection {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 250, 253, 0.97));
  border-radius: 14px;
}

.pgw-selection__segment,
.pgw-selection__review,
.pgw-selection__review-flow,
.pgw-selection__stage,
.pgw-selection__window,
.pgw-selection__checkout-slot,
.pgw-selection__next-action,
.pgw-selection__checkout-line,
.pgw-checkout-draft__window,
.pgw-checkout-draft__action {
  border-radius: 14px;
}

.pgw-selection__review,
.pgw-selection__recovery,
.pgw-checkout-draft__section--recovery,
.pgw-checkout-draft__stripe {
  background: linear-gradient(180deg, #fbfdff 0%, #f0f7fa 100%);
  border-color: #cde0e8;
}

.pgw-selection__stage--moves,
.pgw-checkout-draft__section--moves {
  border-left-color: #40657b;
}

.pgw-selection__stage--credit,
.pgw-checkout-draft__section--credit,
.pgw-checkout-draft__action--pending {
  border-left-color: var(--pgw-warning);
}

.pgw-selection__stage--payable,
.pgw-checkout-draft__section--payable,
.pgw-checkout-draft__panel-title .pgw-icon,
.pgw-selection__checkout-line--failed {
  border-left-color: var(--pgw-accent);
}

.pgw-selection__next-action--available,
.pgw-checkout-draft__action--available,
.pgw-checkout-draft__window--held {
  border-left-color: var(--pgw-success);
}

.pgw-selection__next-action--required,
.pgw-checkout-draft__action--required,
.pgw-checkout-draft__window--failed {
  border-left-color: var(--pgw-danger);
}

.pgw-checkout-draft__progress::before {
  background: linear-gradient(90deg, #d9e5ee 0%, #bfd8e3 100%);
}

.pgw-progress-step__dot {
  border-color: #c8d8e5;
}

.pgw-progress-step.is-complete .pgw-progress-step__dot {
  background: var(--pgw-accent);
  border-color: var(--pgw-accent);
}

.pgw-progress-step.is-active .pgw-progress-step__dot {
  border-color: var(--pgw-accent);
  box-shadow: 0 0 0 4px rgba(19, 111, 138, 0.12);
}

.pgw-checkout-draft__countdown,
.pgw-selection__checkout-countdown,
.pgw-selection__recovery-countdown {
  color: var(--pgw-accent-strong);
  font-variant-numeric: tabular-nums;
}

.pgw-checkout-draft__modal-backdrop {
  background:
    linear-gradient(180deg, rgba(8, 22, 34, 0.76), rgba(8, 22, 34, 0.72)),
    radial-gradient(circle at top left, rgba(19, 111, 138, 0.16), transparent 34%);
  backdrop-filter: blur(8px);
}

.pgw-checkout-draft--inline {
  border-radius: 20px;
  box-shadow:
    0 28px 80px rgba(10, 28, 44, 0.22),
    0 12px 32px rgba(10, 28, 44, 0.12);
}

.pgw-checkout-draft__modal-head {
  border-bottom: 1px solid rgba(191, 208, 223, 0.8);
}

.pgw-dashboard__panel--highlight {
  background:
    radial-gradient(circle at top right, rgba(19, 111, 138, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 252, 0.98));
}

.pgw-dashboard__field-stat-value,
.pgw-dashboard__summary-value {
  color: #10293d;
  font-variant-numeric: tabular-nums;
}

.pgw-dashboard__service-state,
.pgw-dashboard__tag,
.pgw-dashboard__booking-type,
.pgw-account-cta__pill,
.pgw-legend-chip {
  background: #edf4f8;
  border: 1px solid #d4e1ea;
  color: #30556a;
}

.pgw-dashboard__tag.is-success {
  background: #e8f4ee;
  border-color: #c7e0d2;
  color: #2a6848;
}

.pgw-dashboard__service-link,
.pgw-dashboard__link,
.pgw-account-cta__link,
.pgw-checkout-draft__return-link {
  color: var(--pgw-accent-strong);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.pgw-admin-zone {
  border: 1px solid var(--pgw-border);
  background:
    radial-gradient(circle at top right, rgba(19, 111, 138, 0.07), transparent 24%),
    linear-gradient(180deg, #fffefe 0%, #fbfdff 100%);
}

@media (max-width: 900px) {
  :is(
    .pgw-availability,
    .pgw-checkout-draft,
    .pgw-onboarding,
    .pgw-account-cta,
    .pgw-dashboard,
    .pgw-admin-zone
  ) {
    border-radius: 16px;
    padding: 1rem;
  }

  .pgw-availability__stats {
    grid-template-columns: 1fr;
  }

  .pgw-dashboard__hero-grid,
  .pgw-dashboard__accordion-grid,
  .pgw-dashboard__quick-actions,
  .pgw-onboarding__layout {
    grid-template-columns: 1fr;
  }

  .pgw-dashboard__service-header,
  .pgw-dashboard__booking-head,
  .pgw-dashboard__pet-head,
  .pgw-account-cta__actions,
  .pgw-dashboard__guest-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .pgw-dashboard__summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pgw-admin-zone__grid,
  .pgw-admin-zone__fields,
  .pgw-admin-zone__fields--toggles {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :is(
    .pgw-availability,
    .pgw-checkout-draft,
    .pgw-onboarding,
    .pgw-account-cta,
    .pgw-dashboard,
    .pgw-admin-zone,
    .pgw-team
  ) {
    border-radius: 14px;
    padding: 0.85rem;
  }

  :is(
    .pgw-availability__title,
    .pgw-checkout-draft__title,
    .pgw-onboarding__title,
    .pgw-dashboard__title,
    .pgw-account-cta__title
  ) {
    font-size: 1.8rem;
  }

  .pgw-dashboard__summary,
  .pgw-dashboard__field-stats {
    grid-template-columns: 1fr;
  }

  .pgw-dashboard__summary-card,
  .pgw-dashboard__panel,
  .pgw-dashboard__service,
  .pgw-admin-zone__panel,
  .pgw-checkout-draft__meta-card,
  .pgw-checkout-draft__summary-card,
  .pgw-checkout-draft__panel,
  .pgw-checkout-draft__section,
  .pgw-onboarding__panel,
  .pgw-team__card {
    padding: 0.75rem;
  }

  .pgw-dashboard__accordion-summary,
  .pgw-calm-toggle__summary {
    padding: 0.65rem 0.75rem;
  }

  .pgw-dashboard__field input,
  .pgw-dashboard__field select,
  .pgw-dashboard__field textarea,
  .pgw-onboarding__field input {
    min-height: 40px;
    padding: 0.6rem 0.7rem;
  }

  .pgw-selection__button,
  .pgw-onboarding__cta,
  .pgw-account-cta__button,
  .pgw-dashboard__button {
    min-height: 40px;
    padding: 0.65rem 0.85rem;
    width: 100%;
  }

  .pgw-account-cta__actions > *,
  .pgw-admin-zone__actions > *,
  .pgw-dashboard__guest-actions > *,
  .pgw-dashboard__form-actions > * {
    width: 100%;
  }

  .pgw-admin-zone {
    padding: 0.85rem;
  }

  .pgw-admin-zone__section-summary,
  .pgw-admin-zone__section-body,
  .pgw-admin-zone__panel {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .pgw-checkout-draft__modal-head {
    gap: 0.6rem;
    padding: 0.8rem;
  }

  .pgw-checkout-draft--inline {
    border-radius: 16px;
  }
}

/* Field booking compactness and wider estate */

.pgw-availability {
  box-sizing: border-box;
  width: min(1360px, calc(100vw - 2rem));
  max-width: none;
  margin: 1rem 0 1.25rem;
  margin-left: 50%;
  padding: 0.95rem 1rem;
  transform: translateX(-50%);
}

.pgw-availability__header {
  margin-bottom: 0.85rem;
}

.pgw-availability__title {
  margin-bottom: 0.35rem;
}

.pgw-availability__intro {
  margin-top: 0;
}

.pgw-availability__toolbar {
  gap: 0.65rem;
  grid-template-columns: minmax(0, 1fr);
  margin-top: 0.85rem;
}

.pgw-availability__toolbar-actions {
  gap: 0.55rem;
  justify-items: start;
}

.pgw-range-preset,
.pgw-range-window {
  gap: 0.4rem;
  justify-content: flex-start;
}

.pgw-range-preset__button,
.pgw-range-window__button,
.pgw-day-nav__button,
.pgw-move-mode__button {
  border-radius: 12px;
  font-size: 0.84rem;
  line-height: 1.1;
  padding: 0.42rem 0.72rem;
}

.pgw-availability__layout {
  align-items: start;
  gap: 0.9rem;
  grid-template-columns: minmax(0, 2.45fr) minmax(240px, 0.9fr);
  margin-top: 0.95rem;
}

.pgw-day-nav {
  gap: 0.4rem;
  margin-bottom: 0.7rem;
}

.pgw-availability__day {
  margin-top: 0.9rem;
}

.pgw-availability__day-title {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
  padding-bottom: 0.4rem;
}

.pgw-availability__slots {
  gap: 0.55rem;
  grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
}

.pgw-slot {
  border-radius: 12px;
  gap: 0.08rem;
  min-height: 60px;
  padding: 0.42rem 0.55rem;
}

.pgw-slot__indicator {
  margin-bottom: 0.08rem;
}

.pgw-slot__time {
  font-size: 0.94rem;
  line-height: 1.1;
  margin-bottom: 0.04rem;
}

.pgw-slot__endtime {
  color: var(--pgw-muted);
  font-size: 0.8rem;
  line-height: 1.1;
}

.pgw-selection {
  border-radius: 12px;
  max-height: calc(100vh - 1.2rem);
  overflow-y: auto;
  padding: 0.72rem 0.78rem;
  top: 0.6rem;
}

.pgw-selection__title {
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}

.pgw-selection__item,
.pgw-selection__empty,
.pgw-selection__segment {
  border-radius: 12px;
  padding: 0.55rem 0.62rem;
}

.pgw-selection__list,
.pgw-selection__segments {
  gap: 0.45rem;
}

.pgw-selection__footer {
  margin-top: 0.7rem;
  padding-top: 0.6rem;
}

.pgw-selection__actions {
  gap: 0.45rem;
}

.pgw-selection__button {
  border-radius: 10px;
  min-height: 36px;
  padding: 0.5rem 0.72rem;
}

.pgw-calm-toggle__summary {
  padding: 0.6rem 0.72rem;
}

@media (max-width: 980px) {
  .pgw-availability {
    margin-left: 0;
    margin-right: 0;
    transform: none;
    width: 100%;
  }

  .pgw-availability__layout {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  .pgw-availability__main,
  .pgw-booked,
  .pgw-selection {
    max-height: none;
    max-width: none;
    min-width: 0;
    overflow: visible;
    position: static;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .pgw-availability {
    padding: 0.72rem 0.72rem 0.82rem;
    width: min(100%, calc(100vw - 0.8rem));
  }

  .pgw-availability__toolbar-actions {
    display: grid;
    gap: 0.48rem;
    grid-template-columns: 1fr;
  }

  .pgw-range-preset {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    width: 100%;
  }

  .pgw-range-window {
    display: grid;
    gap: 0.45rem;
    grid-template-columns: auto minmax(0, 1fr) auto;
    width: 100%;
  }

  .pgw-range-window__summary {
    text-align: center;
  }

  .pgw-day-nav {
    gap: 0.36rem;
    margin-bottom: 0.55rem;
    overflow-x: auto;
    padding-bottom: 0.1rem;
    scrollbar-width: thin;
  }

  .pgw-availability__legend-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .pgw-availability__checkout-launcher {
    width: 100%;
  }

  .pgw-day-nav__button {
    font-size: 0.78rem;
    padding: 0.36rem 0.58rem;
  }

  .pgw-selection {
    margin-top: 0.1rem;
    padding: 0.68rem 0.72rem;
  }

  .pgw-selection__title {
    font-size: 0.98rem;
  }

  .pgw-selection__empty,
  .pgw-selection__segment,
  .pgw-selection__item {
    padding: 0.5rem 0.56rem;
  }

  .pgw-selection__actions {
    gap: 0.4rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pgw-selection__button {
    min-height: 38px;
    padding: 0.46rem 0.5rem;
    width: 100%;
  }

  .pgw-day-timeline__slots {
    gap: 0.28rem;
    grid-template-rows: repeat(var(--pgw-timeline-rows), minmax(34px, auto));
  }

  .pgw-slot {
    border-radius: 9px;
    padding: 0.36rem 0.42rem;
  }

  .pgw-slot__content {
    gap: 0.25rem;
  }

  .pgw-slot__time {
    font-size: 0.8rem;
    line-height: 1.18;
  }
}

/* ── Phase 4a Slot Timeline ── */

.pgw-availability {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  max-width: 1480px;
  transform: none;
  width: min(1480px, calc(100vw - 2.4rem));
}

.pgw-availability__layout {
  align-items: start;
  gap: 0.85rem;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 2.18fr) minmax(220px, 0.82fr);
}

.pgw-booked {
  align-self: stretch;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(207, 225, 234, 0.9);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-height: calc(100vh - 2rem);
  min-height: 0;
  padding: 0.62rem;
  position: sticky;
  top: 1rem;
}

.pgw-booked__title {
  align-items: center;
  display: flex;
  font-size: 1rem;
  gap: 0.4rem;
  margin: 0;
}

.pgw-booked__intro {
  color: var(--pgw-muted);
  font-size: 0.78rem;
  margin: 0;
}

.pgw-availability.is-booking-picker .pgw-booked__intro,
.pgw-availability.is-booking-picker .pgw-booked__recurring-watch {
  display: none !important;
}

.pgw-booked__list {
  display: grid;
  gap: 0.38rem;
  list-style: none;
  margin: 0;
  min-height: 0;
  overflow-y: auto;
  padding: 0.05rem 0 0;
}

.pgw-booked__recurring-watch {
  background: rgba(255, 248, 236, 0.84);
  border: 1px solid rgba(210, 182, 136, 0.62);
  border-radius: 10px;
  display: grid;
  gap: 0.32rem;
  margin: 0.1rem 0 0.15rem;
  padding: 0.45rem 0.52rem;
}

.pgw-booked__recurring-watch.is-success {
  background: rgba(239, 250, 243, 0.9);
  border-color: rgba(90, 158, 110, 0.46);
}

.pgw-booked__recurring-watch-title {
  color: var(--pgw-text);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
  text-transform: uppercase;
}

.pgw-booked__recurring-watch-summary {
  color: var(--pgw-text);
  font-size: 0.76rem;
  line-height: 1.35;
  margin: 0;
}

.pgw-booked__recurring-watch-list {
  display: grid;
  gap: 0.2rem;
  list-style: disc;
  margin: 0.05rem 0 0;
  max-height: 118px;
  overflow: auto;
  padding: 0 0 0 1rem;
}

.pgw-booked__recurring-watch-list li {
  color: var(--pgw-muted);
  font-size: 0.72rem;
  line-height: 1.3;
}

.pgw-booked__item {
  margin: 0;
}

.pgw-booked__slot {
  align-items: center;
  background: linear-gradient(180deg, #fafdff 0%, #eef7fb 100%);
  border: 1px solid #cfe1ea;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(16, 40, 64, 0.05);
  color: inherit;
  cursor: pointer;
  display: grid;
  gap: 0.45rem;
  grid-template-columns: auto minmax(0, 1fr);
  padding: 0.45rem 0.5rem;
  width: 100%;
}

.pgw-booked__slot-indicator {
  align-items: center;
  background: #a35a1d;
  border-radius: 999px;
  display: inline-flex;
  height: 0.88rem;
  justify-content: center;
  width: 0.88rem;
}

.pgw-booked__slot-indicator::before {
  color: #fff;
  content: '•';
  font-size: 0.7rem;
  line-height: 1;
}

.pgw-booked__slot-body {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
  text-align: left;
}

.pgw-booked__slot-heading {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pgw-booked__slot-detail {
  color: var(--pgw-muted);
  font-size: 0.7rem;
}

.pgw-booked__slot:hover,
.pgw-booked__slot:focus-visible,
.pgw-booked__slot.is-active {
  border-color: rgba(19, 111, 138, 0.52);
  box-shadow:
    0 0 0 2px rgba(19, 111, 138, 0.12),
    0 6px 14px rgba(16, 40, 64, 0.08);
  outline: none;
}

.pgw-availability__days {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(4, minmax(10.8rem, 11.55rem));
  justify-content: start;
}

.pgw-day-nav {
  flex-wrap: nowrap;
  gap: 0.42rem;
  margin-bottom: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
  scrollbar-width: thin;
}

.pgw-day-nav__button {
  flex: 0 0 auto;
}

.pgw-day-nav__button.is-in-window {
  border-color: rgba(19, 111, 138, 0.24);
}

.pgw-availability__day {
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(207, 225, 234, 0.9);
  border-radius: 14px;
  margin-top: 0;
  min-width: 0;
  padding: 0.54rem 0.58rem 0.62rem;
}

.pgw-availability__day[hidden] {
  display: none !important;
}

.pgw-availability__day-title {
  border-bottom: 1px solid rgba(207, 225, 234, 0.9);
  font-size: 0.9rem;
  line-height: 1.2;
  margin: 0 0 0.48rem;
  padding-bottom: 0.36rem;
}

.pgw-day-timeline {
  display: block;
}

.pgw-day-timeline__slots {
  display: grid;
  gap: 0.28rem;
  grid-template-rows: repeat(var(--pgw-timeline-rows), minmax(38px, auto));
}

.pgw-availability__slots.pgw-day-timeline__slots {
  display: grid;
  gap: 0.35rem;
  grid-template-columns: minmax(0, 1fr);
}

.pgw-slot {
  align-items: center;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(16, 40, 64, 0.05);
  display: grid;
  gap: 0.34rem;
  grid-row: var(--pgw-slot-row-start) / span var(--pgw-slot-row-span);
  grid-template-columns: auto minmax(0, 1fr);
  min-height: 0;
  padding: 0.38rem 0.44rem;
  position: relative;
}

.pgw-slot:hover,
.pgw-slot:focus-visible {
  box-shadow: 0 8px 16px rgba(16, 40, 64, 0.1);
  transform: none;
}

.pgw-slot__indicator {
  margin: 0;
}

.pgw-slot__content {
  align-items: center;
  display: flex;
  gap: 0.24rem;
  justify-content: center;
  min-width: 0;
}

.pgw-slot--summer-slot {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)),
    var(--pgw-summer-slot-highlight, #fff3b0);
  border-color: #c89d36;
}

.pgw-slot__seasonal-badge {
  align-items: center;
  background: var(--pgw-summer-slot-highlight, #fff3b0);
  border: 1px solid rgba(104, 66, 0, 0.2);
  border-radius: 999px;
  color: #684200;
  display: inline-flex;
  flex: 0 1 auto;
  font-size: 0.64rem;
  font-weight: 800;
  gap: 0.16rem;
  line-height: 1;
  max-width: 7.2rem;
  min-height: 1rem;
  min-width: 0;
  padding: 0.16rem 0.3rem;
  text-transform: uppercase;
}

.pgw-slot__seasonal-badge--legend {
  align-self: center;
  font-size: 0.72rem;
  max-width: none;
  min-height: 1.55rem;
  padding: 0.34rem 0.55rem;
}

.pgw-slot__seasonal-icon {
  display: inline-flex;
  flex: 0 0 auto;
}

.pgw-slot__seasonal-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pgw-slot__time {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

.pgw-slot__endtime {
  display: none;
}

.pgw-slot.is-selected {
  box-shadow:
    0 0 0 2px rgba(19, 111, 138, 0.18),
    0 8px 16px rgba(16, 40, 64, 0.1);
}

.pgw-slot.is-selected-purchase {
  background: linear-gradient(180deg, #f8fcff 0%, #e8f3fa 100%);
  border-color: rgba(19, 111, 138, 0.5);
}

.pgw-slot.is-move-origin {
  background: linear-gradient(180deg, #fffaf1 0%, #f8ebd6 100%);
  border-color: rgba(163, 90, 29, 0.55);
  box-shadow:
    0 0 0 2px rgba(163, 90, 29, 0.16),
    0 8px 16px rgba(16, 40, 64, 0.1);
}

.pgw-slot.is-move-destination {
  background: linear-gradient(180deg, #f4fbff 0%, #e4f4fb 100%);
  border-color: rgba(19, 111, 138, 0.62);
  box-shadow:
    0 0 0 2px rgba(19, 111, 138, 0.14),
    0 8px 16px rgba(16, 40, 64, 0.1);
}

.pgw-slot.is-move-origin[data-move-pair-index]::after,
.pgw-slot.is-move-destination[data-move-pair-index]::after {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1;
  padding: 0.14rem 0.34rem;
  pointer-events: none;
  position: absolute;
  right: 0.24rem;
  text-transform: uppercase;
  top: 0.2rem;
}

.pgw-slot.is-move-origin[data-move-pair-index]::after {
  background: rgba(163, 90, 29, 0.14);
  color: #8a4d16;
  content: 'From ' attr(data-move-pair-index);
}

.pgw-slot.is-move-destination[data-move-pair-index]::after {
  background: rgba(19, 111, 138, 0.14);
  color: #0f6079;
  content: 'To ' attr(data-move-pair-index);
}

.pgw-slot.is-drag-pending {
  background: rgba(218, 238, 245, 0.95);
  border-color: rgba(19, 111, 138, 0.38);
  box-shadow:
    0 0 0 2px rgba(19, 111, 138, 0.12),
    0 6px 14px rgba(16, 40, 64, 0.08);
}

.pgw-availability.is-dragging-range,
.pgw-availability.is-dragging-range * {
  user-select: none;
}

.pgw-slot--available,
.pgw-slot--held-self,
.pgw-slot--held-self-protected,
.pgw-slot--held-self-recurring {
  touch-action: none;
}

.pgw-availability.is-dragging-move,
.pgw-availability.is-dragging-move * {
  user-select: none;
}

.pgw-slot.pgw-slot--held-self,
.pgw-slot.pgw-slot--held-self-protected,
.pgw-slot.pgw-slot--held-self-recurring {
  cursor: grab;
}

.pgw-slot.is-move-drag-origin {
  opacity: 0.78;
}

.pgw-slot.is-move-drop-target {
  border-color: rgba(19, 111, 138, 0.28);
  box-shadow:
    0 0 0 1px rgba(19, 111, 138, 0.08),
    0 4px 12px rgba(16, 40, 64, 0.05);
}

.pgw-slot.is-move-drop-target-active {
  background: rgba(218, 238, 245, 0.95);
  border-color: rgba(19, 111, 138, 0.48);
  box-shadow:
    0 0 0 2px rgba(19, 111, 138, 0.14),
    0 8px 16px rgba(16, 40, 64, 0.1);
}

.pgw-move-ghost {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(19, 111, 138, 0.34);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(16, 40, 64, 0.16);
  color: #16384b;
  display: inline-flex;
  gap: 0.4rem;
  left: 0;
  padding: 0.5rem 0.72rem;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: translate3d(0, 0, 0);
  z-index: 99999;
}

.pgw-move-ghost__indicator {
  background: #5f8d53;
  border-radius: 999px;
  display: inline-block;
  height: 0.7rem;
  width: 0.7rem;
}

.pgw-move-ghost__label {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.pgw-slot.is-selected.is-selected-middle {
  border-top-color: rgba(19, 111, 138, 0.55);
  border-bottom-color: rgba(19, 111, 138, 0.55);
  border-radius: 0;
}

.pgw-slot.is-selected.is-selected-start {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.pgw-slot.is-selected.is-selected-end {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.pgw-slot.is-selected.is-selected-middle + .pgw-slot.is-selected.is-selected-middle {
  margin-top: -0.2rem;
}

@media (min-width: 981px) {
  .pgw-day-timeline__slots {
    justify-items: start;
  }

  .pgw-slot {
    width: 100%;
  }

  .pgw-availability__day {
    display: block;
  }
}

@media (max-width: 980px) {
  .pgw-availability {
    margin-left: 0;
    margin-right: 0;
    transform: none;
    width: 100%;
  }

  .pgw-availability__layout {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  .pgw-availability__main,
  .pgw-selection {
    max-width: none;
    min-width: 0;
    position: static;
    width: 100%;
  }

  .pgw-availability__days {
    grid-template-columns: 1fr;
  }

  .pgw-availability__day {
    display: none;
  }

  .pgw-availability__day.is-active {
    display: block;
  }
}

@media (max-width: 640px) {
  .pgw-availability {
    padding: 0.72rem 0.72rem 0.82rem;
    width: min(100%, calc(100vw - 0.8rem));
  }

  .pgw-availability__toolbar-actions {
    display: grid;
    gap: 0.48rem;
    grid-template-columns: 1fr;
  }

  .pgw-range-preset {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    width: 100%;
  }

  .pgw-range-window {
    display: grid;
    gap: 0.45rem;
    grid-template-columns: auto minmax(0, 1fr) auto;
    width: 100%;
  }

  .pgw-range-window__summary {
    text-align: center;
  }

  .pgw-day-nav {
    gap: 0.36rem;
    margin-bottom: 0.55rem;
    overflow-x: auto;
    padding-bottom: 0.1rem;
    scrollbar-width: thin;
  }

  .pgw-day-nav__button {
    font-size: 0.78rem;
    padding: 0.36rem 0.58rem;
  }

  .pgw-selection {
    margin-top: 0.1rem;
    padding: 0.68rem 0.72rem;
  }

  .pgw-selection__title {
    font-size: 0.98rem;
  }

  .pgw-selection__empty,
  .pgw-selection__segment,
  .pgw-selection__item {
    padding: 0.5rem 0.56rem;
  }

  .pgw-selection__actions {
    gap: 0.4rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pgw-selection__button {
    min-height: 38px;
    padding: 0.46rem 0.5rem;
    width: 100%;
  }

  .pgw-day-timeline__slots {
    gap: 0.28rem;
    grid-template-rows: repeat(var(--pgw-timeline-rows), minmax(34px, auto));
  }

  .pgw-slot {
    border-radius: 9px;
    padding: 0.36rem 0.42rem;
  }

  .pgw-slot__content {
    gap: 0.25rem;
  }

  .pgw-slot__time {
    font-size: 0.8rem;
    line-height: 1.18;
  }
}

/* ── Calendar-led availability navigation ── */

.pgw-availability__calendar {
  margin-top: 0.65rem;
}

.pgw-availability__calendar-months {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 0.7rem;
}

.pgw-availability__calendar-month {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(207, 225, 234, 0.92);
  border-radius: 12px;
  padding: 0.45rem 0.48rem 0.5rem;
}

.pgw-availability__calendar-month-title {
  color: #2f485f;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin: 0 0 0.35rem;
  text-align: center;
}

.pgw-availability__calendar-weekdays {
  color: #6f8495;
  display: grid;
  font-size: 0.64rem;
  font-weight: 700;
  gap: 0.2rem;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  letter-spacing: 0.05em;
  margin-bottom: 0.22rem;
  text-transform: uppercase;
}

.pgw-availability__calendar-weekdays > span {
  text-align: center;
}

.pgw-availability__calendar-grid {
  display: grid;
  gap: 0.2rem;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.pgw-availability__calendar-pad {
  display: block;
}

.pgw-availability__calendar-day {
  align-items: center;
  appearance: none;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid transparent;
  border-radius: 9px;
  color: #21475f !important;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 1.9rem;
  padding: 0.18rem 0;
  transition: background 120ms ease, border-color 120ms ease, box-shadow 120ms ease, color 120ms ease;
}

.pgw-availability__calendar-day:hover,
.pgw-availability__calendar-day:focus-visible {
  background: #fff;
  box-shadow: 0 0 0 2px rgba(19, 111, 138, 0.12);
  outline: none;
}

.pgw-availability__calendar-day.is-selected {
  background: linear-gradient(180deg, #edf8fc 0%, #deeff7 100%);
  border-color: #177196;
  box-shadow: 0 0 0 2px rgba(23, 113, 150, 0.16);
  color: #0f5e79 !important;
}

.pgw-availability__calendar-day.is-not-released,
.pgw-availability__calendar-day:disabled {
  background: #f2f5f8;
  border-color: #d3dce5;
  color: #9aacbc !important;
  cursor: not-allowed;
  opacity: 0.75;
}

.pgw-availability__calendar-day.is-occupancy-green {
  border-color: #5a8a3c;
}

.pgw-availability__calendar-day.is-occupancy-amber {
  border-color: #c88a2e;
}

.pgw-availability__calendar-day.is-occupancy-red {
  border-color: #b64e4e;
}

.pgw-availability__calendar-day.is-occupancy-none {
  border-color: #b8c8d8;
}

.pgw-availability__window-nav {
  display: flex;
  gap: 0.45rem;
  justify-content: flex-end;
  margin-bottom: 0.55rem;
}

.pgw-availability__window-nav .pgw-range-window__button {
  min-height: 32px;
  min-width: 32px;
  padding: 0.34rem;
}

.pgw-availability__days {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(4, minmax(10.8rem, 11.55rem));
  justify-content: start;
  overflow-x: auto;
  padding-bottom: 0.18rem;
  scrollbar-width: thin;
}

.pgw-availability.is-booking-picker .pgw-availability__layout {
  grid-template-columns: minmax(170px, 0.55fr) minmax(0, 2.2fr) minmax(200px, 0.7fr);
}

.pgw-availability.is-booking-picker .pgw-availability__days {
  gap: 0.55rem;
  grid-template-columns: repeat(4, minmax(7.4rem, 1fr));
  overflow: visible;
}

@media (max-width: 980px) {
  .pgw-availability.is-booking-picker {
    margin-left: 0;
    margin-right: 0;
    transform: none;
    width: 100%;
  }

  .pgw-availability.is-booking-picker .pgw-availability__layout {
    display: flex;
    flex-direction: column;
  }

  .pgw-availability.is-booking-picker .pgw-availability__days {
    gap: 0.45rem;
    grid-template-columns: repeat(4, minmax(9.9rem, 10.45rem));
    overflow-x: auto;
  }
}

@media (max-width: 820px) {
  .pgw-availability.is-booking-picker .pgw-availability__days {
    gap: 0;
    grid-template-columns: 1fr !important;
    overflow: visible;
  }
}

.pgw-availability__day {
  display: block;
}

.pgw-availability__day[hidden] {
  display: none !important;
}

.pgw-availability__day.is-not-released .pgw-availability__day-title {
  opacity: 0.72;
}

.pgw-availability__day-state {
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px dashed rgba(143, 162, 178, 0.72);
  border-radius: 10px;
  color: #5b6f80;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  min-height: 34px;
  padding: 0 0.58rem;
}

.pgw-availability__day-state--not-released {
  border-color: rgba(169, 183, 195, 0.85);
  color: #6b7f8f;
}

@media (max-width: 1200px) {
  .pgw-availability__calendar-months {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pgw-availability__layout {
    grid-template-columns: minmax(0, 2fr) minmax(220px, 0.9fr);
  }

  .pgw-booked {
    grid-column: 1 / -1;
    max-height: 14rem;
  }
}

@media (max-width: 980px) {
  .pgw-availability__calendar-months {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pgw-availability__days {
    grid-template-columns: repeat(4, minmax(10.3rem, 10.9rem));
  }

  .pgw-availability__day,
  .pgw-availability__day.is-active {
    display: block !important;
  }

  .pgw-booked {
    max-height: none;
  }
}

@media (max-width: 640px) {
  .pgw-availability__calendar-months {
    grid-template-columns: 1fr;
  }

  .pgw-availability__calendar-day {
    min-height: 1.82rem;
  }

  .pgw-availability__days {
    grid-template-columns: repeat(4, minmax(9.9rem, 10.45rem));
  }
}

.pgw-dashboard__pet-head-photo {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  object-fit: cover;
  flex: 0 0 auto;
  border: 1px solid rgba(23, 111, 142, 0.18);
  background: #f4f8fb;
}

.pgw-dashboard__pet-remove {
  margin-left: auto;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(171, 55, 55, 0.18);
  background: rgba(255, 245, 245, 0.95);
  color: #a13737;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  flex: 0 0 auto;
}

.pgw-dashboard__pet-remove:hover {
  background: rgba(255, 238, 238, 1);
}

.pgw-dashboard__cancel-recurring {
  align-self: start;
  margin-top: 0.2rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(171, 55, 55, 0.25);
  border-radius: 999px;
  background: rgba(255, 248, 248, 0.9);
  color: #8b3a3a;
  font-size: 0.8rem;
  line-height: 1.3;
  white-space: normal;
  min-width: 0;
  text-align: left;
  cursor: pointer;
}

.pgw-dashboard__cancel-recurring:hover {
  background: rgba(255, 238, 238, 1);
  border-color: rgba(171, 55, 55, 0.45);
}

.pgw-dashboard__cancel-recurring:disabled {
  opacity: 0.5;
  cursor: default;
}

.pgw-dashboard__recurring-details {
  align-self: start;
  margin-top: 0.45rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(23, 111, 142, 0.24);
  border-radius: 999px;
  background: rgba(245, 251, 255, 0.9);
  color: #1b5c78;
  font-size: 0.8rem;
  line-height: 1.2;
  cursor: pointer;
}

.pgw-dashboard__recurring-details:hover {
  background: rgba(236, 247, 253, 1);
  border-color: rgba(23, 111, 142, 0.4);
}

.pgw-recurring-details-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
}

.pgw-recurring-details-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 28, 40, 0.56);
}

.pgw-recurring-details-modal__dialog {
  position: relative;
  max-width: 46rem;
  max-height: 84vh;
  margin: 5vh auto 0;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(23, 111, 142, 0.16);
  overflow: auto;
  box-shadow: 0 24px 64px rgba(16, 34, 52, 0.24);
}

.pgw-recurring-details-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(23, 111, 142, 0.15);
}

.pgw-recurring-details-modal__title {
  margin: 0;
  font-size: 1.05rem;
}

.pgw-recurring-details-modal__close {
  border: 0;
  background: transparent;
  font-size: 1.45rem;
  line-height: 1;
  color: #204962;
  cursor: pointer;
}

.pgw-recurring-details-modal__body {
  padding: 0.9rem 1rem 1.1rem;
}

.pgw-recurring-details-modal__section + .pgw-recurring-details-modal__section {
  margin-top: 0.95rem;
}

.pgw-recurring-details-modal__section h4 {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
}

.pgw-recurring-details-modal__section ul {
  margin: 0;
  padding-left: 1rem;
}

.pgw-recurring-details-modal__overview {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
}

.pgw-recurring-details-modal__metric {
  border: 1px solid rgba(23, 111, 142, 0.14);
  border-radius: 8px;
  background: #f8fbfd;
  padding: 0.65rem 0.75rem;
}

.pgw-recurring-details-modal__metric strong,
.pgw-recurring-details-modal__metric span {
  display: block;
}

.pgw-recurring-details-modal__metric strong {
  font-size: 1.25rem;
  line-height: 1.1;
}

.pgw-recurring-details-modal__metric span {
  color: #4e6374;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 0.25rem;
  text-transform: uppercase;
}

.pgw-recurring-details-modal__metric--paid {
  background: #ecf6e5;
  border-color: #b4d69c;
  color: #1f5a24;
}

.pgw-recurring-details-modal__metric--recurring {
  background: #fbe6d4;
  border-color: #e9b585;
  color: #7a3a0e;
}

.pgw-recurring-details-modal__metric--unavailable {
  background: #fae8e8;
  border-color: #e4aaa7;
  color: #8b2f2a;
}

.pgw-recurring-details-modal__metric--setup {
  background: #f5fbff;
  border-color: rgba(23, 111, 142, 0.22);
  color: #1b5c78;
}

.pgw-recurring-details-modal__note,
.pgw-recurring-details-modal__technical {
  margin: 0.65rem 0 0;
  color: #4e6374;
  font-size: 0.86rem;
  line-height: 1.35;
}

.pgw-recurring-details-modal__technical {
  color: #6a7f8f;
  font-size: 0.78rem;
}

.pgw-recurring-details-modal__slot-list {
  display: grid;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pgw-recurring-details-modal__section .pgw-recurring-details-modal__slot-list {
  padding-left: 0;
}

.pgw-recurring-details-modal__slot {
  margin: 0;
}

.pgw-recurring-details-modal__slot .pgw-slot-lozenge {
  width: 100%;
}

.pgw-recurring-details-modal__slot--unavailable .pgw-slot-lozenge {
  --pgw-lozenge-accent: #b7433d;
  --pgw-lozenge-accent-strong: #7c2622;
  --pgw-lozenge-bg: #fae8e8;
  --pgw-lozenge-bg-strong: #f2c7c4;
  --pgw-lozenge-border: #e4aaa7;
  --pgw-lozenge-ink: #7c2622;
  --pgw-lozenge-muted: #9b4a45;
  background: var(--pgw-lozenge-bg);
  border-color: var(--pgw-lozenge-border);
  color: var(--pgw-lozenge-ink);
  opacity: 1;
}

.pgw-recurring-details-modal__item {
  margin-bottom: 0.55rem;
}

.pgw-recurring-details-modal__item p {
  margin: 0.1rem 0;
  font-size: 0.86rem;
}

.pgw-recurring-details-modal__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.85rem 1rem 1rem;
  border-top: 1px solid rgba(23, 111, 142, 0.15);
  background: rgba(248, 251, 253, 0.7);
}

.pgw-recurring-details-modal__action {
  margin-top: 0;
  align-self: auto;
}

.pgw-dashboard__pet-photo-field {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(23, 111, 142, 0.14);
  border-radius: 1rem;
  background: rgba(250, 252, 254, 0.92);
}

.pgw-dashboard__pet-photo-preview {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(180deg, #eef5fb 0%, #f8fbfd 100%);
  border: 1px solid rgba(23, 111, 142, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pgw-dashboard__pet-photo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pgw-dashboard__pet-photo-placeholder {
  font-size: 0.78rem;
  color: #5b728a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* April 2026 review sprint bugfix: keep upload failures visible in the pet photo tile. */
.pgw-dashboard__pet-photo-error-state {
  display: grid;
  gap: 0.2rem;
  padding: 0.45rem;
  text-align: center;
}

.pgw-dashboard__pet-photo-error-state strong {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #a13737;
}

.pgw-dashboard__pet-photo-error-state span {
  font-size: 0.7rem;
  color: #7c2e2e;
  line-height: 1.2;
}

.pgw-dashboard__pet-photo-meta {
  min-width: 0;
}

.pgw-dashboard__pet-photo-meta strong {
  display: block;
  margin-bottom: 0.2rem;
}

.pgw-dashboard__pet-photo-copy {
  margin: 0 0 0.55rem;
  color: #5b728a;
  font-size: 0.9rem;
  line-height: 1.35;
}

.pgw-dashboard__pet-photo-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.pgw-dashboard__pet-photo-select {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.pgw-dashboard__pet-photo-select input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.pgw-dashboard__pet-create {
  margin-top: 0.9rem;
}

.pgw-dashboard__pet-add-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px dashed rgba(23, 111, 142, 0.28);
  background: rgba(248, 251, 253, 0.95);
  color: #143e57;
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  cursor: pointer;
  font-weight: 600;
}

.pgw-dashboard__pet-add-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: #176f8e;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1;
}

.pgw-dashboard__pet-create-form {
  margin-top: 0.85rem;
}

.pgw-photo-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
}

.pgw-photo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 23, 35, 0.56);
  backdrop-filter: blur(4px);
}

.pgw-photo-modal__dialog {
  position: relative;
  max-width: 32rem;
  margin: 6vh auto 0;
  background: #ffffff;
  border-radius: 1.15rem;
  border: 1px solid rgba(23, 111, 142, 0.16);
  box-shadow: 0 24px 64px rgba(16, 34, 52, 0.22);
  overflow: hidden;
}

.pgw-photo-modal__header,
.pgw-photo-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(23, 111, 142, 0.12);
}

.pgw-photo-modal__footer {
  border-bottom: 0;
  border-top: 1px solid rgba(23, 111, 142, 0.12);
  justify-content: flex-end;
}

.pgw-photo-modal__title {
  margin: 0;
  font-size: 1.05rem;
}

.pgw-photo-modal__close {
  border: 0;
  background: transparent;
  color: #23435b;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.pgw-photo-modal__body {
  padding: 1rem;
}

.pgw-photo-modal__stage-wrap {
  display: flex;
  justify-content: center;
}

.pgw-photo-modal__stage {
  position: relative;
  width: 17.5rem;
  height: 17.5rem;
  overflow: hidden;
  border-radius: 1rem;
  background:
    linear-gradient(45deg, #e9f1f7 25%, transparent 25%),
    linear-gradient(-45deg, #e9f1f7 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #e9f1f7 75%),
    linear-gradient(-45deg, transparent 75%, #e9f1f7 75%);
  background-size: 1rem 1rem;
  background-position: 0 0, 0 0.5rem, 0.5rem -0.5rem, -0.5rem 0;
  border: 1px solid rgba(23, 111, 142, 0.16);
  touch-action: none;
}

.pgw-photo-modal__image {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: top left;
  user-select: none;
  -webkit-user-drag: none;
}

.pgw-photo-modal__zoom {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
}

.pgw-photo-modal__zoom span,
.pgw-photo-modal__hint {
  color: #5b728a;
  font-size: 0.9rem;
}

.pgw-photo-modal__hint {
  margin: 0.6rem 0 0;
}

.pgw-photo-modal__limits {
  margin: 0.35rem 0 0;
  color: #4b637a;
  font-size: 0.83rem;
}

/* Launch-page visual polish (excluding book-the-field availability) */
.pgw-onboarding,
.pgw-account-cta,
.pgw-dashboard,
.pgw-team,
.pgw-accounts,
.pgw-admin-zone {
  box-sizing: border-box;
  margin: 1rem auto 1.25rem;
  max-width: 1240px;
}

.pgw-onboarding,
.pgw-account-cta,
.pgw-dashboard,
.pgw-team,
.pgw-accounts {
  border: 1px solid var(--pgw-border);
  border-radius: 18px;
  box-shadow: var(--pgw-shadow-soft);
  background:
    radial-gradient(circle at top right, rgba(19, 111, 138, 0.06), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
}

.pgw-onboarding__title,
.pgw-account-cta__title,
.pgw-team__title,
.pgw-accounts__title {
  margin-bottom: 0.45rem;
}

.pgw-onboarding__intro,
.pgw-account-cta__copy,
.pgw-team__intro {
  margin-bottom: 0.8rem;
  max-width: 64ch;
}

.pgw-onboarding__panel,
.pgw-onboarding__signed-in,
.pgw-account-cta__info-card,
.pgw-dashboard__panel,
.pgw-dashboard__summary-card,
.pgw-team__card,
.pgw-accounts__card {
  border-radius: 14px;
  border: 1px solid var(--pgw-border);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: none;
}

.pgw-onboarding__panel,
.pgw-onboarding__signed-in,
.pgw-account-cta__info-card,
.pgw-team__card {
  padding: 0.85rem 0.9rem;
}

.pgw-onboarding__form,
.pgw-dashboard__form {
  gap: 0.55rem;
}

.pgw-onboarding__field input,
.pgw-dashboard__field input,
.pgw-dashboard__field select,
.pgw-dashboard__field textarea {
  min-height: 40px;
  padding: 0.55rem 0.7rem;
}

.pgw-onboarding__checkbox,
.pgw-dashboard__checkbox {
  align-items: center;
  gap: 0.5rem;
}

.pgw-onboarding__cta,
.pgw-account-cta__button,
.pgw-dashboard__button {
  min-height: 40px;
  border-radius: 10px;
  padding: 0.6rem 0.85rem;
}

.pgw-account-cta__actions,
.pgw-dashboard__guest-actions,
.pgw-dashboard__form-actions {
  gap: 0.5rem;
}

.pgw-account-cta__button--ghost,
.pgw-dashboard__button--ghost {
  border-color: var(--pgw-border-strong);
}

.pgw-account-cta__link,
.pgw-dashboard__link,
.pgw-dashboard__service-link {
  color: var(--pgw-accent-strong);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

.pgw-dashboard__hero-grid {
  gap: 0.65rem;
}

.pgw-dashboard__quick-actions,
.pgw-dashboard__accordion-body,
.pgw-dashboard__activation-actions {
  gap: 0.55rem;
}

.pgw-dashboard__quick-link {
  border-radius: 12px;
  border-color: var(--pgw-border);
  color: #24455b;
  padding: 0.62rem 0.75rem;
}

.pgw-dashboard__summary-value,
.pgw-dashboard__field-stat-value,
.pgw-accounts__card-value {
  font-variant-numeric: tabular-nums;
}

.pgw-dashboard__field-stat {
  border-radius: 12px;
  padding: 0.6rem 0.7rem;
}

.pgw-dashboard__booking,
.pgw-dashboard__pet {
  gap: 0.25rem;
  padding-top: 0.55rem;
}

.pgw-team__grid {
  gap: 0.75rem;
  margin-top: 1rem;
}

.pgw-team__card {
  gap: 0.7rem;
}

.pgw-team__name {
  font-size: 1.06rem;
}

.pgw-team__tag,
.pgw-dashboard__tag,
.pgw-dashboard__booking-type,
.pgw-account-cta__pill {
  border-radius: 999px;
  border: 1px solid #d4e1ea;
  background: #edf4f8;
  color: #30556a;
  font-size: 0.74rem;
  padding: 0.22rem 0.52rem;
}

.pgw-accounts {
  padding: 1rem;
}

.pgw-accounts__title {
  color: #163148;
  font-size: 1.2rem;
  margin: 0 0 0.7rem;
}

.pgw-accounts__summary {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  margin-bottom: 0.8rem;
}

.pgw-accounts__card {
  border-radius: 12px;
  min-width: 0;
  padding: 0.65rem 0.75rem;
}

.pgw-accounts__card-label {
  color: #5e768b;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.pgw-accounts__card-value {
  color: #132a40;
  font-size: 1.15rem;
  font-weight: 700;
}

.pgw-accounts__card-sub {
  color: #627c92;
  font-size: 0.76rem;
}

.pgw-accounts__services,
.pgw-accounts__transactions {
  display: grid;
  gap: 0.45rem;
}

.pgw-accounts__service-row,
.pgw-accounts__tx-row {
  align-items: center;
  background: #f8fbfd;
  border: 1px solid var(--pgw-border);
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
}

.pgw-accounts__service-row {
  font-size: 0.9rem;
}

.pgw-accounts__tx-row {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  font-size: 0.82rem;
}

.pgw-accounts__tx-date {
  color: #4f6780;
  min-width: 0;
}

.pgw-accounts__tx-amount {
  white-space: nowrap;
}

.pgw-accounts__empty {
  color: #5f778c;
  font-style: normal;
  margin: 0.2rem 0 0;
}

.pgw-field-operations {
  border: 1px solid #bfd2e6;
  border-radius: 14px;
  padding: clamp(0.9rem, 2vw, 1.35rem);
  background: linear-gradient(132deg, #f4f8fc 0%, #eef4fb 45%, #f8fbff 100%);
  color: #12324f;
  display: grid;
  gap: 0.9rem;
}

.pgw-field-operations__header {
  display: grid;
  gap: 0.35rem;
}

.pgw-field-operations__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0a7397;
}

.pgw-field-operations__title {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.pgw-field-operations__intro {
  margin: 0;
  color: #375672;
}

.pgw-field-operations__toolbar {
  border: 1px solid #c7d9eb;
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.pgw-field-operations__date {
  text-align: center;
  display: grid;
  gap: 0.1rem;
}

.pgw-field-operations__date span {
  color: #4c6c89;
  font-size: 0.84rem;
}

.pgw-field-operations__date-nav {
  text-decoration: none;
  border: 1px solid #b8cfe4;
  background: #ffffff;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  color: #154d7a;
  font-weight: 600;
  font-size: 0.86rem;
}

.pgw-field-operations__summary {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

.pgw-field-operations__summary-card {
  border: 1px solid #c7d9eb;
  border-radius: 10px;
  background: #ffffff;
  padding: 0.5rem 0.7rem;
  display: grid;
  gap: 0.2rem;
}

.pgw-field-operations__summary-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #547493;
  font-weight: 700;
}

.pgw-field-operations__summary-value {
  font-size: 1.2rem;
  color: #0f2d48;
  line-height: 1.1;
}

.pgw-field-operations__slots {
  display: grid;
  gap: 0.75rem;
}

.pgw-field-operations__slot {
  border: 1px solid #c6d8ea;
  border-radius: 12px;
  background: #ffffff;
  padding: 0.65rem;
  display: grid;
  gap: 0.6rem;
}

.pgw-field-operations__slot-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dfebf7;
  padding-bottom: 0.4rem;
}

.pgw-field-operations__slot-meta {
  font-size: 0.78rem;
  color: #537695;
  font-weight: 600;
}

.pgw-field-operations__slot-empty {
  margin: 0;
  color: #547493;
  font-size: 0.88rem;
}

.pgw-field-operations__booking {
  border: 1px solid #d5e3f1;
  border-radius: 10px;
  background: #f8fbff;
  padding: 0.55rem;
  display: grid;
  gap: 0.35rem;
}

.pgw-field-operations__booking-name {
  margin: 0;
  font-weight: 700;
}

.pgw-field-operations__booking-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: #426484;
}

.pgw-field-operations__dogs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pgw-field-operations__dog {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid #c8dbec;
  border-radius: 999px;
  background: #ffffff;
  padding: 0.2rem 0.45rem 0.2rem 0.2rem;
  font-size: 0.78rem;
  color: #1f4668;
}

.pgw-field-operations__dog img {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid #c9d9e8;
}

.pgw-field-operations__dog-placeholder {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid #c9d9e8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  text-transform: uppercase;
  background: #eef5fb;
  color: #4f718f;
}

.pgw-field-operations__empty,
.pgw-field-operations--locked p {
  margin: 0;
  border: 1px solid #c8d9ea;
  border-radius: 10px;
  background: #f8fbff;
  color: #2d5171;
  padding: 0.7rem;
}

@media (max-width: 900px) {
  .pgw-accounts__tx-row {
    grid-template-columns: 1fr;
  }

  .pgw-onboarding,
  .pgw-account-cta,
  .pgw-dashboard,
  .pgw-team,
  .pgw-accounts,
  .pgw-admin-zone,
  .pgw-field-operations {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .pgw-dashboard__pet-photo-field {
    grid-template-columns: 1fr;
  }

  .pgw-dashboard__pet-photo-preview {
    width: 6rem;
    height: 6rem;
  }

  .pgw-photo-modal__dialog {
    margin: 4vh 1rem 0;
  }

  .pgw-photo-modal__stage {
    width: min(17.5rem, calc(100vw - 4rem));
    height: min(17.5rem, calc(100vw - 4rem));
  }
}

/* Launch branch: simpler Admin Zone layout */
.pgw-admin-zone {
  max-width: 1080px;
  padding: 1rem 1.1rem 1.2rem;
  border-radius: 14px;
  background: #f7fbff;
}

.pgw-admin-zone__banner {
  margin-bottom: 0.6rem;
}

.pgw-admin-zone__intro {
  max-width: 78ch;
  margin: 0.35rem 0 0;
}

.pgw-admin-zone__grid {
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.pgw-admin-zone__panel,
.pgw-admin-zone__section {
  border-radius: 12px;
  box-shadow: none;
}

.pgw-admin-zone__panel {
  padding: 0.7rem 0.8rem;
}

.pgw-admin-zone__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.45rem;
}

.pgw-admin-zone__link {
  border-radius: 10px;
  min-height: 36px;
  justify-content: center;
}

.pgw-admin-zone__health-cards {
  gap: 0.5rem;
}

.pgw-admin-zone__health-card {
  border-radius: 10px;
  min-width: 140px;
}

.pgw-admin-zone__form {
  gap: 0.7rem;
}

.pgw-admin-zone__section-summary {
  min-height: 40px;
  padding: 0.6rem 0.8rem;
}

.pgw-admin-zone__section-body {
  padding: 0 0.8rem 0.7rem;
}

.pgw-admin-zone__fields {
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-top: 0.45rem;
}

@media (min-width: 980px) {
  .pgw-admin-zone__fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pgw-admin-zone__field {
  gap: 0.2rem;
}

.pgw-admin-zone__field input,
.pgw-admin-zone__field textarea,
.pgw-admin-zone__field select {
  min-height: 36px;
  padding: 0.5rem 0.65rem;
  border-radius: 10px;
}

.pgw-admin-zone__checkbox {
  min-height: 36px;
  border-radius: 10px;
}

.pgw-admin-zone__field-copy {
  font-size: 0.82rem;
}

/* Dashboard form compactness and font consistency pass */
.pgw-dashboard {
  font-size: 16px;
  line-height: 1.4;
}

.pgw-dashboard__accordion-summary {
  min-height: 42px;
  padding: 0.55rem 0.7rem;
}

.pgw-dashboard__accordion-title {
  font-size: 1rem;
  line-height: 1.25;
}

.pgw-dashboard__accordion-copy {
  font-size: 0.84rem;
  line-height: 1.3;
}

.pgw-dashboard__accordion-body {
  padding: 0.65rem 0.7rem 0.75rem;
}

.pgw-dashboard__panel {
  padding: 0.68rem 0.78rem;
}

.pgw-dashboard__panel-title {
  font-size: 1.06rem;
  line-height: 1.25;
  margin-bottom: 0.3rem;
}

.pgw-dashboard__section-copy,
.pgw-dashboard__empty,
.pgw-dashboard__pet-copy,
.pgw-dashboard__booking span,
.pgw-dashboard__notice {
  font-size: 0.92rem;
  line-height: 1.35;
}

.pgw-dashboard__form {
  gap: 0.45rem;
  margin-top: 0.5rem;
}

.pgw-dashboard__field {
  gap: 0.16rem;
}

.pgw-dashboard__field > span {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.25;
}

.pgw-dashboard__field input,
.pgw-dashboard__field select,
.pgw-dashboard__field textarea {
  min-height: 36px;
  padding: 0.45rem 0.62rem;
  font-size: 0.92rem;
  line-height: 1.3;
}

.pgw-dashboard__field textarea {
  min-height: 88px;
}

.pgw-dashboard__required-token {
  font-size: 0.62rem;
  padding: 0.1rem 0.4rem;
}

.pgw-dashboard__button {
  min-height: 38px;
  padding: 0.55rem 0.85rem;
  font-size: 0.9rem;
}

.pgw-dashboard__requirements-copy,
.pgw-dashboard__requirements-footnote,
.pgw-dashboard__requirements-item {
  font-size: 0.88rem;
}

@media (max-width: 760px) {
  .pgw-dashboard__panel {
    padding: 0.62rem 0.65rem;
  }

  .pgw-dashboard__accordion-summary {
    padding: 0.5rem 0.6rem;
  }

  .pgw-dashboard__accordion-body {
    padding: 0.58rem 0.62rem 0.68rem;
  }
}

/* Shared panel compactness for onboarding/account-cta/team/accounts/admin-zone */
.pgw-onboarding,
.pgw-account-cta,
.pgw-team,
.pgw-accounts,
.pgw-admin-zone {
  font-size: 16px;
  line-height: 1.4;
}

.pgw-onboarding__title,
.pgw-account-cta__title,
.pgw-team__title,
.pgw-accounts__title,
.pgw-admin-zone__title {
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  line-height: 1.2;
  margin-bottom: 0.32rem;
}

.pgw-onboarding__intro,
.pgw-onboarding__panel-copy,
.pgw-onboarding__signed-in-copy,
.pgw-account-cta__copy,
.pgw-account-cta__card-copy,
.pgw-team__intro,
.pgw-team__qualifications,
.pgw-team__bio p,
.pgw-accounts__summary,
.pgw-accounts__card-sub,
.pgw-accounts__empty,
.pgw-admin-zone__intro,
.pgw-admin-zone__panel-copy,
.pgw-admin-zone__section-copy,
.pgw-admin-zone__field-copy,
.pgw-admin-zone__health-row p {
  font-size: 0.92rem;
  line-height: 1.35;
}

.pgw-onboarding__panel,
.pgw-onboarding__signed-in,
.pgw-account-cta__info-card,
.pgw-team__card,
.pgw-accounts__card,
.pgw-admin-zone__panel {
  padding: 0.68rem 0.78rem;
}

.pgw-onboarding__panel-title,
.pgw-account-cta__card-title,
.pgw-team__name,
.pgw-accounts__subtitle,
.pgw-admin-zone__panel-title {
  font-size: 1.02rem;
  line-height: 1.25;
}

.pgw-onboarding__form,
.pgw-admin-zone__form {
  gap: 0.5rem;
}

.pgw-onboarding__field,
.pgw-admin-zone__field {
  gap: 0.16rem;
}

.pgw-onboarding__field input,
.pgw-admin-zone__field input,
.pgw-admin-zone__field textarea,
.pgw-admin-zone__field select {
  min-height: 36px;
  padding: 0.45rem 0.62rem;
  font-size: 0.92rem;
  line-height: 1.3;
}

.pgw-onboarding__cta,
.pgw-account-cta__button,
.pgw-admin-zone__link {
  min-height: 38px;
  padding: 0.52rem 0.82rem;
  font-size: 0.9rem;
}

.pgw-account-cta__actions,
.pgw-team__grid,
.pgw-accounts__services,
.pgw-accounts__transactions,
.pgw-admin-zone__fields,
.pgw-admin-zone__health-cards,
.pgw-admin-zone__grid {
  gap: 0.48rem;
}

.pgw-accounts__service-row,
.pgw-accounts__tx-row,
.pgw-admin-zone__health-row {
  padding-top: 0.38rem;
  padding-bottom: 0.38rem;
}

@media (max-width: 760px) {
  .pgw-onboarding__panel,
  .pgw-onboarding__signed-in,
  .pgw-account-cta__info-card,
  .pgw-team__card,
  .pgw-accounts__card,
  .pgw-admin-zone__panel {
    padding: 0.62rem 0.66rem;
  }
}

/* Final container-fit lock for all frontend PGW Gutenberg block wrappers.
 * Keep wrappers constrained by their parent content column, not viewport width.
 */
.pgw-fallback-nav {
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid #d8e2df;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: space-between;
  padding: 14px clamp(18px, 5vw, 64px);
  width: 100%;
  z-index: 20;
}

.pgw-fallback-nav--footer {
  border-bottom: 0;
  border-top: 1px solid #d8e2df;
  margin-top: 48px;
}

.pgw-fallback-nav__brand {
  color: #0f2f2b;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.pgw-fallback-nav__list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pgw-fallback-nav__link {
  color: #143f39;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.pgw-fallback-nav__link:hover,
.pgw-fallback-nav__link:focus-visible,
.pgw-fallback-nav__brand:hover,
.pgw-fallback-nav__brand:focus-visible {
  color: #0b6b5c;
  text-decoration: underline;
}

@media (max-width: 720px) {
  .pgw-fallback-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .pgw-fallback-nav__list {
    justify-content: flex-start;
  }
}

.pgw-availability,
.pgw-checkout-draft,
.pgw-onboarding,
.pgw-account-cta,
.pgw-dashboard,
.pgw-admin-zone,
.pgw-team,
.pgw-accounts,
.pgw-field-operations,
.pgw-walking {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  transform: none;
  width: 100%;
}

/* Keep selection actions inside the sidebar card at narrow widths. */
.pgw-selection__actions {
  display: grid;
  gap: 0.45rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pgw-selection__actions > .pgw-selection__button {
  min-width: 0;
  width: 100%;
}

.pgw-selection__actions > .pgw-selection__button--recurring {
  grid-column: 1 / -1;
}

/* Prevent theme button color overrides (red times) on slot buttons. */
.pgw-slot,
.pgw-slot__time {
  color: #17324a;
}

.pgw-slot--unavailable .pgw-slot__time {
  color: #6f7f8f;
}

/* Admin Zone compact pass (April 2026): reduce white-space and improve scanability. */
.pgw-admin-zone {
  max-width: 1120px;
  margin-inline: auto;
}

.pgw-admin-zone__banner,
.pgw-admin-zone__panel,
.pgw-admin-zone__section-body {
  padding: 0.85rem 1rem;
}

.pgw-admin-zone__title {
  font-size: 1.45rem;
  margin-bottom: 0.25rem;
}

.pgw-admin-zone__intro,
.pgw-admin-zone__panel-copy,
.pgw-admin-zone__section-copy,
.pgw-admin-zone__field-copy {
  font-size: 0.9rem;
  line-height: 1.4;
}

.pgw-admin-zone__grid {
  gap: 0.75rem;
}

.pgw-admin-zone__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 0.8rem;
}

.pgw-admin-zone__field {
  gap: 0.32rem;
  margin: 0;
}

.pgw-admin-zone__field-label {
  font-size: 0.9rem;
  font-weight: 600;
}

.pgw-admin-zone__field input,
.pgw-admin-zone__field textarea,
.pgw-admin-zone__field select {
  min-height: 34px;
  padding: 0.42rem 0.55rem;
  font-size: 0.9rem;
}

.pgw-admin-zone__section-summary {
  padding: 0.62rem 0.9rem;
  font-size: 0.96rem;
}

.pgw-admin-zone__actions {
  margin-top: 0.7rem;
}

@media (max-width: 960px) {
  .pgw-admin-zone__fields {
    grid-template-columns: 1fr;
  }
}

/* --- Dog gallery (dashboard) --- */
.pgw-dashboard__pets-head {
  margin-bottom: 0.85rem;
}

.pgw-dashboard__pet-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.pgw-dashboard__pet-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: center;
}

.pgw-dashboard__pet-tile-photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  background: #f3f6f8;
  border: 2px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.pgw-dashboard__pet-tile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pgw-dashboard__pet-tile-pawprint {
  width: 52%;
  height: 52%;
  color: #bccbd3;
}

.pgw-dashboard__pet-tile:hover .pgw-dashboard__pet-tile-photo,
.pgw-dashboard__pet-tile.is-selected .pgw-dashboard__pet-tile-photo {
  border-color: #0d7a8a;
}

.pgw-dashboard__pet-tile-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: inherit;
}

.pgw-dashboard__pet-tile-edit {
  position: absolute;
  top: 6px;
  right: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  background: rgba(255, 255, 255, 0.92);
  color: #0d7a8a;
  border: 1px solid rgba(13, 122, 138, 0.25);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transition: opacity 0.15s ease;
}

.pgw-dashboard__pet-tile:hover .pgw-dashboard__pet-tile-edit,
.pgw-dashboard__pet-tile:focus-within .pgw-dashboard__pet-tile-edit {
  opacity: 1;
}

.pgw-dashboard__pet-tile-edit:hover {
  background: #fff;
}

.pgw-dashboard__pet-tile-hide {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0;
  background: rgba(17, 24, 39, 0.72);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}

.pgw-dashboard__pet-tile-hide svg {
  width: 28px;
  height: 28px;
}

.pgw-dashboard__pet-tile.is-editing .pgw-dashboard__pet-tile-hide {
  display: flex;
}

.pgw-dashboard__pet-tile.is-editing .pgw-dashboard__pet-tile-edit {
  display: none;
}

.pgw-dashboard__pet-tile-approval {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  border: 2px solid #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.pgw-dashboard__pet-tile-approval.pgw-dashboard__pet-approval-badge--approved {
  background: #2f9e44;
}

.pgw-dashboard__pet-tile-approval.pgw-dashboard__pet-approval-badge--pending,
.pgw-dashboard__pet-tile-approval.pgw-dashboard__pet-approval-badge--draft {
  background: #f59f00;
}

.pgw-dashboard__pet-tile-approval.pgw-dashboard__pet-approval-badge--rejected {
  background: #e03131;
}

.pgw-dashboard__pet-tile--add {
  color: #0d7a8a;
}

.pgw-dashboard__pet-tile--add .pgw-dashboard__pet-tile-add-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #eef7f8;
  border: 2px dashed #9cc7ce;
  border-radius: 14px;
  color: #9cc7ce;
}

.pgw-dashboard__pet-tile--add:hover .pgw-dashboard__pet-tile-add-icon,
.pgw-dashboard__pet-tile--add.is-selected .pgw-dashboard__pet-tile-add-icon {
  border-color: #0d7a8a;
  color: #0d7a8a;
}

.pgw-dashboard__pet-tile-add-pawprint {
  width: 48%;
  height: 48%;
}

.pgw-dashboard__pet-tile-add-plus {
  position: absolute;
  bottom: 10%;
  right: 12%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #0d7a8a;
  color: #fff;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.pgw-dashboard__pet-details-card {
  margin-top: 0.5rem;
  padding: 1rem;
  background: #fafbfc;
  border: 1px solid #e2e8ec;
  border-radius: 12px;
}

.pgw-dashboard__pet-details-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.pgw-dashboard__pet-details-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  background: transparent;
  color: #6b7280;
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.pgw-dashboard__pet-details-close:hover {
  background: #eef2f4;
  color: #111;
}

.pgw-dashboard__pet-hidden-reveal {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.pgw-dashboard__pet-hidden-reveal summary {
  cursor: pointer;
  color: #5b6b74;
  padding: 0.4rem 0;
}

.pgw-dashboard__pet-hidden-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pgw-dashboard__pet-hidden-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 0.7rem;
  background: #f6f7f8;
  border-radius: 10px;
}

.pgw-dashboard__pet-hidden-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #e6eaec;
  border-radius: 8px;
  overflow: hidden;
  color: #bccbd3;
  flex: 0 0 auto;
}

.pgw-dashboard__pet-hidden-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pgw-dashboard__pet-hidden-name {
  flex: 1 1 auto;
  font-weight: 600;
}

@media (max-width: 600px) {
  .pgw-dashboard__pet-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }

  .pgw-dashboard__pet-tile-edit {
    opacity: 1;
  }
}

/* ---------------------------------------------------------------------
 * Availability Preview (public, read-only)
 * ------------------------------------------------------------------- */

.pgw-availability--preview {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem;
}

.pgw-availability-preview__intro {
  margin-bottom: 1rem;
}

.pgw-availability-preview__title {
  margin: 0 0 0.25rem;
  font-size: 1.4rem;
}

.pgw-availability-preview__note {
  margin: 0;
  color: #45595f;
  font-size: 0.95rem;
}

.pgw-availability-preview__cta {
  display: inline-block;
  margin-left: 0.25rem;
  font-weight: 600;
  color: #0f5c4f;
  text-decoration: underline;
}

.pgw-availability-preview__calendar {
  margin-bottom: 1rem;
}

.pgw-availability--preview .pgw-availability__calendar-day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.4rem 0;
  border: 1px solid transparent;
  border-radius: 6px;
  background: #f4f7f8;
  color: #223033;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}

.pgw-availability--preview .pgw-availability__calendar-day:hover,
.pgw-availability--preview .pgw-availability__calendar-day:focus {
  background: #dceae5;
  outline: none;
}

.pgw-availability--preview .pgw-availability__calendar-day.is-selected {
  background: #0f5c4f;
  color: #fff;
  border-color: #0f5c4f;
}

.pgw-availability--preview .pgw-availability__calendar-day.is-occupancy-green {
  background: #e8f3e2;
  border-color: #5a8a3c;
}

.pgw-availability--preview .pgw-availability__calendar-day.is-occupancy-amber {
  background: #fdf3e1;
  border-color: #c88a2e;
}

.pgw-availability--preview .pgw-availability__calendar-day.is-occupancy-red {
  background: #fce8e8;
  border-color: #b64e4e;
}

.pgw-availability-preview__days {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.pgw-availability-preview__day {
  background: #fafbfb;
  border: 1px solid #e6eaec;
  border-radius: 8px;
  padding: 0.75rem;
}

.pgw-availability-preview__day-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: #223033;
}

.pgw-availability-preview__day-empty {
  margin: 0;
  color: #6b7a7e;
  font-size: 0.9rem;
  font-style: italic;
}

.pgw-availability-preview__slots {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pgw-availability-preview__slot .pgw-slot-lozenge {
  width: 100%;
  pointer-events: none;
}

.pgw-availability-preview__footer {
  margin-top: 1.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e6eaec;
  text-align: center;
  color: #45595f;
}

.pgw-availability__calendar-nav {
  display: none;
}

@media (max-width: 780px) {
  .pgw-availability-preview__days {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .pgw-availability {
    font-size: 0.92rem;
    padding: 0.55rem;
    width: min(100%, calc(100vw - 0.55rem));
  }

  .pgw-availability__header,
  .pgw-availability__legend-bar,
  .pgw-availability__layout,
  .pgw-availability__main,
  .pgw-availability-preview__days {
    gap: 0.5rem;
  }

  .pgw-availability__calendar {
    margin-top: 0.45rem;
  }

  .pgw-availability__calendar-nav {
    align-items: center;
    display: grid;
    gap: 0.45rem;
    grid-template-columns: 2rem minmax(0, 1fr) 2rem;
    margin: 0 0 0.42rem;
  }

  .pgw-availability__calendar-nav-button {
    align-items: center;
    appearance: none;
    background: #fff;
    border: 1px solid #cfe1ea;
    border-radius: 8px;
    color: #21475f;
    cursor: pointer;
    display: inline-flex;
    height: 2rem;
    justify-content: center;
    padding: 0;
    width: 2rem;
  }

  .pgw-availability__calendar-nav-button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
  }

  .pgw-availability__calendar-nav-label {
    color: #2f485f;
    font-size: 0.86rem;
    font-weight: 800;
    text-align: center;
  }

  .pgw-availability__calendar-months {
    display: block;
    margin-bottom: 0.5rem;
  }

  .pgw-availability__calendar-month {
    border-radius: 9px;
    padding: 0.35rem;
  }

  .pgw-availability__calendar-month:not(.is-calendar-month-active) {
    display: none;
  }

  .pgw-availability__calendar-month-title {
    display: none;
  }

  .pgw-availability__calendar-weekdays {
    font-size: 0.58rem;
    gap: 0.12rem;
    margin-bottom: 0.16rem;
  }

  .pgw-availability__calendar-grid {
    gap: 0.14rem;
  }

  .pgw-availability__calendar-day {
    border-radius: 7px;
    font-size: 0.69rem;
    min-height: 1.58rem;
    padding: 0.1rem 0;
  }

  .pgw-availability__layout {
    display: flex;
    flex-direction: column;
  }

  .pgw-booked-accordion {
    order: -1;
  }

  .pgw-booked-accordion__summary {
    border-radius: 10px;
    margin-bottom: 0.35rem;
    padding: 0.55rem 0.65rem;
  }

  .pgw-availability__window-nav {
    margin-bottom: 0.4rem;
  }

  .pgw-availability__days {
    display: grid;
    gap: 0;
    grid-template-columns: 1fr !important;
    overflow: visible;
    padding-bottom: 0;
  }

  .pgw-availability__day,
  .pgw-availability__day.is-active {
    display: none !important;
  }

  .pgw-availability__day.is-active {
    display: block !important;
  }

  .pgw-availability__day {
    border-radius: 10px;
    padding: 0.45rem;
  }

  .pgw-availability__day-title,
  .pgw-availability-preview__day-title {
    font-size: 0.88rem;
    margin-bottom: 0.42rem;
  }

  .pgw-day-timeline__slots,
  .pgw-availability-preview__slots {
    gap: 0.24rem;
  }

  .pgw-slot,
  .pgw-availability-preview__slot .pgw-slot-lozenge {
    border-radius: 8px;
    padding: 0.32rem 0.38rem;
  }

  .pgw-slot__time {
    font-size: 0.76rem;
  }

  .pgw-booked {
    padding: 0.5rem;
  }

  .pgw-booked__slot {
    border-radius: 8px;
    padding: 0.34rem 0.42rem;
  }

  .pgw-booked__slot-heading {
    font-size: 0.74rem;
  }

  .pgw-booked__slot-detail {
    font-size: 0.66rem;
  }

  .pgw-availability--preview {
    padding: 0.55rem;
  }

  .pgw-availability-preview__intro {
    margin-bottom: 0.55rem;
  }

  .pgw-availability-preview__title {
    font-size: 1.08rem;
  }

  .pgw-availability-preview__note {
    font-size: 0.82rem;
  }

  .pgw-availability-preview__day {
    border-radius: 8px;
    padding: 0.5rem;
  }

  .pgw-availability-preview__day:not(:first-child) {
    display: none;
  }

  .pgw-availability-preview__footer {
    margin-top: 0.7rem;
    padding-top: 0.55rem;
  }
}

.pgw-launch-home {
  color: #243027;
  margin: 0 auto;
  max-width: 1040px;
}

.pgw-launch-home__hero,
.pgw-launch-home__media,
.pgw-launch-home__image-grid figure {
  margin: 0;
}

.pgw-launch-home__image {
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(31, 47, 38, 0.12);
  display: block;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  width: 100%;
}

.pgw-launch-home__hero .pgw-launch-home__image {
  aspect-ratio: 21 / 9;
  max-height: 430px;
  object-fit: cover;
}

.pgw-launch-home__hero {
  position: relative;
}

.pgw-launch-home__hero-copy {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 57, 45, 0.14);
  border-radius: 18px;
  bottom: 1.5rem;
  box-shadow: 0 18px 42px rgba(31, 47, 38, 0.14);
  left: 1.5rem;
  max-width: 520px;
  padding: 1.35rem 1.5rem;
  position: absolute;
}

.pgw-launch-home__hero-copy h1 {
  color: #1f392d;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  margin: 0 0 0.55rem;
}

.pgw-launch-home__hero-copy p {
  color: #425247;
  font-size: 1.08rem;
  line-height: 1.55;
  margin: 0;
}

.pgw-launch-home__split {
  align-items: center;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  margin: clamp(2rem, 5vw, 4rem) 0;
}

.pgw-launch-home__split--media-first {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.pgw-launch-home__section {
  margin: 0;
  max-width: 620px;
  width: 100%;
}

.pgw-launch-home__section h1,
.pgw-launch-home__section h2 {
  color: #1f392d;
  margin-bottom: 0.75rem;
}

.pgw-launch-home__image-grid {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.pgw-launch-home__image-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pgw-launch-home__image-grid figure,
.pgw-launch-home__hero,
.pgw-launch-home__media {
  overflow: hidden;
}

.pgw-paw-list {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.pgw-paw-list li {
  line-height: 1.55;
  padding-left: 2rem;
  position: relative;
}

.pgw-paw-list li::before {
  content: "\1F43E";
  left: 0;
  position: absolute;
  top: 0;
}

.pgw-launch-home__callout {
  background: #f4ede1;
  border: 1px solid #d7c3a6;
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
}

.pgw-launch-home__callout h2 {
  text-transform: uppercase;
}

.pgw-launch-home__notice {
  background: #fff7ea;
  border: 1px solid #ead7b9;
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
}

.pgw-launch-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin: 2.5rem 0;
}

.pgw-launch-home__button {
  background: #2f6f4e;
  border: 1px solid #2f6f4e;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-width: 180px;
  padding: 0.85rem 1.2rem;
  text-decoration: none;
}

.pgw-launch-home__button:hover,
.pgw-launch-home__button:focus-visible {
  background: #1d4e35;
  color: #fff;
}

.pgw-launch-home__button--secondary {
  background: #fff;
  color: #2f6f4e;
}

.pgw-launch-home__button--secondary:hover,
.pgw-launch-home__button--secondary:focus-visible {
  background: #edf5ef;
  color: #1d4e35;
}

@media (max-width: 720px) {
  .pgw-launch-home__hero .pgw-launch-home__image {
    aspect-ratio: 4 / 3;
  }

  .pgw-launch-home__hero-copy {
    border-radius: 16px;
    bottom: auto;
    box-shadow: none;
    left: auto;
    margin-top: 1rem;
    max-width: none;
    padding: 1rem 0;
    position: static;
  }

  .pgw-launch-home__hero-copy h1 {
    font-size: 2.2rem;
  }

  .pgw-launch-home__split,
  .pgw-launch-home__split--media-first {
    gap: 1.15rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
  }

  .pgw-launch-home__image-grid--two {
    grid-template-columns: 1fr;
  }

  .pgw-launch-home__section {
    margin: 0;
    max-width: none;
  }

  .pgw-launch-home__button {
    width: 100%;
  }
}

/* Mobile density pass for PGW Gutenberg surfaces. */
@media (max-width: 820px) {
  :is(
    .pgw-availability,
    .pgw-checkout-draft,
    .pgw-onboarding,
    .pgw-account-cta,
    .pgw-dashboard,
    .pgw-admin-zone,
    .pgw-team,
    .pgw-accounts,
    .pgw-field-operations,
    .pgw-walking,
    .pgw-boarding,
    .pgw-password-reset,
    .pgw-booking-gate
  ) {
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.32;
    margin-bottom: 0.55rem;
    margin-top: 0.45rem;
    padding: 0.48rem;
  }

  :is(
    .pgw-availability__header,
    .pgw-availability__legend-bar,
    .pgw-availability__layout,
    .pgw-availability__main,
    .pgw-availability__toolbar,
    .pgw-checkout-draft__header,
    .pgw-checkout-draft__layout,
    .pgw-checkout-draft__main,
    .pgw-checkout-draft__sidebar,
    .pgw-onboarding__layout,
    .pgw-onboarding__form,
    .pgw-account-cta__grid,
    .pgw-account-cta__actions,
    .pgw-dashboard__hero-grid,
    .pgw-dashboard__summary,
    .pgw-dashboard__grid,
    .pgw-dashboard__quick-actions,
    .pgw-dashboard__form,
    .pgw-dashboard__form-actions,
    .pgw-admin-zone__grid,
    .pgw-admin-zone__form,
    .pgw-admin-zone__fields,
    .pgw-admin-zone__fields--toggles,
    .pgw-admin-zone__health-cards,
    .pgw-team__grid,
    .pgw-team__content,
    .pgw-accounts__summary,
    .pgw-accounts__services,
    .pgw-accounts__transactions,
    .pgw-field-operations,
    .pgw-field-operations__summary,
    .pgw-walking__summary,
    .pgw-walking__grid,
    .pgw-walking__form,
    .pgw-walking__request-list,
    .pgw-boarding__form,
    .pgw-password-reset__form
  ) {
    gap: 0.42rem;
  }

  :is(
    .pgw-availability__title,
    .pgw-checkout-draft__title,
    .pgw-onboarding__title,
    .pgw-account-cta__title,
    .pgw-dashboard__title,
    .pgw-admin-zone__title,
    .pgw-team__title,
    .pgw-accounts__title,
    .pgw-field-operations__title,
    .pgw-walking__title,
    .pgw-password-reset__heading,
    .pgw-booking-gate__title
  ) {
    font-size: clamp(1.05rem, 5vw, 1.35rem);
    line-height: 1.12;
    margin: 0 0 0.32rem;
  }

  :is(
    .pgw-availability__eyebrow,
    .pgw-checkout-draft__eyebrow,
    .pgw-onboarding__eyebrow,
    .pgw-account-cta__eyebrow,
    .pgw-dashboard__eyebrow,
    .pgw-admin-zone__eyebrow,
    .pgw-team__eyebrow,
    .pgw-field-operations__eyebrow,
    .pgw-walking__eyebrow
  ) {
    font-size: 0.64rem;
    letter-spacing: 0.07em;
    margin-bottom: 0.22rem;
  }

  :is(
    .pgw-availability__intro,
    .pgw-availability__window,
    .pgw-availability__snapshot-note,
    .pgw-checkout-draft__intro,
    .pgw-checkout-draft__section-detail,
    .pgw-checkout-draft__panel-copy,
    .pgw-onboarding__intro,
    .pgw-onboarding__panel-copy,
    .pgw-onboarding__signed-in-copy,
    .pgw-account-cta__copy,
    .pgw-account-cta__card-copy,
    .pgw-dashboard__intro,
    .pgw-dashboard__section-copy,
    .pgw-dashboard__empty,
    .pgw-admin-zone__intro,
    .pgw-admin-zone__panel-copy,
    .pgw-admin-zone__section-copy,
    .pgw-admin-zone__field-copy,
    .pgw-team__intro,
    .pgw-team__qualifications,
    .pgw-team__bio p,
    .pgw-accounts__card-sub,
    .pgw-accounts__empty,
    .pgw-field-operations__intro,
    .pgw-walking__intro,
    .pgw-walking__empty,
    .pgw-walking__request-copy,
    .pgw-booking-gate__body
  ) {
    font-size: 0.82rem;
    line-height: 1.3;
    margin-bottom: 0.38rem;
  }

  :is(
    .pgw-stat,
    .pgw-selection,
    .pgw-selection__item,
    .pgw-selection__empty,
    .pgw-selection__segment,
    .pgw-selection__review,
    .pgw-selection__stage,
    .pgw-selection__window,
    .pgw-checkout-draft__panel,
    .pgw-checkout-draft__section,
    .pgw-checkout-draft__window,
    .pgw-onboarding__panel,
    .pgw-onboarding__signed-in,
    .pgw-account-cta__info-card,
    .pgw-dashboard__panel,
    .pgw-dashboard__summary-card,
    .pgw-dashboard__field-stat,
    .pgw-dashboard__quick-link,
    .pgw-admin-zone__panel,
    .pgw-admin-zone__section,
    .pgw-admin-zone__health-card,
    .pgw-team__card,
    .pgw-accounts__card,
    .pgw-accounts__service-row,
    .pgw-accounts__tx-row,
    .pgw-field-operations__toolbar,
    .pgw-field-operations__summary-card,
    .pgw-walking__panel,
    .pgw-walking__request,
    .pgw-walking__fieldset
  ) {
    border-radius: 9px;
    padding: 0.44rem 0.5rem;
  }

  .pgw-availability {
    padding: 0.42rem;
  }

  .pgw-availability__calendar-nav {
    gap: 0.32rem;
    grid-template-columns: 1.78rem minmax(0, 1fr) 1.78rem;
    margin-bottom: 0.3rem;
  }

  .pgw-availability__calendar-nav-button {
    border-radius: 7px;
    height: 1.78rem;
    width: 1.78rem;
  }

  .pgw-availability__calendar-nav-label {
    font-size: 0.78rem;
  }

  .pgw-availability__calendar-month {
    padding: 0.26rem;
  }

  .pgw-availability__calendar-weekdays {
    font-size: 0.54rem;
  }

  .pgw-availability__calendar-day {
    border-width: 1px;
    font-size: 0.66rem;
    min-height: 1.42rem;
  }

  .pgw-availability__day {
    padding: 0.36rem;
  }

  .pgw-availability__day-title,
  .pgw-availability-preview__day-title {
    font-size: 0.82rem;
    margin-bottom: 0.3rem;
  }

  .pgw-day-timeline__slots {
    gap: 0.2rem;
    grid-template-rows: repeat(var(--pgw-timeline-rows), minmax(30px, auto));
  }

  .pgw-slot,
  .pgw-availability-preview__slot .pgw-slot-lozenge {
    border-radius: 7px;
    min-height: 30px;
    padding: 0.24rem 0.32rem;
  }

  .pgw-slot__content,
  .pgw-slot-lozenge__body {
    gap: 0.18rem;
  }

  .pgw-slot__time,
  .pgw-slot-lozenge__time {
    font-size: 0.72rem;
    line-height: 1.12;
  }

  .pgw-slot-lozenge__status {
    font-size: 0.62rem;
  }

  .pgw-slot-lozenge__indicator {
    height: 1.25rem;
    width: 1.25rem;
  }

  .pgw-booked {
    padding: 0.38rem;
  }

  .pgw-booked__title {
    font-size: 0.88rem;
    gap: 0.28rem;
  }

  .pgw-booked__list {
    gap: 0.24rem;
  }

  .pgw-booked__slot {
    border-radius: 7px;
    gap: 0.32rem;
    padding: 0.28rem 0.35rem;
  }

  .pgw-selection {
    margin-top: 0;
    padding: 0.46rem;
  }

  .pgw-selection__title {
    font-size: 0.9rem;
    margin-bottom: 0.32rem;
  }

  .pgw-selection__empty,
  .pgw-selection__segment,
  .pgw-selection__item {
    padding: 0.38rem 0.42rem;
  }

  .pgw-selection__actions {
    gap: 0.32rem;
  }

  :is(
    .pgw-selection__button,
    .pgw-checkout-draft__action,
    .pgw-onboarding__cta,
    .pgw-account-cta__button,
    .pgw-dashboard__button,
    .pgw-admin-zone__link,
    .pgw-field-operations__date-nav,
    .pgw-walking__actions button,
    .pgw-boarding__submit,
    .pgw-password-reset__cta,
    .pgw-booking-gate__button
  ) {
    border-radius: 8px;
    min-height: 34px;
    padding: 0.42rem 0.58rem;
  }

  :is(
    .pgw-onboarding__field input,
    .pgw-dashboard__field input,
    .pgw-dashboard__field select,
    .pgw-dashboard__field textarea,
    .pgw-admin-zone__field input,
    .pgw-admin-zone__field textarea,
    .pgw-admin-zone__field select,
    .pgw-password-reset__field input,
    .pgw-walking input,
    .pgw-walking select,
    .pgw-walking textarea,
    .pgw-boarding input,
    .pgw-boarding select,
    .pgw-boarding textarea
  ) {
    border-radius: 8px;
    min-height: 34px;
    padding: 0.38rem 0.5rem;
  }

  .pgw-account-cta__service-strip,
  .pgw-team__tags {
    gap: 0.28rem;
    margin-bottom: 0.5rem;
  }

  .pgw-account-cta__pill,
  .pgw-team__tag,
  .pgw-dashboard__tag,
  .pgw-dashboard__booking-type {
    font-size: 0.66rem;
    padding: 0.16rem 0.38rem;
  }

  .pgw-dashboard__accordion-summary {
    padding: 0.38rem 0.48rem;
  }

  .pgw-dashboard__accordion-body {
    padding: 0.45rem 0.5rem;
  }

  .pgw-dashboard__pet-gallery {
    gap: 0.38rem;
  }

  .pgw-dashboard__pet-tile {
    border-radius: 8px;
    padding: 0.34rem;
  }

  .pgw-admin-zone__section-summary,
  .pgw-admin-zone__section-body {
    padding: 0.45rem 0.5rem;
  }

  .pgw-accounts__card-value {
    font-size: 1rem;
  }

  .pgw-accounts__tx-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .pgw-field-operations__toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .pgw-walking__panel-title {
    font-size: 0.98rem;
    margin-bottom: 0.42rem;
  }
}

.pgw-availability .pgw-slot.pgw-slot--held-self-protected,
.pgw-availability .pgw-slot.pgw-slot--paid {
  background:
    linear-gradient(180deg, rgba(247, 255, 244, 0.98), rgba(194, 229, 184, 0.98));
  border: 3px solid #1f7a32;
  box-shadow:
    inset 5px 0 0 #1f7a32,
    inset 0 0 0 2px rgba(31, 122, 50, 0.13),
    0 8px 18px rgba(31, 122, 50, 0.12);
  position: relative;
}

.pgw-booked__slot.pgw-booked__slot--paid {
  background:
    linear-gradient(180deg, rgba(247, 255, 244, 0.98), rgba(194, 229, 184, 0.98));
  border: 2px solid #1f7a32;
  box-shadow:
    inset 4px 0 0 #1f7a32,
    0 6px 14px rgba(31, 122, 50, 0.12);
}

.pgw-booked__slot.pgw-booked__slot--paid .pgw-booked__slot-detail {
  color: #1f5a24;
  font-weight: 800;
}
