.car-rental-item-price-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 24px;
  background-color: #DE2E2F;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 12px auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: background-color 0.3s, box-shadow 0.3s, transform 0.2s;
  width: auto;           /* Let the content define the width */
  min-width: unset;      /* Remove any minimum width */
  max-width: 100%;       /* Prevent overflow */
  white-space: nowrap;   /* Prevent line breaks inside */
}

.car-rental-item-price-wrap:hover {
  background-color: #b71c1c;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transform: scale(1.04);
}

.car-rental-item-price {
  color: #fff;
  font-size: 1.8em;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 600px) {
  .car-rental-item-price-wrap {
    font-size: 14px;
    padding: 8px 16px;
  }
  .car-rental-item-price {
    font-size: 1.2em;
  }
}