@media (min-width: 769px) {
  .page-title {
    padding-top: 190px;
  }
}

.spinner {
  position: absolute;
  width: 9px;
  height: 9px;
}

.spinner div {
  position: absolute;
  width: 50%;
  height: 150%;
  background: #000000;
  transform: rotate(calc(var(--rotation) * 1deg))
    translate(0, calc(var(--translation) * 1%));
  animation: spinner-fzua35 1s calc(var(--delay) * 1s) infinite ease;
}

.spinner div:nth-child(1) {
  --delay: 0.1;
  --rotation: 36;
  --translation: 150;
}

.spinner div:nth-child(2) {
  --delay: 0.2;
  --rotation: 72;
  --translation: 150;
}

.spinner div:nth-child(3) {
  --delay: 0.3;
  --rotation: 108;
  --translation: 150;
}

.spinner div:nth-child(4) {
  --delay: 0.4;
  --rotation: 144;
  --translation: 150;
}

.spinner div:nth-child(5) {
  --delay: 0.5;
  --rotation: 180;
  --translation: 150;
}

.spinner div:nth-child(6) {
  --delay: 0.6;
  --rotation: 216;
  --translation: 150;
}

.spinner div:nth-child(7) {
  --delay: 0.7;
  --rotation: 252;
  --translation: 150;
}

.spinner div:nth-child(8) {
  --delay: 0.8;
  --rotation: 288;
  --translation: 150;
}

.spinner div:nth-child(9) {
  --delay: 0.9;
  --rotation: 324;
  --translation: 150;
}

.spinner div:nth-child(10) {
  --delay: 1;
  --rotation: 360;
  --translation: 150;
}

@keyframes spinner-fzua35 {
  0%,
  10%,
  20%,
  30%,
  50%,
  60%,
  70%,
  80%,
  90%,
  100% {
    transform: rotate(calc(var(--rotation) * 1deg))
      translate(0, calc(var(--translation) * 1%));
  }

  50% {
    transform: rotate(calc(var(--rotation) * 1deg))
      translate(0, calc(var(--translation) * 1.5%));
  }
}

.stripe-card-element {
  padding: 10px 20px;
  border: 1px solid #e3e3e3;
  border-radius: 3px;
  background-color: #ffffff;
  margin-bottom: 20px;
}

.payment-method-section {
  margin-bottom: 15px;
}

.card-input-section {
  margin-bottom: 12px;
}

.card-input-section label {
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
  font-size: 14px;
}

.form-control {
  padding: 8px 15px;
  border: 1px solid #e3e3e3;
  border-radius: 3px;
  background-color: #ffffff;
  width: 100%;
  height: 40px;
}

.booking-info {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  margin: 15px 0;
}

.info-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

.info-label {
  color: #666;
  font-weight: 500;
}

.info-value {
  color: #333;
  font-weight: 600;
}

.package-summary {
  background: white;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
}

.package-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
}

.package-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.price-notice {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  margin: 15px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.price-notice h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
}

.price-notice p {
  margin: 0;
  opacity: 0.9;
  font-size: 14px;
}

.billing-summary-box {
  background: white;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.price-breakdown {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  margin: 15px 0;
}

.price-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 14px;
}

.price-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 16px;
  color: #007bff;
  border-top: 2px solid #e3e3e3;
  padding-top: 8px;
  margin-top: 8px;
}

.checkmark {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 18px;
  height: 18px;
  background: #007bff;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
}

.vehicle-option.selected .checkmark {
  display: flex;
}

.lock-indicator {
  display: inline-block;
  background: #28a745;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 10px;
  margin-left: 8px;
  font-weight: 500;
}

.booking-summary {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e3e3e3;
}
.summary-item:last-child {
  border-bottom: none;
  font-weight: bold;
  font-size: 18px;
}
.readonly-field {
  background-color: #f5f5f5 !important;
  cursor: not-allowed;
}

.payment-amount-section {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  margin: 15px 0;
}

.payment-option {
  background: white;
  border: 2px solid #e3e3e3;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
}

.payment-option:hover {
  border-color: #007bff;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
}

.payment-option.selected {
  border-color: #007bff;
  background: #f0f7ff;
}

.payment-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.payment-option-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5px;
  padding-right: 35px; /* Add space for checkmark */
}

.payment-option-header > div {
  display: flex;
  flex-direction: column;
}

.payment-option-title {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  color: #333;
}

.payment-option-amount {
  font-weight: 700;
  font-size: 18px;
  color: #007bff;
}

.payment-option-description {
  font-size: 13px;
  color: #666;
  margin-top: 5px;
}

.recommended-badge {
  display: inline-block;
  background: #28a745;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 10px;
  margin-left: 8px;
  font-weight: 500;
}

.payment-checkmark {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
  background: #007bff;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}

.payment-option.selected .payment-checkmark {
  display: flex;
}

/* Bank Payment Styles */
.bank-details-section {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-top: 15px;
  border: 1px solid #e0e0e0;
}

.bank-details-section h5 {
  color: #333;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.bank-info-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
}

.bank-info-item:last-child {
  border-bottom: none;
}

.bank-info-label {
  font-weight: 600;
  color: #666;
}

.bank-info-value {
  color: #333;
  font-weight: 500;
}

.bank-qr-image {
  text-align: center;
  margin-top: 15px;
  padding: 15px;
  background: white;
  border-radius: 8px;
}

.bank-qr-image img {
  max-width: 250px;
  height: auto;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
}

.slip-upload-section {
  margin-top: 20px;
  padding: 15px;
  background: white;
  border-radius: 8px;
  border: 2px dashed #007bff;
}

.slip-upload-section label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
}

.slip-upload-section input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.payment-note {
  background: #fff3cd;
  border: 1px solid #ffc107;
  padding: 12px;
  border-radius: 6px;
  margin-top: 15px;
  font-size: 14px;
  color: #856404;
}

/* Payment Unavailable Alert */
.alert {
  margin-bottom: 20px;
}

.alert-warning {
  background: #fff3cd;
  border: 1px solid #ffc107;
  color: #856404;
}

.alert-warning h3 {
  color: #856404;
  font-weight: 600;
}

.alert-warning h4 {
  color: #333;
  font-weight: 600;
}

.alert-warning p {
  line-height: 1.6;
}

.alert .theme-btn {
  display: inline-block;
  padding: 12px 30px;
  margin: 5px;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.alert .theme-btn i {
  margin-right: 8px;
}
