/* Overlay background */
#openAppPopup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: flex-end;
    background: rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.25s ease;
}

/* Popup container */
.popup-container {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 20px 20px 0 0;
    text-align: center;
    padding: 22px 20px 26px;
    box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.35s ease;
    font-family: 'DM Sans', sans-serif;
}

/* Header & text */
.popup-header {
    font-weight: 700;
    color: #c1121f;
    font-size: 15.5px;
    margin-bottom: 8px;
}

.popup-text {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 18px;
}

/* Options list */
.popup-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Each card */
.option-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f8f8;
    border-radius: 14px;
    padding: 10px 14px;
    transition: background 0.2s;
}

.option-card:hover {
    background: #f3f3f3;
}

/* Left side with icon + label */
.option-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.option-card img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.option-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    text-align: left;
    /* override for title only */
    align-self: flex-start;
    /* move it to the left inside the card */
    width: 100%;
    /* ensures proper left alignment space */
    padding-left: 14px;
    line-height: normal;
    display: flex;
    align-items: center;
    /* centers vertically */
    min-height: 3em;
}

/* Buttons */
.open-btn {
    background: #c1121f;
    color: #fff;
    border: none;
    border-radius: 22px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100px;
    display: inline-block;
    width: 100px;
    text-align: center;
}

.continue-btn {
    border: none;
    background: transparent;
    border: .5px solid #c1121f;
    border-radius: 22px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    /* same width for both */

    width: 100%;
    max-width: 100px;
    display: inline-block;
    width: 100px;
    text-align: center;

}

/* Smooth animations */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* sticky chat */
#chatStickyBtn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFD54F;
  color: #000;
  border: none;
  border-radius: 28px;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 9998;
  cursor: pointer;
  transition: all 0.25s ease;
  width: calc(100% - 40px);
  max-width: 500px;
}

.chat-content {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.chat-text span {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.astro-count {
  display: block;
  font-size: 13px;
  color: #333;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 2px;
}

#chatStickyBtn:hover {
  background: #FFEB3B;
  transform: translateX(-50%) scale(1.03);
}

.main-line {
  white-space: nowrap;          /* ⬅️ keeps “(Free)” on same line */
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.free-label {
  color: red;
  font-weight: 700;
  flex-shrink: 0;              /* prevents wrapping on narrow screens */
}

#chatStickyBtn i{
    font-size: 20px;
}