/* BRONZEA Gel Autoabbronzante — Theme: warm bronze/gold */
:root {
  --accent: #c2883a;
  --accent-hover: #a87530;
  --accent-light: #f0d9b5;
  --accent-pale: #fdf6ec;
  --accent-rgb: 194, 136, 58;
  --green: #b8860b;
  --green-bg: #fdf6ec;
}

/* ── Sticky Mobile CTA Bar ── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  display: none;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-full);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(var(--accent-rgb),0.35);
  transition: background 0.2s;
}
.sticky-cta__btn:hover { background: var(--accent-hover); }
@media (max-width: 1024px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 80px; }
}
@media (min-width: 1025px) {
  .sticky-cta { display: none !important; }
}

/* ── Hero mini-CTA ── */
.ed-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 12px 28px;
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--r-full);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(var(--accent-rgb),0.25);
}
.ed-hero-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* ── Social proof near forms ── */
.form-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
.form-social-proof svg { flex-shrink: 0; }
.form-social-proof__stars { display: flex; gap: 1px; }
.form-social-proof__stars svg { width: 14px; height: 14px; }
@media (max-width: 480px) {
  .form-social-proof { flex-wrap: wrap; justify-content: center; gap: 4px; font-size: 0.8rem; }
  .form-social-proof__stars svg { width: 16px; height: 16px; }
}
