/* ============================================
   Fishing Charter Booking - Public Styles
   ============================================ */

:root {
  --fcb-primary:    #0073aa;
  --fcb-accent:     #f0a500;
  --fcb-success:    #28a745;
  --fcb-danger:     #dc3545;
  --fcb-warning:    #ffc107;
  --fcb-info:       #17a2b8;
  --fcb-dark:       #2c3e50;
  --fcb-light:      #f8f9fa;
  --fcb-border:     #dee2e6;
  --fcb-radius:     8px;
  --fcb-shadow:     0 2px 12px rgba(0,0,0,0.08);
  --fcb-shadow-lg:  0 8px 30px rgba(0,0,0,0.12);
  --fcb-transition: all 0.25s ease;
}

/* ---- Base ---- */
.fcb-booking-wrap, .fcb-charter-listing, .fcb-confirmation-wrap,
.fcb-dashboard-wrap, .fcb-charter-detail-wrap {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* ---- Buttons ---- */
.fcb-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 22px; border-radius: var(--fcb-radius); font-size: 15px;
  font-weight: 600; cursor: pointer; border: 2px solid transparent;
  text-decoration: none; transition: var(--fcb-transition); line-height: 1.4;
}
.fcb-btn-primary  { background: var(--fcb-primary); color: #fff; border-color: var(--fcb-primary); }
.fcb-btn-primary:hover { background: #005a87; border-color: #005a87; color: #fff; }
.fcb-btn-outline  { background: transparent; color: var(--fcb-primary); border-color: var(--fcb-primary); }
.fcb-btn-outline:hover { background: var(--fcb-primary); color: #fff; }
.fcb-btn-danger   { background: var(--fcb-danger); color: #fff; border-color: var(--fcb-danger); }
.fcb-btn-danger:hover { background: #b02a37; }
.fcb-btn-sm  { padding: 6px 14px; font-size: 13px; }
.fcb-btn-lg  { padding: 14px 32px; font-size: 17px; }
.fcb-btn-block { width: 100%; }
.fcb-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ---- Charter Listing Grid ---- */
.fcb-charter-listing { display: grid; gap: 24px; }
.fcb-cols-1 { grid-template-columns: 1fr; }
.fcb-cols-2 { grid-template-columns: repeat(2, 1fr); }
.fcb-cols-3 { grid-template-columns: repeat(3, 1fr); }
.fcb-cols-4 { grid-template-columns: repeat(4, 1fr); }

.fcb-charter-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: var(--fcb-shadow); transition: var(--fcb-transition);
  display: flex; flex-direction: column; position: relative;
}
.fcb-charter-card:hover { box-shadow: var(--fcb-shadow-lg); transform: translateY(-3px); }

.fcb-charter-card__image { position: relative; overflow: hidden; height: 220px; }
.fcb-charter-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.fcb-charter-card:hover .fcb-charter-card__image img { transform: scale(1.05); }

.fcb-charter-card__body { padding: 20px; flex: 1; }
.fcb-charter-card__types { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.fcb-tag { background: #e8f4fd; color: var(--fcb-primary); padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.fcb-charter-card__title { margin: 0 0 10px; font-size: 18px; line-height: 1.3; }
.fcb-charter-card__title a { color: var(--fcb-dark); text-decoration: none; }
.fcb-charter-card__title a:hover { color: var(--fcb-primary); }
.fcb-charter-card__excerpt { color: #666; font-size: 14px; margin: 0 0 12px; }

.fcb-charter-card__meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.fcb-meta-item { font-size: 13px; color: #555; display: flex; align-items: center; gap: 4px; }
.fcb-icon { font-size: 14px; }

.fcb-charter-card__features { list-style: none; margin: 0 0 12px; padding: 0; }
.fcb-charter-card__features li { font-size: 13px; color: #555; padding: 2px 0; }

.fcb-charter-card__footer {
  padding: 16px 20px; border-top: 1px solid var(--fcb-border);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--fcb-light);
}
.fcb-charter-card__price { display: flex; align-items: baseline; gap: 4px; }
.fcb-price-label { font-size: 12px; color: #888; }
.fcb-price-amount { font-size: 22px; font-weight: 700; color: var(--fcb-primary); }
.fcb-price-unit { font-size: 12px; color: #888; }

.fcb-badge { position: absolute; top: 12px; left: 12px; padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.fcb-badge-featured { background: var(--fcb-accent); color: #fff; }

/* ---- Booking Form Steps ---- */
.fcb-steps {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 36px; padding: 0 20px;
}
.fcb-step { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.fcb-step-num {
  width: 36px; height: 36px; border-radius: 50%; background: #ddd; color: #888;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px;
  transition: var(--fcb-transition);
}
.fcb-step-label { font-size: 12px; color: #888; font-weight: 500; white-space: nowrap; }
.fcb-step-active .fcb-step-num { background: var(--fcb-primary); color: #fff; }
.fcb-step-active .fcb-step-label { color: var(--fcb-primary); font-weight: 700; }
.fcb-step-done .fcb-step-num { background: var(--fcb-success); color: #fff; }
.fcb-step-divider { flex: 1; height: 2px; background: #ddd; margin: 0 8px; margin-bottom: 22px; max-width: 80px; }

/* ---- Charter Select Grid ---- */
.fcb-charter-select-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-bottom: 24px; }
.fcb-charter-option {
  border: 2px solid var(--fcb-border); border-radius: 12px; overflow: hidden;
  cursor: pointer; transition: var(--fcb-transition); background: #fff;
}
.fcb-charter-option:hover { border-color: var(--fcb-primary); box-shadow: var(--fcb-shadow); }
.fcb-charter-selected { border-color: var(--fcb-primary); box-shadow: 0 0 0 3px rgba(0,115,170,0.15); }
.fcb-charter-option__img { height: 160px; overflow: hidden; position: relative; }
.fcb-charter-option__img img { width: 100%; height: 100%; object-fit: cover; }
.fcb-charter-option__body { padding: 16px; }
.fcb-charter-option__body h3 { margin: 0 0 8px; font-size: 16px; }
.fcb-charter-option__meta { display: flex; flex-wrap: wrap; gap: 8px; font-size: 12px; color: #666; margin-bottom: 8px; }
.fcb-charter-option__features { list-style: none; padding: 0; margin: 0 0 10px; font-size: 13px; color: #555; }
.fcb-charter-option__features li { padding: 2px 0; }
.fcb-charter-option__price { font-size: 18px; font-weight: 700; color: var(--fcb-primary); }
.fcb-charter-option__select { padding: 12px 16px; border-top: 1px solid var(--fcb-border); display: flex; align-items: center; justify-content: space-between; background: var(--fcb-light); }
.fcb-select-indicator { width: 24px; height: 24px; border-radius: 50%; background: var(--fcb-success); color: #fff; display: none; align-items: center; justify-content: center; font-size: 13px; }
.fcb-charter-selected .fcb-select-indicator { display: flex; }

/* ---- Date & Time ---- */
.fcb-date-time-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 24px; }
.fcb-label { display: block; font-weight: 600; margin-bottom: 10px; color: var(--fcb-dark); }
.fcb-calendar-wrap .flatpickr-calendar { box-shadow: var(--fcb-shadow); border-radius: 12px; }

.fcb-timeslot-placeholder { color: #888; font-style: italic; padding: 20px; text-align: center; background: var(--fcb-light); border-radius: 8px; }
.fcb-timeslot-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 14px 16px; margin-bottom: 8px;
  border: 2px solid var(--fcb-border); border-radius: 8px; background: #fff;
  cursor: pointer; transition: var(--fcb-transition); text-align: left;
}
.fcb-timeslot-btn:hover { border-color: var(--fcb-primary); }
.fcb-timeslot-btn.selected { border-color: var(--fcb-primary); background: #e8f4fd; }
.fcb-timeslot-btn.unavailable { opacity: 0.5; cursor: not-allowed; background: #f5f5f5; }
.fcb-timeslot-info { display: flex; flex-direction: column; }
.fcb-timeslot-name { font-weight: 600; font-size: 15px; }
.fcb-timeslot-time { font-size: 13px; color: #666; }
.fcb-timeslot-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.fcb-timeslot-price { font-weight: 700; color: var(--fcb-primary); font-size: 16px; }
.fcb-timeslot-spots { font-size: 12px; color: #888; }

/* ---- Guests Counter ---- */
.fcb-guests-counter { display: flex; align-items: center; gap: 0; border: 2px solid var(--fcb-border); border-radius: 8px; overflow: hidden; width: fit-content; }
.fcb-counter-btn { width: 40px; height: 40px; background: var(--fcb-light); border: none; font-size: 20px; cursor: pointer; transition: var(--fcb-transition); }
.fcb-counter-btn:hover { background: var(--fcb-primary); color: #fff; }
.fcb-guests-counter input { width: 60px; height: 40px; border: none; text-align: center; font-size: 16px; font-weight: 700; outline: none; }

/* ---- Price Summary ---- */
.fcb-price-summary { background: var(--fcb-light); border-radius: 10px; padding: 16px; margin-top: 20px; border: 1px solid var(--fcb-border); }
.fcb-price-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 15px; }
.fcb-price-row + .fcb-price-row { border-top: 1px solid var(--fcb-border); }
.fcb-price-total { font-size: 17px; padding-top: 10px !important; }

/* ---- Booking Form Fields ---- */
.fcb-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fcb-form-full { grid-column: 1 / -1; }
.fcb-form-group { display: flex; flex-direction: column; gap: 6px; }
.fcb-form-group label { font-weight: 600; font-size: 14px; color: var(--fcb-dark); }
.fcb-form-group input, .fcb-form-group textarea, .fcb-form-group select {
  padding: 10px 14px; border: 2px solid var(--fcb-border); border-radius: 8px;
  font-size: 15px; transition: var(--fcb-transition); outline: none; width: 100%; box-sizing: border-box;
}
.fcb-form-group input:focus, .fcb-form-group textarea:focus { border-color: var(--fcb-primary); box-shadow: 0 0 0 3px rgba(0,115,170,0.1); }
.fcb-required { color: var(--fcb-danger); }
.fcb-checkbox-label { display: flex; align-items: flex-start; gap: 8px; cursor: pointer; font-size: 14px; }
.fcb-checkbox-label input { margin-top: 3px; width: auto; }

/* ---- Payment ---- */
.fcb-gateway-tabs { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.fcb-gateway-tab {
  padding: 10px 20px; border: 2px solid var(--fcb-border); border-radius: 8px;
  background: #fff; cursor: pointer; font-size: 14px; font-weight: 600; transition: var(--fcb-transition);
}
.fcb-gateway-tab.active { border-color: var(--fcb-primary); background: #e8f4fd; color: var(--fcb-primary); }
.fcb-stripe-card {
  padding: 14px; border: 2px solid var(--fcb-border); border-radius: 8px;
  background: #fff; margin-bottom: 16px; min-height: 44px;
}
.fcb-secure-badges { display: flex; gap: 16px; margin-top: 12px; font-size: 13px; color: #888; }
.fcb-btn-pay { width: 100%; padding: 16px; font-size: 17px; margin-top: 8px; }
.fcb-processing { text-align: center; padding: 30px; }
.fcb-spinner {
  width: 40px; height: 40px; border: 4px solid var(--fcb-border);
  border-top-color: var(--fcb-primary); border-radius: 50%;
  animation: fcb-spin 0.8s linear infinite; margin: 0 auto 16px;
}
@keyframes fcb-spin { to { transform: rotate(360deg); } }

/* ---- Alerts ---- */
.fcb-alert { padding: 12px 16px; border-radius: 8px; font-size: 14px; margin: 10px 0; }
.fcb-alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.fcb-alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.fcb-alert-warning { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; }
.fcb-alert-info    { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* ---- Step Nav ---- */
.fcb-step-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--fcb-border); }
.fcb-step-title { font-size: 22px; font-weight: 700; margin-bottom: 24px; color: var(--fcb-dark); }

/* ---- Booking Summary Bar ---- */
.fcb-booking-summary-bar {
  background: linear-gradient(135deg, var(--fcb-primary), #005a87);
  color: #fff; padding: 14px 20px; border-radius: 10px; margin-bottom: 24px;
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
}
.fcb-summary-item { display: flex; flex-direction: column; gap: 2px; }
.fcb-summary-label { font-size: 11px; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.5px; }
.fcb-summary-value { font-size: 15px; font-weight: 600; }

/* ---- Confirmation ---- */
.fcb-confirmation-wrap { max-width: 680px; margin: 0 auto; }
.fcb-confirmation-card { background: #fff; border-radius: 16px; box-shadow: var(--fcb-shadow-lg); padding: 40px; text-align: center; }
.fcb-confirmation-icon { font-size: 60px; margin-bottom: 16px; }
.fcb-confirmation-title { font-size: 28px; font-weight: 700; margin: 0 0 10px; color: var(--fcb-dark); }
.fcb-confirmation-subtitle { color: #666; font-size: 16px; margin-bottom: 24px; }
.fcb-confirmation-ref { background: var(--fcb-light); border-radius: 10px; padding: 16px; margin-bottom: 24px; display: flex; flex-direction: column; gap: 4px; }
.fcb-confirmation-ref span { font-size: 13px; color: #888; }
.fcb-confirmation-ref strong { font-size: 22px; color: var(--fcb-primary); letter-spacing: 1px; }
.fcb-confirmation-details { text-align: left; margin-bottom: 24px; }
.fcb-confirmation-row { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--fcb-border); }
.fcb-conf-icon { font-size: 20px; width: 28px; text-align: center; }
.fcb-conf-label { display: block; font-size: 12px; color: #888; }
.fcb-conf-value { display: block; font-size: 15px; font-weight: 600; color: var(--fcb-dark); }
.fcb-confirmation-section { text-align: left; background: var(--fcb-light); border-radius: 10px; padding: 16px; margin-bottom: 20px; }
.fcb-confirmation-section h3 { margin: 0 0 8px; font-size: 16px; }
.fcb-confirmation-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 20px; }
.fcb-confirmation-email-note { font-size: 13px; color: #888; }

/* ---- Client Dashboard ---- */
.fcb-dashboard-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 16px; }
.fcb-dashboard-welcome { display: flex; align-items: center; gap: 16px; }
.fcb-dashboard-welcome h2 { margin: 0 0 4px; font-size: 22px; }
.fcb-dashboard-welcome p { margin: 0; color: #666; }
.fcb-dashboard-avatar img { border-radius: 50%; }
.fcb-dashboard-stats { display: flex; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.fcb-dash-stat { background: #fff; border-radius: 10px; padding: 16px 24px; box-shadow: var(--fcb-shadow); text-align: center; flex: 1; min-width: 120px; }
.fcb-dash-stat-num { display: block; font-size: 24px; font-weight: 700; color: var(--fcb-primary); }
.fcb-dash-stat-label { font-size: 13px; color: #888; }
.fcb-dashboard-tabs { display: flex; gap: 4px; border-bottom: 2px solid var(--fcb-border); margin-bottom: 24px; }
.fcb-tab-btn { padding: 10px 20px; border: none; background: none; cursor: pointer; font-size: 14px; font-weight: 600; color: #888; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: var(--fcb-transition); }
.fcb-tab-btn:hover { color: var(--fcb-primary); }
.fcb-tab-btn.fcb-tab-active { color: var(--fcb-primary); border-bottom-color: var(--fcb-primary); }
.fcb-tab-count { background: var(--fcb-border); color: #555; border-radius: 10px; padding: 1px 7px; font-size: 12px; margin-left: 4px; }

/* ---- Booking Cards ---- */
.fcb-bookings-list { display: flex; flex-direction: column; gap: 16px; }
.fcb-booking-card { background: #fff; border-radius: 12px; box-shadow: var(--fcb-shadow); overflow: hidden; }
.fcb-booking-card__header { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; background: var(--fcb-light); border-bottom: 1px solid var(--fcb-border); }
.fcb-label { font-size: 11px; color: #888; display: block; text-transform: uppercase; letter-spacing: 0.5px; }
.fcb-booking-card__status { display: flex; gap: 8px; align-items: center; }
.fcb-status-badge { padding: 4px 12px; border-radius: 20px; color: #fff; font-size: 12px; font-weight: 700; }
.fcb-payment-badge { padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.fcb-payment-paid    { background: #d4edda; color: #155724; }
.fcb-payment-unpaid  { background: #f8d7da; color: #721c24; }
.fcb-payment-deposit { background: #fff3cd; color: #856404; }
.fcb-booking-card__body { display: flex; gap: 20px; padding: 20px; }
.fcb-booking-card__image { width: 120px; height: 90px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.fcb-booking-card__image img { width: 100%; height: 100%; object-fit: cover; }
.fcb-booking-card__details h4 { margin: 0 0 10px; font-size: 17px; }
.fcb-booking-meta { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.fcb-booking-meta li { font-size: 14px; color: #555; display: flex; align-items: center; gap: 4px; }
.fcb-booking-card__actions { padding: 14px 20px; border-top: 1px solid var(--fcb-border); display: flex; gap: 10px; flex-wrap: wrap; }

/* ---- Empty State ---- */
.fcb-empty-state { text-align: center; padding: 60px 20px; }
.fcb-empty-icon { font-size: 60px; margin-bottom: 16px; }
.fcb-empty-state h3 { font-size: 20px; margin-bottom: 10px; color: var(--fcb-dark); }
.fcb-empty-state p { color: #888; margin-bottom: 20px; }

/* ---- Login Card ---- */
.fcb-dashboard-login { max-width: 480px; margin: 0 auto; }
.fcb-login-card { background: #fff; border-radius: 16px; box-shadow: var(--fcb-shadow-lg); padding: 40px; text-align: center; }
.fcb-login-icon { font-size: 50px; margin-bottom: 16px; }
.fcb-login-card h2 { margin: 0 0 10px; }
.fcb-login-card p { color: #666; margin-bottom: 24px; }
.fcb-register-link { margin-top: 20px; font-size: 14px; color: #666; }

/* ---- Modal ---- */
.fcb-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 99999; display: flex; align-items: center; justify-content: center; }
.fcb-modal-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); }
.fcb-modal-content { position: relative; background: #fff; border-radius: 16px; padding: 32px; max-width: 480px; width: 90%; z-index: 1; box-shadow: var(--fcb-shadow-lg); }
.fcb-modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 20px; cursor: pointer; color: #888; }
.fcb-modal-actions { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
body.fcb-modal-open { overflow: hidden; }

/* ---- Charter Detail ---- */
.fcb-charter-detail-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 40px; align-items: center; }
.fcb-charter-detail-hero__img { border-radius: 16px; overflow: hidden; height: 380px; }
.fcb-charter-detail-hero__img img { width: 100%; height: 100%; object-fit: cover; }
.fcb-charter-detail-hero__content h1 { font-size: 32px; margin: 0 0 16px; }
.fcb-charter-detail-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.fcb-meta-badge { background: var(--fcb-light); padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; color: var(--fcb-dark); }
.fcb-charter-detail-price { margin-bottom: 24px; display: flex; align-items: baseline; gap: 6px; }
.fcb-price-from { font-size: 14px; color: #888; }
.fcb-price-big { font-size: 36px; font-weight: 700; color: var(--fcb-primary); }
.fcb-charter-detail-body { display: grid; grid-template-columns: 1fr 340px; gap: 40px; }
.fcb-charter-section { margin-bottom: 32px; }
.fcb-charter-section h2 { font-size: 20px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--fcb-border); }
.fcb-features-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.fcb-features-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 15px; }
.fcb-feature-check { color: var(--fcb-success); font-weight: 700; }
.fcb-includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fcb-includes-col ul { list-style: none; padding: 0; margin: 0; }
.fcb-includes-col li { padding: 6px 0; border-bottom: 1px solid var(--fcb-border); font-size: 14px; }
.fcb-includes-title { font-size: 15px; margin-bottom: 12px; }
.fcb-species-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.fcb-species-tag { background: #e8f4fd; color: var(--fcb-primary); padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; }
.fcb-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.fcb-gallery-thumb { display: block; border-radius: 8px; overflow: hidden; height: 120px; }
.fcb-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.fcb-gallery-thumb:hover img { transform: scale(1.05); }
.fcb-sidebar-card { background: #fff; border-radius: 12px; box-shadow: var(--fcb-shadow); padding: 20px; margin-bottom: 20px; }
.fcb-sidebar-card h3 { margin: 0 0 14px; font-size: 16px; }
.fcb-timeslot-list { list-style: none; padding: 0; margin: 0; }
.fcb-timeslot-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--fcb-border); }
.fcb-timeslot-item:last-child { border-bottom: none; }
.fcb-timeslot-time strong { display: block; font-size: 14px; }
.fcb-timeslot-time span { font-size: 12px; color: #888; }
.fcb-timeslot-price { font-weight: 700; color: var(--fcb-primary); }
.fcb-boat-info { list-style: none; padding: 0; margin: 0; }
.fcb-boat-info li { padding: 6px 0; border-bottom: 1px solid var(--fcb-border); font-size: 14px; }
.fcb-sidebar-cta { background: linear-gradient(135deg, var(--fcb-primary), #005a87); color: #fff; text-align: center; }
.fcb-sidebar-cta h3 { color: #fff; }
.fcb-cta-price { margin-bottom: 16px; }
.fcb-cta-price span { font-size: 13px; opacity: 0.8; }
.fcb-cta-price strong { display: block; font-size: 32px; font-weight: 700; }
.fcb-cta-note { font-size: 12px; opacity: 0.8; margin-top: 10px; }
.fcb-sidebar-cta .fcb-btn-primary { background: var(--fcb-accent); border-color: var(--fcb-accent); color: #fff; }
.fcb-sidebar-cta .fcb-btn-primary:hover { background: #d4920a; }

/* ---- Payment Summary ---- */
.fcb-payment-summary { background: var(--fcb-light); border-radius: 12px; padding: 20px; margin-bottom: 24px; border: 1px solid var(--fcb-border); }
.fcb-payment-summary h3 { margin: 0 0 14px; font-size: 16px; }
.fcb-pay-in-person-info { text-align: center; }
.fcb-pay-in-person-details { text-align: left; margin: 16px 0; padding: 0 12px; }
.fcb-pay-in-person-details p { margin: 8px 0; font-size: 14px; color: #495057; }
.fcb-pay-in-person-details .dashicons { color: var(--fcb-primary); margin-right: 8px; vertical-align: middle; }
.fcb-pay-in-person-summary-note { margin-top: 14px; text-align: left; line-height: 1.5; }

/* ---- No Charters ---- */
.fcb-no-charters { text-align: center; padding: 40px; color: #888; font-style: italic; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .fcb-cols-2, .fcb-cols-3, .fcb-cols-4 { grid-template-columns: 1fr; }
  .fcb-date-time-grid { grid-template-columns: 1fr; }
  .fcb-form-grid { grid-template-columns: 1fr; }
  .fcb-charter-detail-hero { grid-template-columns: 1fr; }
  .fcb-charter-detail-body { grid-template-columns: 1fr; }
  .fcb-features-list { grid-template-columns: 1fr; }
  .fcb-includes-grid { grid-template-columns: 1fr; }
  .fcb-steps { gap: 4px; }
  .fcb-step-label { display: none; }
  .fcb-step-divider { max-width: 30px; }
  .fcb-booking-card__body { flex-direction: column; }
  .fcb-booking-card__image { width: 100%; height: 160px; }
  .fcb-dashboard-header { flex-direction: column; align-items: flex-start; }
  .fcb-confirmation-actions { flex-direction: column; }
  .fcb-charter-select-grid { grid-template-columns: 1fr; }
}