.sfbcp-wrap {
  position: fixed;
  bottom: 22px;
  z-index: 999999;
  font-family: inherit;
}

.sfbcp-right { right: 22px; }
.sfbcp-left { left: 22px; }

.sfbcp-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #1f2937;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.sfbcp-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.22);
}

.sfbcp-trigger-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sfbcp-accent, #7a9b76);
  box-shadow: 0 0 0 6px rgba(122, 155, 118, 0.18);
  flex: 0 0 auto;
}

.sfbcp-trigger-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.sfbcp-panel {
  position: absolute;
  bottom: 62px;
  width: min(340px, calc(100vw - 32px));
  padding: 20px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.97), rgba(255,255,255,0.93));
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.22);
  border: 1px solid rgba(255,255,255,0.72);
  color: #111827;
}

.sfbcp-right .sfbcp-panel { right: 0; }
.sfbcp-left .sfbcp-panel { left: 0; }

.sfbcp-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(122, 155, 118, 0.12);
  color: var(--sfbcp-accent, #7a9b76);
}

.sfbcp-panel h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
  color: #111827;
}

.sfbcp-panel p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
}

.sfbcp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none !important;
  font-weight: 700;
  background: linear-gradient(135deg, var(--sfbcp-accent, #7a9b76), #4f6d52);
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(79, 109, 82, 0.28);
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.sfbcp-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(79, 109, 82, 0.33);
  opacity: .96;
}

.sfbcp-panel[hidden] {
  display: none !important;
}

@media (max-width: 640px) {
  .sfbcp-wrap {
    bottom: 16px;
  }

  .sfbcp-right { right: 16px; }
  .sfbcp-left { left: 16px; }

  .sfbcp-trigger {
    padding: 11px 14px;
  }

  .sfbcp-panel {
    bottom: 58px;
    width: min(320px, calc(100vw - 24px));
    padding: 18px;
  }

  .sfbcp-panel h3 {
    font-size: 20px;
  }
}
