/* ── Iframe embed (shortcode classici) ─────────────────────────────────────── */

.floteo-pro-wrap { position: relative; width: 100%; }

.floteo-pro-embed {
  width: 100%; border: 0; display: block;
  background: transparent; overflow: hidden;
}

.floteo-pro-loader {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.75); backdrop-filter: blur(2px); z-index: 2;
  font: 600 14px/1.2 system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}
.floteo-pro-loader span { padding: 10px 14px; border-radius: 10px; background: rgba(0,0,0,0.06); }

.floteo-pro-error {
  padding: 12px 14px; border-left: 4px solid #d63638; background: #fff; color: #111;
  font: 400 14px/1.4 system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* ── Widget date-picker ─────────────────────────────────────────────────────── */

.floteo-widget {
  --floteo-primary: #0ea5e9;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.10), 0 1px 4px rgba(0,0,0,.06);
  padding: 20px 24px;
  max-width: 860px;
  margin: 0 auto;
  box-sizing: border-box;
}

.floteo-widget__top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; margin-bottom: 14px;
}

.floteo-widget__title {
  font-size: 17px; font-weight: 700; color: #1e293b;
  margin: 0;
}

.floteo-widget__lang-picker {
  position: relative; flex-shrink: 0;
}

.floteo-widget__lang-trigger {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid #e2e8f0 !important; background: #fff !important;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer; line-height: 1;
  box-shadow: 0 1px 4px rgba(0,0,0,.10);
  transition: border-color .15s, box-shadow .15s;
  padding: 0; color: inherit !important; text-shadow: none !important;
}
.floteo-widget__lang-trigger:hover,
.floteo-widget__lang-trigger:focus,
.floteo-widget__lang-trigger:active {
  border-color: var(--floteo-primary) !important;
  background: #fff !important; color: inherit !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.14) !important;
  outline: none !important;
}

.floteo-widget__lang-flag {
  display: block; line-height: 1; font-style: normal;
  color: inherit !important; -webkit-text-fill-color: initial !important;
}

.floteo-widget__lang-dropdown {
  /* Alto a sufficienza da vincere contro header/nav della maggior parte dei temi
     senza bisogno di z-index custom sul contenitore che ospita lo shortcode. */
  position: absolute; top: calc(100% + 6px); right: 0; z-index: 99999;
  background: #fff; border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.14), 0 1px 4px rgba(0,0,0,.08);
  border: 1px solid #e2e8f0;
  overflow: hidden; min-width: 150px;
}
.floteo-widget__lang-dropdown[hidden] { display: none; }

.floteo-widget__lang-option {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 10px 14px;
  border: none; background: transparent;
  font: 500 14px/1 system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  color: #1e293b !important; cursor: pointer; text-align: left;
  transition: background .1s;
}
/* !important: è un <button>, molti temi hanno un button:hover globale (spesso testo
   bianco su sfondo brand) che altrimenti vince e rende il testo illeggibile. */
.floteo-widget__lang-option:hover { background: #f1f5f9 !important; color: #1e293b !important; }
.floteo-widget__lang-option.is-active { background: #eff6ff !important; color: var(--floteo-primary) !important; font-weight: 700; }
.floteo-widget__lang-option span:first-child { font-size: 18px; line-height: 1; }

.floteo-widget__inner {
  display: flex; align-items: flex-end; gap: 10px; flex-wrap: wrap;
}

.floteo-widget__field { flex: 1; min-width: 190px; }

.floteo-widget__label {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  color: #64748b; margin-bottom: 6px;
}

.floteo-widget__inputs { display: flex; gap: 6px; }

.floteo-widget__date,
.floteo-widget__time {
  flex: 1; min-width: 0;
  height: 44px; padding: 0 10px;
  border: 1.5px solid #e2e8f0; border-radius: 10px;
  font: 14px/1 system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  color: #1e293b; background: #f8fafc;
  outline: none;
  transition: border-color .15s, background .15s;
  box-sizing: border-box;
}
.floteo-widget__date:focus,
.floteo-widget__time:focus {
  border-color: var(--floteo-primary);
  background: #fff;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--floteo-primary) 15%, transparent);
}

/* Custom time picker */
.floteo-widget__time-wrap {
  position: relative; flex: 0 0 88px;
}

.floteo-widget__time-trigger {
  width: 100%; height: 44px; padding: 0 8px;
  border: 1.5px solid #e2e8f0 !important; border-radius: 10px;
  font: 14px/1 system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  color: #1e293b !important; background: #f8fafc !important;
  display: flex; align-items: center; justify-content: space-between; gap: 4px;
  cursor: pointer; white-space: nowrap;
  transition: border-color .15s, background .15s;
  box-sizing: border-box;
  text-shadow: none !important;
}
.floteo-widget__time-trigger:focus,
.floteo-widget__time-trigger:hover {
  border-color: var(--floteo-primary) !important; background: #fff !important;
  color: #1e293b !important;
  box-shadow: 0 0 0 3px rgba(14,165,233,.15) !important;
  outline: none !important;
}

.floteo-widget__time-arrow { font-size: 10px; color: #94a3b8; flex-shrink: 0; }

.floteo-widget__time-dropdown {
  position: absolute; top: calc(100% + 4px); left: 0; z-index: 200;
  background: #fff; border: 1.5px solid #e2e8f0; border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  max-height: 220px; overflow-y: auto;
  min-width: 100%;
  scroll-behavior: smooth;
}
.floteo-widget__time-dropdown[hidden] { display: none; }

.floteo-time-opt {
  padding: 9px 14px;
  font: 14px/1 system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  color: #1e293b; cursor: pointer;
  transition: background .08s;
}
.floteo-time-opt:hover   { background: #f1f5f9; }
.floteo-time-opt.is-active { background: #eff6ff; color: var(--floteo-primary); font-weight: 700; }

.floteo-widget__arrow {
  color: #cbd5e1; font-size: 20px;
  flex-shrink: 0; padding-bottom: 12px;
  line-height: 1;
}

.floteo-widget__cta {
  flex-shrink: 0;
  height: 44px; padding: 0 24px;
  border: none; border-radius: 10px;
  background: var(--floteo-primary);
  color: #fff;
  font: 600 15px/1 system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  cursor: pointer; white-space: nowrap;
  transition: filter .15s, transform .1s;
}
.floteo-widget__cta:hover  { filter: brightness(1.1); }
.floteo-widget__cta:active { transform: scale(.97); }

/* ── Modale full-screen ─────────────────────────────────────────────────────── */

.floteo-modal {
  position: fixed; inset: 0; z-index: 999999;
  display: flex; align-items: stretch; justify-content: center;
  /* animation si attiva rimuovendo hidden */
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease;
}
.floteo-modal.is-open {
  opacity: 1; pointer-events: auto;
}
.floteo-modal[hidden] { display: none !important; }

.floteo-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.55); backdrop-filter: blur(4px);
}

.floteo-modal__container {
  position: relative; z-index: 1;
  width: 100%; max-width: 960px;
  height: 100%; margin: 0 auto;
  display: flex; flex-direction: column;
  background: #f8fafc;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
  overflow: hidden;
}

.floteo-modal__close {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.92);
  color: #1e293b; font-size: 16px; font-weight: 700;
  cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
  transition: background .15s;
}
.floteo-modal__close:hover  { background: #fff; }
.floteo-modal__close:focus  { outline: 2px solid #0ea5e9; outline-offset: 2px; }

.floteo-modal__iframe {
  width: 100%; flex: 1; border: 0; display: block;
  background: #f8fafc;
}

/* ── Loading overlay (splash screen) ────────────────────────────────────────── */

.floteo-modal__loading {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
  background: #fff;
  opacity: 1; pointer-events: auto;
  transition: opacity .4s ease;
}

.floteo-modal__loading-logo {
  max-width: 160px; max-height: 80px;
  object-fit: contain;
  display: none;
}

.floteo-modal__loading-text {
  font: 500 15px/1.4 system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  color: #64748b; text-align: center; margin: 0;
  max-width: 260px;
}

.floteo-modal__loading-spinner {
  width: 36px; height: 36px; border-radius: 50%;
  border: 3px solid #e2e8f0;
  border-top-color: var(--floteo-primary, #0ea5e9);
  animation: floteo-spin .75s linear infinite;
}

@keyframes floteo-spin { to { transform: rotate(360deg); } }

/* Body lock quando la modale è aperta */
body.floteo-modal-open { overflow: hidden; }

/* ── Picker avanzato (Flatpickr popup) ──────────────────────────────────────── */

/* Trigger button — simula un campo input */
.floteo-date-field { position: relative; flex: 1; min-width: 0; }

.floteo-date-trigger {
  width: 100%; height: 44px; padding: 0 12px;
  display: flex; align-items: center; gap: 8px;
  border: 1.5px solid #e2e8f0 !important; border-radius: 10px;
  background: #f8fafc !important; color: #1e293b !important;
  font: 14px/1 system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  cursor: pointer; text-align: left; white-space: nowrap; overflow: hidden;
  transition: border-color .15s, background .15s;
  box-sizing: border-box; text-shadow: none !important;
}
.floteo-date-trigger:hover,
.floteo-date-trigger:focus {
  border-color: var(--floteo-primary) !important; background: #fff !important;
  color: #1e293b !important;
  box-shadow: 0 0 0 3px rgba(14,165,233,.15) !important; outline: none !important;
}
.floteo-date-trigger-icon { flex-shrink: 0; color: #94a3b8; }
.floteo-date-trigger-text { flex: 1; overflow: hidden; text-overflow: ellipsis; }
.floteo-date-trigger-arrow { flex-shrink: 0; font-size: 10px; color: #94a3b8; }

/* Backdrop — sempre visibile quando il popup è aperto (mobile e desktop) */
.floteo-date-backdrop {
  display: block;
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,.72); backdrop-filter: blur(4px);
}
.floteo-date-backdrop[hidden] { display: none !important; }

/* Popup card — sempre centrato nel viewport come modale */
.floteo-date-popup {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background: #fff; border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.22), 0 2px 8px rgba(0,0,0,.12);
  border: 1px solid #e2e8f0;
  width: fit-content;
  max-width: calc(100vw - 32px);
  max-height: 90svh;
  overflow-y: auto;
  overflow-x: hidden;
}
.floteo-date-popup[hidden] { display: none; }

/* Flatpickr calendar inside popup */
.floteo-calendar-wrap {
  padding: 16px 16px 4px;
}
.floteo-calendar-wrap .flatpickr-calendar {
  box-shadow: none; border: none; background: transparent;
}

/* Dropdown orari nel popup: apre verso l'alto per non essere tagliato dal bordo inferiore */
.floteo-date-popup .floteo-widget__time-dropdown {
  top: auto;
  bottom: calc(100% + 4px);
}
.floteo-calendar-wrap .flatpickr-months { margin-bottom: 4px; }
.floteo-calendar-wrap .flatpickr-day.selected,
.floteo-calendar-wrap .flatpickr-day.startRange,
.floteo-calendar-wrap .flatpickr-day.endRange {
  background: var(--floteo-primary) !important;
  border-color: var(--floteo-primary) !important;
  color: #fff !important;
}
.floteo-calendar-wrap .flatpickr-day.inRange {
  background: rgba(14,165,233,.13) !important;
  border-color: transparent !important;
  box-shadow: -5px 0 0 rgba(14,165,233,.13), 5px 0 0 rgba(14,165,233,.13) !important;
  color: #1e293b !important;
}
.floteo-calendar-wrap .flatpickr-day.today {
  border-color: var(--floteo-primary) !important;
}
.floteo-calendar-wrap .flatpickr-day.today:not(.selected):not(.startRange):not(.endRange) {
  color: var(--floteo-primary) !important;
}
.floteo-calendar-wrap .flatpickr-day:hover {
  background: #f1f5f9 !important; border-color: transparent !important; color: #1e293b !important;
}
.floteo-calendar-wrap .numInputWrapper:hover,
.floteo-calendar-wrap .flatpickr-prev-month:hover svg,
.floteo-calendar-wrap .flatpickr-next-month:hover svg { fill: var(--floteo-primary) !important; }
.floteo-calendar-wrap .flatpickr-current-month { font-size: 15px; font-weight: 700; }
.floteo-calendar-wrap .flatpickr-weekday {
  font: 600 11px/1 system-ui, -apple-system, sans-serif;
  color: #94a3b8 !important; text-transform: uppercase; letter-spacing: .04em;
}

/* Time row inside popup */
.floteo-popup-times {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-top: 1px solid #f1f5f9;
}
.floteo-popup-time-col { flex: 1; min-width: 0; }
.floteo-popup-time-label {
  font: 600 11px/1 system-ui, -apple-system, sans-serif;
  text-transform: uppercase; letter-spacing: .06em; color: #64748b; margin-bottom: 5px;
}
.floteo-popup-time-sep { color: #cbd5e1; font-size: 18px; flex-shrink: 0; padding-top: 20px; }

/* Footer: days label + Conferma */
.floteo-popup-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px 14px; gap: 12px;
}
.floteo-popup-days {
  font: 500 13px/1 system-ui, -apple-system, sans-serif; color: #64748b;
}
.floteo-popup-confirm {
  height: 36px; padding: 0 18px;
  border: none; border-radius: 8px;
  background: var(--floteo-primary); color: #fff;
  font: 600 14px/1 system-ui, -apple-system, sans-serif;
  cursor: pointer; flex-shrink: 0;
  transition: filter .15s, transform .1s, opacity .15s;
}
.floteo-popup-confirm:hover  { filter: brightness(1.1); }
.floteo-popup-confirm:active { transform: scale(.97); }
.floteo-popup-confirm:disabled {
  opacity: .45; cursor: not-allowed; filter: none; transform: none;
}

/* Avviso date mancanti sotto il pulsante Conferma */
.floteo-popup-warn {
  font: 500 12px/1.3 system-ui, -apple-system, sans-serif;
  color: #ef4444; text-align: right;
  padding: 0 16px 10px;
  min-height: 0; max-height: 0; overflow: hidden;
  opacity: 0; transition: max-height .2s ease, opacity .2s ease;
}
.floteo-popup-warn.is-visible {
  max-height: 40px; opacity: 1;
}

/* CTA disabled state */
.floteo-widget__cta:disabled {
  opacity: .45; cursor: not-allowed; filter: none; transform: none;
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */

@media (max-width: 640px) {
  .floteo-widget { padding: 16px; border-radius: 12px; }

  .floteo-widget__inner { flex-direction: column; align-items: stretch; gap: 8px; }

  .floteo-widget__arrow { display: none; }

  .floteo-widget__time { flex: 0 0 80px; }

  .floteo-widget__cta { width: 100%; height: 48px; font-size: 16px; border-radius: 12px; }


  /* Modale su mobile: margine laterale 0, ma bordi arrotondati in alto */
  .floteo-modal__container {
    max-width: 100%; border-radius: 20px 20px 0 0;
    height: calc(100% - 20px); margin-top: 20px;
  }
}

@media (min-width: 641px) {
  /* Margine verticale su desktop per non coprire il 100% */
  .floteo-modal { padding: 24px 0; align-items: center; }
  .floteo-modal__container { border-radius: 16px; height: calc(100% - 48px); }
}

/* ── Selettore lingua standalone ([floteo_lang_switcher] e versione sticky) ── */

.floteo-lang-switcher {
  --floteo-primary: #0ea5e9;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  display: inline-block;
  position: relative;
}

/* Fisso in un angolo dello schermo (impostazione admin plugin) */
.floteo-lang-switcher--sticky {
  position: fixed;
  z-index: 9990;
}
.floteo-lang-switcher--top-left     { top: 16px;   left: 16px; }
.floteo-lang-switcher--top-right    { top: 16px;   right: 16px; }
.floteo-lang-switcher--bottom-left  { bottom: 24px; left: 16px; }
.floteo-lang-switcher--bottom-right { bottom: 24px; right: 16px; }

/* Per gli angoli in basso il dropdown si apre verso l'alto */
.floteo-lang-switcher--bottom-left  .floteo-widget__lang-dropdown,
.floteo-lang-switcher--bottom-right .floteo-widget__lang-dropdown {
  top: auto;
  bottom: calc(100% + 6px);
}

/* ── Nascondi Google Translate toolbar ──────────────────────────────────────── */
/* GT aggiunge una barra in cima alla pagina e sposta il body verso il basso.   */
/* Il trigger è la bandierina Floteo — la toolbar GT è ridondante.              */

.goog-te-banner-frame,
.skiptranslate > iframe,
#goog-gt-tt,
.goog-te-balloon-frame { display: none !important; }

body { top: 0 !important; }

/* Alcune versioni GT usano classi offuscate — le aggiungiamo per sicurezza */
.VIpgJd-ZVi9od-ORHb { display: none !important; }

/* ── Bandierina nel menu di navigazione ─────────────────────────────────────── */

.floteo-menu-lang-item {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0 !important;
}

.floteo-lang-switcher--menu-item {
  display: inline-flex;
  align-items: center;
}

/* Il dropdown si apre verso il basso allineato a destra dell'elemento menu */
.floteo-lang-switcher--menu-item .floteo-widget__lang-dropdown {
  right: 0;
  left: auto;
}

/* ── Preset widget alternativi ──────────────────────────────────────────────── */
/* "Bottone semplice" non ha CSS qui di proposito: eredita lo stile nativo del   */
/* tema/builder ospitante (button { ... } o .wp-element-button definiti altrove).*/
/* Ogni preset legge --floteo-bg/--floteo-accent/--floteo-text dall'inline style */
/* generato da preset_color_style() in PHP — vuoto se il tenant non ha           */
/* personalizzato, nel qual caso si usa il fallback var() = colore di default.   */

.floteo-preset-styledbtn {
  display: block;
  max-width: fit-content;
  margin: 0 auto;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 20px 52px;
  font-size: 18px;
  font-weight: 700;
  color: var(--floteo-text, #ffffff);
  background: var(--floteo-bg, #0F766E);
  box-shadow: 0 12px 30px rgba(15,118,110,.25);
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
  animation: floteo-pulse-teal 2.2s infinite;
  white-space: nowrap;
}
.floteo-preset-styledbtn:hover {
  background: var(--floteo-bg-hover, #14b8a6);
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(20,184,166,.30);
}
.floteo-preset-styledbtn:active { transform: translateY(-1px); }
@media (max-width: 768px) {
  .floteo-preset-styledbtn { width: 100%; max-width: 420px; padding: 18px 24px; font-size: 17px; }
}

.floteo-preset-premium { display: block; max-width: 550px; }
.floteo-preset-premium__inner {
  padding: 40px;
  border-radius: 24px;
  background: var(--floteo-bg, linear-gradient(135deg,#111,#333));
  color: #fff;
  cursor: pointer;
  text-align: center;
}
.floteo-preset-premium__inner h3 { margin: 0 0 10px; }
.floteo-preset-premium__inner p { margin: 0 0 25px; opacity: .85; }
.floteo-preset-premium__cta {
  display: inline-block;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 20px 52px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: var(--floteo-accent, #0F766E);
  box-shadow: 0 12px 30px rgba(15,118,110,.25);
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
  animation: floteo-pulse-teal 2.2s infinite;
  white-space: nowrap;
}
.floteo-preset-premium__inner:hover .floteo-preset-premium__cta {
  background: #14b8a6;
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(20,184,166,.30);
}
@media (max-width: 768px) {
  .floteo-preset-premium__cta { width: 100%; max-width: 420px; padding: 18px 24px; font-size: 17px; }
}

.floteo-preset-bannerh { display: block; }
.floteo-preset-bannerh__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding: 40px 30px;
  border-radius: 18px;
  background: var(--floteo-bg, linear-gradient(90deg,#ff7a00,#ff9900));
  color: #fff;
  cursor: pointer;
}
.floteo-preset-bannerh__text strong { display: block; font-size: 1.35em; margin-bottom: 5px; }
.floteo-preset-bannerh__text span { opacity: .95; }
.floteo-preset-bannerh__cta {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 20px 52px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: var(--floteo-accent, #0F766E);
  box-shadow: 0 12px 30px rgba(15,118,110,.25);
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
  animation: floteo-pulse-teal 2.2s infinite;
  white-space: nowrap;
  flex-shrink: 0;
}
.floteo-preset-bannerh__inner:hover .floteo-preset-bannerh__cta {
  background: #14b8a6;
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(20,184,166,.30);
}
@media (max-width: 768px) {
  .floteo-preset-bannerh__cta { width: 100%; max-width: 420px; padding: 18px 24px; font-size: 17px; }
}

.floteo-preset-ctabox { display: block; }
.floteo-preset-ctabox__inner {
  text-align: center;
  padding: 60px 30px;
  background: var(--floteo-bg, #f7f8fa);
  border-radius: 30px;
  cursor: pointer;
}
.floteo-preset-ctabox__badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  background: #e7fff0;
  color: #0f8f45;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
}
.floteo-preset-ctabox__inner h2 { margin: 0 0 15px; color: #111; }
.floteo-preset-ctabox__inner p { max-width: 650px; margin: 0 auto 30px; color: #666; line-height: 1.6; }
.floteo-preset-ctabox__cta {
  display: inline-block;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 20px 52px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: var(--floteo-accent, #0F766E);
  box-shadow: 0 12px 30px rgba(15,118,110,.25);
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
  animation: floteo-pulse-teal 2.2s infinite;
  white-space: nowrap;
}
.floteo-preset-ctabox__inner:hover .floteo-preset-ctabox__cta {
  background: #14b8a6;
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(20,184,166,.30);
}
@keyframes floteo-pulse-teal {
  0%   { box-shadow: 0 0 0 0 rgba(15,118,110,.22), 0 12px 30px rgba(15,118,110,.25); }
  70%  { box-shadow: 0 0 0 24px rgba(15,118,110,0), 0 12px 30px rgba(15,118,110,.25); }
  100% { box-shadow: 0 0 0 0 rgba(15,118,110,0), 0 12px 30px rgba(15,118,110,.25); }
}
@media (max-width: 768px) {
  .floteo-preset-ctabox__cta { width: 100%; max-width: 420px; padding: 18px 24px; font-size: 17px; }
}

.floteo-preset-rental { display: block; }
.floteo-preset-rental__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px;
  border-radius: 28px;
  background: var(--floteo-bg, linear-gradient(135deg, #0d0d0d 0%, #171717 60%, #222222 100%));
  border: 1px solid rgba(15,118,110,.25);
  box-shadow: 0 15px 40px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.04);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
}
.floteo-preset-rental__inner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(15,118,110,.12);
  top: -150px;
  right: -120px;
  filter: blur(40px);
}
.floteo-preset-rental__badge {
  position: relative; z-index: 2;
  display: inline-block;
  background: rgba(15,118,110,.18);
  color: var(--floteo-accent, #4fd1c5);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(79,209,197,.2);
  margin-bottom: 20px;
}
.floteo-preset-rental__inner h2 {
  position: relative; z-index: 2;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 15px;
  max-width: 700px;
}
.floteo-preset-rental__inner p {
  position: relative; z-index: 2;
  color: #bdbdbd;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 0 35px;
}
.floteo-preset-rental__cta {
  position: relative; z-index: 2;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 20px 52px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: var(--floteo-accent, #0F766E);
  box-shadow: 0 12px 30px rgba(15,118,110,.25);
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
  animation: floteo-pulse-teal 2.2s infinite;
  white-space: nowrap;
}
.floteo-preset-rental__inner:hover .floteo-preset-rental__cta {
  background: #14b8a6;
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(20,184,166,.30);
}
@media (max-width: 768px) {
  .floteo-preset-rental__inner { padding: 35px 25px; }
  .floteo-preset-rental__cta { width: 100%; max-width: 420px; padding: 18px 24px; font-size: 17px; }
}
