.floating-progress-global {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: white;
  border-radius: 20px;
  padding: 18px 22px;
  box-shadow: 0 12px 40px rgba(0, 58, 64, 0.18);
  width: 300px;
  border: 1px solid #EAEAE2;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Lato", sans-serif;
  cursor: default;
  /* Guest mode */
  /* Compact mode (pastille ronde) */
  /* Cookie banner offset */
  /* Responsive */
}

.floating-progress-global:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 58, 64, 0.22);
}

.floating-progress-global .fp-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.floating-progress-global .fp-label {
  font-size: 10px;
  font-weight: 700;
  color: #003A40;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.floating-progress-global .fp-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7ED58A;
}

.floating-progress-global .fp-close {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FAF8F2;
  color: #6B6B7A;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}

.floating-progress-global .fp-close:hover {
  background: #EAEAE2;
}

.floating-progress-global .fp-nums {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.floating-progress-global .fp-nums .pts {
  font-family: "Lora", serif;
  font-style: italic;
  font-size: 36px;
  color: #FFA949;
  font-weight: 600;
  line-height: 1;
}

.floating-progress-global .fp-nums .max {
  font-size: 14px;
  color: #6B6B7A;
  font-weight: 600;
}

.floating-progress-global .fp-tier {
  font-size: 12px;
  color: #363642;
  margin-bottom: 12px;
}

.floating-progress-global .fp-tier b {
  color: #7ED58A;
  font-weight: 700;
}

.floating-progress-global .fp-bar {
  background: #FAF8F2;
  height: 6px;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 14px;
}

.floating-progress-global .fp-bar div {
  height: 100%;
  background: linear-gradient(90deg, #FFA949, #FFC079);
  border-radius: 99px;
}

.floating-progress-global .fp-cta {
  width: 100%;
  background: #FFA949;
  color: white;
  font-weight: 700;
  padding: 11px;
  border-radius: 99px;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  display: block;
  text-align: center;
  text-decoration: none;
}

.floating-progress-global .fp-cta:hover {
  background: #F09838;
  color: white;
}

.floating-progress-global.is-guest .fp-guest-msg {
  font-size: 13px;
  line-height: 1.5;
  color: #003A40;
  margin: 10px 0 14px;
  padding: 10px 12px;
  background: #E7F0C9;
  border-radius: 10px;
  border-left: 3px solid #7ED58A;
}

.floating-progress-global.is-guest .fp-guest-msg .fp-guest-link {
  color: #FFA949;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.floating-progress-global.is-guest .fp-guest-msg .fp-guest-link:hover {
  color: #003A40;
  text-decoration: underline;
}

.floating-progress-global.is-guest .fp-nums-demo {
  opacity: 0.55;
}

.floating-progress-global.is-guest .fp-cta-link {
  display: block;
  text-align: center;
  text-decoration: none;
  background: #FFA949;
  color: white;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 20px;
  margin-top: 10px;
  transition: background 0.2s;
}

.floating-progress-global.is-guest .fp-cta-link:hover {
  background: #FFC079;
  color: #003A40;
}

.floating-progress-global.is-compact {
  cursor: pointer;
  width: 72px;
  height: 72px;
  min-width: 0;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.floating-progress-global.is-compact .fp-head .fp-label,
.floating-progress-global.is-compact .fp-tier,
.floating-progress-global.is-compact .fp-bar,
.floating-progress-global.is-compact .fp-cta,
.floating-progress-global.is-compact .fp-cta-link,
.floating-progress-global.is-compact .fp-guest-msg,
.floating-progress-global.is-compact .fp-nums-demo {
  display: none;
}

.floating-progress-global.is-compact .fp-head {
  position: absolute;
  top: 4px;
  right: 6px;
}

.floating-progress-global.is-compact .fp-head .fp-close {
  display: none;
}

.floating-progress-global.is-compact .fp-nums {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.floating-progress-global.is-compact .fp-nums .pts {
  font-size: 22px;
  font-weight: 700;
  color: #003A40;
  line-height: 1;
  font-family: "Lato", sans-serif;
  font-style: normal;
}

.floating-progress-global.is-compact .fp-nums .max {
  font-size: 9px;
}

body.cc-banner-visible .floating-progress-global {
  bottom: 180px;
}

@media (max-width: 700px) {
  .floating-progress-global {
    bottom: 16px;
    right: 16px;
    left: 16px;
    width: auto;
    padding: 14px 18px;
  }
}

.floating-progress,
.floating-progress-global {
  position: relative;
}

.floating-progress .fp-help,
.floating-progress-global .fp-help {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #003A40;
  color: white;
  border: 2px solid white;
  font-family: "Lora", serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 58, 64, 0.3);
  transition: all 0.25s;
  z-index: 10;
  padding: 0;
  line-height: 1;
}

.floating-progress .fp-help:hover,
.floating-progress-global .fp-help:hover {
  background: #FFA949;
  transform: scale(1.1);
}

.floating-progress .fp-help:hover .fp-help-tooltip,
.floating-progress .fp-help:focus .fp-help-tooltip,
.floating-progress-global .fp-help:hover .fp-help-tooltip,
.floating-progress-global .fp-help:focus .fp-help-tooltip {
  opacity: 1;
  transform: translate(-50%, -8px);
  pointer-events: auto;
}

.floating-progress .fp-help-tooltip,
.floating-progress-global .fp-help-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  background: #003A40;
  color: white;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 11px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s;
  font-weight: 600;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}

.floating-progress .fp-help-tooltip::after,
.floating-progress-global .fp-help-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #003A40;
}

