.crc-car-wizard-wrapper {
  margin: 2rem 0;
  font-family: inherit;
}

.crc-car-wizard {
  border-radius: 12px;
  padding: 1.5rem;
  background: #f7f7f9;
  border: 1px solid #e1e1e6;
}

/* Steps header */

.crc-steps-header {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.crc-step-item {
  flex: 1 1 100%;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #e5e5f0;
  color: #555;
  text-align: center;
}

.crc-step-item.is-active {
  background: #2f80ed;
  color: #fff;
}

.crc-step-item.is-done {
  background: #27ae60;
  color: #fff;
}

/* Content */

.crc-step-content {
  margin-bottom: 1rem;
}

.crc-step-title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

/* Cards */

.crc-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.crc-card {
  border: 1px solid #d9d9e5;
  border-radius: 10px;
  padding: 0.9rem 1rem;
  background: #fff;
  cursor: pointer;
  text-align: center;
  font-size: 0.95rem;
  transition: all 0.18s ease;
}

.crc-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.crc-card.is-selected {
  border-color: #2f80ed;
  box-shadow: 0 0 0 2px rgba(47, 128, 237, 0.12);
}

/* Cars grid */

.crc-car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.crc-car-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e1e1e6;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.crc-car-image img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.crc-car-body {
  padding: 0.85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  height: 100%;
}

.crc-car-title {
  margin: 0;
  font-size: 1rem;
}

/* Meta */

.crc-car-meta {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0.5rem;
  font-size: 0.85rem;
  color: #555;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
}

.crc-car-meta li {
  white-space: nowrap;
}

/* Price & days */

.crc-car-price-wrap {
  margin-top: auto;
  border-top: 1px dashed #e0e0eb;
  padding-top: 0.5rem;
}

.crc-price-line {
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.crc-price-value {
  font-size: 1.1rem;
}

.crc-price-suffix {
  font-size: 0.85rem;
  color: #777;
}

.crc-rent-controls {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
}

.crc-days-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.crc-days-input {
  width: 70px;
  padding: 0.25rem 0.4rem;
  border-radius: 6px;
  border: 1px solid #d0d0dd;
  font-size: 0.85rem;
}

.crc-total-line {
  margin-top: 0.3rem;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Buttons */

.crc-btn {
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.crc-btn-primary {
  background: #2f80ed;
  color: #fff;
}

.crc-btn-primary:hover {
  background: #2566be;
}

.crc-btn-secondary {
  background: #ffffff;
  border: 1px solid #c6c6d6;
  color: #444;
}

.crc-btn-link {
  background: transparent;
  color: #666;
  text-decoration: underline;
}

/* Actions bar */

.crc-actions-bar {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

/* Misc */

.crc-empty,
.crc-info {
  font-size: 0.9rem;
  color: #666;
}

.crc-car-more {
  margin-top: 0.6rem;
}

/* Responsive tweaks */

@media (min-width: 640px) {
  .crc-step-item {
    flex: 1 1 calc(25% - 0.5rem);
  }
}
