/* =========================
   CTA TAB BASE
========================= */
.tour-cta-tab {
  position: fixed;
  right: 0;
  top: 45%;
  transform: translateY(-50%) translateX(0);
  z-index: 9999;
  transition: transform 0.35s ease;
}

.tour-cta-tab.is-collapsed {
  transform: translateY(-50%) translateX(calc(100% - 58px));
}

/* =========================
   BUTTON STRUCTURE
========================= */
.tour-cta-tab a {
  position: relative;
  display: flex;
  align-items: stretch;
  text-decoration: none;
  color: #fff;
  border-radius: 60px 0 0 60px;
  overflow: hidden;
  background: #3287B1;
  box-shadow:
  -4px 8px 20px rgba(0, 0, 0, 0.24),
  -2px 2px 6px rgba(0, 0, 0, 0.18);
}

.tour-cta-tab a:hover,
.tour-cta-tab a:focus {
  color: #fff;
  text-decoration: none;
}

.tour-cta-tab .tour-cta-icon {
  position: relative;
  width: 58px;
  min-width: 58px;
  background: #395b90;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  flex-shrink: 0;
  overflow: hidden;
}

.tour-cta-tab .tour-cta-icon i {
  color: #fff;
  line-height: 1;
  margin-right: -7px;
}

.tour-cta-tab .tour-cta-text {
  background: #3287B1;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 18px 24px;
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}

/* =========================
   SHEEN EFFECT (ICON ONLY)
========================= */
.tour-cta-tab .tour-cta-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  opacity: 0;
}

.tour-cta-tab.is-collapsed .tour-cta-icon.sheen::after {
  animation: ctaSheen 0.7s ease;
}

@keyframes ctaSheen {
  0% {
    left: -120%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    left: 140%;
    opacity: 0;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 767px) {
  .tour-cta-tab {
    top: 175px;
    /* top: auto; */
    /* bottom: 100px; */
    transform: translateX(0);
  }

  .tour-cta-tab.is-collapsed {
    transform: translateX(calc(100% - 54px));
  }

  .tour-cta-tab .tour-cta-icon {
    width: 54px;
    min-width: 54px;
    font-size: 20px;
  }

  .tour-cta-tab .tour-cta-text {
    padding: 16px 18px;
    font-size: 15px;
  }
}