.tire-booking {
  margin: 40px 0;
  padding: 32px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-family: inherit;
}

.tire-booking__title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #202020;
}

.tire-booking__subtitle {
  margin: 6px 0 10px;
  font-size: 18px;
  color: #ff6f3c;
  font-weight: 600;
}

.tire-booking__hint {
  margin: 0 0 24px;
  color: #6c757d;
  font-size: 15px;
}

.tire-booking__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
}

.tire-booking__field {
  display: flex;
  flex-direction: column;
}

.tire-booking__field label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #202020;
}

.tire-booking__input {
  height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tire-booking__input:focus {
  border-color: #ff6f3c;
  box-shadow: 0 0 0 3px rgba(255, 111, 60, 0.2);
  outline: none;
}

.tire-booking__input[type="date"] {
  padding-right: 12px;
}

.tire-booking__input[type="checkbox"] {
  height: auto;
}

.tire-booking__input--hidden {
  display: none;
}

.tire-booking__field textarea.tire-booking__input {
  height: auto;
  padding: 12px 14px;
  resize: vertical;
  min-height: 120px;
}

.tire-booking__field--full {
  grid-column: span 2;
}

.tire-booking__options {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin: 24px 0;
}

.tire-booking__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #202020;
}

.tire-booking__checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #ff6f3c;
}

.tire-booking__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tire-booking__required {
  color: #ff6f3c;
}

.tire-booking__required-note {
  font-size: 13px;
  color: #6c757d;
}

.tire-booking__submit {
  background: linear-gradient(135deg, #ff8f5a, #ff6f3c);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tire-booking__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 25px rgba(255, 111, 60, 0.25);
}

.tire-booking__submit:active {
  transform: translateY(0);
}

.tire-booking__alert {
  margin-bottom: 24px;
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 15px;
  border: 1px solid transparent;
}

.tire-booking__alert--success {
  background: #e8f8f0;
  border-color: #3ac37a;
  color: #1f7a4d;
}

.tire-booking__alert--error {
  background: #ffeceb;
  border-color: #ff4f52;
  color: #c82c2f;
}

.tire-booking__alert ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.tire-booking__alternatives {
  margin-top: 16px;
}

.tire-booking__alternatives p {
  margin: 0 0 8px;
  font-weight: 600;
  color: #202020;
}

.tire-booking__alternatives ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tire-booking__alternatives li {
  background: rgba(255, 111, 60, 0.08);
  color: #ff6f3c;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.tire-booking__alternatives li:hover {
  background: rgba(255, 111, 60, 0.18);
}

.tire-booking__note {
  margin-top: 6px;
  font-size: 13px;
  color: #6c757d;
}

@media (max-width: 991px) {
  .tire-booking {
    padding: 24px;
  }

  .tire-booking__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .tire-booking__field--full {
    grid-column: span 1;
  }

  .tire-booking__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .tire-booking__submit {
    width: 100%;
    text-align: center;
  }
}
