.design-panel {
  margin-bottom: 16px;
}

#designView > .design-panel:not(.marker-color-lab) {
  display: none;
}

.marker-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 14px;
  padding: 16px;
}

.marker-showcase-card {
  --brand-marker: #5262d6;
  --brand-marker-text: #2939a8;
  --neutral-marker: #d0d5dd;
  --neutral-marker-text: #344054;
  display: grid;
  gap: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.marker-showcase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px 0;
}

.marker-showcase-head strong {
  overflow: hidden;
  color: #1d2939;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.marker-showcase-head span {
  flex: 0 0 auto;
  color: #667085;
  font-size: 11px;
  font-weight: 850;
}

.marker-showcase-map {
  position: relative;
  min-height: 248px;
  overflow: hidden;
  border-top: 1px solid #edf1f7;
  background:
    linear-gradient(90deg, rgba(255,255,255,.58) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(0deg, rgba(255,255,255,.58) 1px, transparent 1px) 0 0 / 34px 34px,
    #e8eef3;
}

.marker-showcase-road,
.marker-showcase-river {
  position: absolute;
  pointer-events: none;
}

.marker-showcase-road {
  width: 148%;
  height: 18px;
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-inline: 0;
  background: #e7c47d;
  opacity: 0.78;
  transform-origin: center;
}

.marker-showcase-road.road-a {
  left: -25%;
  top: 43%;
  transform: rotate(-18deg);
}

.marker-showcase-road.road-b {
  left: -18%;
  top: 68%;
  transform: rotate(24deg);
}

.marker-showcase-river {
  right: -20%;
  top: 0;
  width: 42%;
  height: 120%;
  border-left: 9px solid rgba(255, 255, 255, 0.7);
  background: rgba(126, 186, 220, 0.55);
  transform: rotate(8deg);
}

.showcase-marker {
  --band-color: #0f766e;
  --band-soft: #ccfbf1;
  --band-border: rgba(15, 118, 110, 0.22);
  --preview-border: var(--band-color);
  --preview-text: var(--band-color);
  --preview-badge-bg: var(--band-soft);
  --preview-badge-text: var(--band-color);
  --preview-badge-border: var(--band-border);
  --preview-accent-display: none;
  --preview-accent-width: 0;
  --preview-accent-height: 0;
  --preview-accent-radius: 0;
  --preview-accent-left: auto;
  --preview-accent-right: auto;
  --preview-accent-top: auto;
  --preview-accent-bottom: auto;
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 92px;
  max-width: 132px;
  gap: 4px;
  box-sizing: border-box;
  border: 2px solid var(--preview-border);
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 13px 24px rgba(16, 24, 40, 0.17);
  color: var(--preview-text);
  font-weight: 950;
  line-height: 1;
  padding: 8px;
  place-items: center;
  text-align: center;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.showcase-marker::before {
  position: absolute;
  display: var(--preview-accent-display);
  left: var(--preview-accent-left);
  right: var(--preview-accent-right);
  top: var(--preview-accent-top);
  bottom: var(--preview-accent-bottom);
  width: var(--preview-accent-width);
  height: var(--preview-accent-height);
  border-radius: var(--preview-accent-radius);
  background: var(--band-color);
  content: "";
}

.showcase-marker small {
  overflow: hidden;
  max-width: 100%;
  color: #667085;
  font-size: 8px;
  font-weight: 950;
  text-overflow: ellipsis;
}

.showcase-marker strong {
  color: var(--preview-text);
  font-size: 22px;
  font-weight: 950;
  line-height: 0.96;
}

.showcase-marker em {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid var(--preview-badge-border);
  border-radius: 999px;
  background: var(--preview-badge-bg);
  color: var(--preview-badge-text);
  font-size: 8px;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  padding: 5px 7px;
}

.showcase-marker.level-sido {
  min-width: 86px;
}

.showcase-marker.level-sigungu {
  min-width: 104px;
}

.showcase-marker.level-dong {
  min-width: 108px;
}

.showcase-marker.level-apartment {
  min-width: 88px;
  max-width: 108px;
}

.showcase-marker.level-apartment strong {
  font-size: 18px;
}

.showcase-marker.tone-red {
  --band-color: #dc2626;
  --band-soft: #ffe4e6;
  --band-border: rgba(220, 38, 38, 0.22);
}

.showcase-marker.tone-orange {
  --band-color: #d97706;
  --band-soft: #ffedd5;
  --band-border: rgba(217, 119, 6, 0.24);
}

.showcase-marker.tone-green {
  --band-color: #16a34a;
  --band-soft: #dcfce7;
  --band-border: rgba(22, 163, 74, 0.22);
}

.showcase-marker.tone-blue {
  --band-color: #2563eb;
  --band-soft: #dbeafe;
  --band-border: rgba(37, 99, 235, 0.22);
}

.showcase-marker.pos-a {
  left: 29%;
  top: 29%;
}

.showcase-marker.pos-b {
  left: 67%;
  top: 32%;
}

.showcase-marker.pos-c {
  left: 36%;
  top: 69%;
}

.showcase-marker.pos-d {
  left: 70%;
  top: 72%;
}

.marker-showcase-card.variant-02 .showcase-marker {
  --preview-badge-bg: #ffffff;
}

.marker-showcase-card.variant-03 .showcase-marker {
  --preview-border: var(--brand-marker);
}

.marker-showcase-card.variant-04 .showcase-marker {
  --preview-border: var(--brand-marker);
  --preview-badge-bg: #eef2ff;
  --preview-badge-text: var(--brand-marker-text);
  --preview-badge-border: rgba(82, 98, 214, 0.18);
}

.marker-showcase-card.variant-05 .showcase-marker {
  --preview-border: var(--neutral-marker);
  --preview-text: var(--neutral-marker-text);
}

.marker-showcase-card.variant-06 .showcase-marker {
  --preview-border: var(--neutral-marker);
  --preview-text: var(--brand-marker-text);
  --preview-badge-text: var(--brand-marker-text);
  --preview-accent-display: block;
  --preview-accent-left: 0;
  --preview-accent-top: 8px;
  --preview-accent-bottom: 8px;
  --preview-accent-width: 4px;
  --preview-accent-height: auto;
  --preview-accent-radius: 0 999px 999px 0;
}

.marker-showcase-card.variant-07 .showcase-marker {
  --preview-border: var(--brand-marker);
  --preview-text: var(--brand-marker-text);
  --preview-badge-bg: #eef2ff;
  --preview-badge-text: var(--brand-marker-text);
  --preview-badge-border: rgba(82, 98, 214, 0.18);
  --preview-accent-display: block;
  --preview-accent-left: 10px;
  --preview-accent-right: 10px;
  --preview-accent-top: 0;
  --preview-accent-width: auto;
  --preview-accent-height: 3px;
  --preview-accent-radius: 0 0 999px 999px;
}

.marker-showcase-card.variant-08 .showcase-marker {
  --preview-border: var(--brand-marker);
  --preview-text: var(--brand-marker-text);
  --preview-badge-bg: #eef2ff;
  --preview-badge-text: var(--brand-marker-text);
  --preview-badge-border: rgba(82, 98, 214, 0.18);
  --preview-accent-display: block;
  --preview-accent-left: 8px;
  --preview-accent-top: 8px;
  --preview-accent-width: 7px;
  --preview-accent-height: 7px;
  --preview-accent-radius: 999px;
}

.marker-showcase-card.variant-09 .showcase-marker {
  --preview-border: var(--brand-marker);
  --preview-text: var(--brand-marker-text);
  --preview-badge-bg: var(--band-soft);
  --preview-badge-text: var(--brand-marker-text);
  --preview-badge-border: rgba(82, 98, 214, 0.14);
}

.marker-showcase-card.variant-10 .showcase-marker {
  --preview-border: var(--neutral-marker);
  --preview-text: var(--brand-marker-text);
  --preview-badge-bg: #f2f4f7;
  --preview-badge-text: var(--neutral-marker-text);
  --preview-badge-border: rgba(102, 112, 133, 0.16);
  --preview-accent-display: block;
  --preview-accent-right: 8px;
  --preview-accent-top: 8px;
  --preview-accent-width: 6px;
  --preview-accent-height: 6px;
  --preview-accent-radius: 999px;
}

.price-band-design-grid {
  display: grid;
  gap: 16px;
  padding: 16px;
}

.price-band-design-concept {
  display: grid;
  gap: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.price-band-design-concept.preferred {
  border-color: #9db7ea;
  box-shadow: 0 0 0 3px rgba(35, 103, 209, 0.08);
}

.price-band-design-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px 0;
}

.price-band-design-head strong {
  color: #1d2939;
  font-size: 14px;
  font-weight: 950;
}

.price-band-design-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.price-band-design-table-wrap {
  overflow-x: auto;
  padding: 0 16px 16px;
}

.price-band-design-table {
  min-width: 1120px;
  border: 1px solid #e4e9f1;
  border-radius: 8px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.price-band-design-table th,
.price-band-design-table td {
  border-bottom: 1px solid #e4e9f1;
  padding: 12px 14px;
  text-align: left;
  vertical-align: middle;
}

.price-band-design-table th {
  background: #f8fafc;
  color: #667085;
  font-size: 12px;
  font-weight: 900;
}

.price-band-design-table tr:last-child td {
  border-bottom: 0;
}

.price-band-design-table th:first-child,
.price-band-design-table td:first-child {
  width: 48px;
  color: #475467;
  text-align: right;
}

.price-band-design-table th:nth-child(2),
.price-band-design-table td:nth-child(2) {
  width: 210px;
}

.price-band-design-table th:nth-child(3),
.price-band-design-table td:nth-child(3) {
  width: 230px;
}

.price-band-design-table td:nth-child(2) strong {
  display: block;
  color: #1d2939;
  font-size: 13px;
  font-weight: 950;
}

.price-band-design-table td:nth-child(2) span {
  display: block;
  margin-top: 4px;
  color: #667085;
  font-size: 12px;
  font-weight: 800;
}

.price-band-design-area {
  display: grid;
  grid-template-columns: 80px minmax(210px, max-content) minmax(94px, max-content) minmax(58px, max-content) max-content;
  align-items: baseline;
  gap: 10px;
}

.price-band-design-area + .price-band-design-area {
  margin-top: 7px;
}

.price-band-design-area b,
.price-band-design-area span,
.price-band-design-area i,
.price-band-design-area em,
.price-band-design-area strong,
.price-band-design-area button {
  white-space: nowrap;
}

.price-band-design-area b,
.price-band-design-area span {
  color: #344054;
  font-size: 13px;
  font-weight: 900;
}

.price-band-design-area em,
.price-band-design-area strong {
  color: #d13f32;
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
  text-align: right;
}

.price-band-design-area.secondary b,
.price-band-design-area.secondary span,
.price-band-design-area.secondary em,
.price-band-design-area.secondary strong {
  color: #667085;
  font-size: 11.5px;
  font-weight: 800;
}

.price-band-design-area button {
  height: 24px;
  border: 1px solid #d6e2f3;
  border-radius: 999px;
  background: #f8fbff;
  color: var(--blue);
  cursor: default;
  font-size: 11px;
  font-weight: 900;
  padding: 0 9px;
}

.variant-01-a .price-band-design-area.secondary {
  margin-top: 6px;
}

.variant-01-b .price-band-design-area.secondary {
  margin-top: 5px;
}

.variant-01-b .price-band-design-area.secondary b,
.variant-01-b .price-band-design-area.secondary span,
.variant-01-b .price-band-design-area.secondary em,
.variant-01-b .price-band-design-area.secondary strong {
  font-size: 10.5px;
  font-weight: 760;
}

.variant-01-c .price-band-design-area.secondary {
  margin-top: 5px;
}

.variant-01-c .price-band-design-area.secondary b,
.variant-01-c .price-band-design-area.secondary span,
.variant-01-c .price-band-design-area.secondary em,
.variant-01-c .price-band-design-area.secondary strong {
  color: #98a2b3;
  font-size: 10.5px;
  font-weight: 720;
}

.price-band-design-main-chip .price-band-design-area {
  grid-template-columns: 80px minmax(210px, max-content) max-content max-content;
}

.price-band-design-main-chip .price-band-design-area.primary i {
  display: inline-flex;
  gap: 8px;
  align-items: baseline;
  justify-content: flex-end;
  border-radius: 999px;
  background: #fff1ee;
  padding: 4px 9px;
}

.price-band-design-main-chip .price-band-design-area.primary i em,
.price-band-design-main-chip .price-band-design-area.primary i strong {
  font-size: 12px;
}

.price-band-design-main-chip .price-band-design-area.secondary em,
.price-band-design-main-chip .price-band-design-area.secondary strong {
  background: transparent;
  padding: 0;
}

.variant-02-b .price-band-design-area.secondary b,
.variant-02-b .price-band-design-area.secondary span,
.variant-02-b .price-band-design-area.secondary em,
.variant-02-b .price-band-design-area.secondary strong {
  font-size: 10.5px;
  font-weight: 760;
}

.variant-02-b .price-band-design-area + .price-band-design-area {
  margin-top: 5px;
}

.map-header-design-grid,
.logo-design-grid,
.graph-design-grid,
.growth-rate-color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 12px;
  padding: 16px;
}

.map-header-design-card,
.logo-design-card,
.graph-design-card,
.growth-rate-color-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  padding: 12px;
  text-align: left;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.map-header-design-card:hover,
.logo-design-card:hover,
.graph-design-card:hover,
.growth-rate-color-card:hover {
  border-color: #9db7ea;
  box-shadow: 0 10px 22px rgba(16, 24, 40, 0.08);
  transform: translateY(-1px);
}

.map-header-design-card.active,
.logo-design-card.active,
.graph-design-card.active,
.growth-rate-color-card.active {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(35, 103, 209, 0.12);
}

.graph-design-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.graph-design-card-head strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.graph-design-card-head em {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #f2f4f7;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  padding: 4px 8px;
}

.map-header-design-card.active .graph-design-card-head em,
.logo-design-card.active .graph-design-card-head em,
.graph-design-card.active .graph-design-card-head em {
  background: #e8f0ff;
  color: var(--blue);
}

.growth-rate-color-preview {
  display: grid;
  gap: 8px;
  border: 1px solid #edf1f7;
  border-radius: 8px;
  background: #fbfcfe;
  padding: 10px;
}

.growth-rate-color-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 68px;
  gap: 8px;
  align-items: center;
  min-height: 28px;
  color: #344054;
  font-size: 12px;
  font-weight: 850;
}

.growth-rate-color-row strong {
  overflow: hidden;
  color: #1d2939;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.growth-rate-color-row em {
  justify-self: end;
  border-radius: 999px;
  background: var(--growth-rate-neutral-bg);
  font-style: normal;
  line-height: 1;
  padding: 6px 8px;
}

.growth-rate-color-row em.growth-rate-top-1 {
  background: var(--growth-rate-top-1-bg);
}

.growth-rate-color-row em.growth-rate-top-2 {
  background: var(--growth-rate-top-2-bg);
}

.growth-rate-color-row em.growth-rate-top-3 {
  background: var(--growth-rate-top-3-bg);
}

.growth-rate-color-row em.growth-rate-positive {
  background: var(--growth-rate-positive-bg);
}

.growth-rate-color-row em.growth-rate-negative {
  background: var(--growth-rate-negative-bg);
}

.growth-rate-color-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.growth-rate-map-preview {
  display: grid;
  overflow: hidden;
  border: 1px solid #e4e9f1;
  border-radius: 8px;
  background: #f6f8fb;
}

.growth-rate-map-preview-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 8px;
  background: #ffffff;
}

.growth-rate-map-preview-top span:first-child {
  color: #111827;
  font-size: 12px;
  font-weight: 950;
}

.growth-rate-map-preview-top span:last-child {
  overflow: hidden;
  height: 28px;
  border: 1px solid #e4e9f1;
  border-radius: 7px;
  background: #f9fafb;
  color: #98a2b3;
  font-size: 11px;
  font-weight: 850;
  line-height: 26px;
  padding: 0 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.growth-rate-map-preview-tabs,
.growth-rate-map-preview-period {
  display: flex;
  gap: 6px;
  overflow: hidden;
  padding: 7px 8px;
  background: #f8fafc;
}

.growth-rate-map-preview-tabs span,
.growth-rate-map-preview-period span {
  flex: 0 0 auto;
  height: 24px;
  border: 1px solid #e4e9f1;
  border-radius: 7px;
  background: #ffffff;
  color: #475467;
  font-size: 10px;
  font-weight: 900;
  line-height: 22px;
  padding: 0 8px;
}

.growth-rate-map-preview-tabs span.active,
.growth-rate-map-preview-period span.active {
  border-color: #9db7ea;
  background: #eef4ff;
  color: var(--blue);
}

.growth-rate-map-preview-period {
  padding-top: 0;
}

.growth-rate-map-preview-canvas {
  position: relative;
  display: block;
  height: 230px;
  border-top: 1px solid #edf1f7;
  background:
    linear-gradient(90deg, rgba(255,255,255,.58) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(0deg, rgba(255,255,255,.58) 1px, transparent 1px) 0 0 / 34px 34px,
    #e8eef3;
}

.growth-rate-map-preview-road,
.growth-rate-map-preview-river {
  position: absolute;
  display: block;
  pointer-events: none;
}

.growth-rate-map-preview-river {
  right: -16%;
  bottom: -18%;
  width: 60%;
  height: 58%;
  border-radius: 999px 0 0 0;
  background: #cfe3f1;
  transform: rotate(-11deg);
}

.growth-rate-map-preview-road {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(196, 206, 220, 0.55);
}

.growth-rate-map-preview-road.road-a {
  top: 36%;
  left: -12%;
  width: 78%;
  transform: rotate(-18deg);
}

.growth-rate-map-preview-road.road-b {
  right: -10%;
  bottom: 30%;
  width: 82%;
  transform: rotate(14deg);
}

.growth-rate-map-marker {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", Roboto, Arial, sans-serif;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 72px;
  max-width: 132px;
  gap: 2px;
  border: 1px solid rgba(16, 24, 40, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.16);
  padding: 7px 9px;
  transform: translate(-50%, -50%);
}

.growth-rate-map-marker::after {
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 12px;
  height: 12px;
  border-right: 1px solid rgba(16, 24, 40, 0.1);
  border-bottom: 1px solid rgba(16, 24, 40, 0.1);
  background: rgba(255, 255, 255, 0.96);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.growth-rate-map-marker.sido {
  min-width: 86px;
  border-color: rgba(35, 103, 209, 0.22);
}

.growth-rate-map-marker.sigungu {
  min-width: 92px;
}

.growth-rate-map-marker.dong {
  min-width: 86px;
}

.growth-rate-map-marker.apartment {
  min-width: 118px;
}

.growth-rate-map-marker span,
.growth-rate-map-marker strong,
.growth-rate-map-marker em {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.growth-rate-map-marker span {
  overflow: hidden;
  color: #1d2939;
  font-size: 11px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.growth-rate-map-marker strong {
  font-size: 15px;
  font-weight: 950;
  line-height: 1.05;
}

.growth-rate-map-marker em {
  overflow: hidden;
  color: #667085;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.growth-rate-map-preview-caption {
  display: block;
  color: #667085;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.35;
  padding: 8px 10px 10px;
}

.map-header-design-preview {
  display: grid;
  overflow: hidden;
  border: 1px solid #edf1f7;
  border-radius: 10px;
  background: var(--preview-period-bg);
}

.map-header-preview-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: var(--preview-header-bg);
  color: var(--preview-header-text);
}

.map-header-preview-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
}

.map-header-preview-logo svg {
  display: block;
  width: 32px;
  height: 32px;
}

.map-header-preview-logo .logo-stroke,
.map-header-preview-logo .logo-accent {
  stroke: currentColor;
}

.map-header-preview-search {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
  height: 34px;
  border-radius: 9px;
  background: var(--preview-search-bg);
  color: var(--preview-search-placeholder);
  font-size: 12px;
  font-weight: 900;
  line-height: 34px;
  padding: 0 34px 0 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-header-preview-search::after {
  position: absolute;
  top: 9px;
  right: 13px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--preview-search-icon);
  border-radius: 50%;
  content: "";
}

.map-header-preview-search::before {
  position: absolute;
  top: 21px;
  right: 10px;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: var(--preview-search-icon);
  content: "";
  transform: rotate(45deg);
}

.map-header-preview-tabs,
.map-header-preview-periods {
  display: flex;
  gap: 6px;
  overflow: hidden;
  padding: 8px 10px;
  background: var(--preview-period-bg);
}

.map-header-preview-tabs span,
.map-header-preview-periods span {
  flex: 0 0 auto;
  height: 27px;
  border: 1px solid #e4e9f1;
  border-radius: 8px;
  background: var(--preview-chip-bg);
  color: #344054;
  font-size: 11px;
  font-weight: 900;
  line-height: 25px;
  padding: 0 10px;
}

.map-header-preview-tabs span.active,
.map-header-preview-periods span.active {
  border-color: var(--preview-chip-active-border);
  background: var(--preview-chip-active-bg);
  color: var(--preview-chip-active-text);
}

.map-header-preview-periods {
  padding-top: 0;
}

.map-header-preview-map {
  position: relative;
  display: block;
  height: 130px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.6) 0 22px, transparent 23px),
    linear-gradient(135deg, var(--preview-map-land) 0 44%, var(--preview-map-water) 44% 56%, var(--preview-map-land) 56% 100%);
}

.preview-road {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: var(--preview-map-road);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.74);
}

.preview-road.road-a {
  top: 50px;
  left: -20px;
  width: 260px;
  height: 10px;
  transform: rotate(-18deg);
}

.preview-road.road-b {
  top: 20px;
  left: 138px;
  width: 10px;
  height: 170px;
  transform: rotate(18deg);
}

.preview-water {
  position: absolute;
  right: -18px;
  bottom: 10px;
  width: 150px;
  height: 46px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--preview-map-water) 70%, #ffffff);
}

.preview-marker {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #16805f;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(16, 24, 40, 0.2);
}

.preview-marker.marker-a {
  top: 24px;
  left: 56px;
}

.preview-marker.marker-b {
  right: 42px;
  bottom: 28px;
  background: #d97706;
}

.logo-design-preview {
  display: grid;
  min-height: 112px;
  align-items: center;
  overflow: hidden;
  border: 1px solid #edf1f7;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(152, 162, 179, 0.11) 1px, transparent 1px),
    linear-gradient(180deg, rgba(152, 162, 179, 0.11) 1px, transparent 1px),
    #fbfcfe;
  background-size: 28px 28px;
  padding: 18px;
}

.logo-design-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.orulzip-logo {
  --logo-main: #2367d1;
  --logo-accent: #16805f;
  --logo-soft: rgba(35, 103, 209, 0.11);
  --logo-text: #111827;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  border-radius: 14px;
  color: var(--logo-text);
  white-space: nowrap;
}

.orulzip-logo.tone-green {
  --logo-main: #16805f;
  --logo-accent: #2367d1;
  --logo-soft: rgba(22, 128, 95, 0.12);
}

.orulzip-logo.tone-navy {
  --logo-main: #1f2937;
  --logo-accent: #2367d1;
  --logo-soft: rgba(31, 41, 55, 0.1);
}

.orulzip-logo.tone-orange {
  --logo-main: #d97706;
  --logo-accent: #c24132;
  --logo-soft: rgba(217, 119, 6, 0.13);
}

.orulzip-logo.tone-teal {
  --logo-main: #0f766e;
  --logo-accent: #2367d1;
  --logo-soft: rgba(15, 118, 110, 0.12);
}

.orulzip-logo.tone-purple {
  --logo-main: #6941c6;
  --logo-accent: #2367d1;
  --logo-soft: rgba(105, 65, 198, 0.12);
}

.orulzip-logo.tone-black {
  --logo-main: #111827;
  --logo-accent: #2367d1;
  --logo-soft: rgba(17, 24, 39, 0.08);
}

.orulzip-logo.style-badge,
.orulzip-logo.style-soft {
  padding: 10px 14px 10px 10px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
}

.orulzip-logo.style-badge .orulzip-logo-mark,
.orulzip-logo.style-solid .orulzip-logo-mark {
  background: var(--logo-main);
}

.orulzip-logo.style-soft .orulzip-logo-mark,
.orulzip-logo.style-line .orulzip-logo-mark {
  background: var(--logo-soft);
}

.orulzip-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: var(--logo-main);
}

.orulzip-logo.style-badge .orulzip-logo-mark,
.orulzip-logo.style-solid .orulzip-logo-mark {
  color: #ffffff;
}

.orulzip-logo-mark svg {
  display: block;
  width: 40px;
  height: 40px;
}

.orulzip-logo-word {
  color: var(--logo-text);
  font-size: 31px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.logo-stroke {
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-stroke-bold {
  stroke-width: 3.8;
}

.logo-stroke-rounded {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-accent {
  stroke: var(--logo-accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-accent-fill {
  fill: var(--logo-accent);
}

.logo-fill-soft {
  fill: var(--logo-soft);
}

.logo-fill-strong {
  fill: currentColor;
}

.logo-knockout {
  fill: #ffffff;
}

.orulzip-logo.style-badge .logo-knockout,
.orulzip-logo.style-solid .logo-knockout {
  fill: var(--logo-main);
}

.logo-accent-on-dark {
  stroke: #ffffff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.86;
}

.graph-design-preview {
  display: block;
  overflow: hidden;
  border: 1px solid #edf1f7;
  border-radius: 8px;
  background: #ffffff;
}

.graph-design-preview svg {
  display: block;
  width: 100%;
  height: auto;
}
