#ct-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0f1f3d;
  border-top: 2px solid #1d4ed8;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
#ct-sticky-bar.ct-sticky--visible {
  transform: translateY(0);
}
.ct-sticky__text {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}
.ct-sticky__phrase-wrap {
  display: inline-block;
  min-width: 11em;
  margin-left: -0.22em;
}
.ct-sticky__desktop {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ct-sticky__mobile {
  display: none;
}
#ct-sticky-phrase,
#ct-sticky-phrase-mobile {
  display: inline-block;
  color: #93c5fd;
  font-weight: 800;
  transition: opacity 0.3s ease;
}
#ct-sticky-phrase.ct-phrase--fade,
#ct-sticky-phrase-mobile.ct-phrase--fade {
  opacity: 0;
}
.ct-sticky__btn {
  display: inline-flex;
  align-items: center;
  background: #f97316;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none !important;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(249, 115, 22, 0.4);
  transition: background 0.2s ease;
}
.ct-sticky__btn:hover {
  background: #ea6a00 !important;
  color: #fff !important;
}
.ct-sticky__dismiss {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
  flex-shrink: 0;
  transition: color 0.2s;
}
.ct-sticky__dismiss:hover {
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 600px) {
  #ct-sticky-bar {
    gap: 10px;
    padding: 0 14px;
  }
  .ct-sticky__desktop {
    display: none;
  }
  .ct-sticky__mobile {
    display: flex;
    align-items: center;
    gap: 0;
  }
  .ct-sticky__btn {
    font-size: 13px;
    padding: 9px 14px;
  }
}
