.car-view {
  flex: 0 0 calc(100% / 4);
  max-width: 330px;
  background: #1c1c1c;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
  position: relative;
}

.car-view-header {
  display: flex;
  align-items: center;
  padding: 12px 0px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background: rgba(0,0,0,0.4);
  white-space: nowrap;
}
.car-view-name {
  font-weight: 600;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 55%;
  margin-left: 12px;
}
.car-view-nickname {
  color: #aaa;
  font-weight: 400;
  font-size: 12px;
  margin-left: 4px;
  margin-bottom: 2px;
}
.car-view-price {
  color: #ec5e1c;
  font-weight: 500;
  font-size: 15px;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: 10px;
  white-space: nowrap;
}

.car-view-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.car-view-details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 18px 20px;
  background-color: #181818;
  border-top: 1px solid #2a2a2a;
  border-radius: 0 0 18px 18px;
}

.car-view-detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0;
}

.car-view-detail-name {
  color: #a0a0a0;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 4px;
}

.car-view-detail-value {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}