
.tezz-spotlight-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 27, 27, 0);
  z-index: 9990;
  pointer-events: none;          /* always passthrough until is-active */
  transition: background 0.6s ease;
}

.tezz-spotlight-overlay.is-active {
  background: rgba(6, 27, 27, 0.82);
  pointer-events: all;           /* blocks clicks on page while active */
}

/* ── 2. FIXED BOTTOM BAR ────────────────────────────────────────── */
.tezz-bottom-bar {
  position: fixed;
  bottom: -120px; /* starts hidden below viewport */
  left: 0;
  right: 0;
  z-index: 9995;
  background: var(--ve-dark, #061b1b);
  border-top: 1.5px solid rgba(23, 212, 64, 0.25);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.45);
  transition: bottom 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease;
  padding: 0;
  overflow: hidden;
}

/* When spotlight is active the bar sits above the overlay */
.tezz-bottom-bar.spotlight-lit {
  z-index: 9999;
  box-shadow: 0 -8px 60px rgba(23, 212, 64, 0.35),
              0 0 0 3px rgba(23, 212, 64, 0.18);
}

/* Slide up into view */
.tezz-bottom-bar.is-visible {
  bottom: 0;
}

/* ── 3. INNER LAYOUT ────────────────────────────────────────────── */
.tezz-bottom-bar-inner {
  display: flex;
  align-items: stretch;
  min-height: 80px;
  max-height: 90px;
}

/* ── 4. LEFT COLUMN — Referral CTA ─────────────────────────────── */
.tezz-bar-left {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px 14px 24px;
  border-right: 1px solid rgba(23, 212, 64, 0.15);
  background: linear-gradient(
    135deg,
    rgba(0, 63, 60, 0.6) 0%,
    rgba(6, 27, 27, 0.9) 100%
  );
  position: relative;
  overflow: hidden;
}

/* Subtle animated glow behind left panel */
.tezz-bar-left::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(23, 212, 64, 0.12) 0%, transparent 70%);
  animation: tezz-bar-glow-pulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes tezz-bar-glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.15); }
}

.tezz-bar-left-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(23, 212, 64, 0.15);
  border: 1px solid rgba(23, 212, 64, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--ve-gold, rgb(23 212 64 / 91%));
}

.tezz-bar-left-text {
  flex: 1;
  min-width: 0;
}

.tezz-bar-left-text .tezz-bar-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ve-gold, rgb(23 212 64 / 91%));
  margin-bottom: 2px;
  display: block;
}

.tezz-bar-left-text .tezz-bar-headline {
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 2px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tezz-bar-left-text .tezz-bar-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tezz-bar-ref-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--ve-gold, rgb(23 212 64 / 91%));
  color: var(--ve-dark, #061b1b);
  font-size: 0.78rem;
  font-weight: 800;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 16px rgba(23, 212, 64, 0.35);
}

.tezz-bar-ref-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(23, 212, 64, 0.5);
  background: #17d440;
  color: #061b1b;
  text-decoration: none;
}

/* Pulsing ring on the button during spotlight */
.spotlight-lit .tezz-bar-ref-btn {
  animation: tezz-btn-ring 1.8s ease-in-out infinite;
}

@keyframes tezz-btn-ring {
  0%, 100% { box-shadow: 0 4px 16px rgba(23, 212, 64, 0.35); }
  50%       { box-shadow: 0 4px 16px rgba(23, 212, 64, 0.35),
                          0 0 0 6px rgba(23, 212, 64, 0.18),
                          0 0 0 12px rgba(23, 212, 64, 0.07); }
}

/* ── 5. RIGHT COLUMN — Package Carousel ─────────────────────────── */
.tezz-bar-right {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  padding: 10px 16px 10px 16px;
  gap: 10px;
  overflow: hidden;
  background: rgba(6, 27, 27, 0.95);
  position: relative;
}

.tezz-bar-right-label {
  flex-shrink: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
}

/* Carousel track */
.tezz-bar-carousel-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.tezz-bar-carousel-track {
  display: flex;
  gap: 10px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Individual mini package card */
.tezz-bar-pkg-card {
  flex-shrink: 0;
  width: 180px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  display: block;
}

.tezz-bar-pkg-card:hover {
  background: rgba(23, 212, 64, 0.08);
  border-color: rgba(23, 212, 64, 0.3);
  transform: translateY(-2px);
  text-decoration: none;
}

.tezz-bar-pkg-service {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ve-gold, rgb(23 212 64 / 91%));
  margin-bottom: 3px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tezz-bar-pkg-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.tezz-bar-pkg-price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.tezz-bar-pkg-price {
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--ve-gold, rgb(23 212 64 / 91%));
}

.tezz-bar-pkg-price span {
  font-size: 0.6rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}

.tezz-bar-pkg-orig {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
}

/* Carousel nav arrows */
.tezz-bar-carousel-prev,
.tezz-bar-carousel-next {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  padding: 0;
}

.tezz-bar-carousel-prev:hover,
.tezz-bar-carousel-next:hover {
  background: rgba(23, 212, 64, 0.15);
  color: var(--ve-gold, rgb(23 212 64 / 91%));
  border-color: rgba(23, 212, 64, 0.3);
}

.tezz-bar-carousel-prev:disabled,
.tezz-bar-carousel-next:disabled {
  opacity: 0.25;
  cursor: default;
}

/* ── 6. "GOT IT" DISMISS BUTTON + ARROW POINTER ─────────────────── */

/* Fixed independently — NOT inside the bar (overflow:hidden would clip it) */
.tezz-bar-dismiss-wrap {
  position: fixed;
  bottom: -200px;              /* JS overrides this inline once bar is up */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.tezz-bar-dismiss-wrap.is-visible {
  opacity: 1;
  pointer-events: all;
  /* bottom is already set inline by JS — no CSS override here */
}

/* Bouncing arrow pointing DOWN at the bar */
.tezz-bar-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin-bottom: 20px;
  animation: tezz-arrow-bounce 1s ease-in-out infinite;
}

.tezz-bar-arrow span {
  display: block;
  width: 12px;
  height: 12px;
  border-right: 2.5px solid var(--ve-gold, rgb(23 212 64 / 91%));
  border-bottom: 2.5px solid var(--ve-gold, rgb(23 212 64 / 91%));
  transform: rotate(45deg);
}

.tezz-bar-arrow span:nth-child(1) { opacity: 0.3; }
.tezz-bar-arrow span:nth-child(2) { opacity: 0.6; }
.tezz-bar-arrow span:nth-child(3) { opacity: 1.0; }

@keyframes tezz-arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* "Got it" pill button */
.tezz-bar-dismiss {
  background: var(--ve-gold, rgb(23 212 64 / 91%));
  color: var(--ve-dark, #061b1b);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 8px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(23, 212, 64, 0.45);
  transition: background 0.2s ease, transform 0.2s ease;
}

.tezz-bar-dismiss:hover {
  background: #17d440;
  transform: scale(1.05);
}

/* Pulse during spotlight */
.tezz-bar-dismiss-wrap.is-visible .tezz-bar-dismiss {
  animation: tezz-dismiss-pulse 2s ease-in-out infinite;
}

@keyframes tezz-dismiss-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(23, 212, 64, 0.45); }
  50%       { box-shadow: 0 4px 32px rgba(23, 212, 64, 0.8),
                          0 0 0 6px rgba(23, 212, 64, 0.15); }
}

/* ── 8. RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 991px) {
    .tezz-bar-left-icon{
        display: none;
    }
}
@media (max-width: 767px) {
  .tezz-bottom-bar-inner {
    flex-direction: column;
    max-height: none;
    min-height: auto;
  }

  .tezz-bar-left,
  .tezz-bar-right {
    flex: none;
    max-width: 100%;
    width: 100%;
    border-right: none;
  }

  .tezz-bar-left {
    border-bottom: 1px solid rgba(23, 212, 64, 0.15);
    padding: 12px 16px;
  }

  .tezz-bar-right {
    padding: 10px 12px;
  }

  .tezz-bar-left-text .tezz-bar-headline {
    font-size: 0.82rem;
  }

  .tezz-bar-ref-btn {
    padding: 8px 14px;
    font-size: 0.72rem;
  }

  .tezz-bar-pkg-card {
    width: 155px;
  }

  .tezz-bar-right-label {
    display: none;
  }

  /*body.tezz-bar-open {*/
  /*  padding-bottom: 160px;*/
  /*}*/

  .tezz-bar-dismiss-wrap {
    /* JS sets bottom dynamically — no override needed */
  }

  .tezz-bar-dismiss {
    font-size: 0.7rem;
    padding: 7px 18px;
  }
}

@media (max-width: 480px) {
  .tezz-bar-left {
    gap: 10px;
    padding: 10px 12px;
  }

  .tezz-bar-left-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .tezz-bar-left-text .tezz-bar-headline {
    font-size: 0.78rem;
  }

  .tezz-bar-ref-btn {
    padding: 7px 12px;
    font-size: 0.68rem;
  }
}

/* Toggle Button */
.tezz-bottom-toggle{
    position:fixed;
    left:20px;
    bottom:90px;
    width:150px;
    height:36px;
    background:#5cc53f;
    color:#000000;
    border-radius:10px 10px 0 0;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:9998;
    box-shadow:0 -3px 12px rgba(0,0,0,.15);
    transition:all .3s ease;
}

.tezz-bottom-toggle i{
    transition:transform .6s ease;
}

/* Collapse State */
.tezz-bottom-bar.collapsed{
    transform:translateY(100%);
}

.tezz-bottom-toggle.active i{
    transform:rotate(180deg);
}

.bottom-toggle-text{
    margin-left: 10px;
}

