﻿
/* ── Atlas header (Appily Thirteen) ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.atlas-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--sand);
  box-shadow: 0 6px 28px rgba(14, 77, 92, 0.1);
}

.tide-band {
  background: var(--teal);
  color: var(--sand);
  font-size: 0.76rem;
}

.tide-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  flex-wrap: wrap;
}

.tide-kicker {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tide-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tide-chip {
  background: rgba(248, 246, 241, 0.12);
  border: 1px solid rgba(248, 246, 241, 0.2);
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.atlas-deck {
  background: var(--sand);
  border-bottom: 3px solid var(--ochre);
}

/* Single-line bar: brand | nav | tools */
.atlas-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas: "brand nav tools";
  align-items: center;
  column-gap: 14px;
  padding: 12px 0;
  min-height: 64px;
}

.atlas-brand {
  grid-area: brand;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--slate);
  text-decoration: none;
  flex-shrink: 0;
  max-width: 240px;
  padding-right: 16px;
  border-right: 2px solid var(--ochre);
}

.atlas-brand:hover {
  color: var(--teal);
}

.atlas-seal {
  border-radius: 12px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.atlas-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
  overflow: hidden;
}

.atlas-numeral {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--ochre);
}

.atlas-brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.atlas-brand-copy small {
  font-size: 0.68rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Nav slot — strictly contained in center column */
.crate-rail {
  grid-area: nav;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0 4px;
  border: 0;
}

.crate-rail-head,
.crate-rail-foot,
.atlas-backdrop {
  display: none;
}

/* Harbor beacon dock — lantern gems in a raised dock tray */
.beacon-dock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 2px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 5px;
  background: linear-gradient(180deg, #fff 0%, rgba(248, 246, 241, 0.95) 100%);
  border: 1px solid rgba(42, 45, 52, 0.1);
  border-radius: 16px;
  box-shadow:
    0 1px 2px rgba(42, 45, 52, 0.05),
    0 10px 28px rgba(14, 77, 92, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.beacon-dock::-webkit-scrollbar {
  display: none;
}

.beacon-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  padding: 8px 11px;
  border-radius: 11px;
  text-decoration: none;
  color: var(--slate-soft);
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.beacon-link:hover {
  color: var(--teal-deep);
  background: rgba(14, 77, 92, 0.07);
  transform: translateY(-1px);
}

.beacon-gem {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--ochre);
  opacity: 0.55;
  transition:
    opacity 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.beacon-link:hover .beacon-gem {
  opacity: 1;
  background: var(--ochre);
  border-color: var(--ochre);
  box-shadow: 0 0 10px rgba(212, 160, 86, 0.55);
  transform: scale(1.08);
}

.beacon-copy {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  min-width: 0;
}

.beacon-mark,
.beacon-hint,
.beacon-arrow {
  display: none;
}

.beacon-label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
}

.beacon-link.is-active {
  color: #fff;
  background: linear-gradient(145deg, var(--teal) 0%, var(--teal-deep) 100%);
  box-shadow:
    0 4px 14px rgba(14, 77, 92, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: none;
}

.beacon-link.is-active:hover {
  color: #fff;
  background: linear-gradient(145deg, var(--teal) 0%, var(--teal-deep) 100%);
  transform: none;
}

.beacon-link.is-active .beacon-gem {
  opacity: 1;
  background: #fff;
  border-color: #fff;
  box-shadow:
    0 0 8px rgba(255, 255, 255, 0.85),
    0 0 14px rgba(212, 160, 86, 0.45);
}

.beacon-link-accent:not(.is-active) {
  color: var(--clay);
}

.beacon-link-accent:not(.is-active) .beacon-gem {
  border-color: var(--clay);
}

.beacon-link-accent:not(.is-active):hover {
  color: var(--clay);
  background: rgba(201, 123, 99, 0.1);
}

.beacon-link-accent:not(.is-active):hover .beacon-gem {
  background: var(--clay);
  border-color: var(--clay);
  box-shadow: 0 0 10px rgba(201, 123, 99, 0.45);
}

.crate-rail-close {
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--slate);
  cursor: pointer;
  padding: 4px 8px;
}

.crate-rail-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--teal-deep);
}

/* Right-side tools — fixed column, no overlap */
.atlas-tools {
  grid-area: tools;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
  padding-left: 16px;
  border-left: 1px solid var(--line);
  white-space: nowrap;
}

.atlas-search {
  display: flex;
  width: 140px;
  height: 32px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.atlas-search input {
  flex: 1;
  min-width: 0;
  width: 0;
  border: 0;
  padding: 0 10px;
  font: inherit;
  font-size: 0.76rem;
  background: transparent;
}

.atlas-search input:focus {
  outline: none;
}

.atlas-search button {
  border: 0;
  background: var(--teal);
  color: #fff;
  width: 32px;
  height: 32px;
  margin: 1px;
  border-radius: 999px;
  padding: 0;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.atlas-search button:hover {
  background: var(--teal-deep);
}

.atlas-search-icon {
  display: block;
  transform: scaleX(-1);
}

.atlas-signin {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--slate);
  text-decoration: none;
  white-space: nowrap;
  padding: 0 6px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  flex-shrink: 0;
}

.atlas-signin:hover {
  color: var(--teal);
  background: rgba(14, 77, 92, 0.06);
}

.atlas-cart {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--ochre);
  color: #fff;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.74rem;
  text-decoration: none;
  flex-shrink: 0;
}

.atlas-cart:hover {
  background: var(--ochre-dark);
  color: #fff;
}

.atlas-cart-count {
  background: rgba(255, 255, 255, 0.28);
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
}

.atlas-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: var(--teal-pale);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.atlas-menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--slate);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.atlas-menu-btn.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.atlas-menu-btn.is-active span:nth-child(2) {
  opacity: 0;
}

.atlas-menu-btn.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Desktop width tweaks */
@media (max-width: 1280px) {
  .atlas-brand-copy small {
    display: none;
  }

  .atlas-brand {
    max-width: 190px;
  }

  .beacon-label {
    font-size: 0.73rem;
  }

  .beacon-link {
    padding: 7px 9px;
    gap: 6px;
  }

  .atlas-search {
    width: 128px;
  }
}

@media (max-width: 1120px) {
  .atlas-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    padding: 10px 0 12px;
    min-height: 0;
  }

  .atlas-brand {
    flex: 1;
    min-width: 0;
    max-width: none;
    border-right: 0;
    padding-right: 0;
  }

  .atlas-tools {
    border-left: 0;
    padding-left: 0;
    margin-left: auto;
  }

  .atlas-search {
    order: 10;
    width: 100%;
    flex: 1 1 100%;
  }

  .atlas-signin {
    display: none;
  }

  .atlas-menu-btn {
    display: flex;
  }

  /* Inline nav off — drawer only */
  .crate-rail {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 88vw);
    height: 100vh;
    max-width: none;
    padding: 20px;
    background: var(--sand);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    overflow: visible;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    visibility: hidden;
  }

  .crate-rail.is-open {
    display: flex;
    transform: translateX(0);
    visibility: visible;
  }

  .crate-rail-head,
  .crate-rail-foot {
    display: flex;
  }

  .crate-rail-head {
    justify-content: space-between;
    align-items: center;
    margin: -20px -20px 16px;
    padding: 18px 20px;
    background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
    color: #fff;
    flex-shrink: 0;
  }

  .crate-rail-title {
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.02em;
  }

  .crate-rail-close {
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    line-height: 1;
  }

  .beacon-dock {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: none;
    padding: 0;
    gap: 8px;
    flex: 1;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .beacon-link {
    width: 100%;
    gap: 0;
    padding: 0;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
    transform: none !important;
  }

  .beacon-link:hover {
    transform: none;
    background: #fff;
    border-color: rgba(14, 77, 92, 0.2);
    box-shadow: 0 6px 18px rgba(14, 77, 92, 0.08);
  }

  .beacon-gem {
    display: none;
  }

  .beacon-copy {
    display: grid;
    grid-template-columns: 42px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 12px;
    row-gap: 3px;
    width: 100%;
    padding: 14px 42px 14px 16px;
  }

  .beacon-mark {
    display: grid;
    place-items: center;
    grid-row: 1 / span 2;
    width: 42px;
    height: 42px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--ochre);
    background: linear-gradient(145deg, var(--ochre-pale) 0%, #fff 100%);
    border: 1px solid rgba(212, 160, 86, 0.35);
    border-radius: 10px;
  }

  .beacon-label {
    font-size: 1rem;
    color: var(--slate);
    align-self: end;
  }

  .beacon-hint {
    display: block;
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--muted);
    align-self: start;
  }

  .beacon-arrow {
    display: block;
    position: absolute;
    right: 16px;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 2px solid var(--ochre);
    border-right: 2px solid var(--ochre);
    transform: rotate(45deg);
    opacity: 0.45;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .beacon-link:hover .beacon-arrow {
    opacity: 0.85;
    transform: rotate(45deg) translate(1px, -1px);
  }

  .beacon-link.is-active {
    border-color: var(--teal);
    background: linear-gradient(90deg, var(--teal-pale) 0%, #fff 58%);
    box-shadow: 0 8px 22px rgba(14, 77, 92, 0.12);
  }

  .beacon-link.is-active .beacon-mark {
    background: linear-gradient(145deg, var(--teal) 0%, var(--teal-deep) 100%);
    border-color: var(--teal-deep);
    color: #fff;
  }

  .beacon-link.is-active .beacon-label {
    color: var(--teal-deep);
  }

  .beacon-link.is-active .beacon-hint {
    color: var(--teal);
  }

  .beacon-link.is-active .beacon-arrow {
    border-color: var(--teal);
    opacity: 1;
  }

  .beacon-link-accent:not(.is-active) .beacon-mark {
    color: var(--clay);
    border-color: rgba(201, 123, 99, 0.35);
    background: linear-gradient(145deg, rgba(201, 123, 99, 0.12) 0%, #fff 100%);
  }

  .crate-rail-foot {
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    flex-shrink: 0;
  }

  .crate-foot-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: var(--teal-pale);
    border-radius: 10px;
    color: var(--slate);
    text-decoration: none;
    font-size: 0.88rem;
  }

  .crate-foot-link strong {
    font-weight: 700;
  }

  .atlas-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8, 53, 64, 0.45);
    z-index: 150;
  }

  .atlas-backdrop:not([hidden]) {
    display: block;
  }

  .tide-chart-grid {
    grid-template-columns: 1fr;
  }

  .chart-pinfield {
    min-height: 0;
  }

  .manifest-row {
    grid-template-columns: 56px 1fr auto;
    grid-template-areas:
      "thumb copy copy"
      "thumb sku price"
      "thumb row view";
    gap: 8px 12px;
    padding: 14px;
  }

  .manifest-row-head {
    display: none;
  }

  .manifest-sku,
  .manifest-row-name {
    font-size: 0.72rem;
  }

  .manifest-sku { grid-area: sku; }
  .manifest-copy { grid-area: copy; }
  .manifest-row-name { grid-area: row; color: var(--muted); }
  .manifest-price { grid-area: price; justify-self: end; }
  .manifest-view { grid-area: view; justify-self: end; }

  .quay-crate,
  .quay-crate-reverse {
    grid-template-columns: 1fr;
  }

  .quay-crate-mark {
    display: none;
  }

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

@media (max-width: 1024px) {
  .tide-chips {
    display: none;
  }
}

@media (max-width: 480px) {
  .atlas-brand-copy strong {
    font-size: 0.95rem;
  }

  .atlas-cart-label {
    display: none;
  }
}

/* ── Tidal chart homepage (Appily Thirteen) ── */
.tide-chart {
  position: relative;
  padding: 56px 0 72px;
  background: linear-gradient(155deg, var(--teal-deep) 0%, #0a3a46 42%, var(--teal) 100%);
  color: var(--sand);
  overflow: hidden;
}

.tide-chart-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background:
    radial-gradient(circle at 18% 24%, rgba(212, 160, 86, 0.14) 0 2px, transparent 2px 100%),
    radial-gradient(circle at 72% 58%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 100%),
    repeating-radial-gradient(circle at 50% 120%, transparent 0 38px, rgba(248, 246, 241, 0.05) 38px 39px);
  pointer-events: none;
}

.tide-chart-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 42px;
  background: var(--sand);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 72%);
}

.tide-chart-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.tide-kicker {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ochre);
}

.tide-chart h1 {
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  color: #fff;
}

.tide-chart h1 em {
  color: var(--ochre);
  font-style: normal;
}

.tide-lede {
  margin: 0 0 24px;
  max-width: 48ch;
  color: rgba(248, 246, 241, 0.78);
}

.tide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.btn-tide-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid rgba(248, 246, 241, 0.42);
  color: var(--sand);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-tide-outline:hover {
  background: rgba(248, 246, 241, 0.1);
  border-color: var(--ochre);
  color: #fff;
}

.tide-gauge {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tide-gauge li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 64px;
}

.gauge-bar {
  position: relative;
  width: 14px;
  height: 54px;
  border-radius: 999px;
  background: rgba(248, 246, 241, 0.12);
  border: 1px solid rgba(248, 246, 241, 0.18);
  overflow: hidden;
}

.gauge-bar i {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--gauge, 50%);
  background: linear-gradient(180deg, var(--ochre) 0%, var(--clay) 100%);
  border-radius: 999px;
}

.gauge-bar-free i {
  background: linear-gradient(180deg, #8fd4a8 0%, var(--teal-pale) 100%);
}

.tide-gauge strong {
  font-size: 1.15rem;
  color: #fff;
  line-height: 1;
}

.tide-gauge span:last-child {
  font-size: 0.68rem;
  color: rgba(248, 246, 241, 0.62);
  text-align: center;
}

.chart-pinfield {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: minmax(92px, 1fr) minmax(92px, 1fr) minmax(78px, 0.85fr);
  gap: 10px;
  min-height: 360px;
}

.chart-compass {
  grid-column: 2 / 4;
  grid-row: 2;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(248, 246, 241, 0.08);
  border: 1px dashed rgba(212, 160, 86, 0.35);
}

.compass-ring {
  width: 72px;
  height: 72px;
  border: 2px solid rgba(212, 160, 86, 0.55);
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px rgba(8, 53, 64, 0.35);
}

.compass-needle {
  position: absolute;
  width: 3px;
  height: 34px;
  background: linear-gradient(180deg, var(--ochre) 0%, var(--clay) 100%);
  border-radius: 999px;
  transform: rotate(-28deg);
}

.compass-label {
  position: absolute;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--ochre);
}

.chart-pin {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--sand);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.chart-pin:hover {
  transform: translateY(-3px);
  color: #fff;
}

.chart-pin-1 { grid-column: 1; grid-row: 1 / 3; }
.chart-pin-2 { grid-column: 2; grid-row: 1; }
.chart-pin-3 { grid-column: 3; grid-row: 1; }
.chart-pin-4 { grid-column: 2; grid-row: 3; }
.chart-pin-5 { grid-column: 3; grid-row: 3; }

.chart-pin-coord {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--ochre);
}

.chart-pin-frame {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(248, 246, 241, 0.22);
  background: rgba(8, 53, 64, 0.45);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.chart-pin-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chart-pin-name {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.meridian-deck {
  padding: 52px 0 44px;
  background: var(--sand);
}

.meridian-head,
.manifest-head,
.quay-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.meridian-kicker,
.manifest-kicker,
.quay-kicker {
  margin: 0 0 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.meridian-head h2,
.manifest-head h2,
.quay-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--slate);
}

.meridian-all,
.manifest-all,
.quay-all {
  font-weight: 700;
  color: var(--ochre-dark);
  white-space: nowrap;
}

.meridian-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 8px 4px 14px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.meridian-tab {
  position: relative;
  flex: 0 0 auto;
  width: min(210px, 72vw);
  min-height: 132px;
  padding: 18px 18px 16px 22px;
  background: linear-gradient(165deg, #fff 0%, var(--sand-2) 100%);
  border: 1px solid var(--line);
  border-radius: 4px 14px 14px 4px;
  color: var(--slate);
  text-decoration: none;
  transform: rotate(-1.5deg);
  box-shadow: 0 10px 24px rgba(42, 45, 52, 0.08);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.meridian-tab:nth-child(even) {
  transform: rotate(1.2deg);
}

.meridian-tab:hover {
  transform: translateY(-4px) rotate(0deg);
  border-color: rgba(14, 77, 92, 0.22);
  box-shadow: 0 16px 32px rgba(14, 77, 92, 0.12);
}

.meridian-fold {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 100%;
  background: linear-gradient(180deg, var(--ochre) 0%, var(--ochre-dark) 100%);
  border-radius: 4px 0 0 4px;
}

.meridian-elev {
  display: block;
  margin-bottom: 10px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--ochre-dark);
}

.meridian-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
}

.meridian-edge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 28px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--teal) 0 4px, transparent 4px 7px);
  opacity: 0.45;
}

.manifest-board {
  padding: 52px 0;
  background: #fff;
}

.manifest-note {
  margin: 8px 0 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: 0.92rem;
}

.manifest-sheet {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--sand);
  box-shadow: 0 16px 40px rgba(42, 45, 52, 0.06);
}

.manifest-row {
  display: grid;
  grid-template-columns: 72px 92px minmax(0, 1.4fr) minmax(0, 1fr) 100px 88px;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.manifest-row:first-child {
  border-top: 0;
}

.manifest-row-head {
  background: linear-gradient(90deg, var(--teal-deep) 0%, var(--teal) 100%);
  color: rgba(248, 246, 241, 0.82);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.manifest-thumb {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.manifest-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manifest-sku {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--teal);
}

.manifest-copy h3 {
  margin: 0;
  font-size: 0.98rem;
}

.manifest-copy h3 a {
  color: var(--slate);
  text-decoration: none;
}

.manifest-copy h3 a:hover {
  color: var(--teal);
}

.manifest-badge,
.manifest-variant {
  display: inline-block;
  margin-top: 4px;
  margin-right: 6px;
  font-size: 0.68rem;
  font-weight: 700;
}

.manifest-badge {
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--ochre-pale);
  color: var(--ochre-dark);
}

.manifest-variant {
  color: var(--muted);
}

.manifest-row-name {
  font-size: 0.82rem;
  color: var(--muted);
}

.manifest-price {
  font-weight: 800;
  color: var(--ochre-dark);
}

.manifest-view {
  justify-self: end;
}

.manifest-row:hover:not(.manifest-row-head) {
  background: linear-gradient(90deg, var(--teal-pale) 0%, #fff 42%);
}

.quay-dispatch {
  padding: 52px 0 64px;
  background: var(--sand-2);
}

.quay-head {
  align-items: center;
}

.quay-lane {
  display: grid;
  gap: 14px;
}

.quay-crate {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--slate);
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(42, 45, 52, 0.06);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.quay-crate-reverse {
  grid-template-columns: 1fr 220px auto;
}

.quay-crate-reverse .quay-crate-img {
  order: 2;
}

.quay-crate-reverse .quay-crate-body {
  order: 1;
  text-align: right;
}

.quay-crate:hover {
  transform: translateX(4px);
  border-color: rgba(14, 77, 92, 0.2);
  box-shadow: 0 16px 34px rgba(14, 77, 92, 0.1);
}

.quay-crate-reverse:hover {
  transform: translateX(-4px);
}

.quay-crate-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sand);
}

.quay-crate-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quay-crate-row {
  display: block;
  margin-bottom: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.quay-crate-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.2;
}

.quay-crate-price {
  display: inline-block;
  margin-top: 8px;
  font-weight: 800;
  color: var(--ochre-dark);
}

.quay-crate-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--teal-pale);
  color: var(--teal-deep);
  font-weight: 800;
}

@media (max-width: 960px) {
  .tide-chart {
    padding: 40px 0 56px;
  }

  .chart-pinfield {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .chart-compass {
    display: none;
  }

  .chart-pin-1,
  .chart-pin-2,
  .chart-pin-3,
  .chart-pin-4,
  .chart-pin-5 {
    grid-column: auto;
    grid-row: auto;
  }

  .chart-pin-frame {
    aspect-ratio: 1;
  }

  .manifest-row:not(.manifest-row-head) {
    grid-template-columns: 56px 1fr auto;
    grid-template-areas:
      "thumb copy copy"
      "thumb sku price"
      "thumb row view";
  }

  .manifest-row-head {
    display: none;
  }

  .manifest-thumb { grid-area: thumb; width: 56px; height: 56px; }
  .manifest-copy { grid-area: copy; }
  .manifest-sku { grid-area: sku; font-size: 0.72rem; }
  .manifest-row-name { grid-area: row; font-size: 0.72rem; color: var(--muted); }
  .manifest-price { grid-area: price; justify-self: end; }
  .manifest-view { grid-area: view; justify-self: end; }

  .quay-crate,
  .quay-crate-reverse {
    grid-template-columns: 1fr;
  }

  .quay-crate-reverse .quay-crate-img,
  .quay-crate-reverse .quay-crate-body {
    order: unset;
    text-align: left;
  }

  .quay-crate-mark {
    display: none;
  }
}

.dock-footer{position:relative;background:var(--teal-deep);color:var(--sand);margin-top:auto}
.dock-wave{height:10px;background:linear-gradient(90deg,var(--ochre),var(--clay),var(--teal))}
.dock-sheet{padding:40px 0 24px}
.dock-intro{display:flex;justify-content:space-between;gap:24px;flex-wrap:wrap;margin-bottom:32px;padding-bottom:24px;border-bottom:1px solid rgba(248,246,241,.15)}
.dock-brand{display:flex;gap:14px;align-items:flex-start}
.dock-numeral{display:block;font-size:.7rem;font-weight:800;letter-spacing:.18em;color:var(--ochre)}
.dock-signal-label{display:block;font-size:.72rem;opacity:.7}
.dock-signal a{color:var(--ochre);font-weight:700}
.dock-columns{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.dock-col h4{font-size:.85rem;margin-bottom:12px;color:var(--ochre)}
.dock-col-mark{opacity:.6;margin-right:4px}
.dock-col a{display:block;color:rgba(248,246,241,.85);font-size:.88rem;margin-bottom:8px;text-decoration:none}
.dock-col a:hover{color:#fff}
.dock-gstin{font-size:.75rem;opacity:.65;margin-top:12px}
.dock-base{margin-top:28px;padding-top:20px;border-top:1px solid rgba(248,246,241,.12);font-size:.8rem;opacity:.8}
@media(max-width:560px){.dock-columns{grid-template-columns:1fr}}
/* Appily-Thirteen Ã¢â‚¬â€ Harbor Soil Atlas */
:root {
  --slate: #2A2D34;
  --slate-soft: #4A4F5C;
  --ochre: #D4A056;
  --ochre-dark: #B8843A;
  --ochre-pale: #F5E6CC;
  --teal: #0E4D5C;
  --teal-deep: #083540;
  --teal-pale: #D8ECEF;
  --clay: #C97B63;
  --sand: #F8F6F1;
  --sand-2: #EDE8DF;
  --white: #FFFFFF;
  --muted: #7A7268;
  --line: rgba(28, 31, 38, 0.12);
  --font-display: 'Syne', Georgia, serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;
  --radius: 6px;
  --radius-lg: 14px;
  --shadow: 0 18px 48px rgba(28, 31, 38, 0.1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--slate);
  background: var(--sand);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ochre-dark); text-decoration: none; }
a:hover { color: var(--clay); }
.container { width: min(1180px, 92vw); margin: 0 auto; }
.page-wrap { min-height: 100vh; display: flex; flex-direction: column; }
.page-main { flex: 1; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .5em;
}
.eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin: 0 0 12px;
}
.hero-lede { color: var(--muted); max-width: 52ch; margin: 0 0 24px; }
.section { padding: 56px 0; }
.section-muted { background: var(--sand-2); }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0; }
.section-head p { margin: 0; color: var(--muted); font-size: .95rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-ochre { background: var(--ochre); color: var(--white); border-color: var(--ochre); }
.btn-ochre:hover { background: var(--ochre-dark); border-color: var(--ochre-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--slate); border-color: var(--slate); }
.btn-outline:hover { background: var(--slate); color: var(--sand); }
.btn-soft { background: var(--teal-pale); color: var(--teal-deep); border-color: var(--teal-pale); }
.btn-soft:hover { background: var(--teal); color: var(--white); }
.btn-sm { padding: 8px 14px; font-size: .82rem; }
.price { font-weight: 700; color: var(--ochre-dark); font-size: 1.05rem; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Gate header Ã¢â€â‚¬Ã¢â€â‚¬ */
.gate-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(28, 31, 38, 0.08);
}
.gate-arch {
  height: 8px;
  background: linear-gradient(90deg, var(--clay) 0%, var(--ochre) 35%, var(--teal) 70%, var(--slate) 100%);
}
.gate-arch-inner {
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 12px,
    rgba(255,255,255,.15) 12px,
    rgba(255,255,255,.15) 14px
  );
}
.gate-topbar {
  background: var(--slate);
  color: var(--sand);
  font-size: .78rem;
}
.gate-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
}
.gate-tag { opacity: .85; }
.gate-actions { display: flex; align-items: center; gap: 16px; }
.gate-link { color: var(--ochre-pale); font-weight: 600; }
.gate-link:hover { color: var(--white); }
.gate-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ochre);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .78rem;
}
.gate-cart:hover { background: var(--ochre-dark); color: var(--white); }
.gate-cart-count {
  background: var(--white);
  color: var(--ochre-dark);
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: .72rem;
}

.trellis-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 0 14px;
}
.gate-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--slate);
  flex-shrink: 0;
}
.gate-brand:hover { color: var(--slate); }
.gate-brand-num {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--clay);
  color: var(--sand);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 4px 14px 4px 14px;
  transform: rotate(-3deg);
  flex-shrink: 0;
}
.gate-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.gate-brand-text strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: .02em;
  white-space: nowrap;
}
.gate-brand-text small {
  font-size: .62rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}
.gate-cart-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--ochre);
  color: var(--white);
  border-radius: 999px;
  font-weight: 700;
  flex-shrink: 0;
}
.gate-cart-mobile:hover { background: var(--ochre-dark); color: var(--white); }
.gate-cart-mobile .gate-cart-count {
  background: transparent;
  color: var(--white);
  min-width: auto;
  height: auto;
  font-size: .85rem;
}
.gate-nav-backdrop { display: none; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Trellis navigation tray Ã¢â€â‚¬Ã¢â€â‚¬ */
.trellis-nav-zone {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trellis-cap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 100%;
  padding: 0 8px;
  margin-bottom: -1px;
  z-index: 2;
  pointer-events: none;
}
.trellis-post {
  width: 10px;
  height: 14px;
  background: linear-gradient(180deg, var(--ochre) 0%, var(--ochre-dark) 100%);
  border-radius: 3px 3px 0 0;
  flex-shrink: 0;
}
.trellis-wire {
  flex: 1;
  max-width: 520px;
  height: 5px;
  background: linear-gradient(90deg, var(--ochre-dark), var(--ochre), var(--ochre-dark));
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.gate-dock {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.gate-dock-head,
.gate-dock-close,
.gate-dock-quick {
  display: none;
}
.trellis-links,
.gate-dock-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  width: 100%;
  max-width: 100%;
  padding: 10px 14px 8px;
  background: linear-gradient(180deg, var(--sand) 0%, var(--sand-2) 100%);
  border: 2px solid var(--ochre-pale);
  border-top: 3px solid var(--ochre);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 4px 16px rgba(28, 31, 38, 0.08);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.trellis-links::-webkit-scrollbar,
.gate-dock-links::-webkit-scrollbar { display: none; }

.trellis-link,
.gate-dock-link,
.gate-dock-link.dock-tray-cell {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 14px 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--slate-soft);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 0;
  text-align: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.trellis-clip {
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--ochre);
  border-radius: 50%;
  border: 2px solid var(--sand);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
}
.dock-copy span { display: none; }
.dock-copy strong { font-weight: 700; font-size: inherit; }
.dock-tray-glyph,
.dock-tray-arrow,
.gate-dock-tray-label,
.gate-dock-stamp,
.gate-dock-head-main,
.gate-dock-quick-grid,
.dock-quick-icon,
.dock-quick-body { display: none; }
.gate-dock-tray {
  display: block;
  width: 100%;
  min-width: 0;
}
.gate-dock-link.dock-tray-cell::before {
  content: none;
  display: none;
}
.trellis-link:hover,
.gate-dock-link:hover {
  color: var(--slate);
  background: rgba(255, 255, 255, 0.65);
  border-color: var(--ochre-pale);
}
.trellis-link:hover .trellis-clip,
.gate-dock-link:hover .trellis-clip {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}
.trellis-link.is-active,
.gate-dock-link.is-active {
  color: var(--ochre-dark);
  background: var(--white);
  border-color: var(--ochre);
  box-shadow: 0 2px 10px rgba(198, 123, 78, 0.18);
}
.trellis-link.is-active .trellis-clip,
.gate-dock-link.is-active .trellis-clip {
  opacity: 1;
  background: var(--clay);
  transform: translateX(-50%) translateY(-3px);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Loupe search (separate from nav) Ã¢â€â‚¬Ã¢â€â‚¬ */
.loupe-zone {
  flex-shrink: 0;
  padding-left: 20px;
  margin-left: 6px;
  border-left: 2px dashed var(--ochre-pale);
}
.loupe-search,
.gate-search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0;
  width: min(260px, 28vw);
  min-width: 180px;
  padding: 5px 5px 5px 0;
  background:
    linear-gradient(135deg, var(--white) 0%, var(--teal-pale) 120%);
  border: 2px solid var(--teal);
  border-radius: 999px;
  box-shadow:
    0 4px 20px rgba(107, 158, 120, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}
.loupe-label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 4px 0 14px;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal-deep);
  white-space: nowrap;
}
.loupe-label::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--white);
  flex-shrink: 0;
}
.loupe-search input,
.gate-search input {
  border: 0;
  padding: 9px 8px 9px 0;
  font: inherit;
  font-size: .82rem;
  min-width: 0;
  background: transparent;
}
.loupe-search input:focus,
.gate-search input:focus {
  outline: none;
}
.loupe-search button,
.gate-search button {
  border: 0;
  background: linear-gradient(180deg, var(--ochre) 0%, var(--ochre-dark) 100%);
  color: var(--white);
  padding: 9px 18px;
  font: inherit;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 999px;
  transition: filter .2s ease, transform .2s ease;
}
.loupe-search button:hover,
.gate-search button:hover {
  filter: brightness(1.06);
}

.gate-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.gate-menu-btn:hover { border-color: var(--ochre-pale); background: var(--sand-2); }
.gate-menu-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--slate);
  border-radius: 1px;
  transition: transform .25s ease, opacity .25s ease;
}
.gate-menu-btn.is-active .gate-menu-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.gate-menu-btn.is-active .gate-menu-bar:nth-child(2) {
  opacity: 0;
}
.gate-menu-btn.is-active .gate-menu-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.gate-stall-strip {
  overflow: hidden;
  background: var(--teal-pale);
  border-top: 1px solid var(--line);
  padding: 6px 0;
}
.gate-stall-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal-deep);
}
.gate-stall-track span {
  padding: 0 8px;
  border-right: 1px dashed var(--teal);
}
.gate-stall-track span:last-child { border-right: 0; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Hero shelf Ã¢â€â‚¬Ã¢â€â‚¬ */
.hero-shelf {
  background: var(--slate);
  color: var(--sand);
  padding: 56px 0 72px;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
}
.hero-shelf-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.hero-shelf-copy h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--sand);
}
.hero-shelf-copy h1 em {
  font-style: italic;
  color: var(--ochre);
}
.hero-shelf-copy .eyebrow { color: var(--teal); }
.hero-shelf-copy .hero-lede { color: rgba(244, 239, 228, .75); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.trust-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-strip li { display: flex; flex-direction: column; }
.trust-strip strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--ochre); }
.trust-strip span { font-size: .78rem; opacity: .7; text-transform: uppercase; letter-spacing: .06em; }

.hero-shelf-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  transform: rotate(-2deg);
}
.shelf-card {
  background: var(--white);
  padding: 10px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  color: var(--slate);
  transition: transform .2s;
}
.shelf-card:hover { transform: translateY(-4px); color: var(--slate); }
.shelf-card-1 { transform: rotate(2deg); }
.shelf-card-2 { transform: rotate(-1deg); margin-top: 24px; }
.shelf-card-3 { transform: rotate(-2deg); }
.shelf-card-4 { transform: rotate(1deg); margin-top: 16px; }
.shelf-card-frame {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand-2);
}
.shelf-card-frame img { width: 100%; height: 100%; object-fit: cover; }
.shelf-card-label {
  display: block;
  margin-top: 8px;
  font-size: .78rem;
  font-weight: 700;
  text-align: center;
  color: var(--slate-soft);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Aisle index Ã¢â€â‚¬Ã¢â€â‚¬ */
.aisle-index { padding: 48px 0; }
.aisle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.aisle-ticket {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border: 2px dashed var(--ochre-pale);
  border-radius: var(--radius);
  color: var(--slate);
  transition: border-color .2s, background .2s;
}
.aisle-ticket:hover {
  border-color: var(--ochre);
  background: var(--ochre-pale);
  color: var(--slate);
}
.aisle-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--clay);
  font-weight: 700;
}
.aisle-name { font-size: .88rem; font-weight: 600; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Catalog grid Ã¢â€â‚¬Ã¢â€â‚¬ */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.catalog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: box-shadow .2s, transform .2s;
}
.catalog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.catalog-img {
  display: block;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--sand-2);
}
.catalog-img img { width: 100%; height: 100%; object-fit: cover; }
.catalog-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--clay);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.catalog-body { padding: 14px 16px 16px; }
.catalog-cat {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--teal-deep);
}
.catalog-body h3 {
  font-size: 1rem;
  margin: 4px 0 6px;
}
.catalog-body h3 a { color: var(--slate); }
.catalog-body h3 a:hover { color: var(--ochre-dark); }
.catalog-variant { font-size: .82rem; color: var(--muted); margin: 0 0 10px; }
.catalog-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Promo slab Ã¢â€â‚¬Ã¢â€â‚¬ */
.promo-slab {
  background: linear-gradient(135deg, var(--clay) 0%, var(--ochre-dark) 100%);
  color: var(--sand);
  padding: 48px 0;
}
.promo-slab-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.promo-slab h2 { color: var(--sand); font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin: 0 0 8px; }
.promo-slab p { margin: 0; opacity: .85; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Pick row Ã¢â€â‚¬Ã¢â€â‚¬ */
.pick-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.pick-chip {
  flex: 0 0 200px;
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--white);
  padding: 10px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  color: var(--slate);
}
.pick-chip:hover { border-color: var(--ochre); color: var(--slate); }
.pick-chip-img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.pick-chip-img img { width: 100%; height: 100%; object-fit: cover; }
.pick-chip-info h3 { font-size: .85rem; margin: 0 0 4px; }
.pick-chip-info .price { font-size: .9rem; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Shop page: Weigh Station Pegboard Ã¢â€â‚¬Ã¢â€â‚¬ */
/* Shop page: Hydrographic lot chart */
.chart-bay {
  position: relative;
  padding: 44px 0 58px;
  background: linear-gradient(155deg, var(--teal-deep) 0%, #0a3f4c 50%, var(--teal) 100%);
  color: var(--sand);
  overflow: hidden;
}

.chart-bay-mesh {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(248, 246, 241, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 246, 241, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.chart-bay-shoal {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 36px;
  background: var(--sand);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 68%);
}

.chart-bay-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 28px;
  align-items: center;
}

.chart-bay-kicker {
  margin: 0 0 10px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
}

.chart-bay-title {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  color: #fff;
  max-width: 16ch;
}

.chart-bay-title em {
  color: var(--ochre);
  font-style: normal;
}

.chart-bay-note {
  margin: 0 0 22px;
  max-width: 46ch;
  color: rgba(248, 246, 241, 0.76);
}

.chart-bay-query-shell {
  display: flex;
  align-items: stretch;
  max-width: 440px;
  border: 1px solid rgba(248, 246, 241, 0.28);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(8, 53, 64, 0.45);
}

.chart-query-glyph {
  display: grid;
  place-items: center;
  width: 44px;
  color: var(--ochre);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.chart-bay-query-shell input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 12px 8px;
  font: inherit;
  font-size: 0.92rem;
  color: #fff;
  background: transparent;
}

.chart-bay-query-shell input::placeholder {
  color: rgba(248, 246, 241, 0.45);
}

.chart-bay-query-shell button {
  border: 0;
  padding: 12px 18px;
  font: inherit;
  font-weight: 700;
  background: var(--ochre);
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
}

.chart-bay-query-shell button:hover {
  background: var(--ochre-dark);
}

.chart-depth-gauge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 120px;
  padding: 18px 16px;
  border-radius: 16px;
  background: rgba(248, 246, 241, 0.08);
  border: 1px dashed rgba(212, 160, 86, 0.4);
}

.depth-gauge-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 246, 241, 0.62);
}

.depth-gauge-track {
  position: relative;
  width: 18px;
  height: 120px;
  border-radius: 999px;
  background: rgba(8, 53, 64, 0.55);
  border: 1px solid rgba(248, 246, 241, 0.16);
  overflow: hidden;
}

.depth-gauge-fill {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--depth, 50%);
  background: linear-gradient(180deg, var(--ochre) 0%, var(--clay) 100%);
  border-radius: 999px;
}

.depth-gauge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}

.depth-gauge-unit {
  font-size: 0.68rem;
  color: rgba(248, 246, 241, 0.62);
  text-align: center;
}

.sounding-deck {
  padding: 28px 0 24px;
  background: var(--sand);
  border-bottom: 1px solid var(--line);
}

.sounding-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.sounding-kicker {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.sounding-hint {
  font-size: 0.78rem;
  color: var(--muted);
}

.sounding-ruler {
  position: relative;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 28px 4px 8px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.sounding-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 14px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-pale), var(--ochre), var(--teal-pale));
  border-radius: 999px;
  pointer-events: none;
}

.sounding-pick {
  position: relative;
  flex: 0 0 auto;
  width: min(148px, 42vw);
  text-decoration: none;
  color: var(--slate);
  text-align: center;
  padding-top: 6px;
  transition: transform 0.18s ease;
}

.sounding-pick:hover {
  transform: translateY(-3px);
}

.sounding-depth {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--teal-deep);
  background: #fff;
  border: 2px solid var(--teal-pale);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(14, 77, 92, 0.12);
  z-index: 1;
}

.sounding-plate {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 22px;
  padding: 12px 10px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(42, 45, 52, 0.06);
}

.sounding-name {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

.sounding-count {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
}

.sounding-pick.is-active .sounding-depth {
  background: var(--teal);
  border-color: var(--teal-deep);
  color: #fff;
}

.sounding-pick.is-active .sounding-plate {
  border-color: var(--teal);
  background: linear-gradient(180deg, var(--teal-pale) 0%, #fff 100%);
}

.sounding-pick.tone-gourd.is-active .sounding-depth { background: var(--ochre); border-color: var(--ochre-dark); }
.sounding-pick.tone-pepper.is-active .sounding-depth { background: var(--clay); border-color: #a85f4a; }

.chart-floor {
  padding: 36px 0 72px;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 31px,
      rgba(14, 77, 92, 0.04) 31px,
      rgba(14, 77, 92, 0.04) 32px
    ),
    var(--sand);
}

.chart-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(14, 77, 92, 0.18);
}

.chart-toolbar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  font-size: 0.86rem;
  color: var(--muted);
}

.chart-range {
  font-weight: 800;
  color: var(--teal-deep);
}

.chart-clear,
.chart-reset {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ochre-dark);
}

.chart-empty {
  text-align: center;
  padding: 48px 20px;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 16px;
}

.chart-empty-ring {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border: 3px dashed var(--ochre);
  border-radius: 50%;
  opacity: 0.55;
}

.inset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px 20px;
}

.inset-lot {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(42, 45, 52, 0.07);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.inset-lot:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(14, 77, 92, 0.12);
}

.inset-frame {
  position: relative;
  display: block;
  padding: 14px 14px 10px;
  background: linear-gradient(180deg, var(--sand-2) 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.inset-corner {
  position: absolute;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--ochre-dark);
  z-index: 2;
}

.inset-corner-tl { top: 6px; left: 8px; }
.inset-corner-br { right: 8px; bottom: 6px; }

.inset-ticks {
  position: absolute;
  pointer-events: none;
  opacity: 0.35;
}

.inset-ticks-left {
  left: 4px;
  top: 18px;
  bottom: 18px;
  width: 6px;
  background: repeating-linear-gradient(180deg, var(--teal) 0 4px, transparent 4px 8px);
}

.inset-ticks-bottom {
  left: 18px;
  right: 18px;
  bottom: 4px;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--teal) 0 4px, transparent 4px 8px);
}

.inset-photo {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(14, 77, 92, 0.12);
}

.inset-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.inset-lot:hover .inset-photo img {
  transform: scale(1.04);
}

.inset-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}

.inset-legend {
  padding: 14px 16px 16px;
}

.inset-legend-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.inset-lot-no {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

.inset-sku {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--ochre-dark);
}

.inset-legend h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  line-height: 1.25;
}

.inset-legend h3 a {
  color: var(--slate);
  text-decoration: none;
}

.inset-legend h3 a:hover {
  color: var(--teal);
}

.inset-row,
.inset-variant {
  display: block;
  font-size: 0.74rem;
  color: var(--muted);
}

.inset-variant {
  margin-top: 2px;
}

.inset-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}

.inset-price {
  font-weight: 800;
  color: var(--ochre-dark);
  font-size: 1.02rem;
}

.inset-link {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--teal-deep);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--teal-pale);
}

.inset-link:hover {
  background: var(--teal);
  color: #fff;
}

.inset-lot.tone-gourd { border-top: 3px solid var(--ochre); }
.inset-lot.tone-tuber { border-top: 3px solid #8b6b4a; }
.inset-lot.tone-brassica { border-top: 3px solid #6b9e78; }
.inset-lot.tone-pepper { border-top: 3px solid var(--clay); }
.inset-lot.tone-stem { border-top: 3px solid var(--teal); }
.inset-lot.tone-exotic { border-top: 3px solid #7a6b9e; }
.inset-lot.tone-greens { border-top: 3px solid #5a9e6b; }

.catalog-pagination { margin-top: 40px; }
.catalog-pagination .pagination-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.catalog-pagination .pagination-btn,
.catalog-pagination .pagination-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 9px 14px;
  font-size: .85rem;
  font-weight: 700;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--slate);
}
.catalog-pagination .pagination-btn:hover,
.catalog-pagination .pagination-num:hover {
  border-color: var(--ochre);
  color: var(--ochre-dark);
}
.catalog-pagination .pagination-num.is-active {
  background: var(--ochre);
  border-color: var(--ochre);
  color: var(--white);
}
.catalog-pagination .pagination-btn.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.catalog-pagination .pagination-pages {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.catalog-pagination .pagination-ellipsis {
  padding: 9px 6px;
  color: var(--muted);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Track & Support: Counter Ticket Dispatch Ã¢â€â‚¬Ã¢â€â‚¬ */
/* Track & Support: Harbor signal tower */
.signal-tower {
  position: relative;
  padding: 48px 0 56px;
  background: linear-gradient(160deg, #061f26 0%, var(--teal-deep) 45%, var(--teal) 100%);
  color: var(--sand);
  overflow: hidden;
}

.signal-beam {
  position: absolute;
  top: -20%;
  right: 18%;
  width: 280px;
  height: 280px;
  background: conic-gradient(from 200deg, transparent 0deg, rgba(212, 160, 86, 0.22) 28deg, transparent 56deg);
  transform-origin: center;
  animation: signal-sweep 6s linear infinite;
  pointer-events: none;
  opacity: 0.7;
}

@keyframes signal-sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.signal-shoal {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 34px;
  background: var(--sand);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 70%);
}

.signal-tower-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 28px;
  align-items: center;
}

.signal-kicker {
  margin: 0 0 10px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
}

.signal-tower h1 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: #fff;
  max-width: 14ch;
}

.signal-tower h1 em {
  color: var(--ochre);
  font-style: normal;
}

.signal-lede {
  margin: 0;
  max-width: 46ch;
  color: rgba(248, 246, 241, 0.76);
}

.signal-lamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 120px;
}

.lamp-housing {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2a3540 0%, #1a2228 100%);
  border: 3px solid rgba(248, 246, 241, 0.2);
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.45);
  position: relative;
}

.lamp-glow {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 86, 0.35) 0%, transparent 70%);
  opacity: 0.35;
  transition: opacity 0.25s, background 0.25s;
}

.signal-lamp.is-found .lamp-glow {
  opacity: 1;
  background: radial-gradient(circle, rgba(143, 212, 168, 0.75) 0%, transparent 72%);
}

.signal-lamp.is-found .lamp-housing {
  border-color: rgba(143, 212, 168, 0.65);
  box-shadow: 0 0 24px rgba(143, 212, 168, 0.45);
}

.signal-lamp.is-miss .lamp-glow {
  opacity: 1;
  background: radial-gradient(circle, rgba(201, 123, 99, 0.55) 0%, transparent 72%);
}

.signal-lamp.is-miss .lamp-housing {
  border-color: rgba(201, 123, 99, 0.55);
}

.lamp-status {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248, 246, 241, 0.72);
  text-align: center;
}

.signal-desk {
  padding: 40px 0 72px;
  background: var(--sand);
}

.signal-desk-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: start;
}

.plot-sheet {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px 28px 32px;
  box-shadow: 0 16px 40px rgba(42, 45, 52, 0.08);
  overflow: hidden;
}

.plot-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(14, 77, 92, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 77, 92, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.plot-head {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.plot-serial {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--teal-deep);
  background: var(--teal-pale);
  border: 1px solid rgba(14, 77, 92, 0.18);
  padding: 5px 9px;
  border-radius: 6px;
}

.plot-label {
  margin: 0 0 4px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.plot-head h2 {
  margin: 0;
  font-size: 1.35rem;
}

.plot-note {
  position: relative;
  margin: 0 0 20px;
  font-size: 0.88rem;
  color: var(--muted);
}

.plot-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plot-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.plot-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--ochre);
  border-radius: 4px;
  font: inherit;
  background: rgba(248, 246, 241, 0.65);
  transition: border-color 0.2s, background 0.2s;
}

.plot-field input:focus {
  outline: none;
  border-color: var(--teal);
  border-left-color: var(--teal);
  background: #fff;
}

.plot-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.plot-margin {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0.35;
}

.plot-margin span {
  display: block;
  width: 8px;
  height: 1px;
  background: var(--teal);
}

.mooring-panel {
  position: sticky;
  top: 140px;
  padding: 18px 16px 16px 22px;
  background: linear-gradient(180deg, var(--teal-deep) 0%, #0a3f4c 100%);
  color: var(--sand);
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(14, 77, 92, 0.2);
}

.mooring-title {
  margin: 0 0 14px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
}

.mooring-rope {
  position: absolute;
  left: 28px;
  top: 48px;
  bottom: 18px;
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--ochre) 0 6px, transparent 6px 10px);
  opacity: 0.55;
}

.mooring-buoys {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.mooring-buoy {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--sand);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.2s, transform 0.2s;
}

.mooring-buoy:hover {
  background: rgba(212, 160, 86, 0.14);
  transform: translateX(3px);
  color: #fff;
}

.buoy-float {
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 45% 45%;
  background: var(--ochre);
  box-shadow: 0 0 0 3px rgba(212, 160, 86, 0.25);
}

.buoy-orders .buoy-float { background: var(--teal-pale); }
.buoy-account .buoy-float { background: var(--ochre); }
.buoy-ship .buoy-float { background: #8fd4a8; }
.buoy-refund .buoy-float { background: var(--clay); }
.buoy-contact .buoy-float { background: #fff; }

.buoy-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.25;
}

.buoy-copy strong {
  font-size: 0.84rem;
}

.buoy-copy span {
  font-size: 0.7rem;
  opacity: 0.68;
}

.route-reveal {
  margin-top: 36px;
}

.route-manifest {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 16px 40px rgba(42, 45, 52, 0.08);
}

.route-manifest-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.route-stamp {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 8px;
}

.route-stamp-ok {
  background: var(--teal-pale);
  color: var(--teal-deep);
  border: 1px solid var(--teal);
}

.route-stamp-warn {
  background: #fde8e8;
  color: #9b2c2c;
  border: 1px solid #f5a5a5;
}

.route-status {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ochre-dark);
  background: var(--ochre-pale);
  padding: 4px 10px;
  border-radius: 999px;
}

.route-order-id {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate);
}

.route-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 28px;
  padding: 16px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
}

.route-stats dt {
  margin-bottom: 4px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.route-stats dd {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--slate);
}

.tide-route {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 28px;
  padding: 24px 8px 8px;
  overflow-x: auto;
}

.tide-route-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 38px;
  height: 0;
  border-top: 2px dashed rgba(14, 77, 92, 0.28);
  pointer-events: none;
}

.route-beacon {
  position: relative;
  flex: 1;
  min-width: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  opacity: 0.42;
  transition: opacity 0.25s;
}

.route-beacon.is-done,
.route-beacon.is-current {
  opacity: 1;
}

.beacon-light {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--ochre);
  box-shadow: 0 0 0 4px rgba(212, 160, 86, 0.2);
  transition: background 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.route-beacon.is-done .beacon-light {
  background: var(--teal);
  border-color: var(--teal-deep);
  box-shadow: 0 0 0 4px rgba(14, 77, 92, 0.15);
}

.route-beacon.is-current .beacon-light {
  background: var(--ochre);
  border-color: var(--ochre-dark);
  box-shadow: 0 0 0 6px rgba(212, 160, 86, 0.35), 0 0 18px rgba(212, 160, 86, 0.45);
}

.beacon-harbor {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

.beacon-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--slate);
  line-height: 1.25;
}

.route-miss h3 {
  margin: 12px 0 8px;
  font-size: 1.2rem;
}

.route-miss-note {
  margin: 0 0 20px;
  max-width: 48ch;
  color: var(--muted);
}

.route-idle {
  text-align: center;
  padding: 48px 24px;
  background: #fff;
  border: 2px dashed rgba(14, 77, 92, 0.18);
  border-radius: 16px;
}

.route-idle-chart {
  position: relative;
  width: min(280px, 100%);
  height: 56px;
  margin: 0 auto 16px;
}

.idle-beacon {
  position: absolute;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sand-2);
  border: 2px solid var(--line);
}

.idle-beacon:nth-child(1) { left: 8%; }
.idle-beacon:nth-child(2) { left: 36%; }
.idle-beacon:nth-child(3) { right: 8%; }

.idle-line {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 14px;
  border-top: 2px dashed var(--line);
}

.route-idle p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.page-signal .btn-tide-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid var(--teal);
  color: var(--teal-deep);
  font-weight: 700;
  font-size: 0.9rem;
  background: transparent;
}

.page-signal .btn-tide-outline:hover {
  background: var(--teal-pale);
  color: var(--teal-deep);
}
/* ── Product detail: Harbor Depth Plate Specimen ── */
.depth-plate-hero {
  position: relative;
  background: linear-gradient(165deg, var(--teal-deep) 0%, var(--slate) 55%, #2a3540 100%);
  color: var(--sand);
  padding: 0;
  overflow: hidden;
}

.depth-plate-mesh {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(248, 246, 241, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 246, 241, 0.35) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.depth-plate-hero-inner {
  position: relative;
  padding: 36px 0 28px;
}

.plate-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.plate-crumb a {
  color: var(--ochre-pale);
  font-weight: 700;
  text-decoration: none;
}

.plate-crumb a:hover { color: var(--sand); }

.plate-crumb-dot {
  color: rgba(248, 246, 241, 0.4);
}

.plate-crumb-current {
  color: rgba(248, 246, 241, 0.65);
}

.depth-plate-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
  margin: 0;
}

.depth-plate-shoal {
  height: 8px;
  background: linear-gradient(180deg, rgba(248, 246, 241, 0.08) 0%, var(--sand) 100%);
}

.depth-plate-stage {
  padding: 40px 0 64px;
  background: var(--sand);
}

.depth-plate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.brass-mount-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brass-mount {
  position: relative;
  background: linear-gradient(180deg, #faf8f2 0%, #f0ebe0 100%);
  border: 2px solid rgba(14, 77, 92, 0.2);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(14, 77, 92, 0.1);
  overflow: hidden;
}

.mount-reticle {
  position: absolute;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--teal-deep);
  background: rgba(255, 255, 255, 0.85);
  padding: 3px 6px;
  border-radius: 4px;
  border: 1px solid rgba(14, 77, 92, 0.15);
  z-index: 2;
}

.mount-reticle-tl { top: 14px; left: 14px; }
.mount-reticle-br { bottom: 58px; right: 14px; }

.mount-depth-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px dashed rgba(14, 77, 92, 0.12);
  pointer-events: none;
  z-index: 0;
}

.mount-depth-rings::before,
.mount-depth-rings::after {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 1px dashed rgba(14, 77, 92, 0.08);
}

.mount-depth-rings::after { inset: 48px; }

.mount-ticks {
  position: absolute;
  background: repeating-linear-gradient(
    var(--tick-dir, 90deg),
    rgba(14, 77, 92, 0.2) 0,
    rgba(14, 77, 92, 0.2) 4px,
    transparent 4px,
    transparent 8px
  );
  pointer-events: none;
  z-index: 1;
}

.mount-ticks-left {
  --tick-dir: 180deg;
  top: 24px;
  bottom: 56px;
  left: 10px;
  width: 6px;
}

.mount-ticks-bottom {
  bottom: 52px;
  left: 24px;
  right: 24px;
  height: 6px;
}

.mount-photo {
  position: relative;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--sand-2);
  z-index: 1;
  border: 1px solid rgba(14, 77, 92, 0.12);
}

.mount-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.mount-lot-plate {
  margin-top: 16px;
  padding: 12px 16px;
  background: linear-gradient(180deg, var(--teal-deep) 0%, #0a3f4c 100%);
  border-radius: 0 0 12px 12px;
  text-align: center;
  border-top: 3px solid var(--ochre);
}

.mount-lot-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ochre-pale);
}

.mount-badge {
  position: absolute;
  top: 18px;
  right: 14px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  background: var(--ochre);
  color: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(212, 160, 86, 0.35);
  z-index: 3;
}

.brass-mount.tone-gourd { border-top: 4px solid var(--ochre); }
.brass-mount.tone-tuber { border-top: 4px solid #8b6b4a; }
.brass-mount.tone-brassica { border-top: 4px solid #6b9e78; }
.brass-mount.tone-pepper { border-top: 4px solid var(--clay); }
.brass-mount.tone-stem { border-top: 4px solid var(--teal); }
.brass-mount.tone-exotic { border-top: 4px solid #7a6b9e; }
.brass-mount.tone-greens { border-top: 4px solid #5a9e6b; }
.brass-mount.tone-default { border-top: 4px solid var(--teal-deep); }

.sounding-gauge-strip {
  background: #fff;
  border: 2px solid var(--teal-pale);
  border-radius: 12px;
  padding: 14px 16px;
}

.gauge-strip-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-deep);
  margin-bottom: 8px;
}

.gauge-strip-bar {
  position: relative;
  height: 10px;
  background: var(--sand-2);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 8px;
}

.gauge-strip-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--teal) 0%, var(--ochre) 100%);
  border-radius: 5px;
}

.gauge-strip-tick {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(42, 45, 52, 0.15);
}

.gauge-strip-tick-high { right: 18%; }
.gauge-strip-tick-mid { right: 50%; }

.gauge-strip-note {
  font-size: 0.78rem;
  color: var(--muted);
}

.plate-marginalia {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  color: var(--slate-soft);
}

.plate-marginalia li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}

.marginalia-mark {
  font-size: 0.5rem;
  color: var(--ochre);
  flex-shrink: 0;
}

.sounding-ledger {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 18px;
  padding: 28px 28px 24px;
  box-shadow: 0 8px 24px rgba(42, 45, 52, 0.06);
}

.ledger-row-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  background: var(--teal-pale);
  color: var(--teal-deep);
  border-radius: 8px;
  margin-bottom: 12px;
}

.sounding-ledger.tone-gourd .ledger-row-badge { background: var(--ochre-pale); color: var(--ochre-dark); }
.sounding-ledger.tone-tuber .ledger-row-badge { background: #f5ebe0; color: #6b4423; }
.sounding-ledger.tone-brassica .ledger-row-badge { background: #e8f5e9; color: #2d5a38; }
.sounding-ledger.tone-pepper .ledger-row-badge { background: #fde8e8; color: #742a2a; }
.sounding-ledger.tone-stem .ledger-row-badge { background: var(--teal-pale); color: var(--teal-deep); }
.sounding-ledger.tone-exotic .ledger-row-badge { background: #ede8f5; color: #4a3d6b; }
.sounding-ledger.tone-greens .ledger-row-badge { background: #e8f5ec; color: #2d5a38; }

.sounding-ledger h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 10px;
  color: var(--slate);
}

.ledger-pack-line {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 12px;
}

.ledger-pack-line strong { color: var(--slate); }

.ledger-desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--slate-soft);
  margin: 0 0 20px;
}

.ledger-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.ledger-fact {
  background: var(--sand);
  border-radius: 10px;
  padding: 12px 14px;
  text-align: center;
  border-left: 3px solid var(--teal);
}

.ledger-fact-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 4px;
}

.ledger-fact strong {
  font-size: 0.88rem;
  color: var(--slate);
  word-break: break-word;
}

.ledger-price-dock {
  padding-top: 20px;
  border-top: 2px dashed rgba(14, 77, 92, 0.15);
}

.price-dock-face {
  background: linear-gradient(135deg, var(--teal-deep) 0%, #0a3f4c 100%);
  color: var(--sand);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 18px;
  text-align: center;
  border: 2px solid var(--ochre);
}

.price-dock-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ochre-pale);
  margin-bottom: 4px;
}

.price-dock-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--ochre);
  line-height: 1.1;
}

.price-dock-note {
  display: block;
  font-size: 0.75rem;
  color: rgba(248, 246, 241, 0.65);
  margin-top: 4px;
}

.plate-cart-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.plate-qty-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-deep);
}

.plate-qty {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--ochre);
  border-radius: 8px;
  font: inherit;
  background: #fff;
  min-width: 72px;
}

.plate-qty:focus {
  outline: none;
  border-color: var(--teal);
  border-left-color: var(--teal);
}

.plate-cart-btn { flex: 1; min-width: 180px; }

.ledger-fine {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 14px 0 0;
  line-height: 1.45;
}

.chart-proximity {
  padding: 48px 0 64px;
  background: var(--sand-2);
}

.chart-proximity-head {
  margin-bottom: 28px;
}

.chart-proximity-head h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  margin: 0;
}

.proximity-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}

.proximity-stub {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 24px 14px 16px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  color: var(--slate);
  text-decoration: none;
}

.proximity-stub:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(14, 77, 92, 0.1);
  border-color: var(--teal);
  color: var(--slate);
}

.stub-reticle {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.72rem;
  color: var(--teal);
  opacity: 0.7;
}

.stub-thumb {
  width: 88px;
  height: 88px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--sand-2);
  margin-bottom: 10px;
  border: 1px solid var(--line);
}

.stub-thumb img { width: 100%; height: 100%; object-fit: cover; }

.stub-sku {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 2px;
}

.stub-lot {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-deep);
  margin-bottom: 4px;
}

.stub-name {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}

.stub-price {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ochre-dark);
  font-size: 0.95rem;
}

.proximity-stub.tone-gourd { border-top: 3px solid var(--ochre); }
.proximity-stub.tone-tuber { border-top: 3px solid #8b6b4a; }
.proximity-stub.tone-brassica { border-top: 3px solid #6b9e78; }
.proximity-stub.tone-pepper { border-top: 3px solid var(--clay); }
.proximity-stub.tone-stem { border-top: 3px solid var(--teal); }
.proximity-stub.tone-exotic { border-top: 3px solid #7a6b9e; }
.proximity-stub.tone-greens { border-top: 3px solid #5a9e6b; }

.plate-miss {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 0;
  background: var(--sand);
  position: relative;
}

.plate-miss-grid {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(14, 77, 92, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 77, 92, 0.1) 1px, transparent 1px);
  background-size: 28px 28px;
}

.plate-miss-wrap {
  text-align: center;
  max-width: 420px;
  position: relative;
}

.plate-miss-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 2px dashed var(--teal);
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--teal-deep);
}

.plate-miss h1 {
  font-size: 1.4rem;
  margin: 0 0 10px;
}

.plate-miss p {
  color: var(--muted);
  margin: 0 0 24px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Shared layout utilities Ã¢â€â‚¬Ã¢â€â‚¬ */
.dual {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.85fr);
  gap: 28px;
  align-items: start;
}
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.summary-box {
  position: sticky;
  top: 140px;
  background: var(--white);
  border: 2px solid var(--ochre-pale);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--muted);
}
.empty-state .sub { margin-top: 8px; }

.page-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -4px;
  padding: 0 4px;
}
.page-wrap { overflow-x: clip; }
img { max-width: 100%; height: auto; }

body.nav-open { overflow: hidden; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Cart / checkout Ã¢â€â‚¬Ã¢â€â‚¬ */
.cart-page, .checkout-page { padding: 40px 0 64px; }
.dual-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}
.cart-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; }
.cart-table th, .cart-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.cart-table th { background: var(--sand-2); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
.cart-item-img { width: 64px; height: 64px; border-radius: var(--radius); object-fit: cover; }
.summary-panel {
  position: sticky;
  top: 140px;
  background: var(--white);
  border: 2px solid var(--ochre-pale);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.summary-panel h2 { font-size: 1.1rem; margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: .9rem; }
.summary-row.total { font-weight: 700; font-size: 1.05rem; border-top: 2px dashed var(--line); margin-top: 8px; padding-top: 16px; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Receipt footer Ã¢â€â‚¬Ã¢â€â‚¬ */
.receipt-footer {
  background: var(--slate);
  color: var(--sand);
  padding: 48px 0 32px;
  margin-top: auto;
}
.receipt-sheet {
  background: var(--sand);
  color: var(--slate);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.receipt-perforation {
  position: absolute;
  top: -6px;
  left: 24px;
  right: 24px;
  height: 12px;
  background: radial-gradient(circle at 8px 6px, var(--slate) 4px, transparent 4px);
  background-size: 16px 12px;
}
.receipt-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 2px dashed var(--line);
  margin-bottom: 24px;
}
.receipt-brand { display: flex; gap: 16px; align-items: center; }
.receipt-num {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--clay);
  color: var(--sand);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 4px;
}
.receipt-brand strong { font-family: var(--font-display); font-size: 1.2rem; display: block; }
.receipt-brand p { margin: 4px 0 0; font-size: .85rem; color: var(--muted); max-width: 36ch; }
.receipt-meta { text-align: right; font-size: .85rem; }
.receipt-meta span { display: block; }
.receipt-meta span:first-child { font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; color: var(--ochre-dark); }

.receipt-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.receipt-col h4 {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ochre-dark);
  margin: 0 0 12px;
}
.receipt-col a {
  display: block;
  font-size: .85rem;
  padding: 4px 0;
  color: var(--slate-soft);
}
.receipt-col a:hover { color: var(--clay); }
.receipt-gstin { font-size: .75rem; color: var(--muted); margin: 12px 0 0; line-height: 1.5; }

.receipt-barcode {
  display: flex;
  gap: 3px;
  justify-content: center;
  padding: 16px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  margin-bottom: 16px;
}
.receipt-barcode span {
  display: block;
  width: 3px;
  height: 32px;
  background: var(--slate);
}
.receipt-barcode span:nth-child(odd) { height: 24px; margin-top: 4px; }

.receipt-base {
  text-align: center;
  font-size: .78rem;
  color: var(--muted);
}
.receipt-base p { margin: 0 0 4px; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Pagination Ã¢â€â‚¬Ã¢â€â‚¬ */
.pagination {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
  justify-content: center;
}
.pagination a, .pagination span {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 600;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--slate);
}
.pagination a:hover { border-color: var(--ochre); color: var(--ochre-dark); }
.pagination .current { background: var(--ochre); color: var(--white); border-color: var(--ochre); }

.empty-state {
  text-align: center;
  padding: 48px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--line);
}
.empty-state .sub { color: var(--muted); font-size: .9rem; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Policy / info pages Ã¢â€â‚¬Ã¢â€â‚¬ */
.info-page { padding: 40px 0 64px; }
.info-page .container { max-width: 760px; }
.info-page h1 { font-size: 2rem; margin-bottom: 16px; }
.info-page p { color: var(--slate-soft); }

/* ── Cart: Harbor Berth Cargo Net ── */
.berth-hold-hero {
  position: relative;
  background: linear-gradient(155deg, var(--teal-deep) 0%, #0a3f4c 45%, var(--teal) 100%);
  color: var(--sand);
  padding: 44px 0 0;
  overflow: hidden;
}

.berth-rope-mesh {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(45deg, transparent 48%, rgba(248, 246, 241, 0.35) 49%, rgba(248, 246, 241, 0.35) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(248, 246, 241, 0.35) 49%, rgba(248, 246, 241, 0.35) 51%, transparent 52%);
  background-size: 18px 18px;
  pointer-events: none;
}

.berth-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 28px;
  align-items: center;
  padding-bottom: 32px;
}

.berth-hero-copy {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.berth-plate {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(248, 246, 241, 0.1);
  border: 2px solid var(--ochre);
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--ochre);
}

.berth-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
  margin: 0 0 8px;
}

.berth-hold-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--sand);
  margin: 0 0 10px;
}

.berth-hold-hero h1 em {
  font-style: normal;
  color: var(--ochre-pale);
}

.berth-lede {
  color: rgba(248, 246, 241, 0.78);
  margin: 0;
  max-width: 44ch;
}

.berth-tonnage { flex-shrink: 0; }

.tonnage-face {
  background: linear-gradient(180deg, #0d2a32 0%, #061a20 100%);
  border: 3px solid var(--ochre);
  border-radius: 14px;
  padding: 16px 22px;
  text-align: center;
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.45), 0 10px 28px rgba(0, 0, 0, 0.25);
  min-width: 130px;
}

.tonnage-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ochre-pale);
  margin-bottom: 6px;
}

.tonnage-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: #8fd4e8;
  line-height: 1;
  text-shadow: 0 0 14px rgba(143, 212, 232, 0.35);
}

.tonnage-unit {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(248, 246, 241, 0.55);
  margin-top: 4px;
}

.tonnage-ticks {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(212, 160, 86, 0.35);
}

.tonnage-ticks span {
  width: 3px;
  height: 10px;
  background: var(--ochre);
  border-radius: 1px;
  opacity: 0.55;
}

.tonnage-ticks span:nth-child(3) { height: 16px; opacity: 1; }

.berth-bollards {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 0 0 14px;
}

.bollard {
  width: 22px;
  height: 28px;
  background: linear-gradient(180deg, #5a4a38 0%, #3d3228 100%);
  border-radius: 6px 6px 4px 4px;
  border-top: 3px solid var(--ochre);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.berth-hold-body {
  padding: 40px 0 72px;
  background: var(--sand);
}

.berth-empty {
  text-align: center;
  padding: 48px 24px;
  background: #fff;
  border: 2px dashed rgba(14, 77, 92, 0.22);
  border-radius: 18px;
}

.berth-empty-net {
  position: relative;
  width: 200px;
  height: 120px;
  margin: 0 auto 24px;
  border: 2px dashed rgba(14, 77, 92, 0.25);
  border-radius: 12px;
  background: linear-gradient(180deg, var(--teal-pale) 0%, var(--sand) 100%);
}

.net-rope {
  position: absolute;
  height: 3px;
  background: var(--ochre-dark);
  border-radius: 2px;
  opacity: 0.65;
}

.net-rope-a {
  top: 28px;
  left: 12px;
  right: 12px;
  transform: rotate(-4deg);
}

.net-rope-b {
  top: 58px;
  left: 18px;
  right: 18px;
  transform: rotate(3deg);
}

.net-rope-c {
  top: 88px;
  left: 10px;
  right: 10px;
  transform: rotate(-2deg);
}

.net-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-deep);
}

.berth-empty h2 { margin: 0 0 8px; font-size: 1.3rem; }
.berth-empty p { color: var(--muted); margin: 0 0 20px; }

.berth-hold-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}

.cargo-net {
  position: relative;
  background: linear-gradient(180deg, var(--teal-deep) 0%, #0a3f4c 100%);
  border-radius: 18px;
  padding: 20px 20px 24px;
  box-shadow: inset 0 4px 16px rgba(0, 0, 0, 0.2), 0 12px 32px rgba(14, 77, 92, 0.15);
  border: 2px solid rgba(212, 160, 86, 0.35);
}

.cargo-net-frame {
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(248, 246, 241, 0.18);
  border-radius: 12px;
  pointer-events: none;
}

.cargo-net-meta {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(248, 246, 241, 0.7);
  margin: 0 0 16px;
}

.cargo-lash-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cargo-lash {
  display: grid;
  grid-template-columns: auto 72px 1fr auto auto;
  gap: 14px;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  border-left: 4px solid var(--ochre);
}

.lash-rope {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    var(--ochre-dark) 0,
    var(--ochre-dark) 6px,
    var(--ochre) 6px,
    var(--ochre) 12px
  );
}

.lash-mark {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-deep);
  background: var(--teal-pale);
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  margin-top: 4px;
}

.lash-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--sand-2);
  flex-shrink: 0;
  margin-top: 4px;
  border: 1px solid var(--line);
}

.lash-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lash-thumb-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--teal);
  font-size: 0.82rem;
}

.lash-copy { min-width: 0; margin-top: 4px; }

.lash-sku {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-deep);
}

.lash-copy h2 {
  font-size: 0.95rem;
  margin: 2px 0 4px;
  line-height: 1.25;
}

.lash-copy h2 a { color: var(--slate); }
.lash-copy h2 a:hover { color: var(--teal-deep); }

.lash-pack {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 4px;
}

.lash-unit {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ochre-dark);
}

.lash-qty {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.lash-qty label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.lash-qty input {
  width: 64px;
  padding: 8px 10px;
  border: 2px solid var(--line);
  border-left: 3px solid var(--teal);
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
  text-align: center;
}

.lash-line-total {
  text-align: right;
  margin-top: 4px;
}

.lash-line-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.lash-line-total strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--teal-deep);
}

.cargo-net-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.page-berth .btn-tide-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid var(--teal);
  color: var(--teal-deep);
  font-weight: 700;
  font-size: 0.88rem;
  background: transparent;
  text-decoration: none;
}

.page-berth .btn-tide-outline:hover {
  background: var(--teal-pale);
  border-color: var(--teal-deep);
}

.dispatch-tally {
  position: sticky;
  top: 140px;
}

.tally-header {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: -6px;
  position: relative;
  z-index: 1;
}

.tally-pin {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--ochre-pale), var(--ochre-dark));
  border: 2px solid var(--ochre-dark);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.tally-board {
  background: linear-gradient(180deg, #f5f0e6 0%, #ebe4d6 100%);
  border: 2px solid #c4b89a;
  border-radius: 12px;
  padding: 22px 18px 28px;
  box-shadow: 0 10px 28px rgba(42, 45, 52, 0.1);
  position: relative;
}

.tally-store {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-deep);
  margin: 0 0 4px;
}

.tally-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--slate);
}

.tally-meta {
  font-size: 0.68rem;
  color: var(--muted);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(14, 77, 92, 0.12);
}

.tally-rows {
  margin: 0 0 12px;
}

.tally-rows div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  font-size: 0.8rem;
  border-bottom: 1px dotted rgba(14, 77, 92, 0.18);
}

.tally-rows dt {
  color: var(--muted);
  font-weight: 600;
}

.tally-rows dd {
  margin: 0;
  font-weight: 800;
  color: var(--slate);
}

.tally-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  margin-bottom: 12px;
  border-top: 3px double var(--teal-deep);
  border-bottom: 3px double var(--teal-deep);
  font-size: 0.88rem;
  font-weight: 800;
}

.tally-total strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ochre-dark);
}

.tally-notes {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  font-size: 0.72rem;
  color: var(--muted);
}

.tally-notes li {
  padding: 4px 0 4px 14px;
  position: relative;
  border-bottom: 1px dotted rgba(14, 77, 92, 0.12);
}

.tally-notes li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 7px;
  font-size: 0.5rem;
  color: var(--ochre);
}

.berth-checkout-btn { margin-top: 4px; }

.tally-rope-edge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--ochre-dark) 0,
    var(--ochre-dark) 8px,
    var(--ochre) 8px,
    var(--ochre) 16px
  );
  border-radius: 0 0 10px 10px;
  opacity: 0.45;
}

/* ── Orders: Harbor Waybill Rail ── */
.waybill-rack-hero {
  position: relative;
  background: linear-gradient(160deg, var(--slate) 0%, var(--teal-deep) 50%, #0a3f4c 100%);
  color: var(--sand);
  padding: 44px 0 0;
  overflow: hidden;
}

.waybill-chart-grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(248, 246, 241, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 246, 241, 0.4) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.waybill-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 28px;
  align-items: center;
  padding-bottom: 32px;
}

.waybill-hero-copy {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.waybill-plate {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(248, 246, 241, 0.08);
  border: 2px solid var(--ochre);
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--ochre);
}

.waybill-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
  margin: 0 0 8px;
}

.waybill-rack-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--sand);
  margin: 0 0 10px;
}

.waybill-rack-hero h1 em {
  font-style: normal;
  color: var(--ochre-pale);
}

.waybill-lede {
  color: rgba(248, 246, 241, 0.78);
  margin: 0;
  max-width: 46ch;
}

.waybill-counter { flex-shrink: 0; }

.waybill-counter-face {
  background: linear-gradient(180deg, #1a2a32 0%, #0d1a20 100%);
  border: 3px solid var(--ochre);
  border-radius: 14px;
  padding: 16px 22px;
  text-align: center;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(0, 0, 0, 0.25);
  min-width: 120px;
}

.waybill-counter-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ochre-pale);
  margin-bottom: 6px;
}

.waybill-counter-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: #8fd4e8;
  line-height: 1;
  text-shadow: 0 0 12px rgba(143, 212, 232, 0.3);
}

.waybill-counter-unit {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(248, 246, 241, 0.5);
  margin-top: 4px;
}

.waybill-rail-cap {
  height: 8px;
  background: linear-gradient(90deg, #5a4a38 0%, #8a7358 30%, #5a4a38 60%, #8a7358 100%);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.waybill-deck {
  padding: 40px 0 72px;
  background: var(--sand);
}

.waybill-loading {
  text-align: center;
  margin-bottom: 24px;
}

.waybill-guest {
  display: flex;
  justify-content: center;
  padding: 24px 0;
}

.waybill-anchor-gate {
  text-align: center;
  max-width: 440px;
  padding: 48px 32px;
  background: #fff;
  border: 2px solid var(--teal);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(14, 77, 92, 0.1);
  position: relative;
}

.anchor-shackle {
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 auto 10px;
  border: 4px solid var(--teal-deep);
  border-radius: 50% 50% 4px 4px;
  background: var(--teal-pale);
}

.anchor-chain {
  display: block;
  width: 48px;
  height: 4px;
  margin: 0 auto 20px;
  background: repeating-linear-gradient(
    90deg,
    var(--ochre-dark) 0,
    var(--ochre-dark) 6px,
    var(--ochre) 6px,
    var(--ochre) 12px
  );
  border-radius: 2px;
}

.waybill-anchor-gate h2 { margin: 0 0 8px; font-size: 1.3rem; }
.waybill-anchor-gate p { color: var(--muted); margin: 0 0 20px; }

.waybill-guest-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.waybill-rail-desk {
  position: relative;
  background: linear-gradient(180deg, #2a3540 0%, #1e2830 100%);
  border: 3px solid #4a5568;
  border-radius: 18px;
  padding: 48px 28px 40px;
  box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.25), 0 14px 36px rgba(42, 45, 52, 0.15);
  min-height: 300px;
}

.waybill-rail-bar {
  position: absolute;
  top: 32px;
  left: 20px;
  right: 20px;
  height: 10px;
  background: linear-gradient(180deg, #c8cdd4 0%, #8a9199 40%, #6b7280 100%);
  border-radius: 5px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
}

.rail-bracket {
  width: 8px;
  height: 18px;
  background: linear-gradient(180deg, #9ca3af, #6b7280);
  border-radius: 2px;
  margin-top: -4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.waybill-rail-label {
  position: absolute;
  top: 14px;
  left: 24px;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(248, 246, 241, 0.45);
  margin: 0;
}

.waybill-rack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px 20px;
  padding-top: 28px;
}

.dispatch-tag {
  position: relative;
  background: linear-gradient(180deg, #faf8f2 0%, #f0ebe0 100%);
  border: 1px solid #c8bfb0;
  border-radius: 4px;
  padding: 30px 16px 16px;
  box-shadow: 2px 6px 16px rgba(0, 0, 0, 0.22);
  transform: rotate(var(--tag-rot, 0deg));
  transition: transform 0.2s, box-shadow 0.2s;
  border-left: 4px solid var(--teal);
}

.dispatch-tag::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 4px,
    rgba(14, 77, 92, 0.12) 4px,
    rgba(14, 77, 92, 0.12) 8px
  );
  border-radius: 0 0 4px 4px;
}

.dispatch-tag:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 4px 12px 28px rgba(0, 0, 0, 0.28);
  z-index: 2;
}

.tag-pin {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 14px;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, #d4d8de 0%, #9ca3af 100%);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  z-index: 3;
}

.tag-pin::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ochre);
}

.tag-string {
  position: absolute;
  top: -28px;
  left: 50%;
  width: 2px;
  height: 18px;
  background: linear-gradient(180deg, #6b7280, #9ca3af);
  transform: translateX(-50%);
}

.tag-num {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-deep);
  background: var(--teal-pale);
  padding: 2px 6px;
  border-radius: 4px;
}

.tag-head {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(14, 77, 92, 0.2);
}

.tag-status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ochre);
  margin-right: 6px;
  vertical-align: middle;
  box-shadow: 0 0 6px currentColor;
}

.tag-status-delivered .tag-status-dot { background: var(--teal); color: var(--teal); }
.tag-status-shipped .tag-status-dot { background: #3b82f6; color: #3b82f6; }
.tag-status-packed .tag-status-dot { background: var(--ochre); color: var(--ochre); }
.tag-status-cancelled .tag-status-dot { background: #c53030; color: #c53030; }
.tag-status-logged .tag-status-dot { background: var(--muted); color: var(--muted); }

.tag-order-id {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--slate);
  word-break: break-all;
  margin: 4px 0;
}

.tag-status-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-deep);
}

.tag-meta {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
  margin: 0 0 10px;
}

.tag-meta dt {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 2px;
}

.tag-meta dd {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--slate);
}

.tag-items {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 12px;
  line-height: 1.4;
  border-left: 3px solid var(--ochre);
  padding-left: 8px;
}

.tag-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  border-top: 2px double rgba(14, 77, 92, 0.15);
}

.tag-total-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.tag-total strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--teal-deep);
}

.waybill-track-btn,
.tag-track-btn {
  white-space: nowrap;
  font-size: 0.75rem !important;
  padding: 6px 12px !important;
}

.page-waybill .btn-tide-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid var(--teal);
  color: var(--teal-deep);
  font-weight: 700;
  background: transparent;
  text-decoration: none;
}

.page-waybill .btn-tide-outline:hover {
  background: var(--teal-pale);
}

.dispatch-tag.tone-copper { border-left-color: var(--ochre); }
.dispatch-tag.tone-euca { border-left-color: var(--teal); }
.dispatch-tag.tone-burgundy { border-left-color: var(--clay); }
.dispatch-tag.tone-sage { border-left-color: var(--teal-deep); }
.dispatch-tag.tone-clay { border-left-color: #a67c52; }
.dispatch-tag.tone-ink { border-left-color: var(--slate); }

.waybill-empty-rail {
  text-align: center;
  padding: 48px 24px;
}

.waybill-empty-clips {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.waybill-empty-clips span {
  width: 16px;
  height: 40px;
  background: linear-gradient(180deg, #9ca3af, #6b7280);
  border-radius: 4px 4px 2px 2px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  transform: translateY(-8px);
}

.waybill-empty-clips span:nth-child(2) { transform: translateY(-4px); }
.waybill-empty-rail h2 { margin: 0 0 8px; color: var(--sand); font-size: 1.2rem; }
.waybill-empty-rail p { color: rgba(248, 246, 241, 0.65); margin: 0 0 20px; }

/* ── Checkout: Harbor Pilot Clearance Desk ── */
.pilot-clearance-hero {
  position: relative;
  background: linear-gradient(165deg, var(--slate) 0%, var(--teal-deep) 45%, #0a3f4c 100%);
  color: var(--sand);
  padding: 0;
  overflow: hidden;
}

.pilot-chart-lines {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(248, 246, 241, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 246, 241, 0.35) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.pilot-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 28px;
  align-items: center;
  padding: 48px 0 36px;
}

.pilot-hero-copy {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.pilot-plate {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(248, 246, 241, 0.08);
  border: 2px solid var(--ochre);
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--ochre);
}

.pilot-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
  margin: 0 0 8px;
}

.pilot-clearance-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--sand);
  margin: 0 0 10px;
}

.pilot-clearance-hero h1 em {
  font-style: normal;
  color: var(--ochre-pale);
}

.pilot-lede {
  color: rgba(248, 246, 241, 0.78);
  margin: 0;
  max-width: 46ch;
}

.pilot-pass-badge {
  background: rgba(10, 40, 48, 0.65);
  border: 2px solid rgba(212, 160, 86, 0.5);
  border-radius: 16px;
  padding: 18px 22px;
  text-align: center;
  min-width: 150px;
  backdrop-filter: blur(4px);
}

.pilot-pass-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ochre-pale);
  margin-bottom: 4px;
}

.pilot-pass-code {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--sand);
  line-height: 1.1;
}

.pilot-pass-qty {
  display: block;
  font-size: 0.78rem;
  color: rgba(248, 246, 241, 0.65);
  margin: 6px 0 12px;
}

.pilot-compass {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 50%;
  border: 3px solid var(--ochre);
  background: radial-gradient(circle at 50% 50%, var(--teal-deep) 0%, #061a20 100%);
  position: relative;
}

.pilot-compass-needle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 22px;
  background: linear-gradient(180deg, var(--ochre) 0%, #c53030 100%);
  transform-origin: bottom center;
  transform: translate(-50%, -100%) rotate(42deg);
  border-radius: 2px;
}

.pilot-hero-rail {
  height: 8px;
  background: linear-gradient(90deg, var(--ochre-dark) 0%, var(--ochre) 50%, var(--ochre-dark) 100%);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25);
}

.pilot-clearance-stage {
  padding: 36px 0 72px;
  background: var(--sand);
}

.bearing-trail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  flex-wrap: wrap;
}

.bearing-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.bearing-stone {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--sand-2);
  border: 2px solid var(--line);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--muted);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.bearing-mark.is-active .bearing-stone {
  background: linear-gradient(145deg, var(--teal) 0%, var(--teal-deep) 100%);
  border-color: var(--ochre);
  color: #fff;
  box-shadow: 0 0 0 3px var(--teal-pale);
}

.bearing-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.bearing-mark.is-active .bearing-label { color: var(--teal-deep); }

.bearing-rope {
  width: 48px;
  height: 4px;
  margin: 0 8px 20px;
  background: repeating-linear-gradient(
    90deg,
    var(--ochre-dark) 0,
    var(--ochre-dark) 6px,
    var(--ochre) 6px,
    var(--ochre) 12px
  );
  border-radius: 2px;
}

.pilot-clearance-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

.pilot-folio-desk {
  position: relative;
  background: #fff;
  border: 2px solid var(--teal);
  border-radius: 18px;
  padding: 28px 28px 24px;
  box-shadow: 0 14px 36px rgba(14, 77, 92, 0.1);
  overflow: hidden;
}

.folio-chart-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(14, 77, 92, 0.04) 0%, transparent 50%),
    repeating-linear-gradient(0deg, transparent, transparent 31px, rgba(14, 77, 92, 0.03) 31px, rgba(14, 77, 92, 0.03) 32px);
  pointer-events: none;
}

.folio-desk-head {
  position: relative;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 2px dashed rgba(14, 77, 92, 0.15);
}

.folio-desk-plate {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--teal-deep);
  color: var(--sand);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 10px;
  border: 2px solid var(--ochre);
  flex-shrink: 0;
}

.folio-desk-code {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-deep);
  margin: 0 0 4px;
}

.folio-desk-head h2 {
  font-size: 1.35rem;
  margin: 0;
  color: var(--slate);
}

.pilot-clearance-error {
  position: relative;
  background: #fde8e8;
  border-left-color: #c53030;
  color: #742a2a;
}

.folio-panel {
  position: relative;
  border: none;
  margin: 0 0 8px;
  padding: 0 0 0 12px;
  background: var(--sand);
  border-radius: 12px;
  border-left: 4px solid var(--teal);
  box-shadow: inset 0 2px 6px rgba(14, 77, 92, 0.04);
}

.folio-panel legend {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate);
  padding: 14px 16px 10px 0;
  width: 100%;
}

.folio-tab {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 2px 0 var(--teal-deep);
}

.folio-member { border-left-color: var(--ochre); }
.folio-member .folio-tab { background: var(--ochre); box-shadow: 0 2px 0 var(--ochre-dark); }
.folio-route { border-left-color: var(--teal-deep); }
.folio-payment { border-left-color: var(--clay); }
.folio-payment .folio-tab { background: var(--clay); box-shadow: 0 2px 0 #8b5a42; }

.folio-divider {
  height: 6px;
  margin: 4px 0 12px 12px;
  background: repeating-linear-gradient(90deg, var(--line) 0, var(--line) 4px, transparent 4px, transparent 8px);
  border-radius: 2px;
}

.folio-fields {
  display: grid;
  gap: 14px;
  padding: 0 16px 16px;
}

.folio-fields-duo { grid-template-columns: 1fr 1fr; }
.folio-fields-route { grid-template-columns: 1fr 1fr; }
.folio-field-wide { grid-column: 1 / -1; }

.folio-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-deep);
  margin-bottom: 6px;
}

.folio-field input,
.folio-field textarea,
.folio-field select {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--ochre);
  border-radius: 8px;
  font: inherit;
  background: #fff;
  transition: border-color 0.2s;
}

.folio-field input:focus,
.folio-field textarea:focus,
.folio-field select:focus {
  outline: none;
  border-color: var(--teal);
  border-left-color: var(--teal);
}

.folio-field input[readonly] {
  background: var(--sand-2);
  color: var(--muted);
}

.folio-field textarea { resize: vertical; min-height: 72px; }

.folio-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
}

.folio-pay-single {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 16px 16px;
  padding: 12px 14px;
  background: #fff;
  border: 2px solid var(--teal-pale);
  border-radius: 10px;
  font-weight: 700;
}

.mooring-cleat-grid {
  display: grid;
  gap: 10px;
  padding: 0 16px 16px;
}

.mooring-cleat-option { cursor: pointer; }
.mooring-cleat-option input { position: absolute; opacity: 0; pointer-events: none; }

.mooring-cleat-body {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
}

.mooring-cleat-option input:checked + .mooring-cleat-body {
  border-color: var(--teal);
  background: var(--teal-pale);
}

.mooring-cleat {
  width: 24px;
  height: 14px;
  background: linear-gradient(180deg, #9ca3af 0%, #6b7280 100%);
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.mooring-cleat::before,
.mooring-cleat::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 6px;
  height: 8px;
  background: #6b7280;
  border-radius: 2px;
}

.mooring-cleat::before { left: 2px; }
.mooring-cleat::after { right: 2px; }

.mooring-cleat-set,
.mooring-cleat-option input:checked + .mooring-cleat-body .mooring-cleat {
  background: linear-gradient(180deg, var(--ochre-pale) 0%, var(--ochre) 100%);
}

.mooring-cleat-set::before,
.mooring-cleat-set::after,
.mooring-cleat-option input:checked + .mooring-cleat-body .mooring-cleat::before,
.mooring-cleat-option input:checked + .mooring-cleat-body .mooring-cleat::after {
  background: var(--ochre-dark);
}

.mooring-cleat-name { font-weight: 700; font-size: 0.9rem; }

.folio-desk-foot {
  position: relative;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px dashed rgba(14, 77, 92, 0.15);
}

.folio-desk-policy {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.5;
}

.folio-desk-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.pilot-dispatch-btn { flex: 1; min-width: 200px; }

.soundings-scroll {
  position: sticky;
  top: 140px;
}

.soundings-roll {
  width: 100%;
  height: 12px;
  background: linear-gradient(180deg, var(--teal-deep) 0%, var(--teal) 100%);
  border-radius: 8px 8px 0 0;
  margin-bottom: -2px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.soundings-panel {
  background: linear-gradient(180deg, #faf8f2 0%, #f0ebe0 100%);
  border: 2px solid var(--teal);
  border-radius: 0 0 16px 16px;
  padding: 22px 20px 28px;
  box-shadow: 0 12px 32px rgba(14, 77, 92, 0.1);
  position: relative;
}

.soundings-head { margin-bottom: 16px; }

.soundings-brand {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-deep);
  margin-bottom: 4px;
}

.soundings-head h2 {
  font-size: 1.15rem;
  margin: 0 0 4px;
}

.soundings-head p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.soundings-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  max-height: 280px;
  overflow-y: auto;
}

.sounding-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(14, 77, 92, 0.15);
}

.sounding-row:last-child { border-bottom: none; }

.sounding-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--sand-2);
  border: 1px solid var(--line);
}

.sounding-thumb img { width: 100%; height: 100%; object-fit: cover; }

.sounding-thumb-empty {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.68rem;
  color: var(--teal-deep);
}

.sounding-info strong {
  display: block;
  font-size: 0.82rem;
  line-height: 1.3;
  margin-bottom: 2px;
}

.sounding-info span { font-size: 0.75rem; color: var(--muted); }

.sounding-price {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--teal-deep);
  white-space: nowrap;
}

.soundings-totals {
  display: grid;
  gap: 6px;
  margin: 0 0 12px;
  padding: 12px 0;
  border-top: 2px double rgba(14, 77, 92, 0.15);
  border-bottom: 2px double rgba(14, 77, 92, 0.15);
}

.soundings-totals div {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.soundings-totals dt { color: var(--muted); margin: 0; }
.soundings-totals dd { margin: 0; font-weight: 800; }

.soundings-grand {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}

.soundings-grand span {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.soundings-grand strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ochre-dark);
}

.soundings-notes {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.soundings-notes li {
  padding: 4px 0 4px 14px;
  position: relative;
}

.soundings-notes li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 0.5rem;
  color: var(--ochre);
}

.soundings-stamp {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--teal-deep);
  border: 2px solid var(--teal);
  padding: 4px 8px;
  border-radius: 4px;
  transform: rotate(6deg);
  opacity: 0.75;
}


/* Order status â†’ assets/order-status-page.css */

/* Ã¢â€â‚¬Ã¢â€â‚¬ Contact: Potting Bench Postcard Desk Ã¢â€â‚¬Ã¢â€â‚¬ */
.potting-hero {
  position: relative;
  background: linear-gradient(165deg, #5c4033 0%, var(--slate) 45%, var(--teal-deep) 100%);
  color: var(--sand);
  padding: 0;
  overflow: hidden;
}
.potting-terracotta {
  position: absolute;
  bottom: 20px;
  right: 8%;
  display: flex;
  gap: 16px;
  opacity: .25;
}
.terra-pot {
  display: block;
  width: 48px;
  height: 40px;
  background: linear-gradient(180deg, #c67b4e 0%, #8b4513 100%);
  border-radius: 4px 4px 8px 8px;
  border: 2px solid #6b3410;
}
.terra-pot::before {
  content: '';
  display: block;
  width: 120%;
  height: 8px;
  margin: -4px 0 0 -10%;
  background: #a0522d;
  border-radius: 2px;
}
.terra-pot-2 { transform: scale(.85) translateY(8px); }
.terra-pot-3 { transform: scale(.7) translateY(14px); }
.potting-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 28px;
  align-items: center;
  padding: 48px 0 36px;
}
.potting-kicker {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ochre-pale);
  margin: 0 0 10px;
}
.potting-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--sand);
  margin: 0 0 10px;
}
.potting-hero h1 em {
  font-style: italic;
  color: var(--ochre);
}
.potting-lede {
  color: rgba(244, 239, 228, 0.75);
  margin: 0;
  max-width: 48ch;
}
.potting-mail-slot {
  text-align: center;
  min-width: 100px;
}
.mail-slot-label {
  display: block;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ochre-pale);
  margin-bottom: 8px;
}
.mail-slot-opening {
  display: block;
  width: 80px;
  height: 12px;
  margin: 0 auto;
  background: var(--slate);
  border: 3px solid var(--ochre);
  border-radius: 2px;
  box-shadow: inset 0 4px 8px rgba(0,0,0,.5);
}
.potting-bench-lip {
  height: 12px;
  background: linear-gradient(180deg, #8b6914 0%, var(--sand) 100%);
  box-shadow: inset 0 2px 4px rgba(0,0,0,.15);
}

.potting-stage {
  padding: 40px 0 72px;
  background: var(--sand);
}
.potting-layout {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 360px);
  gap: 32px;
  align-items: start;
}

.postcard-desk {
  position: relative;
  background: #faf6ed;
  border: 2px solid #d4c9a8;
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.postcard-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 27px,
    rgba(28, 31, 38, 0.04) 27px,
    rgba(28, 31, 38, 0.04) 28px
  );
  pointer-events: none;
  z-index: 0;
}
.postcard-clip {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 20px;
  background: linear-gradient(180deg, #999, #666);
  border-radius: 4px 4px 0 0;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
  z-index: 2;
}
.postcard-head {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px dashed var(--ochre-pale);
  z-index: 1;
}
.postcard-stamp {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: var(--clay);
  color: var(--sand);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  border: 2px dashed var(--ochre-pale);
  flex-shrink: 0;
}
.postcard-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal-deep);
  margin: 0 0 4px;
}
.postcard-head h2 {
  font-size: 1.3rem;
  margin: 0;
  color: var(--slate);
}
.potting-sent { position: relative; z-index: 1; }
.potting-notice-error {
  position: relative;
  z-index: 1;
  background: #fde8e8;
  border-left-color: #c53030;
  color: #742a2a;
}
.postcard-form {
  position: relative;
  z-index: 1;
}
.postcard-fields {
  display: grid;
  gap: 14px;
}
.postcard-fields-duo {
  grid-template-columns: 1fr 1fr;
}
.postcard-field-wide { grid-column: 1 / -1; }
.postcard-field-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--slate-soft);
  margin-bottom: 6px;
}
.postcard-field input,
.postcard-field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 2px solid rgba(28, 31, 38, 0.12);
  border-radius: var(--radius);
  font: inherit;
  background: rgba(255, 255, 255, 0.85);
  transition: border-color .2s;
}
.postcard-field input:focus,
.postcard-field textarea:focus {
  outline: none;
  border-color: var(--ochre);
  background: var(--white);
}
.postcard-field textarea {
  resize: vertical;
  min-height: 120px;
}
.postcard-foot {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 2px dotted var(--ochre-pale);
}
.postcard-fine {
  font-size: .78rem;
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.45;
}
.postcard-send-btn { width: 100%; }

.marker-tray {
  position: relative;
  background: var(--white);
  border: 3px solid #8b6914;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow);
}
.marker-tray-soil {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 24px;
  background: linear-gradient(180deg, #6b5010 0%, #5c4033 100%);
  border-radius: 0 0 calc(var(--radius-lg) - 3px) calc(var(--radius-lg) - 3px);
  opacity: .15;
}
.marker-tray-head {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px dashed var(--ochre-pale);
}
.marker-tray-stencil {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--clay);
  color: var(--sand);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  border-radius: 4px;
  margin-bottom: 10px;
}
.marker-tray-head h2 {
  font-size: 1.15rem;
  margin: 0 0 4px;
}
.marker-tray-head p {
  margin: 0;
  font-size: .82rem;
  color: var(--muted);
}
.marker-stakes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.marker-stake {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  align-items: start;
}
.stake-cap {
  width: 12px;
  height: 12px;
  border-radius: 50% 50% 0 0;
  background: var(--ochre);
  margin-top: 4px;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,.15);
}
.stake-cap-copper { background: var(--ochre-dark); }
.stake-cap-euca { background: var(--teal); }
.stake-cap-burgundy { background: var(--clay); }
.stake-body {
  background: var(--sand-2);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 10px 14px;
}
.stake-label {
  display: block;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 4px;
}
.stake-body a,
.stake-body span {
  font-size: .88rem;
  line-height: 1.45;
  color: var(--slate);
  word-break: break-word;
}
.stake-body a { font-weight: 600; color: var(--ochre-dark); }
.stake-body a:hover { color: var(--clay); }
.marker-tray-note {
  position: relative;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 2px dotted var(--ochre-pale);
  font-size: .82rem;
  color: var(--muted);
}
.marker-tray-note p { margin: 0; }
.marker-tray-note a { font-weight: 600; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Responsive Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 1024px) {
  .hero-shelf-grid { grid-template-columns: 1fr; }
  .hero-shelf-visual { max-width: 420px; margin: 0 auto; }
  .chart-bay-grid { grid-template-columns: 1fr; }
  .chart-depth-gauge { margin: 0 auto; }
  .signal-tower-grid { grid-template-columns: 1fr; }
  .signal-lamp { margin: 0 auto; }
  .signal-desk-grid { grid-template-columns: 1fr; }
  .mooring-panel { position: static; }
  .chit-stats { grid-template-columns: 1fr; }
  .berth-hero-grid { grid-template-columns: 1fr; }
  .berth-hold-layout { grid-template-columns: 1fr; }
  .dispatch-tally { position: static; }
  .waybill-hero-grid { grid-template-columns: 1fr; }
  .waybill-rack-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .pilot-hero-grid { grid-template-columns: 1fr; }
  .pilot-clearance-layout { grid-template-columns: 1fr; }
  .soundings-scroll { position: static; }
  .folio-fields-duo,
  .folio-fields-route { grid-template-columns: 1fr; }
  .depth-plate-grid { grid-template-columns: 1fr; }
  .ledger-facts { grid-template-columns: 1fr; }
  .plate-cart-form { flex-direction: column; align-items: stretch; }
  .plate-cart-btn { width: 100%; }
  .potting-hero-grid { grid-template-columns: 1fr; }
  .potting-layout { grid-template-columns: 1fr; }
  .postcard-fields-duo { grid-template-columns: 1fr; }
  .receipt-columns { grid-template-columns: repeat(2, 1fr); }
  .product-layout { grid-template-columns: 1fr; }
  .dual-layout { grid-template-columns: 1fr; }
  .dual { grid-template-columns: 1fr; }
  .summary-box,
  .summary-panel { position: static; }
  .promo-slab-inner { flex-direction: column; align-items: flex-start; }
  .folio-desk-actions { flex-wrap: wrap; }
  .postcard-foot .postcard-send-btn { width: 100%; }
  .waybill-guest-actions { flex-direction: column; width: 100%; }
  .waybill-guest-actions .btn { width: 100%; }
  .dispatch-tag { transform: rotate(0deg) !important; }
  .mount-depth-rings { width: 220px; height: 220px; }
  .tide-route {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 16px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .route-beacon {
    min-width: 130px;
    flex-shrink: 0;
  }

  .plot-actions { flex-direction: column; }
  .plot-actions .btn { width: 100%; }
  .bearing-trail { gap: 4px; }
  .bearing-rope { width: 24px; margin-bottom: 20px; }
  .gate-brand-text small { display: none; }
  .gate-brand-num { width: 42px; height: 42px; font-size: 1.05rem; }
  .gate-brand-text strong { font-size: 1rem; }
  .trellis-link,
  .gate-dock-link { padding: 7px 11px; font-size: .76rem; }
  .loupe-search,
  .gate-search { width: min(190px, 22vw); min-width: 150px; }
  .info-page .container { max-width: none; }
}

@media (max-width: 768px) {
  .container { width: min(1180px, 94vw); }
  .section { padding: 40px 0; }
  .hero-shelf { padding: 40px 0 56px; clip-path: none; }
  .hero-shelf-copy h1 { font-size: clamp(1.75rem, 6vw, 2.4rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .trust-strip { gap: 16px; }
  .trust-strip li { min-width: calc(50% - 8px); }
  .aisle-grid { grid-template-columns: 1fr; }
  .pick-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .sounding-ruler { padding-bottom: 12px; }
  .gate-topbar-inner {
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 0;
  }
  .gate-tag {
    font-size: .68rem;
    line-height: 1.35;
    flex: 1 1 100%;
  }
  .gate-actions {
    width: 100%;
    justify-content: flex-end;
  }
  .gate-link-desktop,
  .gate-cart-desktop { display: none; }
  .trellis-bar {
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
  }
  .gate-brand {
    flex: 1;
    min-width: 0;
  }
  .gate-brand-text strong { font-size: 1rem; }
  .gate-brand-text small { display: none; }
  .gate-brand-num {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .gate-menu-btn { display: flex; flex-shrink: 0; }
  .gate-cart-mobile { display: flex; }
  .trellis-cap { display: none; }
  .trellis-nav-zone {
    position: static;
    flex: 0 0 0;
    width: 0;
    min-width: 0;
    height: 0;
    overflow: visible;
  }
  .loupe-zone {
    order: 10;
    width: 100%;
    padding-left: 0;
    margin-left: 0;
    border-left: none;
    padding-top: 4px;
    border-top: 1px dashed var(--ochre-pale);
    margin-top: 2px;
    padding-top: 10px;
  }
  .loupe-search,
  .gate-search {
    width: 100%;
    min-width: 0;
    max-width: none;
    grid-template-columns: auto 1fr auto;
    border-radius: var(--radius-lg);
  }
  .loupe-search button,
  .gate-search button { border-radius: calc(var(--radius-lg) - 4px); }
  .loupe-search input,
  .gate-search input { padding: 10px 8px 10px 0; }
  .loupe-search button,
  .gate-search button { padding: 10px 16px; }

  .gate-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(28, 31, 38, 0.55);
    backdrop-filter: blur(3px);
  }
  body.nav-open .gate-nav-backdrop { display: block; }

  .gate-dock {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 210;
    width: min(400px, 94vw);
    margin: 0;
    padding: 0;
    background:
      linear-gradient(180deg, var(--sand) 0%, var(--sand-2) 100%);
    border-left: 3px solid var(--ochre);
    box-shadow: -16px 0 48px rgba(28, 31, 38, 0.22);
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .gate-dock.is-open { transform: translateX(0); }

  .gate-dock-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 22px 18px 18px;
    background: linear-gradient(165deg, var(--slate) 0%, var(--teal-deep) 100%);
    color: var(--sand);
    border-bottom: 3px solid var(--ochre);
  }
  .gate-dock-head-main {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
  }
  .gate-dock-stamp {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--clay);
    color: var(--sand);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 4px 12px 4px 12px;
    transform: rotate(-4deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  }
  .gate-dock-kicker {
    margin: 0 0 4px;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ochre-pale);
  }
  .gate-dock-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.15;
  }
  .gate-dock-close {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 2px solid rgba(244, 239, 228, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--sand);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .2s, transform .2s;
  }
  .gate-dock-close:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: rotate(90deg);
  }

  .gate-dock-tray {
    display: block;
    flex: 1;
    padding: 18px 16px 12px;
  }
  .gate-dock-tray-label {
    display: block;
    margin: 0 0 14px;
    padding-bottom: 10px;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom: 2px dotted var(--ochre-pale);
  }

  .trellis-links,
  .gate-dock-links {
    flex-direction: column;
    gap: 8px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    align-items: stretch;
    overflow: visible;
  }

  .gate-dock-link.dock-tray-cell {
    display: grid;
    grid-template-columns: 44px 1fr 28px;
    align-items: center;
    gap: 12px;
    padding: 14px 14px 14px 12px;
    white-space: normal;
    color: var(--slate);
    background: var(--white);
    border: 2px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 10px rgba(28, 31, 38, 0.05);
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 64px;
  }
  .gate-dock-link.dock-tray-cell::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: transparent;
    transition: background .2s ease;
  }
  .dock-tray-glyph {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: linear-gradient(145deg, var(--sand-2) 0%, var(--sand) 100%);
    border: 2px solid var(--ochre-pale);
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: .88rem;
    font-weight: 700;
    color: var(--ochre-dark);
    letter-spacing: .02em;
  }
  .trellis-clip { display: none; }
  .dock-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
  }
  .dock-copy strong {
    font-size: .98rem;
    font-weight: 700;
    color: var(--slate);
    line-height: 1.2;
  }
  .dock-copy span {
    display: block;
    font-size: .74rem;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.35;
  }
  .dock-tray-arrow {
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 auto;
    border-top: 2px solid var(--ochre);
    border-right: 2px solid var(--ochre);
    transform: rotate(45deg);
    opacity: .55;
    transition: transform .2s ease, opacity .2s ease;
  }
  .gate-dock-link.dock-tray-cell:hover {
    color: var(--slate);
    border-color: var(--ochre-pale);
    background: var(--white);
    box-shadow: 0 6px 18px rgba(198, 123, 78, 0.14);
  }
  .gate-dock-link.dock-tray-cell:hover .dock-tray-arrow {
    opacity: 1;
    transform: rotate(45deg) translate(2px, -2px);
  }
  .gate-dock-link.dock-tray-cell:hover .dock-tray-glyph {
    border-color: var(--ochre);
    background: var(--ochre-pale);
  }
  .gate-dock-link.dock-tray-cell.is-active {
    color: var(--slate);
    border-color: var(--ochre);
    background: linear-gradient(90deg, var(--ochre-pale) 0%, var(--white) 48%);
    box-shadow: 0 6px 20px rgba(198, 123, 78, 0.2);
  }
  .gate-dock-link.dock-tray-cell.is-active::before {
    background: var(--ochre);
  }
  .gate-dock-link.dock-tray-cell.is-active .dock-tray-glyph {
    background: var(--ochre);
    border-color: var(--ochre-dark);
    color: var(--white);
  }
  .gate-dock-link.dock-tray-cell.is-active .dock-tray-arrow {
    opacity: 1;
    border-color: var(--ochre-dark);
  }

  .gate-dock-quick {
    display: block;
    padding: 16px 16px 22px;
    margin-top: auto;
    border-top: 2px dashed var(--ochre-pale);
    background: rgba(255, 255, 255, 0.45);
  }
  .gate-dock-quick > .gate-dock-quick-label {
    display: block;
    margin: 0 0 12px;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .gate-dock-quick-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .dock-quick {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 12px;
    background: var(--white);
    border: 2px solid var(--line);
    border-radius: var(--radius-lg);
    text-align: left;
    color: var(--slate);
    min-height: 64px;
    transition: border-color .2s, box-shadow .2s, background .2s;
  }
  .dock-quick-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 999px;
    background: var(--sand-2);
    border: 2px solid var(--line);
    font-size: .78rem;
    font-weight: 700;
    color: var(--slate-soft);
  }
  .dock-quick-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }
  .dock-quick:hover {
    border-color: var(--ochre);
    background: var(--ochre-pale);
    color: var(--slate);
    box-shadow: 0 4px 14px rgba(198, 123, 78, 0.12);
  }
  .dock-quick-cart {
    background: linear-gradient(145deg, var(--ochre) 0%, var(--ochre-dark) 100%);
    border-color: var(--ochre-dark);
    color: var(--white);
  }
  .dock-quick-cart:hover {
    background: var(--ochre-dark);
    border-color: var(--ochre-dark);
    color: var(--white);
    filter: brightness(1.05);
  }
  .dock-quick-cart .dock-quick-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white);
  }
  .dock-quick-cart .dock-quick-label,
  .dock-quick-cart .dock-quick-value { color: var(--white); }
  .dock-quick-label {
    font-size: .58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
  }
  .dock-quick-value {
    font-size: .86rem;
    font-weight: 700;
    color: var(--slate);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .receipt-columns { grid-template-columns: 1fr; }
  .receipt-head { flex-direction: column; }
  .receipt-meta { text-align: left; }
  .receipt-sheet { padding: 24px 18px; }
  .proximity-row { grid-template-columns: repeat(2, 1fr); }
  .price-dock-face { padding: 14px 16px; }
  .price-dock-value { font-size: 1.65rem; }
  .waybill-rail-desk { padding: 24px 16px 32px; }
  .waybill-rack-grid { grid-template-columns: 1fr; }
  .route-manifest { padding: 18px 16px; }
  .route-stats { grid-template-columns: 1fr; }
  .locker-bay,
  .gate-stage { padding: 18px 14px; }
  .btn { min-height: 44px; }
  .section h2 { font-size: clamp(1.45rem, 5vw, 2rem); }
  .section .lead,
  .info-page .lead { font-size: 1rem; line-height: 1.6; }
  .info-page .panel,
  .help-center .panel,
  .order-success .panel { padding: clamp(18px, 4vw, 26px); }
  .page-actions { flex-direction: column; align-items: stretch; }
  .page-actions .btn { width: 100%; text-align: center; }
  .dual { gap: 20px; }
  .info-page { padding: 32px 0 48px; }
  .cart-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .cart-table th,
  .cart-table td { white-space: nowrap; }
  .gate-stall-strip { font-size: .62rem; }
  .gate-stall-track span { padding: 6px 12px; }
  .receipt-sheet { padding: 24px 16px; }
  .empty-state { padding: 32px 16px; }
  .notice { font-size: .88rem; }
}

@media (max-width: 480px) {
  .hero-shelf-visual { grid-template-columns: 1fr; transform: none; }
  .shelf-card-1, .shelf-card-2, .shelf-card-3, .shelf-card-4 { transform: none; margin-top: 0; }
  .catalog-grid { grid-template-columns: 1fr; }
  .pick-row { grid-template-columns: 1fr; }
  .inset-grid { grid-template-columns: 1fr; }
  .weigh-title { max-width: none; }
  .weigh-search { flex-direction: column; }
  .weigh-search button { width: 100%; }
  .cargo-lash {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .lash-mark { grid-column: 1; }
  .lash-thumb { grid-row: auto; width: 100%; max-width: 120px; }
  .lash-qty,
  .lash-line-total { grid-column: 1; }
  .lash-line-total { text-align: left; }
  .cargo-net-actions { flex-direction: column; }
  .cargo-net-actions .btn { width: 100%; }
  .folio-desk-actions { flex-direction: column; align-items: stretch; }
  .pilot-dispatch-btn,
  .postcard-send-btn,
  .bell-submit { width: 100%; }
  .proximity-row { grid-template-columns: 1fr; }
  .ledger-facts { grid-template-columns: 1fr; }
  .plate-cart-form { flex-direction: column; align-items: stretch; }
  .gate-dock-quick-grid { grid-template-columns: 1fr; }
  .gate-dock { width: min(100%, 100vw); }
  .gate-dock-link.dock-tray-cell {
    grid-template-columns: 40px 1fr 24px;
    gap: 10px;
    padding: 12px;
    min-height: 58px;
  }
  .dock-tray-glyph { width: 40px; height: 40px; font-size: .82rem; }
  .gate-stall-strip { display: none; }
  .chit-stats { grid-template-columns: 1fr; }
  .bearing-trail { flex-direction: column; align-items: stretch; }
  .bearing-rope {
    width: 3px;
    height: 16px;
    margin: 0 auto;
  }
  .pilot-pass-badge { width: 100%; }
  .potting-mail-slot { display: none; }
  .waybill-counter { width: 100%; }
  .trust-strip li { min-width: 100%; }
  .hero-actions .btn-outline { width: 100%; }
}
