.lmc-tool {
  font-size: 13.5px;
  color: #1e1b4b;
}
.lmc-tool * {
  box-sizing: border-box;
}
.lmc-row {
  margin-bottom: 14px;
}
.lmc-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 6px;
}
.lmc-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.lmc-input,
.lmc-select {
  width: 100%;
  height: 42px;
  padding: 0 44px 0 14px;
  border: 1.5px solid #e0e7ff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #1e1b4b;
  background: #fafaff;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  appearance: none;
}
.lmc-input::placeholder {
  color: #c7c9e0;
  font-weight: 500;
}
.lmc-input:focus,
.lmc-select:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
  background: #fff;
}
.lmc-input.lmc-err {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12);
}
.lmc-unit {
  position: absolute;
  right: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
  pointer-events: none;
}
.lmc-select-wrap {
  position: relative;
}
.lmc-select-wrap::after {
  content: "▾";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: #9ca3af;
  pointer-events: none;
}
.lmc-select {
  padding-right: 30px;
  cursor: pointer;
}
.lmc-divider {
  height: 1px;
  background: #e0e7ff;
  margin: 16px 0;
}
.lmc-section-label {
  font-size: 11px;
  font-weight: 700;
  color: #6366f1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.lmc-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.lmc-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 4px;
}
.lmc-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1.5px solid #e0e7ff;
  border-radius: 10px;
  background: #fafaff;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.lmc-check-item.lmc-checked {
  border-color: #6366f1;
  background: #f0f0ff;
}
.lmc-check-item input {
  width: 14px;
  height: 14px;
  accent-color: #4338ca;
  cursor: pointer;
}
.lmc-check-label {
  font-size: 12px;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  line-height: 1.2;
}
.lmc-check-price {
  font-size: 11px;
  color: #9ca3af;
  display: block;
}
.lmc-btn {
  width: 100%;
  height: 44px;
  margin-top: 6px;
  background: #4338ca;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.lmc-btn:hover { background: #3730a3; }
.lmc-btn:active { transform: scale(0.98); }
.lmc-results { margin-top: 16px; }
.lmc-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.lmc-card {
  background: #f8f9ff;
  border: 1.5px solid #e0e7ff;
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}
.lmc-card.lmc-active {
  background: #fff;
  border-color: #4338ca;
}
.lmc-card-label {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  margin-bottom: 6px;
  display: block;
}
.lmc-card-val {
  font-size: 20px;
  font-weight: 700;
  color: #1e1b4b;
  line-height: 1;
}
.lmc-card-sub {
  display: block;
  font-size: 10.5px;
  color: #9ca3af;
  margin-top: 4px;
  min-height: 13px;
}
.lmc-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.lmc-cmp-card {
  border-radius: 10px;
  padding: 12px 14px;
  border: 1.5px solid #e0e7ff;
  background: #f8f9ff;
}
.lmc-cmp-card.lmc-active { background: #fff; }
.lmc-cmp-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.lmc-cmp-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 8px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.lmc-tag-pro { background: #e0e7ff; color: #3730a3; }
.lmc-tag-diy { background: #dcfce7; color: #166534; }
.lmc-cmp-name { font-size: 12px; font-weight: 700; color: #4b5563; }
.lmc-cmp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f8;
}
.lmc-cmp-row:last-child { border-bottom: none; }
.lmc-cmp-key { font-size: 11.5px; color: #9ca3af; }
.lmc-cmp-val { font-size: 12px; font-weight: 700; color: #1e1b4b; }
.lmc-errmsg { font-size: 11.5px; color: #ef4444; margin-top: 5px; display: none; }
.lmc-note {
  font-size: 11.5px;
  line-height: 1.5;
  color: #9ca3af;
  margin: 14px 0 0;
  text-align: center;
}
.lmc-unit-toggle {
  display: flex;
  gap: 4px;
  margin-bottom: 6px;
}
.lmc-utab {
  flex: 1;
  height: 30px;
  border: 1.5px solid #e0e7ff;
  border-radius: 7px;
  background: #fafaff;
  font-size: 11.5px;
  font-weight: 600;
  color: #9ca3af;
  cursor: pointer;
  transition: all 0.15s;
}
.lmc-utab.lmc-utab-active {
  background: #4338ca;
  color: #fff;
  border-color: #4338ca;
}