.fcte-mobile-bar,
.fcte-mobile-button,
.fcte-desktop-button {
  font-family: "Rajdhani", sans-serif;
  box-sizing: border-box;
}

.fcte-mobile-bar {
  background-color: var(--fcte-mobile-bg, #2B2B2B);
  padding: 10px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  display: flex;
  gap: 10px;
  border-radius: 10px 10px 0 0;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 99999;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: transform 300ms ease, opacity 300ms ease;
}

.fcte-mobile-button {
  flex: 1;
  padding: 14px 12px;
  text-align: center;
  text-decoration: none;
  color: var(--fcte-mobile-text, #FFFFFF);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: filter 0.15s ease-in-out;
}

.fcte-mobile-button:hover,
.fcte-mobile-button:focus-visible {
  filter: brightness(1.08);
}

.fcte-mobile-button:focus-visible,
.fcte-desktop-button:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}

.fcte-mobile-button.fcte-btn-1 {
  background-color: var(--fcte-mobile-btn-1-bg, #FD66AA);
}

.fcte-mobile-button.fcte-btn-2 {
  background-color: var(--fcte-mobile-btn-2-bg, #F9A041);
}

.fcte-mobile-button.fcte-btn-3 {
  background-color: var(--fcte-mobile-btn-3-bg, #56B480);
}

.fcte-desktop-button {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translate(100%, -50%);
  padding: 22px 12px;
  background-color: var(--fcte-desktop-bg, #FD66AA);
  color: #ffffff !important;
  text-decoration: none;
  font-weight:700;
  font-size: 18px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  border-radius:10px;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: transform 300ms ease, opacity 300ms ease, filter 0.15s ease-in-out;
}

.fcte-desktop-button:hover,
.fcte-desktop-button:focus-visible {
  filter: brightness(1.08);
}

.fcte-floating-wrap.fcte-is-visible .fcte-mobile-bar {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fcte-floating-wrap.fcte-is-visible .fcte-desktop-button {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}

@media (max-width: 767px) {
  .fcte-desktop-button {
    display: none;
  }
}

@media (min-width: 768px) {
  .fcte-mobile-bar {
    display: none;
  }
}
