/* Bottom fixed consultation CTA — matches re-timer.kr */

.fixed-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  z-index: 9999;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.13));
}

.fixed-cta__inner {
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}

.fixed-cta__left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.fixed-cta__avatar {
  width: auto;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.fixed-cta__text {
  font-size: 22px;
  font-weight: 400;
  color: #1a1a1a;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
  white-space: nowrap;
  text-align: center;
  flex: 1;
  min-width: 0;
}

.fixed-cta__text strong {
  font-weight: 700;
  color: #1a1a1a;
}

.fixed-cta__btn {
  background: #b3a087;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  transition: background 0.2s;
  white-space: nowrap;
}

.fixed-cta__btn:hover {
  background: #9e8c75;
}

@media (max-width: 640px) {
  .fixed-cta {
    width: calc(100% - 32px);
    left: 16px;
    right: 16px;
    transform: none;
    bottom: 32px;
  }

  .fixed-cta__inner {
    gap: 14px;
    padding: 10px 12px;
  }

  .fixed-cta__avatar {
    height: 44px;
  }

  .fixed-cta__text {
    font-size: 16px;
    white-space: nowrap;
    text-align: left;
    flex: none;
    margin-right: auto;
  }

  .fixed-cta__btn {
    padding: 10px 14px;
    font-size: 13px;
    flex-shrink: 0;
  }
}
