.detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.6666666667em;
  align-items: start;
}

.vehicle__head {
  margin-bottom: 1.2em;
}
.vehicle__head .vehicle__title {
  display: flex;
  align-items: center;
  gap: 0.6666666667em;
  margin-bottom: 0.4em;
}
.vehicle__head .vehicle__title .title {
  color: #000;
  font-size: 2.6666666667em;
  font-weight: 700;
}
.vehicle__head .vehicle__title .subtitle {
  color: #000;
  font-size: 2.6666666667em;
  font-weight: 400;
}
.vehicle__head .vehicle__price {
  display: flex;
  align-items: center;
  gap: 0.5333333333em;
}
.vehicle__head .vehicle__price .price {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 2.1333333333em;
}
.vehicle__head .vehicle__price .unit {
  color: var(--color-grey-text);
  font-size: 1.0666666667em;
}

.vehicle__main {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-bg-footer);
}
.vehicle__main img {
  display: block;
  width: 100%;
  height: clamp(240px, 36vw, 480px);
  object-fit: cover;
}
.vehicle__main .vehicle__placeholder {
  box-sizing: border-box;
  padding: 0 42%;
  object-fit: contain;
}

.vehicle__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.0666666667em;
  margin-top: 1.0666666667em;
  list-style: none;
}
.vehicle__thumbs li a {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-bg-footer);
}
.vehicle__thumbs img {
  display: block;
  width: 100%;
  height: clamp(84px, 9vw, 130px);
  object-fit: cover;
}

.info__title {
  font-size: 1.6em;
  font-weight: 600;
  margin: 0.9333333333em 0 0.8em;
}

.booking__grid {
  display: grid;
  grid-template-columns: 65% 1fr;
  gap: 1.0666666667em;
  align-items: stretch;
  margin-bottom: 1.8666666667em;
}
.booking__grid--no-total {
  grid-template-columns: 1fr;
}

.booking__dates {
  display: flex;
  flex-direction: column;
  row-gap: 0.9333333333em;
}
.booking__dates .btn {
  margin-top: auto;
}

.booking__total {
  background: var(--color-bg-footer);
  border-radius: 12px;
  padding: 0.8em 1.2em;
  text-align: right;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.booking__total .booking__total--label {
  color: var(--color-grey-text);
  font-size: 1.0666666667em;
  margin-bottom: 0.2em;
}
.booking__total .booking__total--price {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 2.1333333333em;
  line-height: 1.1;
}
.booking__total .booking__total--note {
  color: var(--color-grey-text);
  font-size: 0.9333333333em;
  margin-top: 0.2em;
}
.booking__total .booking__total--note em {
  font-style: normal;
  font-weight: 500;
  color: #000;
}

.specs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2em;
  margin-bottom: 2em;
}

.spec {
  background: var(--color-bg-footer);
  border-radius: 12px;
  padding: 1.6em 1.2em;
  display: flex;
  flex-direction: column;
  row-gap: 0.4em;
}
.spec .icon img {
  width: 22px;
  height: 22px;
  display: block;
  margin-bottom: 0.6666666667em;
}
.spec .title {
  font-weight: 600;
  color: #000;
  line-height: 1.4;
}
.spec .value {
  color: var(--color-grey-text);
  line-height: 1;
}

.equipments__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8em;
  margin-bottom: 3.3333333333em;
}

.equipment {
  display: inline-flex;
  align-items: center;
  gap: 0.6666666667em;
  color: #000;
}
.equipment .icon img {
  width: 18px;
  height: 18px;
  display: block;
}

.description {
  margin-bottom: 2em;
}

.description__field {
  width: 100%;
  display: block;
  background: var(--color-bg-footer);
  border-radius: 12px;
  padding: 1.0666666667em 1.0666666667em;
  color: #000;
  line-height: 1.6;
}

.description__field p {
  margin: 0;
}

.description__field p + p {
  margin-top: 1em;
}

.detail__cta {
  margin-top: 0.5333333333em;
}

@media screen and (max-width: 1224px) {
  .detail {
    grid-template-columns: 1fr;
    gap: 1.8666666667em;
  }
  .vehicle__head .vehicle__price {
    text-align: left;
  }
  .booking__grid {
    grid-template-columns: 1fr;
  }
  .booking__total {
    text-align: left;
    height: auto;
  }
}
@media screen and (max-width: 650px) {
  .vehicle__thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
  .specs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
