/* ReZeta Floating Icon Pro — front styles */
.rezeta-fip-root { position: relative; z-index: 99999; }
.rezeta-fip-btn,
.rezeta-fip-fab .rezeta-fip-main {
  position: fixed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;

  color: #fff;
  text-decoration: none;

  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  overflow: hidden;
}
.rezeta-fip-btn:hover { transform: translateY(-2px);  }

.rezeta-fip-btn .rezeta-fip-ico,
.rezeta-fip-fab .rezeta-fip-ico { display: inline-flex; line-height: 1; font-size: 22px; }

/* Individual fixed positions are set inline (bottom + side) */

/* FAB group */
.rezeta-fip-fab { position: fixed; }
.rezeta-fip-fab .rezeta-fip-main { background: #0a7c49; }

/* Toggle (invisible hit area over main to control expand without following link) */
.rezeta-fip-fab .rezeta-fip-toggle {
  position: absolute;
  right: -6px;
  top: -6px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #ffffff;
  border: 0;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.rezeta-fip-fab .rezeta-fip-toggle:after{
  content: '+';
  display:inline-block;
  font-weight: 700;
  line-height: 28px;
}


/* Children */
.rezeta-fip-fab-children {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 64px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.rezeta-fip-fab-children .rezeta-fip-child {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #084C7D;
  color: #fff;
  display: inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
  opacity: 0;
  transform: translateY(12px);
  transition: transform .25s ease, opacity .25s ease;
  pointer-events: none;
}

.rezeta-fip-fab.expanded .rezeta-fip-fab-children .rezeta-fip-child {
  opacity: 1;
  transform: translateY(0);
}

/* Left/right alignment for the children container */
.rezeta-fip-fab[style*="left:"] .rezeta-fip-fab-children { left: auto; right: 0; transform: none; }
.rezeta-fip-fab[style*="right:"] .rezeta-fip-fab-children { left: auto; right: 0; transform: none; }
.rezeta-fip-fab[style*="left:"] .rezeta-fip-fab-children { right: auto; left: 0; }

/* Accessibility focus */
.rezeta-fip-btn:focus,
.rezeta-fip-child:focus,
.rezeta-fip-toggle:focus { outline: 2px solid #fff; outline-offset: 2px; }


.rezeta-fip-fab-children, .rezeta-fip-fab-children .rezeta-fip-child { pointer-events: none; }
.rezeta-fip-fab.expanded .rezeta-fip-fab-children { pointer-events: auto; }
.rezeta-fip-fab.expanded .rezeta-fip-fab-children .rezeta-fip-child { pointer-events: auto; }


/* === ReZeta FIP Solo — caption, size, gap, position === */
.rezeta-fip-solo{
  position: fixed;
  z-index: 2147483647;
  --fip-size: 56px;
  --fip-gap: 6px;
  --fip-label-font: 11px;
}
.rezeta-fip-solo .rezeta-fip-btn{
  width: var(--fip-size);
  height: var(--fip-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.rezeta-fip-solo .rezeta-fip-ico img,
.rezeta-fip-solo .rezeta-fip-ico svg{
  width: calc(var(--fip-size) * 0.5);
  height: calc(var(--fip-size) * 0.5);
  display: block;
}
.rezeta-fip-solo.pos-below{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.rezeta-fip-solo.pos-below .rezeta-fip-caption{ margin-top: var(--fip-gap); }
.rezeta-fip-solo.pos-side{
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--fip-gap);
}
.rezeta-fip-caption{
  font-size: var(--fip-label-font);
  line-height: 1.15;
      margin-top: -16px !important;
    margin-bottom: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #ffffff;
  color: #333333;
  box-shadow: 0 2px 8px rgba(0,0,0,.10);
  pointer-events: none;
  max-width: 200px;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}


/* === Style: icon-only (no bubble background) === */
.rezeta-fip-solo.style-icon .rezeta-fip-btn{
  background: transparent !important;
  box-shadow: none !important;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
}
.rezeta-fip-solo.style-icon .rezeta-fip-ico img,
.rezeta-fip-solo.style-icon .rezeta-fip-ico svg{
  width: var(--fip-size);
  height: var(--fip-size);
}
