/* -------------------------------------------------
   VARIABELEN
------------------------------------------------- */
/* -------------------------------------------------
   STYLING
------------------------------------------------- */
.cars-reservation {
  position: relative;
  background-color: #0f0f0f;
  color: #fff;
  height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100vw;
  overflow-x: hidden;
}
.cars-reservation .cars-reservation-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4rem;
}
@media (max-width: 900px) {
  .cars-reservation .cars-reservation-wrapper {
    flex-direction: column;
    gap: 3rem;
  }
}
.cars-reservation {
  /* ====== Linkerkant: geselecteerde auto ====== */
}
.cars-reservation .cars-reservation-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  padding-top: 4rem;
}
@media (max-width: 900px) {
  .cars-reservation .cars-reservation-wrapper {
    flex-direction: column;
    gap: 3rem;
  }
}
.cars-reservation .cars-reservation-wrapper {
  /* ====== Linkerkant: geselecteerde auto ====== */
}
.cars-reservation .cars-reservation-wrapper .cars-reservation-selected-car {
  flex: 1;
}
.cars-reservation .cars-reservation-wrapper .cars-reservation-selected-car .car-card--reservation {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
@media (max-width: 768px) {
  .cars-reservation .cars-reservation-wrapper .cars-reservation-selected-car .car-card--reservation {
    flex-direction: column;
  }
}
.cars-reservation .cars-reservation-wrapper .cars-reservation-selected-car .car-card--reservation .image {
  flex: 0 0 180px;
  display: flex;
}
.cars-reservation .cars-reservation-wrapper .cars-reservation-selected-car .car-card--reservation .image img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}
.cars-reservation .cars-reservation-wrapper .cars-reservation-selected-car .car-card--reservation .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cars-reservation .cars-reservation-wrapper .cars-reservation-selected-car .car-card--reservation .info .car-card__title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.25rem;
  margin-top: 0;
}
.cars-reservation .cars-reservation-wrapper .cars-reservation-selected-car .car-card--reservation .info .car-card__specs {
  font-size: 0.95rem;
  color: rgb(127, 127, 127);
  margin: 0.25rem 0;
  line-height: 1.4;
}
.cars-reservation .cars-reservation-wrapper .cars-reservation-selected-car .car-card--reservation .info .car-card__price {
  font-weight: 700;
  color: #c2a06b;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}
.cars-reservation .cars-reservation-wrapper .cars-reservation-selected-car .car-card--reservation .info .car-card__deposit {
  font-size: 1.5rem;
  color: #fff;
  margin: 0;
}
.cars-reservation .cars-reservation-wrapper {
  /* ====== Rechterkant: formulier ====== */
}
.cars-reservation .cars-reservation-wrapper .cars-reservation-form-wrapper {
  flex: 0 0 45%;
  background: #0f0f0f;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .cars-reservation .cars-reservation-wrapper .cars-reservation-form-wrapper {
    flex: 1;
    width: 100%;
    padding-bottom: 2rem;
  }
}
.cars-reservation .cars-reservation-wrapper .cars-reservation-form-wrapper h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.cars-reservation .cars-reservation-wrapper .cars-reservation-form-wrapper p {
  color: rgb(127, 127, 127);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.cars-reservation .cars-reservation-wrapper .cars-reservation-form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cars-reservation .cars-reservation-wrapper .cars-reservation-form-wrapper form .form-row {
  display: flex;
  gap: 1.5rem;
}
.cars-reservation .cars-reservation-wrapper .cars-reservation-form-wrapper form .form-row.two-cols .form-field {
  flex: 1;
}
@media (max-width: 700px) {
  .cars-reservation .cars-reservation-wrapper .cars-reservation-form-wrapper form .form-row {
    flex-direction: column;
  }
}
.cars-reservation .cars-reservation-wrapper .cars-reservation-form-wrapper form .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cars-reservation .cars-reservation-wrapper .cars-reservation-form-wrapper form .form-field label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: rgb(127, 127, 127);
}
.cars-reservation .cars-reservation-wrapper .cars-reservation-form-wrapper form .form-field label input[type=text],
.cars-reservation .cars-reservation-wrapper .cars-reservation-form-wrapper form .form-field label input[type=tel],
.cars-reservation .cars-reservation-wrapper .cars-reservation-form-wrapper form .form-field label input[type=email] {
  background: transparent;
  border: none;
  padding: 0.75rem 0;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cars-reservation .cars-reservation-wrapper .cars-reservation-form-wrapper form .form-field label input[type=text]:focus,
.cars-reservation .cars-reservation-wrapper .cars-reservation-form-wrapper form .form-field label input[type=tel]:focus,
.cars-reservation .cars-reservation-wrapper .cars-reservation-form-wrapper form .form-field label input[type=email]:focus {
  outline: none;
  border-color: #c2a06b;
}
.cars-reservation .cars-reservation-wrapper .cars-reservation-form-wrapper form .form-field:has(.cars-payment-methods) label:not(.payment-option) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cars-reservation .cars-reservation-wrapper .cars-reservation-form-wrapper form .cars-payment-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0;
}
.cars-reservation .cars-reservation-wrapper .cars-reservation-form-wrapper form .cars-payment-methods label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  color: rgb(127, 127, 127);
  font-size: 0.95rem;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  flex-direction: row;
  align-items: center;
}
.cars-reservation .cars-reservation-wrapper .cars-reservation-form-wrapper form .cars-payment-methods label input[type=radio] {
  accent-color: #c2a06b;
  margin: 0;
}
.cars-reservation .cars-reservation-wrapper .cars-reservation-form-wrapper form .button {
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.cars-reservation .cars-reservation-wrapper .cars-reservation-form-wrapper form .form-submit {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cars-reservation .cars-reservation-wrapper .cars-reservation-form-wrapper form .form-submit .total {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
}
.cars-reservation .cars-reservation-header {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1em 0;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid;
  border-color: rgba(255, 255, 255, 0.1);
}

/*# sourceMappingURL=style.css.map */
