.ozxsccw-container{
  position:fixed;
  bottom:24px;
  z-index:9999;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.ozxsccw-right{ right:24px; }
.ozxsccw-left{ left:24px; }

.ozxsccw-btn{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  border:0;
  padding:0 16px 0 14px;
  box-shadow:0 10px 25px rgba(0,0,0,.22);
  transition:transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.ozxsccw-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 32px rgba(0,0,0,.30);
  filter:saturate(1.05);
}

.ozxsccw-btn:focus{
  outline:2px solid rgba(0,0,0,.35);
  outline-offset:3px;
}

.ozxsccw-ico{
  width:24px;
  height:24px;
  display:block;
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  flex:0 0 24px;
}

/* icons via SVG data URI */
.ozxsccw-ico-call{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6.6 10.8c1.5 3 3.6 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.3 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1v3.5c0 .6-.4 1-1 1C10.1 21 3 13.9 3 5c0-.6.4-1 1-1H7.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.3 1L6.6 10.8z'/%3E%3C/svg%3E");
}

.ozxsccw-ico-chat{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='white'%3E%3Cpath d='M16 3C8.8 3 3 8.2 3 14.6c0 3.4 1.7 6.6 4.6 8.8L6 29l5.9-3.2c1.3.4 2.7.6 4.1.6 7.2 0 13-5.2 13-11.8S23.2 3 16 3zm-4 12.5h8c.6 0 1 .4 1 1s-.4 1-1 1h-8c-.6 0-1-.4-1-1s.4-1 1-1zm0-4h12c.6 0 1 .4 1 1s-.4 1-1 1H12c-.6 0-1-.4-1-1s.4-1 1-1z'/%3E%3C/svg%3E");
}

.ozxsccw-label{
  font-size:14px;
  line-height:1;
  white-space:nowrap;
  opacity:.95;
  font-weight:600;
}

/* sizes */
.ozxsccw-btn.small{ height:46px; }
.ozxsccw-btn.medium{ height:60px; }
.ozxsccw-btn.large{ height:74px; }

.ozxsccw-btn.small .ozxsccw-ico{ width:22px;height:22px; }
.ozxsccw-btn.large .ozxsccw-ico{ width:26px;height:26px; }

/* shapes */
.ozxsccw-shape-pill{ border-radius:999px; }
.ozxsccw-shape-rounded{ border-radius:16px; }
.ozxsccw-shape-square{ border-radius:6px; }

/* style presets */
.ozxsccw-style-solid{}

.ozxsccw-style-shadow{
  box-shadow:0 16px 34px rgba(0,0,0,.32);
}

.ozxsccw-style-outline{
  background:transparent !important;
  border:2px solid currentColor;
  box-shadow:none;
}

/* pulse */
.ozxsccw-pulse{
  animation:ozxsccwPulse 2.2s infinite;
}
@keyframes ozxsccwPulse{
  0%{ box-shadow:0 0 0 0 rgba(0,0,0,.25); }
  70%{ box-shadow:0 0 0 14px rgba(0,0,0,0); }
  100%{ box-shadow:0 0 0 0 rgba(0,0,0,0); }
}

/* mobile-only container */
.ozxsccw-mobile-only{ display:none; }
@media (max-width:768px){
  .ozxsccw-mobile-only{ display:flex; }
}

/* Reliability Mode compact card */
.ozxsccw-relcard{
  position:absolute;
  width:320px;
  max-width:calc(100vw - 24px);
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  border-radius:14px;
  box-shadow:0 18px 48px rgba(0,0,0,.20);
  padding:0;
  display:none;
  z-index:10000;
}

.ozxsccw-relcard.is-open{ display:block; }

.ozxsccw-relcard-inner{
  padding:14px;
}

.ozxsccw-relcard-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.ozxsccw-relcard-title{
  font-size:14px;
  font-weight:700;
  color:#111;
}

.ozxsccw-relcard-close{
  appearance:none;
  border:0;
  background:transparent;
  font-size:22px;
  line-height:1;
  cursor:pointer;
  color:#333;
  padding:4px 8px;
  border-radius:8px;
}

.ozxsccw-relcard-close:focus{
  outline:2px solid rgba(0,0,0,.35);
  outline-offset:2px;
}

.ozxsccw-relcard-desc{
  margin-top:8px;
  font-size:13px;
  color:#444;
}

.ozxsccw-relcard-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}

.ozxsccw-relbtn{
  appearance:none;
  border:1px solid rgba(0,0,0,.14);
  background:#f7f7f7;
  color:#111;
  font-size:13px;
  font-weight:600;
  padding:10px 12px;
  border-radius:10px;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.ozxsccw-relbtn:hover{
  background:#f0f0f0;
}

.ozxsccw-relbtn:focus{
  outline:2px solid rgba(0,0,0,.35);
  outline-offset:2px;
}

.ozxsccw-relbtn-primary{
  background:#111;
  color:#fff;
  border-color:#111;
}

.ozxsccw-relbtn-primary:hover{
  background:#000;
}

.ozxsccw-relcard-toast{
  margin-top:10px;
  font-size:12px;
  color:#111;
  opacity:0;
  transition:opacity .18s ease;
}

.ozxsccw-relcard-toast.is-visible{
  opacity:1;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .ozxsccw-btn,
  .ozxsccw-relcard-toast{
    transition:none !important;
  }
  .ozxsccw-pulse{
    animation:none !important;
  }
}