/* ElectricYacht Sticky CTA — premium/technical style */
.eycta-wrap{
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 99999;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 480px){
  .eycta-wrap{ right: 10px; top: 10px; }
}
.eycta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  font-weight:600;
  text-decoration:none !important;
  line-height:1;
  border:1px solid rgba(0,0,0,.15);
  transition:transform .15s ease, box-shadow .15s ease;
  -webkit-tap-highlight-color: transparent;
  background: #ffffff;
  color: var(--eycta-primary, #0b2a4a) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.eycta-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0,0,0,.14);
}
.eycta-btn--primary{
  background: var(--eycta-primary, #0b2a4a);
  color:#ffffff !important;
  border-color:transparent;
}
.eycta-btn--ghost{
  background: rgba(255,255,255,.95);
}
@media (max-width: 767px){
  .eycta-hide-mobile{ display:none !important; }
}
/* Best-effort sticky for common header wrappers */
header.site-header,
header#masthead,
.elementor-location-header{
  position: sticky;
  top: 0;
  z-index: 9999;
}
