.elementor-2557 .elementor-element.elementor-element-16c967f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}#elementor-popup-modal-2557 .dialog-widget-content{animation-duration:1.2s;border-style:none;}#elementor-popup-modal-2557 .dialog-message{width:0px;height:auto;}#elementor-popup-modal-2557{justify-content:center;align-items:center;}/* Start custom CSS for html, class: .elementor-element-478f308c */.fab-container {
  position: fixed;
  left: 10px;
  bottom: 70%;
  z-index: 9999;
}

/* MAIN BUTTON */
.fab-main {
  width: 50px;
  height: 50px;
  background: #d3af34;
  color: #000;
  border-radius: 50%;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}

/* ACTION BUTTONS (VERTICAL) */
.fab-actions {
  position: absolute;
  top:20;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;

  opacity: 0;
  pointer-events: none;
  transition: all .25s ease;
}

/* SHOW ACTIONS WHEN HOVERING MAIN OR ACTIONS */
.fab-container:hover .fab-actions,
.fab-actions:hover {
  opacity: 1;
  pointer-events: auto;
}

/* ACTION ICON */
.fab-item {
  width: 48px;
  height: 48px;
  background: #d3af34;
  color: #000;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

/* POPUP */
.fab-popup {
  position: absolute;
  left: 60px;
  top: 0;
  width: 230px;
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);

  opacity: 0;
  visibility: hidden;
  transition: .2s ease;
  z-index: 999;
}

/* SHOW POPUP ON ICON HOVER */
.fab-item:hover .fab-popup,
.fab-popup:hover {
  opacity: 1;
  visibility: visible;
}

/* BUTTON INSIDE POPUP */
.popup-btn {
  display: block;
  margin-top: 10px;
  background: #d3af34;
  color: #000;
  padding: 8px;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* PRICE LIST */
.popup-prices {
  max-height: 260px;
  overflow-y: auto;
  font-size: 13px;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .fab-container {
    bottom: 70%;
  }

  .fab-popup {
    width: 220px;
  }
}/* End custom CSS */