/* Persistent public-site actions; fixed left/right placement avoids the existing back-to-top control. */
.innersun-quick-actions {
  position: fixed;
  z-index: 99990;
  left: max(16px, env(safe-area-inset-left));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: grid;
  gap: 10px;
}
.innersun-quick-actions__item,
.innersun-quick-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid rgba(74, 61, 49, .28);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(42, 34, 27, .18);
  font: 700 14px/1.2 "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  letter-spacing: .02em;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.innersun-quick-actions__item > span {
  font: 700 16px/1.2 "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif !important;
  letter-spacing: .02em !important;
  white-space: nowrap;
}
.innersun-quick-actions__account,
.innersun-quick-actions__line {
  font: 700 16px/1.2 "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif !important;
}
.innersun-quick-actions__line,
.innersun-quick-actions__line > span {
  font-size: 14px !important;
}
.innersun-quick-actions__item:hover,
.innersun-quick-menu-toggle:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(42, 34, 27, .23);
}
.innersun-quick-actions__account {
  background: #fffdf8;
  color: #4b4137;
}
.innersun-quick-actions__line {
  border-color: #8d785f;
  background: #8d785f;
  color: #fff;
}
/* Restore Blocksy's native header and its mobile drawer on the two custom pages. */
.innersun-v1-production-page .ct-header { display: block !important; }
.innersun-v1-production-page .iv1-nav-wrap { display: none !important; }
/* Training sales-page primary actions: retain readable contrast even when page-level variables are unavailable. */
.innersun-info-section .innersun-info-btn.innersun-info-btn--main {
  border-color: #8d785f !important;
  background: #8d785f !important;
  color: #ffffff !important;
}
.innersun-info-section .innersun-info-btn.innersun-info-btn--main:hover,
.innersun-info-section .innersun-info-btn.innersun-info-btn--main:focus-visible {
  border-color: #6f5e4a !important;
  background: #6f5e4a !important;
  color: #ffffff !important;
}
@media (max-width: 640px) {
  .innersun-quick-actions { gap: 8px; }
  .innersun-quick-actions__item { min-height: 46px; padding: 11px 13px; font-size: 13px; }
}
@media (prefers-reduced-motion: reduce) {
  .innersun-quick-actions__item { transition: none; }
}
