/* =====================================
   ROOT WRAPPER
===================================== */
#gtrip-booking-root {
  max-width: 520px;
  margin: 0 auto 60px;
  padding: 20px;
}

/* =====================================
   FIELD BLOCK
===================================== */
.gtrip-field {
  margin-bottom: 18px;
}

.gtrip-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

/* =====================================
   INPUT + SELECT
===================================== */
#gtrip-route,
#gtrip-date,
#gtrip-pax,
.gtrip-input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  font-size: 15px;
  border-radius: 12px;
  border: 1.5px solid #e5e5e5;
  background: #fff;
  box-sizing: border-box;
}

#gtrip-route:focus,
#gtrip-date:focus,
#gtrip-pax:focus,
.gtrip-input:focus {
  outline: none;
  border-color: #2ec4b6;
  box-shadow: 0 0 0 3px rgba(46,196,182,0.15);
}

/* =====================================
   SEGMENTED (Trip Type)
===================================== */
.gtrip-segmented {
  display: flex;
  background: #f2fffc;
  border-radius: 14px;
  padding: 4px;
}

.trip-btn {
  flex: 1;
  height: 42px;
  border: none;
  background: transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  color: #333;
  transition: all 0.2s ease;
}

.trip-btn.active {
  background: #2ec4b6;
  color: #fff;
}

/* =====================================
   PASSENGERS
===================================== */
.gtrip-passengers {
  margin-top: 6px;
}

.pax-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.pax-control {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pax-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #2ec4b6;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

.pax-btn:active {
  transform: scale(0.95);
}

#gtrip-adult-count,
#gtrip-child-count {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
}

/* =====================================
   VEHICLE CARDS
===================================== */

#vehicle-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}



.vehicle-card {
  width: 100%;
  min-width: unset;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  background: #fff;
  transition: all 0.2s ease;
}

.vehicle-card:hover {
  border-color: #2ec4b6;
  background: #f2fffc;
}

.vehicle-card.selected {
  border-color: #2ec4b6;
  background: #eafff6;
}

#vehicle-cards .vehicle-card:not(.selected) {
  opacity: 0.7;
}

.vehicle-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
}

.vehicle-meta,
.vehicle-spec {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 6px;
}

.vehicle-image {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.vehicle-image img {
  max-height: 90px;
  max-width: 100%;
  object-fit: contain;
}
.vehicle-placeholder {
  margin-top: 8px;
  font-size: 14px;
  color: #777;
}



/* =====================================
   TOTAL
===================================== */
.gtrip-total-block {
  margin-top: 16px;
  margin-bottom: 24px;
}

#gtrip-total-price {
  font-size: 22px;
  font-weight: 700;
  margin-top: 6px;
}

/* =====================================
   CONTINUE BUTTON
===================================== */
#btn-continue-payment {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #2ec4b6;
  color: #fff;
}

#btn-continue-payment:disabled {
  background: #cfd8dc;
  cursor: not-allowed;
}

/* =====================================
   HIDE FOOTER (Booking only)
===================================== */
body.page-id-6 footer {
  display: none !important;
}
.summary-return-date {
  font-size: 14px;
  color: #6b7280;
  margin-top: 4px;
}

