.cd-tempo {
  --cd-tempo-bg: var(--cd-brand-night, #0b1f4d);
  --cd-tempo-bg-alt: #162a5c;
  --cd-tempo-text: #f7f4fb;
  --cd-tempo-muted: rgba(247, 244, 251, 0.72);
  --cd-tempo-accent: var(--cd-brand-violet, #6a3fb5);
  --cd-tempo-magenta: var(--cd-brand-magenta, #c04ba5);
  --cd-tempo-live: #d64545;
  --cd-tempo-social: #e08ac8;
  --cd-tempo-progress: #e6c35c;
  --cd-tempo-community: #7ec8e8;
  --cd-tempo-success: #7dcea0;
  --cd-tempo-warning: #f08a4b;
  --cd-tempo-radius: 16px;
  --cd-tempo-radius-sm: 999px;
  --cd-tempo-gap: 0.85rem;
  --cd-tempo-h: 68px;
  --cd-tempo-mobile-height: 62px;
  --cd-tempo-mobile-h: 62px;
  --cd-tempo-fab-lane: 52px;
  --cd-fab-lane-height: var(--cd-tempo-fab-lane);
  --cd-fab-lane-h: 52px;
  --cd-tempo-mobile-gap: 3px;
  --cd-tempo-category-color: var(--cd-tempo-magenta);
  --cd-tempo-transition: 360ms;
  --cd-tempo-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --cd-tempo-dur: 360ms;
  --cd-tempo-shadow: 0 -8px 28px rgba(11, 31, 77, 0.18);
  --cd-tempo-inner-max: none;
  --cd-tempo-cat: var(--cd-tempo-magenta);
  --cd-tempo-ticker-dur: 40s;
  --cd-tempo-pxs: 42;
  display: block;
  width: 100%;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--cd-tempo-text);
  background: linear-gradient(90deg, var(--cd-tempo-bg) 0%, var(--cd-tempo-bg-alt) 52%, #1a2150 100%);
  border-top: 3px solid var(--cd-tempo-magenta);
  box-shadow: var(--cd-tempo-shadow);
  box-sizing: border-box;
}
.cd-tempo *,
.cd-tempo *::before,
.cd-tempo *::after {
  box-sizing: border-box;
}
.cd-tempo__bleed {
  width: 100%;
}
.cd-tempo__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--cd-tempo-gap) 1.15rem;
  width: 100%;
  max-width: none;
  min-height: var(--cd-tempo-h);
  max-height: 80px;
  margin: 0;
  padding: 0.5rem max(5.5rem, env(safe-area-inset-right, 0px)) 0.5rem max(4.5rem, env(safe-area-inset-left, 0px));
}
.cd-tempo__identity {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
  min-width: 0;
  padding-left: 0.75rem;
  border-left: 3px solid var(--cd-tempo-magenta);
}
.cd-tempo__brand {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}
.cd-tempo__brand-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}
.cd-tempo__brand-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  border-radius: 6px;
}
.cd-tempo__header-cat {
  display: none;
  align-items: center;
  gap: 0.28rem;
  min-width: 0;
  padding: 0.1rem 0.45rem;
  border-radius: var(--cd-tempo-radius-sm);
  background: color-mix(in srgb, var(--cd-tempo-cat, var(--cd-tempo-magenta)) 22%, transparent);
  color: #f7e8f3;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}
.cd-tempo__tagline {
  appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cd-tempo-magenta);
  cursor: pointer;
  font-family: inherit;
}
.cd-tempo__tagline:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  border-radius: 6px;
}
.cd-tempo__dot {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--cd-tempo-magenta);
  box-shadow: 0 0 0 0 rgba(192, 75, 165, 0.45);
  animation: cd-tempo-pulse 2.4s var(--cd-tempo-ease) infinite;
}
.cd-tempo__stage {
  min-width: 0;
  overflow: hidden;
  flex: 1 1 auto;
  width: 100%;
}
.cd-tempo__ticker {
  display: none;
  min-width: 0;
  width: 100%;
}
.cd-tempo.is-ready .cd-tempo__ticker {
  display: block;
}
.cd-tempo__ticker-viewport {
  overflow: hidden;
  width: 100%;
  min-width: 0;
}
.cd-tempo__ticker-track {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  width: max-content;
  will-change: transform;
}
.cd-tempo__sep {
  flex-shrink: 0;
  color: var(--cd-tempo-magenta);
  opacity: 0.72;
  font-size: 0.7rem;
}
.cd-tempo__ticker .cd-tempo__item {
  flex: 0 0 auto;
  max-width: none;
}
.cd-tempo__ticker .cd-tempo__headline {
  white-space: nowrap;
  overflow: visible;
  text-overflow: unset;
}
.cd-tempo__pos {
  display: none;
  font-variant-numeric: tabular-nums;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(247, 244, 251, 0.82);
  min-width: 2.4em;
  text-align: right;
}
.cd-tempo.is-solo [data-cd-tempo-prev],
.cd-tempo.is-solo [data-cd-tempo-next],
.cd-tempo.is-solo .cd-tempo__pos {
  display: none !important;
}
.cd-tempo__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  padding: 0.1rem 0.15rem;
}
.cd-tempo__item[data-cat="social"] { --cd-tempo-cat: var(--cd-tempo-social); }
.cd-tempo__item[data-cat="progress"] { --cd-tempo-cat: var(--cd-tempo-progress); }
.cd-tempo__item[data-cat="ranking"] { --cd-tempo-cat: var(--cd-tempo-progress); }
.cd-tempo__item[data-cat="community"] { --cd-tempo-cat: var(--cd-tempo-community); }
.cd-tempo__item[data-cat="live"] { --cd-tempo-cat: var(--cd-tempo-live); }
.cd-tempo__item[data-cat="success"] { --cd-tempo-cat: var(--cd-tempo-success); }
.cd-tempo__item[data-cat="tonight"] { --cd-tempo-cat: var(--cd-tempo-community); }
.cd-tempo__item[data-cat="nearby"] { --cd-tempo-cat: var(--cd-tempo-community); }
.cd-tempo__item[data-cat="pour-toi"] { --cd-tempo-cat: var(--cd-tempo-progress); }
.cd-tempo__item[data-cat="warning"] { --cd-tempo-cat: var(--cd-tempo-warning); }
.cd-tempo__item[data-cat="brand"] { --cd-tempo-cat: var(--cd-tempo-magenta); }
.cd-tempo__header-cat[data-cat="social"] { --cd-tempo-cat: var(--cd-tempo-social); }
.cd-tempo__header-cat[data-cat="progress"],
.cd-tempo__header-cat[data-cat="pour-toi"],
.cd-tempo__header-cat[data-cat="ranking"] { --cd-tempo-cat: var(--cd-tempo-progress); }
.cd-tempo__header-cat[data-cat="community"] { --cd-tempo-cat: var(--cd-tempo-community); }
.cd-tempo__header-cat[data-cat="live"] { --cd-tempo-cat: var(--cd-tempo-live); }
.cd-tempo__header-cat[data-cat="success"] { --cd-tempo-cat: var(--cd-tempo-success); }
.cd-tempo__header-cat[data-cat="tonight"],
.cd-tempo__header-cat[data-cat="nearby"] { --cd-tempo-cat: var(--cd-tempo-community); }
.cd-tempo__header-cat[data-cat="warning"] { --cd-tempo-cat: var(--cd-tempo-warning); }
.cd-tempo__cat {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.28rem;
  padding: 0.14rem 0.5rem;
  border-radius: var(--cd-tempo-radius-sm);
  background: color-mix(in srgb, var(--cd-tempo-cat) 18%, transparent);
  color: var(--cd-tempo-cat);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}
.cd-tempo__headline {
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.3;
  color: var(--cd-tempo-text);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cd-tempo__item:hover .cd-tempo__headline,
.cd-tempo__item:focus-visible .cd-tempo__headline {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.cd-tempo__item:focus-visible {
  outline: 2px solid var(--cd-tempo-accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.cd-tempo__card {
  display: none;
}
.cd-tempo__card-cta {
  display: none;
}
.cd-tempo__data {
  display: none;
}
.cd-tempo__controls {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.cd-tempo__icon-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  padding: 0;
  border: 0;
  border-radius: var(--cd-tempo-radius-sm);
  background: transparent;
  color: var(--cd-tempo-text);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}
.cd-tempo__icon-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}
.cd-tempo__icon-btn:focus-visible,
.cd-tempo__tab:focus-visible,
.cd-tempo__sheet-close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.cd-tempo__icon-btn--open .cd-tempo__chevron {
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 700;
}
.cd-tempo__icon-btn--open:hover .cd-tempo__chevron {
  transform: translateX(2px);
}
.cd-tempo__pause-icon {
  display: block;
  width: 11px;
  height: 13px;
  background:
    linear-gradient(var(--cd-tempo-text), var(--cd-tempo-text)) 0 0 / 3px 100% no-repeat,
    linear-gradient(var(--cd-tempo-text), var(--cd-tempo-text)) 8px 0 / 3px 100% no-repeat;
}
.is-paused .cd-tempo__pause-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent var(--cd-tempo-text);
  background: none;
}
.cd-tempo__panel[hidden] {
  display: none;
}
.cd-tempo__panel:not([hidden]) {
  display: block;
}
.cd-tempo__backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(8, 14, 36, 0.52);
  z-index: 10040;
  cursor: pointer;
}
.cd-tempo__sheet {
  position: fixed;
  z-index: 10050;
  background: #121a42;
  color: var(--cd-tempo-text);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}
.cd-tempo__handle {
  display: none;
  width: 2.5rem;
  height: 0.28rem;
  margin: 0.55rem auto 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.28);
}
.cd-tempo__sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem 0.35rem;
}
.cd-tempo__sheet-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
}
.cd-tempo__tabs {
  display: flex;
  gap: 0.2rem;
  padding: 0 1rem 0.4rem;
}
.cd-tempo__tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--cd-tempo-muted);
  padding: 0.4rem 0.55rem;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-size: 0.82rem;
}
.cd-tempo__tab.is-active {
  color: #fff;
  border-bottom-color: var(--cd-tempo-magenta);
  font-weight: 700;
}
.cd-tempo__feed {
  list-style: none;
  margin: 0;
  padding: 0.15rem 0 0.85rem;
  max-height: min(70vh, 28rem);
  overflow: auto;
}
.cd-tempo__feed-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 0.7rem;
  padding: 0.7rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.cd-tempo__feed-cat {
  grid-column: 2;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cd-tempo-magenta);
}
.cd-tempo__feed-rel {
  grid-column: 2;
  font-size: 0.75rem;
  color: var(--cd-tempo-muted);
}
.cd-tempo__feed-cta {
  grid-column: 2;
  color: var(--cd-tempo-community);
  font-size: 0.8rem;
}

@keyframes cd-tempo-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(192, 75, 165, 0.35); }
  50% { opacity: 0.55; box-shadow: 0 0 0 6px rgba(192, 75, 165, 0); }
}
@keyframes cd-tempo-crawl {
  from { opacity: 1; }
  to { opacity: 1; }
}

@media (min-width: 721px) {
  .cd-tempo__sheet {
    top: auto;
    right: 1.5rem;
    bottom: 5.25rem;
    left: auto;
    width: min(440px, calc(100vw - 2rem));
    border-radius: 14px;
    border: 1px solid rgba(192, 75, 165, 0.28);
  }
}

@media (max-width: 767px) {
  .cd-tempo {
    --cd-tempo-h: var(--cd-tempo-mobile-h, 62px);
    --cd-tempo-category-color: var(--cd-tempo-magenta);
    border-top: 0;
    border-radius: 8px 8px 0 0;
    box-shadow: var(--cd-tempo-shadow);
    max-height: 68px;
    background:
      linear-gradient(90deg, var(--cd-tempo-magenta) 0%, var(--cd-tempo-accent) 55%, var(--cd-tempo-progress) 100%) top / 100% 2px no-repeat,
      linear-gradient(180deg, #162a5c 0%, #0f2860 100%);
  }
  .cd-tempo__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: 22px 22px;
    grid-template-areas:
      "brand cat controls"
      "stage stage stage";
    max-height: 68px;
    min-height: 56px;
    gap: 0 0.4rem;
    padding: 5px 8px;
    padding-left: max(8px, env(safe-area-inset-left, 0px));
    padding-right: max(8px, env(safe-area-inset-right, 0px));
  }
  .cd-tempo__identity {
    display: flex;
    flex-direction: row;
    align-items: center;
    grid-area: brand;
    padding-left: 0;
    border-left: 0;
    gap: 0;
  }
  .cd-tempo__brand {
    grid-area: auto;
    padding-left: 0;
    border-left: 0;
  }
  .cd-tempo__brand-name {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
  .cd-tempo__tagline {
    display: none !important;
  }
  .cd-tempo__header-cat {
    display: inline-flex !important;
    grid-area: cat;
    align-self: center;
    justify-self: start;
    width: max-content;
    max-width: 100%;
    overflow: hidden;
  }
  .cd-tempo__controls {
    grid-area: controls;
    align-self: center;
    height: 22px;
    min-height: 0;
    gap: 0.15rem;
    overflow: visible;
  }
  .cd-tempo__pos {
    display: inline-block;
    margin-right: 0.15rem;
    color: #fff;
    font-size: 0.62rem;
  }
  .cd-tempo__stage {
    grid-area: stage;
    min-width: 0;
    overflow: hidden;
  }
  .cd-tempo.is-ready .cd-tempo__ticker,
  .cd-tempo__ticker {
    display: none !important;
  }
  .cd-tempo__card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    min-width: 0;
    padding: 0;
    touch-action: pan-y;
  }
  .cd-tempo__card .cd-tempo__item {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    max-width: none;
    padding: 0;
  }
  .cd-tempo__card .cd-tempo__cat {
    display: none !important;
  }
  .cd-tempo__card .cd-tempo__headline {
    display: inline-block;
    white-space: nowrap;
    overflow: visible;
    font-size: 0.88rem;
    font-weight: 650;
    line-height: 1.25;
    color: #f7f4fb;
    will-change: transform;
  }
  .cd-tempo__card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    color: #fff;
    white-space: nowrap;
    min-width: 1em;
  }
  .cd-tempo__card.is-swap .cd-tempo__item {
    animation: cd-tempo-swap var(--cd-tempo-transition, 320ms) var(--cd-tempo-ease);
  }
  .cd-tempo__icon-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    margin: -11px -8px;
    font-size: 1.05rem;
  }
  .cd-tempo__icon-btn[data-cd-tempo-prev],
  .cd-tempo__icon-btn[data-cd-tempo-next] {
    display: none !important;
  }
  /* --hidden via transform seul est écrasé (computed transform:none) et reste peint 81px. */
  body.cd-tempo-active #cd-compare-sticky-bar.cd-compare-bar--hidden,
  body.cd-tempo-active .cd-compare-bar.cd-compare-bar--hidden,
  body.cd-tempo-active #cd-compare-sticky-bar[aria-hidden="true"] {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
  }
  .cd-tempo__handle {
    display: block;
  }
  .cd-tempo__sheet {
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    max-height: min(88vh, 36rem);
    border-radius: 18px 18px 0 0;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
}

@keyframes cd-tempo-swap {
  from { opacity: 0.15; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 359px) {
  .cd-tempo__pos {
    display: none !important;
  }
  .cd-tempo__header-cat .cd-tempo__cat-label {
    max-width: 7.5em;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 767px) and (orientation: landscape) {
  .cd-tempo {
    --cd-tempo-mobile-h: 56px;
    max-height: 60px;
  }
  .cd-tempo__inner {
    max-height: 60px;
    min-height: 52px;
    padding-block: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cd-tempo *,
  .cd-tempo *::before,
  .cd-tempo *::after {
    animation: none !important;
    transition: none !important;
  }
  .cd-tempo__dot {
    animation: none;
    opacity: 1;
  }
  .cd-tempo__ticker-viewport {
    overflow-x: auto;
  }
  .cd-tempo__card.is-swap .cd-tempo__item {
    animation: none;
  }
}

:root {
  --cd-fab-lane-height: 52px;
  --cd-fab-lane-h: 52px;
  --cd-tempo-mobile-h: 62px;
  --cd-tempo-mobile-gap: 3px;
  --cd-compare-h: 0px;
  --cd-bottom-nav-h: var(--csn-bottom-h, 0px);
  --cd-mobile-ui-stack-h: 0px;
  --cd-bottom-stack-h: var(--cd-mobile-ui-stack-h);
}
body:has(#cd-compare-sticky-bar:not(.cd-compare-bar--hidden)) {
  --cd-compare-h: 52px;
}
body.cd-tempo-active:not(:has(.cdl-global-live__fab)):not(:has(#cdl-global-live-toggle)):not(:has(#car-root)) {
  --cd-fab-lane-h: 0px;
  --cd-fab-lane-height: 0px;
}

@media (max-width: 767px) {
  body.cd-tempo-active {
    --cd-tempo-mobile-h: 62px;
    --cd-fab-lane-height: 52px;
    --cd-fab-lane-h: 52px;
    --cd-tempo-fab-lane: var(--cd-fab-lane-h);
    --cd-tempo-mobile-gap: 3px;
    --cd-bottom-nav-h: var(--csn-bottom-h, 0px);
    --cd-mobile-ui-stack-h: calc(var(--cd-tempo-mobile-h, 62px) + var(--cd-fab-lane-h, 52px) + var(--cd-bottom-nav-h, var(--csn-bottom-h, 0px)) + var(--cd-compare-h, 0px) + var(--cd-tempo-mobile-gap, 3px) + env(safe-area-inset-bottom, 0px));
    --cd-bottom-stack-h: var(--cd-mobile-ui-stack-h);
    --cdl-global-live-fab-bottom: calc(var(--csn-bottom-h, 0px) + var(--cd-compare-h, 0px) + var(--cd-tempo-mobile-gap, 3px));
    padding-bottom: var(--cd-mobile-ui-stack-h);
  }
  body.cd-tempo-active.cd-fab-dock.cd-fab-dock-bar-active #page,
  body.cdsn-simple-mode.cd-tempo-active #page,
  body.cdsn-simple-mode.cd-tempo-active #content,
  body.cdsn-simple-mode.cd-tempo-active .site-content,
  body.cdsn-simple-mode.cd-tempo-active .cdsn-shell-content {
    padding-bottom: 0 !important;
  }
  body.cdsn-simple-mode.cd-tempo-active,
  body.cd-tempo-dock.cd-tempo-active {
    padding-bottom: var(--cd-mobile-ui-stack-h) !important;
  }
  body.cd-tempo-active .cd-tempo,
  body.cd-tempo-dock .cd-tempo {
    position: fixed;
    left: 0;
    right: 0;
    bottom: calc(var(--cd-bottom-nav-h, var(--csn-bottom-h, env(safe-area-inset-bottom, 0px))) + var(--cd-fab-lane-h, 52px) + var(--cd-compare-h, 0px));
    z-index: 10020;
  }
  body.cd-tempo-active .cdl-global-live--float .cdl-global-live__fab,
  body.cd-tempo-active .cdl-global-live__fab,
  body.cd-tempo-active #cdl-global-live-toggle,
  body:has(#cd-tempo) .cdl-global-live--float .cdl-global-live__fab,
  body:has(#cd-tempo) .cdl-global-live__fab,
  body:has(#cd-tempo) #cdl-global-live-toggle,
  body.cdsn-simple-mode.cd-tempo-active .cdl-global-live--float .cdl-global-live__fab,
  body.cdsn-simple-mode.cd-tempo-active #cdl-global-live-toggle.cdl-global-live__fab,
  body.cd-tempo-active:has(#car-root) .cdl-global-live--float .cdl-global-live__fab {
    left: max(12px, env(safe-area-inset-left, 0px)) !important;
    right: auto !important;
    bottom: calc(var(--cd-bottom-nav-h, var(--csn-bottom-h, 0px)) + var(--cd-compare-h, 0px) + var(--cd-tempo-mobile-gap, 3px)) !important;
  }
  body.cd-tempo-active .cda-assistant__toggle {
    bottom: calc(var(--cd-mobile-ui-stack-h, 0px) + 8px);
  }
  body.cd-tempo-active #car-root,
  body.cd-tempo-active .car-root,
  body.cdsn-simple-mode.cd-tempo-active #car-root {
    left: auto !important;
    right: max(12px, env(safe-area-inset-right, 0px)) !important;
    bottom: calc(var(--cd-bottom-nav-h, var(--csn-bottom-h, 0px)) + var(--cd-compare-h, 0px) + var(--cd-tempo-mobile-gap, 3px)) !important;
  }
  body.cd-tempo-active #ast-scroll-top,
  body.cd-tempo-active .ast-scroll-top-icon {
    bottom: calc(var(--cd-mobile-ui-stack-h, 0px) + 8px);
  }
}

body.cd-tempo-dock {
  --cd-tempo-mobile-h: 62px;
  --cd-fab-lane-height: 52px;
  --cd-fab-lane-h: 52px;
}
body.cd-tempo-dock.cdsn-simple-mode .cdl-global-live {
  --cdl-global-live-fab-bottom: calc(var(--csn-bottom-h, 68px) + var(--cd-compare-h, 0px) + var(--cd-tempo-mobile-gap, 3px));
}
