.legal,.legal a{font-size: 12px;color:#000;margin-bottom:100px;}
.cmp-section { display: flex; height: 100%; }
.cmp-left { width: 38%; flex-shrink: 0; }
.cmp-right {
  flex: 1; background: #fff; display: flex; flex-direction: column;
  justify-content: center; padding: 60px 72px; overflow-y: auto;
}

/* Room tabs */
.cmp-roomTabs { display: flex; gap: 4px; margin-bottom: 28px; border-bottom: 1px solid #e4e9ee; }
.cmp-roomTab {
  position: relative; padding: 10px 22px; background: #f4f6f8; border: 1px solid #e4e9ee;
  border-bottom: none; border-radius: 10px 10px 0 0; font-size: 12px; font-weight: 600;
  letter-spacing: 0.3px; color: #9aa5b1; cursor: pointer; transition: background 0.15s, color 0.15s; white-space: nowrap;
}
.cmp-roomTab:hover { background: #edf0f4; color: #5a6a7a; }
.cmp-roomTab.cmp-roomTabActive {
  background: #fff; color: #12203a; border-color: #d4dbe3;
  z-index: 1; margin-bottom: -1px; padding-bottom: 11px;
}
.cmp-roomTab.cmp-roomTabActive::after {
  content: ''; position: absolute; bottom: 0; left: 8px; right: 8px;
  height: 3px; border-radius: 3px 3px 0 0; background: var(--tab-accent, #5b88a8);
}

.cmp-tag { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #5b88a8; margin-bottom: 14px; }
.cmp-title { font-size: 38px; font-weight: 800; color: #12203a; line-height: 1.15; margin-bottom: 20px; }

.cmp-specSummary { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.cmp-summaryItem { display: flex; flex-direction: row; align-items: center; gap: 14px; }
.cmp-summaryIcon {
  position: relative;
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid #d4dbe3;
  display: flex; align-items: center; justify-content: center; color: #7a8899; flex-shrink: 0;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cmp-summaryIcon svg { width: 22px; height: 22px; }

.cmp-summaryIcon:hover {
  background: #12203a;
  border-color: #12203a;
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(18, 32, 58, 0.25);
}

.cmp-summaryMeta { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.cmp-summaryLabel { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #9aa5b1; }
.cmp-summaryValue { font-size: 14px; font-weight: 700; color: #12203a; }


.cmp-summaryTooltip {
  display: none;
  min-width: 220px; max-width: 600px;
  padding: 16px 18px;
  background: #12203a; color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(18, 32, 58, 0.35);
  flex-direction: column; gap: 8px;
}
.cmp-summaryTooltipTitle { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #9fb0c8; }
.cmp-summaryTooltipText { font-size: 15px; line-height: 1.45; color: #fff; }

.cmp-summaryTooltip.cmp-tooltipFixed {
  position: fixed;
  display: flex;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s;
  z-index: 2000;
}
.cmp-summaryTooltip.cmp-tooltipFixed.cmp-tooltipVisible {
  opacity: 1; visibility: visible;
}

.cmp-summaryTooltipTable { margin-top: 4px; }
.cmp-tableTitle { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.3; }
.cmp-summaryTooltipTable table { width: 100%; border-collapse: collapse; font-size: 13px; }
.cmp-summaryTooltipTable th,
.cmp-summaryTooltipTable td { padding: 6px 10px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.12); white-space: nowrap; }
.cmp-summaryTooltipTable th { color: #9fb0c8; font-weight: 700; text-transform: uppercase; font-size: 11px; letter-spacing: 0.5px; }
.cmp-summaryTooltipTable tr:last-child td { border-bottom: none; }
.cmp-summaryTooltipTable .cmp-tableRowActive td { background: rgba(91, 136, 168, 0.35); color: #fff; font-weight: 700; }
.cmp-summaryTooltipTable .cmp-tableRowActive td:first-child { box-shadow: inset 3px 0 0 #5b88a8; }

.cmp-sliderBlock { margin-top: 6px; }
.cmp-sliderHead { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 10px; }
.cmp-sliderName { font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: #9fb0c8; }
.cmp-sliderVal { font-size: 16px; font-weight: 800; color: #fff; }
.cmp-sliderTrack {
  position: relative; height: 8px; border-radius: 5px;
  background: linear-gradient(to right, #27ae60, #e8c14c, #e74c3c);
}
.cmp-sliderMark {
  position: absolute; top: 50%; width: 16px; height: 16px;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: #fff; border: 3px solid #12203a; box-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.cmp-sliderScale { display: flex; justify-content: space-between; margin-top: 8px; font-size: 11px; color: #9fb0c8; }

.cmp-dots { display: flex; gap: 5px; }
.cmp-dot { width: 9px; height: 9px; border-radius: 50%; background: #e0e5ea; }
.cmp-dot.cmp-filled { background: #12203a; }
.cmp-dotGreen { width: 9px; height: 9px; border-radius: 50%; background: #27ae60; transition: background 0.2s; }
.cmp-dotRed { width: 9px; height: 9px; border-radius: 50%; background: #e74c3c; transition: background 0.2s; }

/* Cards */
.cmp-cards { display: flex; gap: 20px; flex-wrap: wrap; }
.cmp-card {
  flex: 1; min-width: 180px; max-width: 260px; border: 1.5px solid #d4dbe3;
  padding: 24px 20px; display: flex; flex-direction: column; gap: 16px;
}
.cmp-card.cmp-current { border-color: #12203a; }
.cmp-cardTag { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #5b88a8; }
.cmp-cardName { font-size: 16px; font-weight: 700; color: #12203a; line-height: 1.3; }
.cmp-cardSpecRow { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid #f0f2f4; }
.cmp-cardSpecRow:first-child { border-top: 1px solid #f0f2f4; }
.cmp-cardSpecLabel { font-size: 9px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: #9aa5b1; flex: 1; }
.cmp-cardSpecValue { font-size: 11px; font-weight: 700; color: #12203a; }
.cmp-cardImage { width: 100%; aspect-ratio: 3/4; background: #f4f6f8; border-radius: 4px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.cmp-cardImage img { width: 100%; height: 100%; object-fit: contain; }

.cmp-chooseBtn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 16px; border: 1.5px solid #12203a; background: transparent;
  color: #12203a; font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; cursor: pointer; transition: background 0.2s, color 0.2s;
}
.cmp-chooseBtn:hover { background: #12203a; color: white; }

.cmp-removeBtn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 14px; border: 1.5px solid #e0343420; background: transparent;
  color: #c0392b; font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; cursor: pointer; transition: background 0.2s, color 0.2s;
}
.cmp-removeBtn:hover { background: #c0392b; color: white; }

.cmp-cardActions { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }

/* Add card */
.cmp-addCard {
  flex: 1; min-width: 180px; max-width: 260px; border: 1.5px dashed #c8d0d8;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; cursor: pointer; min-height: 380px; transition: border-color 0.2s;
}
.cmp-addCard:hover { border-color: #7a8899; }
.cmp-addIcon {
  width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid #c8d0d8;
  display: flex; align-items: center; justify-content: center; color: #b0bbc5;
  transition: border-color 0.2s, color 0.2s;
}
.cmp-addCard:hover .cmp-addIcon { border-color: #7a8899; color: #7a8899; }
.cmp-addLabel { font-size: 11px; color: #b0bbc5; letter-spacing: 0.5px; }

/* Finalizar button */
.cmp-finalizarBtn {
  align-self: flex-start; margin-top: 32px; display: inline-flex; align-items: center;
  justify-content: center; padding: 12px 32px; border: none; background: #c0392b;
  color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; cursor: pointer; transition: background 0.2s; 
}
.cmp-finalizarBtn:hover { background: #96281b; }

/* Popup */
.cmp-popupOverlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center; z-index: 1000; backdrop-filter: blur(4px);
}
.cmp-popup {
  background: #fff; border-radius: 12px; padding: 32px; width: 480px;
  max-width: 90vw; max-height: 80vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.cmp-popupHeader { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.cmp-popupTitle { font-size: 20px; font-weight: 800; color: #12203a; }
.cmp-popupClose {
  background: none; border: none; cursor: pointer; color: #9aa5b1;
  display: flex; align-items: center; justify-content: center;
  padding: 4px; border-radius: 6px; transition: background 0.15s, color 0.15s;
}
.cmp-popupClose:hover { background: #f0f2f4; color: #12203a; }
.cmp-popupSubtitle { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #5b88a8; margin-bottom: 20px; }
.cmp-popupEmpty { font-size: 13px; color: #9aa5b1; text-align: center; padding: 24px 0; }
.cmp-popupGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.cmp-popupItem {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 12px 8px; background: #f7f9fb; border: 1.5px solid #e4e9ee;
  border-radius: 10px; cursor: pointer; transition: border-color 0.15s, background 0.15s;
}
.cmp-popupItem:hover { border-color: #12203a; background: #f0f4f8; }
.cmp-popupThumb { width: 100%; aspect-ratio: 3/4; object-fit: contain; border-radius: 4px; }
.cmp-popupLabel { font-size: 11px; font-weight: 600; color: #12203a; text-align: center; line-height: 1.3; }
