/* Live Wire mobile-only contact controls. The breakpoint matches the existing bar.
   Desktop widgets, native Site Spark dialogs, and inline Proof Pulse feeds are untouched. */
@media (max-width: 640px) {
  body[data-livewire-page] .mobile-action-bar[data-livewire-mobile-actions] {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, .85fr) minmax(0, 1.5fr);
    gap: 8px;
    padding: 9px max(10px, env(safe-area-inset-right)) calc(9px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
    background: var(--paper, #f8f5ee);
    border-top: 1px solid var(--line, #deddd5);
  }
  .mobile-action-bar[data-livewire-mobile-actions] > a {
    min-width: 0;
    min-height: 50px;
    padding: 10px 6px;
    gap: 6px;
    font-family: var(--body, Arial, sans-serif);
    font-size: clamp(12px, 3.35vw, 15px);
    line-height: 1.2;
    font-weight: 700;
    white-space: nowrap;
    text-align: center;
    text-decoration: none;
    border: 1.5px solid #101c20;
    background: transparent;
    color: #101c20;
    touch-action: manipulation;
  }
  .mobile-action-bar[data-livewire-mobile-actions] .icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    color: var(--red, #e22229);
  }
  .mobile-action-bar[data-livewire-mobile-actions] > .mobile-action-booking {
    border-color: var(--red, #e22229);
    background: var(--red, #e22229);
    color: #fff;
  }
  .mobile-action-bar[data-livewire-mobile-actions] > .mobile-action-booking .icon {
    fill: currentColor;
    stroke: none;
    color: #fff;
  }
  .mobile-action-bar[data-livewire-mobile-actions] > a:focus-visible {
    outline: 3px solid #248aaa;
    outline-offset: 3px;
  }
  /* Hide only floating entry points and the floating trust notice. These rules
     also cover late-mounted widgets without DOM observers or dismissal cookies.
     Do NOT target the chat panel, booking overlay, iframes, or whole provider root. */
  body[data-livewire-page] .fw-chat-fallback,
  body[data-livewire-page] [data-sitespark-v3-launcher="ss_6fcd4f16666e478fa04c"],
  body[data-livewire-page] [data-sitespark-v3-teaser="ss_6fcd4f16666e478fa04c"],
  body[data-livewire-page] [data-tradevulcan-local-proof-trust] {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}
@media (max-width: 359px) {
  .mobile-action-bar[data-livewire-mobile-actions] > a { font-size: 12px; gap: 5px; }
  .mobile-action-bar[data-livewire-mobile-actions] .icon { width: 16px; height: 16px; flex-basis: 16px; }
}
@media print {
  .mobile-action-bar[data-livewire-mobile-actions] { display: none !important; }
}
