
/* Floating contact buttons - Feliciano Lawn Care LLC */
.container-media{
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:9999;
  position:fixed;
  bottom:95px;
  left:14px;
}

.container-media a{
  width:52px;
  height:52px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  text-decoration:none;
  border:2px solid var(--flc-green-2, #2a7d2e);
  background:var(--flc-black, #0b0b0b);
  color:#fff;
  box-shadow:rgba(0,0,0,.25) 0 8px 22px;
  transition:transform .15s ease, background .2s ease, color .2s ease;
}
.container-media a:hover{
  transform:translateY(-2px);
  background:var(--flc-green, #0b3d2c);
  color:#fff;
}

.container-media a .whatsapp-icon{
  margin:0;
}


/* GTranslate switcher - place below floating buttons */
.flc-gtranslate{
  position:fixed !important;
  left:14px !important;
  bottom:25px !important; /* below .container-media (bottom:95px) */
  z-index:9998 !important; /* sit below floating buttons (container-media z-index:9999) */
}

/* Force any GTranslate injected float elements below our floating buttons */
#gt_float_wrapper,
#gt_float_switcher,
.gt_float_switcher {
  position: fixed !important;
  left: 14px !important;
  right: auto !important;
  top: auto !important;
  bottom: 25px !important;
  z-index: 9997 !important; /* below .flc-gtranslate and below .container-media */
}
.flc-gtranslate *{ box-sizing:border-box; }

/* Some versions render #gt_float_switcher: force it into our spot */
#gt_float_switcher, .gt_float_switcher{
  left:14px !important;
  right:auto !important;
  top:auto !important;
  bottom:25px !important;
  z-index:10000 !important;
}
