/* Main floating action button */
.fealtyx-offer-gift-card-carousel-floating-action-button {
  position: fixed;
  bottom: 120px;
  left: 21px;
  height: 50px;
  padding: 2px ;
  min-width: 50px;
  z-index: 999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: #08814c;
  border: 1.5px solid #08814c;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

@media (min-width: 769px) {
  .fealtyx-offer-gift-card-carousel-floating-action-button:hover {
    padding: 4px 12px;
  }
}

/* Content container (icon + text) */
.fealtyx-offer-gift-card-carousel-floating-action-button .fab-content {
  display: flex;
  align-items: center;
  gap: 0px;
  white-space: nowrap;
}

/* Icon wrapper */
.fealtyx-offer-gift-card-carousel-floating-action-button .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 26px;
  flex-shrink: 0;
  background: none;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='26'%20height='29'%20viewBox='0%200%2026%2029'%20fill='none'%3E%3Cpath%20d='M12.355%204.68701L10.024%208.72452L2.66022%204.47305C2.2475%204.23454%202.10587%203.70665%202.34424%203.29379L3.81201%200.75153C4.0504%200.338731%204.57838%200.197389%204.99128%200.435547L12.355%204.68701Z'%20fill='white'/%3E%3Cpath%20d='M24.542%2011.7231C24.9546%2011.9616%2025.0962%2012.4896%2024.858%2012.9024L23.3902%2015.4447C23.1518%2015.8575%2022.6238%2015.9988%2022.2109%2015.7606L14.8463%2011.5087L17.1774%207.47119L24.542%2011.7231Z'%20fill='white'/%3E%3Cpath%20d='M13.7249%2010.8612L11.1454%209.37198L13.4765%205.33447L16.0559%206.82373L13.7249%2010.8612Z'%20fill='white'/%3E%3Cpath%20d='M7.83594%2028.4929H0.863281C0.386502%2028.4928%201.81603e-05%2028.1064%200%2027.6296V14.5916C7.76649e-05%2014.1148%200.386539%2013.7283%200.863281%2013.7283H7.83594V28.4929Z'%20fill='white'/%3E%3Cpath%20d='M12.1094%2028.4929H9.13086V13.7283H12.1094V28.4929Z'%20fill='white'/%3E%3Cpath%20d='M21.0078%2017.8005C21.0842%2017.8446%2021.1619%2017.8844%2021.2402%2017.9216V27.6296C21.2402%2028.1065%2020.8538%2028.4929%2020.377%2028.4929H13.4043V13.7283H13.9541L21.0078%2017.8005Z'%20fill='white'/%3E%3Cpath%20d='M20.377%2013.7283C20.8538%2013.7283%2021.2402%2014.1148%2021.2402%2014.5916V15.199L18.6924%2013.7283H20.377Z'%20fill='white'/%3E%3Cpath%20d='M11.482%200.943128C12.6607%200.627524%2013.8704%201.26341%2014.2948%202.37989L14.3693%202.61012L14.9795%204.88727L14.9435%204.89693L10.0383%202.06489C10.3384%201.53139%2010.8441%201.1141%2011.482%200.943128Z'%20fill='white'/%3E%3Cpath%20d='M19.1324%205.17285C20.3115%204.98222%2021.4671%205.71172%2021.783%206.89039C21.9538%207.52824%2021.8453%208.17502%2021.5334%208.70161L16.6282%205.86958L16.6185%205.83356L18.8957%205.2234L19.1324%205.17285Z'%20fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Text styling and transitions */
.fealtyx-offer-gift-card-carousel-floating-action-button .fab-text {
  font-size: 12px;
  font-weight: 500;
  color: white;
  transition: opacity 0.3s ease, max-width 0.3s ease;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
}

/* Hide text (used by JavaScript) */
.fealtyx-offer-gift-card-carousel-floating-action-button .hidden {
  display: none;
}

/* Show text on hover */
@media (min-width: 769px) {
  .fealtyx-offer-gift-card-carousel-floating-action-button:hover .fab-text {
    opacity: 1;
    max-width: 200px;
  }
}

/* Ensure text stays collapsed when not hovered and not shown */
.fealtyx-offer-gift-card-carousel-floating-action-button:not(:hover):not(.fab-hover) .fab-text:not(.show) {
  width: 0;
  padding: 0;
  margin: 0;
}

.fealtyx-offer-gift-card-carousel-floating-action-button.fab-hover {
  padding: 4px 12px;
}

.fealtyx-offer-gift-card-carousel-floating-action-button.fab-hover .fab-text {
  opacity: 1;
  max-width: 200px;
  letter-spacing: normal;
}

.fealtyx-extension-disabled-gift-card-widget {
  display: none !important;
}