/* ============================================
   COUPON SECTION (2025-11-27)
   ============================================ */

.platform-coupon-section .coupon-input-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

.platform-coupon-section .coupon-input-row .platform-field__input {
  flex: 3;
  min-width: 0;
  text-transform: uppercase;
  border-radius: 24px;
}

.platform-coupon-section .coupon-input-row .platform-btn {
  flex-shrink: 0;
  min-width: 100px;
  max-width: 120px;
  padding: 12px 16px;
  font-size: 14px;
}

.coupon-message {
  display: none;
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
}

.coupon-message.success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.coupon-message.error {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.coupon-message.info {
  background: #d1ecf1;
  border: 1px solid #bee5eb;
  color: #0c5460;
}

.coupon-applied {
  display: none;
  margin-top: 12px;
  padding: 12px 16px;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
}

.coupon-applied.show {
  display: flex;
}

#coupon-applied-text {
  color: #155724;
  font-weight: 500;
  font-size: 13px;
}

.coupon-applied-text {
  font-size: 12px;
  color: #155724;
}

.coupon-remove-btn {
  background: #dc3545;
  color: white;
  border: none;
  padding: 3px 8px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 11px;
}

/* Coupon discount display */
.coupon-discount-display {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed #ccc;
}

.coupon-discount-row,
.coupon-new-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  direction: rtl;
}

.coupon-discount-label,
.coupon-new-total-label {
  font-size: 14px;
  color: #333;
}

.coupon-discount-amount {
  font-size: 16px;
  font-weight: 600;
  color: #28a745;
}

.coupon-new-total-row {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 2px solid #333;
}

.coupon-new-total-label {
  font-size: 16px;
  font-weight: 700;
}

.coupon-new-total {
  font-size: 20px;
  font-weight: 700;
  color: #0073aa;
}

@media (max-width: 480px) {
  .platform-coupon-section .coupon-input-row {
    flex-direction: column;
  }

  .platform-coupon-section .coupon-input-row .platform-btn {
    width: 100%;
  }
}
/* =============================================================================
   Platform Forms - Unified Design System
   Based on design-tokens.css variables
   Supports: Auth, Verify, Passengers, Summary, Payment forms
   ============================================================================= */

/* Form Container */
.platform-form__container,
.platform-form-container {
  max-width: 780px;
  margin: 20px auto;
  padding: 30px;
  background: rgba(227, 242, 253, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(224, 234, 255, 0.811);
  border-radius: 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  direction: rtl;
}

/* Form Title */
.platform-form-container .form-title,
.platform-form-auth .form-title {
  font-size: 20px !important;
  font-weight: 600;
  color: #1f2d3d;
  margin-bottom: 30px;
  font-family: Verdana, sans-serif;
  line-height: 1.4;
  text-align: center;
  max-width: 100%;
}

/* Field Container */
.platform-field,
.platform-form-auth .platform-field {
  margin-bottom: 20px;
  position: relative;
}

/* Field Label */
.platform-field__label,
.platform-field label,
.platform-form-auth label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1f2d3d;
  margin-bottom: 8px;
  font-family: Verdana, sans-serif;
}

/* Input Wrapper (for icons) */
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* Input Icon (right side) */
.input-icon {
  position: absolute;
  right: 14px;
  color: #2274b5;
  pointer-events: none;
  z-index: 1;
}

/* Input Field */
.platform-field__input,
.input-field,
.platform-form-auth input[type="tel"],
.platform-form-auth input[type="text"],
.platform-form-auth input[type="email"],
.platform-form-verify input[type="text"],
.platform-passengers input[type="text"],
.platform-passengers input[type="email"],
.platform-passengers input[type="date"],
.platform-passengers select,
.platform-form-destination input[type="date"],
.platform-form-destination select {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 16px;
  font-size: 16px;
  color: #1f2d3d;
  outline: none;
  transition: all 0.2s;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.2;
}

.platform-field__input::placeholder,
.input-field::placeholder {
  color: #7a8aa0;
}

.platform-field__input:focus,
.input-field:focus,
.platform-form-auth input:focus {
  box-shadow: 0 0 0 3px rgba(34, 116, 181, 0.1);
}

/* Valid State */
.input-field.valid {
  border: 2px solid #f9c21a;
  padding-right: 42px;
  padding-left: 42px;
}

/* Validation Check Icon (left side) */
.validation-check {
  position: absolute;
  left: 14px;
  color: #f9c21a;
  display: none;
}

.input-field.valid ~ .validation-check {
  display: block;
  animation: checkIn 0.3s ease;
}

@keyframes checkIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Checkbox Field - Summary page wrapper */
.platform-consent {
  background: rgba(255, 255, 255, 0.695);
  border: 1px solid rgba(64, 150, 203, 0.3);
  border-radius: 16px;
  padding: 20px;
  margin-top: 40px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(70, 70, 70, 0.12);
}

/* Checkbox Field */
.platform-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 0;
}

.platform-checkbox input[type="checkbox"],
.platform-checkbox-label input[type="checkbox"],
.platform-consent input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  accent-color: #2274b5 !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  margin-top: 2px !important;
  margin-left: 0 !important;
}

.platform-checkbox label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: #1f2d3d;
  line-height: 1.5;
  cursor: pointer;
  font-family: Helvetica, Arial, sans-serif;
  margin-bottom: 0;
}

.platform-checkbox a {
  color: #175d91;
  text-decoration: none;
  font-weight: 600;
}

.platform-checkbox a:hover {
  text-decoration: underline;
}

/* Button Container */
.platform-form__actions,
.platform-actions {
  margin-top: 20px;
  margin-bottom: 24px;
}

/* Button Base */
.platform-btn,
.platform-form__btn,
.platform-btn--primary,
.platform-btn-primary {
  width: 100%;
  padding: 14px;
  background: #f9c21a;
  color: #1f2d3d;
  border: 1px solid #3189bf73;
  border-radius: 19px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.12s;
  box-shadow: 0 4px 12px rgba(249, 194, 26, 0.3);
  font-family: Verdana, sans-serif;
}

.platform-btn:hover:not(:disabled),
.platform-btn--primary:hover:not(:disabled),
.platform-btn-primary:hover:not(:disabled) {
  background: #e6b018;
  color: #ffffff;
  transform: scale(0.98);
}

.platform-btn:active:not(:disabled),
.platform-btn--primary:active:not(:disabled),
.platform-btn-primary:active:not(:disabled) {
  transform: scale(0.96);
}

.platform-btn:disabled,
.platform-btn--disabled,
.platform-btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Divider */
.help-section::before {
  content: "";
  display: block;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin-bottom: 18px;
}

/* Help Section */
.help-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.695);
  border: 1px solid rgba(64, 150, 203, 0.3);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(70, 70, 70, 0.12);
  transition: all 0.3s ease;
}

.help-section:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  border-color: rgba(49, 137, 191, 0.5);
}

/* Traveler actions wrapper */
.traveler-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  width: 100% !important;
}

.help-text {
  font-size: 14px;
  color: #1f2d3d;
  text-align: right;
  font-family: Helvetica, Arial, sans-serif;
  flex: 1;
}

.help-text-bold {
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.help-text-normal {
  font-weight: normal;
  line-height: 1.4;
}

/* WhatsApp Button */
.whatsapp-btn {
  width: 44px;
  height: 44px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
  text-decoration: none;
  animation: pulse 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  animation: none;
}

.whatsapp-btn svg {
  color: white;
}

/* Fix for Elementor Container affecting select/input height */
.platform-passengers select,
.e-con .platform-passengers select,
.elementor-element .platform-passengers select,
.platform-form-destination select,
.platform-form-destination input[type="date"],
.e-con .platform-form-destination select,
.e-con .platform-form-destination input[type="date"],
.elementor-element .platform-form-destination select,
.elementor-element .platform-form-destination input[type="date"] {
  height: auto !important;
  min-height: 48px !important;
}

/* ========== Passengers Form Specific ========== */

/* Glass effect for passengers form */
.platform-form.platform-passengers {
  max-width: 780px;
  margin: 20px auto;
  padding: 40px;
  background: rgba(227, 242, 253, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(224, 234, 255, 0.811);
  border-radius: 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  direction: rtl;
}

.platform-passengers .platform-field {
  margin-bottom: 20px;
}

.platform-passengers .platform-passenger-row {
  margin-bottom: 20px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  background: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  width: 100%;
  max-width: none;
}

.platform-passengers input,
.platform-passengers select,
.platform-passengers button {
  border-radius: 16px !important;
}

/* הוסף נוסע - Full width button inside last passenger card */
.platform-add-traveler-btn {
  width: 100% !important;
  padding: 14px !important;
  background: white !important;
  color: #1f2d3d !important;
  border: 1px solid #2274b5 !important;
  border-radius: 16px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 !important;
  min-height: auto !important;
  transition: all 0.2s;
  font-family: Verdana, sans-serif;
  cursor: pointer;
}

.platform-add-traveler-btn:hover {
  background: #f0f9ff !important;
  transform: scale(0.98);
}

.platform-add-traveler-btn svg {
  color: #2274b5;
  flex-shrink: 0;
}

/* הסר נוסע - Inside each passenger card */
.platform-passengers .btn-remove-traveler {
  width: 100% !important;
  padding: 14px !important;
  background: #fef3c7 !important;
  color: #1f2d3d !important;
  border: 1px solid #f9c21a !important;
  border-radius: 16px !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: auto !important;
  transition: all 0.2s;
  font-family: Verdana, sans-serif;
  cursor: pointer;
}

.platform-passengers .btn-remove-traveler:hover {
  background: #fde68a !important;
  transform: scale(0.98);
}

.platform-passengers .btn-remove-traveler svg {
  flex-shrink: 0;
}

/* Avatar Container */
.traveler-avatar-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.traveler-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px; /* הגדלתי מ-12px */
  box-shadow: 0 2px 8px rgba(34, 116, 181, 0.15); /* עידון הצל */
  overflow: hidden;
  padding: 10px; /* פאדינג פנימי - האייקון יהיה קטן יותר */
  background: #f8fafc; /* רקע בהיר לפאדינג */
}

.traveler-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2d3d;
  margin: 0;
  font-family: Verdana, sans-serif;
}

/* Fields Grid Layout */
.traveler-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.traveler-fields-grid .platform-field {
  margin-bottom: 0;
}
/* Relationship field - full width */
.traveler-fields-grid > .platform-field:has(select[id*="_relationship"]) {
  grid-column: 1 / -1;
}

/* ========== Form Actions - Final ========== */
.platform-passengers .form-actions {
  display: flex !important;
  gap: 12px !important;
  margin-top: 12px !important;
}

.platform-passengers .form-actions .platform-prev-button {
  flex: 1 !important;
  padding: 14px !important;
  background: #a8d4f0 !important;
  color: #0d3a5c !important;
  border: 2px solid white !important;
  border-radius: 19px !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  font-family: Verdana, sans-serif !important;
  cursor: pointer !important;
  transition: all 0.12s !important;
  box-shadow: 0 4px 12px rgba(168, 212, 240, 0.3) !important;
}

.platform-passengers .form-actions .platform-prev-button:hover {
  background: #8ac4e8 !important;
  color: #0d3a5c !important;
  transform: scale(0.98) !important;
}

.platform-passengers .form-actions .submit-button {
  flex: 2 !important;
  padding: 14px !important;
  background: #f9c21a !important;
  color: #1f2d3d !important;
  border: 1px solid #3189bf73 !important;
  border-radius: 19px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(249, 194, 26, 0.3) !important;
  font-family: Verdana, sans-serif !important;
  cursor: pointer !important;
  transition: all 0.12s !important;
}

.platform-passengers .form-actions .submit-button:hover {
  background: #e6b018 !important;
  color: #ffffff !important;
  transform: scale(0.98) !important;
}

.platform-passengers input.datepicker {
  cursor: pointer !important;
}

.platform-passengers .date-field {
  cursor: pointer;
}

/* מובייל - טופס נוסעים */
@media (max-width: 480px) {
  /* קונטיינר ראשי - 85% רוחב */
  .platform-form.platform-passengers,
  .platform-form__container.platform-passengers {
    max-width: 85% !important;
    margin: 20px auto;
    padding: 20px !important; /* הקטנת padding מ-40px */
  }

  /* כפתור הוסף נוסע - קטן יותר */
  .platform-add-traveler-btn {
    padding: 10px !important; /* במקום 14px */
    font-size: 15px !important; /* במקום 18px */
    font-weight: 600 !important; /* במקום 700 */
  }

  .platform-add-traveler-btn svg {
    width: 18px;
    height: 18px;
  }

  /* כפתור הסר נוסע - קטן יותר */
  .platform-passengers .btn-remove-traveler {
    padding: 10px !important; /* במקום 14px */
    font-size: 15px !important; /* במקום 18px */
    font-weight: 500 !important; /* במקום 600 */
  }

  .platform-passengers .btn-remove-traveler svg {
    width: 18px;
    height: 18px;
  }

  /* הקטנת padding של כרטיסי הנוסעים */
  .platform-passengers .platform-passenger-row {
    padding: 16px !important; /* במקום 24px */
  }
}

/* ========== Error States ========== */

.platform-field--error .platform-field__input,
.platform-field--error input,
.platform-field--error select,
.platform-field--error textarea,
.platform-field.has-error input,
.platform-field.has-error select,
.platform-field.has-error textarea {
  border-color: var(--color-error) !important;
  box-shadow: 0 0 0 1px var(--color-error);
}

.platform-field__msg--error,
.platform-field .field-error {
  color: var(--color-error);
  font-size: 0.875rem;
  margin-top: var(--radius-md);
  display: block;
  font-weight: 500;
}

.platform-field__msg--error::before,
.platform-field .field-error::before {
  content: "⚠ ";
  font-weight: bold;
}

.platform-form__error,
.platform-error {
  background: var(--field-bg-error);
  border: 1px solid var(--color-error);
  border-right: var(--space-1) solid var(--color-error);
  color: var(--color-error);
  padding: var(--space-3) 16px;
  margin-bottom: var(--space-5);
  border-radius: var(--radius-md);
  font-weight: 500;
}

/* ========== OTP/Verify Form Specific ========== */

.platform-form-container h2 {
  font-size: 32px;
  font-weight: 600;
  color: #175d91;
  margin-bottom: 12px;
  text-align: center;
  font-family: Verdana, sans-serif;
}

.platform-form-container > p {
  font-size: 16px;
  color: #3e3e3e;
  text-align: center;
  margin-bottom: 24px;
  font-family: Helvetica, Arial, sans-serif;
}

.platform-form-verify {
  text-align: center;
}

.platform-form-verify .platform-field {
  text-align: right;
}

.platform-form-verify label {
  text-align: right;
}

/* ========== Responsive ========== */

@media (max-width: 768px) {
  .platform-form__container,
  .platform-form-container {
    max-width: 400px;
    padding: 24px;
  }

  .platform-form-container .form-title,
  .platform-form-auth .form-title {
    font-size: 14px !important;
  }

  /* Responsive - Passengers Grid */
  .traveler-fields-grid {
    grid-template-columns: 1fr;
  }

  .platform-passengers .form-actions {
    flex-direction: column;
  }

  .platform-passengers .form-actions button {
    width: 100%;
  }
}

/**IDNT FORM**/
/* Force LTR for national ID field */
#national_id,
input[name="national_id"] {
  direction: ltr !important;
  text-align: left !important;
}

/* ========== Summary Page Specific ========== */

/* Travel details section */
.platform-summary-section {
  background: white;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.platform-summary-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2d3d;
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #f9c017;
  font-family: Verdana, sans-serif;
}

.platform-summary-section p {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  margin: 0;
  border-bottom: 1px solid #f3f4f6;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: #374151;
}

.platform-summary-section p:last-child {
  border-bottom: none;
}

.platform-summary-section p strong {
  font-weight: 600;
  color: #1f2d3d;
}

/* Contact section - style the existing output */
.platform-contact-row {
  background: white;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.platform-contact-row h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2d3d;
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #f9c017;
  font-family: Verdana, sans-serif;
}

.platform-contact-row p {
  margin: 10px 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: #374151;
}

.platform-contact-row p strong {
  font-weight: 600;
  color: #1f2d3d;
  margin-left: 8px;
}

/* Travelers Section - Wrapper with rounded border */
.platform-travelers-section {
  background: white;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.platform-travelers-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2d3d;
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #f9c017;
  font-family: Verdana, sans-serif;
}

/* Table - with clear outline and hover effect */
.platform-travelers-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
  border: 2px solid rgba(34, 116, 181, 0.25); /* כחול בהיר */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.platform-travelers-table tr:hover {
  background: #f0f9ff;
  transition: background 0.2s ease;
}

.platform-travelers-table th {
  background: #f0f9ff;
  color: #1f2d3d;
  padding: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  border-right: 1px solid #e5e7eb;
  border-bottom: 2px solid #f9c017;
  font-family: Verdana, sans-serif;
}

.platform-travelers-table th:last-child {
  border-right: none;
}

.platform-travelers-table td {
  padding: 12px;
  text-align: center;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  font-family: Helvetica, Arial, sans-serif;
  color: #1f2d3d;
  font-size: 16px;
  background: white;
}

.platform-travelers-table td:last-child {
  border-right: none;
}

/* Price section */
.platform-price-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 16px;
  padding: 24px;
  margin: 20px 0;
  border: 2px solid #2274b5;
  text-align: center;
}

.platform-price-section h3 {
  font-size: 18px;
  color: #1f2d3d;
  margin: 0 0 12px 0;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 600;
}

.platform-price-section > div,
.platform-price-section > span {
  font-size: 36px;
  font-weight: 700;
  color: #175d91;
  font-family: Verdana, sans-serif;
}

/* Price display - USD */
.platform-price-usd {
  font-size: 36px;
  font-weight: 700;
  color: #175d91;
  font-family: Verdana, sans-serif;
  margin-bottom: 12px;
}

.platform-price-usd .platform-price-amount {
  margin-left: 4px;
}

/* Price display - ILS */
.platform-price-ils {
  font-size: 32px;
  font-weight: 600;
  color: #2274b5;
  font-family: Verdana, sans-serif;
  margin-bottom: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(34, 116, 181, 0.3);
}

.platform-price-ils .platform-price-amount {
  margin-left: 4px;
}

/* Price disclaimer */
.platform-price-disclaimer {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(249, 192, 26, 0.4);
  border-right: 4px solid #f9c21a;
  border-radius: 12px;
  padding: 16px;
  margin-top: 16px;
  text-align: right;
  direction: rtl;
}

.platform-price-disclaimer small {
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
  font-family: Helvetica, Arial, sans-serif;
  display: block;
}

.platform-price-disclaimer strong {
  color: #1f2d3d;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .platform-summary-section,
  .platform-contact-row,
  .platform-travelers-table,
  .platform-price-section {
    padding: 16px;
  }

  .platform-price-section > div,
  .platform-price-section > span {
    font-size: 28px;
  }

  .platform-price-usd {
    font-size: 28px;
  }

  .platform-price-ils {
    font-size: 24px;
    padding: 12px;
  }

  .platform-price-disclaimer {
    padding: 12px;
  }

  .platform-price-disclaimer small {
    font-size: 11px;
  }

  .platform-travelers-table {
    border: none !important; /* +!important */
    box-shadow: none !important; /* +!important */
  }

  .platform-travelers-table thead {
    display: none !important; /* +!important */
  }

  .platform-travelers-table tbody,
  .platform-travelers-table tr {
    display: block !important; /* +!important */
  }

  .platform-travelers-table tr {
    margin-bottom: 16px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 16px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .platform-travelers-table td {
    display: flex !important; /* +!important */
    justify-content: space-between;
    padding: 8px 0;
    border: none !important; /* +!important */
    border-bottom: 1px solid #000000 !important; /* +!important */
    text-align: right;
    font-size: 14px;
  }

  .platform-travelers-table td:last-child {
    border-bottom: none !important; /* +!important */
  }

  .platform-travelers-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #1f2d3d;
    font-family: Verdana, sans-serif;
    margin-left: 8px;
  }
}

/* ========== Summary Back Buttons ========== */

/* ========== Summary Back Buttons ========== */

.platform-back-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.platform-back-buttons a {
  flex: 1;
  padding: 14px;
  background: #a8d4f0;
  color: #0d3a5c;
  border: 2px solid white;
  border-radius: 19px;
  font-size: 18px;
  font-weight: 600;
  font-family: Verdana, sans-serif;
  cursor: pointer;
  transition: all 0.12s;
  text-align: center;
  text-decoration: none !important; /* +!important */
  display: block;
  box-shadow: 0 4px 12px rgba(168, 212, 240, 0.3);
}

.platform-back-buttons a:hover {
  background: #8ac4e8;
  color: #0d3a5c;
  transform: scale(0.98);
  text-decoration: none !important; /* +הוספה */
}

.platform-back-buttons a:active {
  transform: scale(0.96);
  text-decoration: none !important; /* +הוספה */
}

.platform-back-buttons a:focus {
  text-decoration: none !important; /* +הוספה */
  outline: none;
}

@media (max-width: 768px) {
  .platform-back-buttons {
    flex-direction: column;
  }
}
