/* ═══════════════════════════════════════════
   GLOBAL COMPARE PANEL — deep_compare.css  (v3 — global style)
   Same width/pattern as stock_panel.css
   ═══════════════════════════════════════════ */

/* ── Overlay (backdrop) ── */
/* pointer-events:none lets clicks pass through to the page (checkboxes etc.)  */
/* The panel itself overrides back to pointer-events:all                        */
#cmpOverlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: transparent;
  /* no dark backdrop — page stays fully accessible */
  display: none;
  justify-content: flex-end;
  pointer-events: none;
  /* clicks fall through to page behind              */
}

#cmpOverlay.cmp-open {
  display: flex;
}

/* ── Panel shell ── */
#cmpPanel {
  pointer-events: all;
  /* panel itself is fully interactive */
  width: min(880px, 98vw);
  min-width: 320px;
  max-width: 97vw;
  height: 100%;
  background: #07071a;
  border-left: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: -16px 0 80px rgba(0, 0, 0, .9);
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.4, 0, .2, 1);
  font-family: 'Nunito Sans', 'Sarabun', sans-serif;
  font-size: 0.875rem;
  color: #f1f5f9;
  position: relative;
  /* anchor for resize handle */
}

#cmpOverlay.cmp-open #cmpPanel {
  transform: translateX(0);
}

/* ── Resize handle ── */
.cmp-resize-handle {
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  cursor: ew-resize;
  z-index: 10;
  background: transparent;
  transition: background .15s;
}

.cmp-resize-handle::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 40px;
  border-radius: 99px;
  background: rgba(124, 58, 237, .2);
  transition: background .15s, height .15s;
}

.cmp-resize-handle:hover::before,
.cmp-resize-handle:active::before {
  background: rgba(124, 58, 237, .7);
  height: 60px;
}

/* ── Top bar ── */
.cmp-topbar {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  background: rgba(7, 7, 26, .98);
}

.cmp-topbar-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .8);
  letter-spacing: .3px;
}

.cmp-count {
  background: rgba(124, 58, 237, .25);
  color: #a78bfa;
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 2px 9px;
  border-radius: 99px;
  border: 1px solid rgba(124, 58, 237, .35);
  line-height: 1.5;
}

.cmp-duel-btn .duel-gloves-icon {
  display: inline-flex;
  width: 0.875rem;
  height: 0.875rem;
  color: inherit;
}

.cmp-duel-btn .duel-gloves-icon svg {
  width: 100%;
  height: 100%;
}

.cmp-duel-btn {
  background: rgba(37, 99, 235, .14);
  border: 1px solid rgba(37, 99, 235, .35);
  color: #93c5fd;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 7px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: inherit;
  transition: background .15s, box-shadow .15s;
  white-space: nowrap;
}

.cmp-duel-btn:hover {
  background: rgba(37, 99, 235, .28);
  box-shadow: 0 0 14px rgba(37, 99, 235, .25);
}

.cmp-duel-btn[hidden] {
  display: none;
}

.cmp-clear-btn {
  background: rgba(239, 68, 68, .1);
  border: 1px solid rgba(239, 68, 68, .25);
  color: #ef4444;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 7px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: inherit;
  transition: background .15s;
}

.cmp-clear-btn:hover {
  background: rgba(239, 68, 68, .22);
}

.cmp-close-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .3);
  cursor: pointer;
  font-size: 1.125rem;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color .15s, background .15s;
  line-height: 1;
}

.cmp-close-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

/* ── Empty state ── */
.cmp-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, .2);
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  padding: 40px;
}

.cmp-empty i {
  font-size: 2.25rem;
}

.cmp-empty-sub {
  font-size: 0.6875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .12);
}

/* ── Scroll area (columns side by side) ── */
.cmp-scroll-area {
  flex: 1;
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
}

.cmp-scroll-area::-webkit-scrollbar {
  height: 4px;
}

.cmp-scroll-area::-webkit-scrollbar-thumb {
  background: rgba(124, 58, 237, .3);
  border-radius: 99px;
}

/* ── Individual stock column ── */
.cmp-col {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, .05);
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
}

.cmp-col:last-child {
  border-right: none;
}

.cmp-col::-webkit-scrollbar {
  width: 3px;
}

.cmp-col::-webkit-scrollbar-thumb {
  background: rgba(124, 58, 237, .2);
  border-radius: 99px;
}

/* ── Column header ── */
.cmp-col-header {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 14px 12px;
  /* solid opaque base so sticky header correctly covers scrolled content */
  background: linear-gradient(135deg, rgba(6, 182, 212, .12), rgba(124, 58, 237, .08)), #07071a;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 5;
  min-height: 92px;
  box-sizing: border-box;
}

.cmp-col-sym {
  font-size: 1.1rem;
  font-weight: 900;
  color: #06b6d4;
  letter-spacing: .4px;
  line-height: 1.1;
}

.cmp-col-name {
  font-size: 0.5625rem;
  color: rgba(255, 255, 255, .3);
  margin-top: 2px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cmp-col-price {
  margin-top: 5px;
  display: flex;
  gap: 5px;
  align-items: baseline;
  font-size: 0.8125rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .9);
}

.cmp-col-sector {
  margin-top: 4px;
  font-size: 0.7rem;
  color: rgba(124, 58, 237, .6);
  background: rgba(124, 58, 237, .08);
  padding: 1px 6px;
  border-radius: 99px;
  display: inline-block;
}

.cmp-col-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .15);
  cursor: pointer;
  padding: 2px 4px;
  font-size: 0.6875rem;
  flex-shrink: 0;
  transition: color .2s;
  margin-top: 2px;
}

.cmp-col-close:hover {
  color: #ef4444;
}

/* ── Section toggle header ── */
.cmp-section-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 14px;
  cursor: pointer;
  background: rgba(7, 7, 26, .96);
  border-top: 1px solid rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  user-select: none;
  flex-shrink: 0;
  transition: background .15s;
}

.cmp-section-hd:hover {
  background: rgba(124, 58, 237, .1);
}

.cmp-section-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.5625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: rgba(255, 255, 255, .5);
}

.cmp-section-icon {
  font-size: 0.5625rem;
  opacity: .75;
}

.cmp-section-chevron {
  font-size: 0.5rem;
  color: rgba(124, 58, 237, .5);
  transition: transform .22s ease;
  flex-shrink: 0;
}

.cmp-section-hd--collapsed .cmp-section-chevron {
  transform: rotate(180deg);
}

/* ── Section collapsible body (grid trick for smooth height) ── */
.cmp-section-body {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows .25s ease, opacity .2s ease;
  opacity: 1;
  flex-shrink: 0;
  overflow: hidden;
}

.cmp-section-body.cmp-section-collapsed {
  grid-template-rows: 0fr;
  opacity: 0;
  pointer-events: none;
}

.cmp-section-inner {
  overflow: hidden;
  padding: 10px 14px 12px;
}

.cmp-ratios-inner {
  padding-top: 6px;
  padding-bottom: 8px;
}

/* Toolbar inside section inner */
.cmp-section-inner .cmp-chart-toolbar {
  margin-bottom: 8px;
}

/* ── Financial ratios (kept for legacy, override via .cmp-ratios-inner) ── */
.cmp-ratio-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 28px;
  /* fixed row height — all columns stay aligned */
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .025);
  font-size: 0.875rem;
  box-sizing: border-box;
}

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

.cmp-ratio-label {
  color: rgba(255, 255, 255, .38);
  font-weight: 500;
}

.cmp-ratio-value {
  font-weight: 700;
  text-align: right;
}

/* (cmp-chart-wrap + cmp-price-wrap + cmp-chart-section-title removed — replaced by .cmp-section-hd/body) */
.cmp-chart-toolbar {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}

.cmp-cbt {
  background: rgba(124, 58, 237, .08);
  border: 1px solid rgba(124, 58, 237, .18);
  color: rgba(255, 255, 255, .4);
  font-size: 0.625rem;
  padding: 3px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-family: inherit;
  transition: all .15s;
}

.cmp-cbt.active,
.cmp-cbt:hover {
  background: rgba(124, 58, 237, .28);
  border-color: rgba(124, 58, 237, .5);
  color: #a78bfa;
}

.cmp-canvas-wrap {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(124, 58, 237, .1);
  border-radius: 6px;
  overflow: hidden;
}

.cmp-chart-loading,
.cmp-chart-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  font-size: 0.625rem;
  color: rgba(255, 255, 255, .2);
  gap: 6px;
  flex-direction: column;
  text-align: center;
  padding: 12px;
}

/* ── Checkbox in table ── */
.row-compare-checkbox {
  width: 15px;
  height: 15px;
  border-radius: 3px;
  cursor: pointer;
  accent-color: #7c3aed;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  #cmpPanel {
    width: 100vw;
  }
}

/* ── Light theme overrides ── */
:root[data-mockup-theme-resolved="light"] #cmpPanel {
  background: #ffffff;
  border-left-color: rgba(15, 23, 42, .10);
  box-shadow: -16px 0 48px rgba(15, 23, 42, .14);
  color: #0f172a;
}

:root[data-mockup-theme-resolved="light"] .cmp-topbar {
  background: rgba(255, 255, 255, .98);
  border-bottom-color: rgba(15, 23, 42, .08);
}

:root[data-mockup-theme-resolved="light"] .cmp-topbar-label {
  color: rgba(15, 23, 42, .82);
}

:root[data-mockup-theme-resolved="light"] .cmp-count {
  background: rgba(99, 102, 241, .12);
  color: #4338ca;
  border-color: rgba(99, 102, 241, .22);
}

:root[data-mockup-theme-resolved="light"] .cmp-clear-btn {
  background: rgba(239, 68, 68, .08);
  border-color: rgba(239, 68, 68, .16);
  color: #dc2626;
}

:root[data-mockup-theme-resolved="light"] .cmp-clear-btn:hover {
  background: rgba(239, 68, 68, .16);
}

:root[data-mockup-theme-resolved="light"] .cmp-close-btn {
  color: rgba(15, 23, 42, .38);
}

:root[data-mockup-theme-resolved="light"] .cmp-close-btn:hover {
  color: #0f172a;
  background: rgba(15, 23, 42, .06);
}

:root[data-mockup-theme-resolved="light"] .cmp-empty {
  color: rgba(15, 23, 42, .34);
}

:root[data-mockup-theme-resolved="light"] .cmp-empty-sub,
:root[data-mockup-theme-resolved="light"] .cmp-chart-loading,
:root[data-mockup-theme-resolved="light"] .cmp-chart-empty {
  color: rgba(15, 23, 42, .40);
}

:root[data-mockup-theme-resolved="light"] .cmp-scroll-area::-webkit-scrollbar-thumb,
:root[data-mockup-theme-resolved="light"] .cmp-col::-webkit-scrollbar-thumb {
  background: rgba(99, 102, 241, .22);
}

:root[data-mockup-theme-resolved="light"] .cmp-col {
  border-right-color: rgba(15, 23, 42, .06);
}

:root[data-mockup-theme-resolved="light"] .cmp-col-header {
  background: linear-gradient(135deg, rgba(59, 130, 246, .08), rgba(99, 102, 241, .05)), #ffffff;
  border-bottom-color: rgba(15, 23, 42, .08);
}

:root[data-mockup-theme-resolved="light"] .cmp-col-sym {
  color: #2563eb;
}

:root[data-mockup-theme-resolved="light"] .cmp-col-name {
  color: rgba(15, 23, 42, .48);
}

:root[data-mockup-theme-resolved="light"] .cmp-col-price {
  color: rgba(15, 23, 42, .88);
}

:root[data-mockup-theme-resolved="light"] .cmp-col-sector {
  color: #4f46e5;
  background: rgba(99, 102, 241, .10);
}

:root[data-mockup-theme-resolved="light"] .cmp-col-close {
  color: rgba(15, 23, 42, .22);
}

:root[data-mockup-theme-resolved="light"] .cmp-section-hd {
  background: rgba(255, 255, 255, .98);
  border-top-color: rgba(15, 23, 42, .06);
  border-bottom-color: rgba(15, 23, 42, .06);
}

:root[data-mockup-theme-resolved="light"] .cmp-section-hd:hover {
  background: rgba(99, 102, 241, .08);
}

:root[data-mockup-theme-resolved="light"] .cmp-section-title {
  color: rgba(15, 23, 42, .58);
}

:root[data-mockup-theme-resolved="light"] .cmp-section-chevron {
  color: rgba(79, 70, 229, .55);
}

:root[data-mockup-theme-resolved="light"] .cmp-ratio-row {
  border-bottom-color: rgba(15, 23, 42, .05);
}

:root[data-mockup-theme-resolved="light"] .cmp-ratio-label {
  color: rgba(15, 23, 42, .56);
}

:root[data-mockup-theme-resolved="light"] .cmp-ratio-value {
  color: #0f172a;
}

:root[data-mockup-theme-resolved="light"] .cmp-cbt {
  background: rgba(99, 102, 241, .06);
  border-color: rgba(99, 102, 241, .14);
  color: rgba(15, 23, 42, .56);
}

:root[data-mockup-theme-resolved="light"] .cmp-cbt.active,
:root[data-mockup-theme-resolved="light"] .cmp-cbt:hover {
  background: rgba(99, 102, 241, .14);
  border-color: rgba(99, 102, 241, .26);
  color: #4338ca;
}

:root[data-mockup-theme-resolved="light"] .cmp-canvas-wrap {
  background: rgba(248, 250, 252, .96);
  border-color: rgba(99, 102, 241, .12);
}

:root[data-mockup-theme-resolved="light"] .cmp-resize-handle::before {
  background: rgba(99, 102, 241, .24);
}

:root[data-mockup-theme-resolved="light"] .cmp-resize-handle:hover::before,
:root[data-mockup-theme-resolved="light"] .cmp-resize-handle:active::before {
  background: rgba(99, 102, 241, .62);
}

/* ═══════════════════════════════════════════
   COMPARE INSIGHT SUMMARY — Visual Diff Widget
   ═══════════════════════════════════════════ */

/* ── Container ── */
.cmp-insight {
  flex-shrink: 0;
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: linear-gradient(180deg, rgba(124, 58, 237, .04) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: cmpInsightIn .4s ease both;
}

@keyframes cmpInsightIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cmp-insight-head {
  display: flex;
  align-items: center;
  gap: 7px;
}

.cmp-insight-title {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
}

.cmp-insight-title i {
  color: #a78bfa;
  margin-right: 4px;
}

/* ── Winner Badges ── */
.cmp-insight-badges {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.cmp-insight-badges::-webkit-scrollbar { display: none; }

.cmp-insight-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 0.625rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .55);
  transition: border-color .2s, background .2s;
}

.cmp-insight-badge:hover {
  border-color: rgba(124, 58, 237, .25);
  background: rgba(124, 58, 237, .06);
}

.cmp-insight-badge-icon {
  font-size: 0.6875rem;
}

.cmp-insight-badge-metric {
  color: rgba(255, 255, 255, .35);
  font-weight: 700;
}

.cmp-insight-badge-sym {
  font-weight: 800;
  color: #06b6d4;
}

.cmp-insight-badge-val {
  font-weight: 800;
  color: #10b981;
}

/* ── Legend (stock colors) ── */
.cmp-insight-legend {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0 2px;
}

.cmp-insight-legend-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.5625rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
}

.cmp-insight-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Metric Widget Cards (horizontal scroll) ── */
.cmp-insight-bars {
  display: flex;
  flex-direction: row;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.cmp-insight-bars::-webkit-scrollbar { display: none; }

.cmp-insight-bar-row {
  flex: 0 0 160px;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .06);
  scroll-snap-align: start;
  transition: border-color .2s, background .2s;
}

.cmp-insight-bar-row:hover {
  border-color: rgba(124, 58, 237, .2);
  background: rgba(124, 58, 237, .04);
}

.cmp-insight-bar-label {
  font-size: 0.625rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 2px;
}

.cmp-insight-bar-track {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
}

.cmp-insight-bar {
  height: 14px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 6px;
  min-width: 12px;
  transition: width .5s cubic-bezier(.16, 1, .3, 1);
  position: relative;
}

.cmp-insight-bar-text {
  font-size: 0.5625rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .9);
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .4);
}

.cmp-insight-bar--best {
  box-shadow: 0 0 10px -2px currentColor;
}

.cmp-insight-bar-sym {
  position: absolute;
  left: 6px;
  font-size: 0.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .75);
  text-shadow: 0 1px 2px rgba(0, 0, 0, .5);
}

/* ── AI Verdict ── */
.cmp-insight-verdict {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(124, 58, 237, .05);
  border: 1px solid rgba(124, 58, 237, .1);
  font-size: 0.625rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.5;
}

.cmp-insight-verdict i {
  color: #a78bfa;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.cmp-insight-verdict strong {
  color: rgba(255, 255, 255, .8);
  font-weight: 800;
}

/* ── Light theme ── */
:root[data-mockup-theme-resolved="light"] .cmp-insight {
  background: linear-gradient(180deg, rgba(99, 102, 241, .04) 0%, transparent 100%);
  border-bottom-color: rgba(15, 23, 42, .06);
}

:root[data-mockup-theme-resolved="light"] .cmp-insight-title {
  color: rgba(15, 23, 42, .4);
}

:root[data-mockup-theme-resolved="light"] .cmp-insight-badge {
  background: rgba(15, 23, 42, .03);
  border-color: rgba(15, 23, 42, .08);
  color: rgba(15, 23, 42, .6);
}

:root[data-mockup-theme-resolved="light"] .cmp-insight-badge-metric {
  color: rgba(15, 23, 42, .4);
}

:root[data-mockup-theme-resolved="light"] .cmp-insight-badge-sym {
  color: #2563eb;
}

:root[data-mockup-theme-resolved="light"] .cmp-insight-bar-row {
  background: rgba(15, 23, 42, .02);
  border-color: rgba(15, 23, 42, .06);
}

:root[data-mockup-theme-resolved="light"] .cmp-insight-bar-row:hover {
  border-color: rgba(99, 102, 241, .18);
  background: rgba(99, 102, 241, .04);
}

:root[data-mockup-theme-resolved="light"] .cmp-insight-bar-label {
  color: rgba(15, 23, 42, .45);
}

:root[data-mockup-theme-resolved="light"] .cmp-insight-bar-text {
  color: rgba(255, 255, 255, .95);
}

:root[data-mockup-theme-resolved="light"] .cmp-insight-legend-item {
  color: rgba(15, 23, 42, .55);
}

:root[data-mockup-theme-resolved="light"] .cmp-insight-verdict {
  background: rgba(99, 102, 241, .04);
  border-color: rgba(99, 102, 241, .1);
  color: rgba(15, 23, 42, .55);
}

:root[data-mockup-theme-resolved="light"] .cmp-insight-verdict strong {
  color: rgba(15, 23, 42, .85);
}