/* ============================================================
   GymGo landing — floating widgets
   Sticky mobile CTA, cookie banner, live-chat button
   ============================================================ */

/* ---------- Sticky mobile bottom CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 20px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  z-index: 90;
  display: none;
}

.sticky-cta .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 700px) {
  .sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 80px;
  }
}

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  max-width: 460px;
  padding: 18px 20px;
  background: rgba(20, 22, 26, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-hi);
  border-radius: 16px;
  z-index: 95;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  font-size: 13px;
  color: var(--mute);
}

.cookie b {
  color: var(--text);
}

.cookie .cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

.cookie .btn {
  padding: 8px 14px;
  font-size: 13px;
}

.cookie[hidden] {
  display: none;
}

@media (max-width: 600px) {
  .cookie {
    flex-direction: column;
    align-items: flex-start;
    bottom: 88px;
  }

  .cookie .cookie-actions {
    margin-left: 0;
    width: 100%;
  }

  .cookie .btn {
    flex: 1;
  }
}

/* ---------- Live chat button ---------- */
.live-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  border-radius: 27px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(0, 217, 178, 0.5);
  z-index: 80;
  cursor: pointer;
  color: #00231c;
}

.live-chat::after {
  content: '';
  position: absolute;
  top: 6px;
  right: 6px;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: var(--coral);
  border: 2px solid var(--bg);
}

@media (max-width: 700px) {
  .live-chat {
    display: none;
  }
}
