/** Shopify CDN: Minification failed

Line 168:0 Unexpected "}"

**/
#floating-menu-container {
  position: fixed;
  bottom: 60px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  align-items: center;
}

#floating-menu {
  transition: all 0.3s;
  z-index: 1001; /* Ensure floating menu is in front */
}

#floating-menu.collapsed .menu-items {
  visibility: hidden;
  opacity: 0;
}

#floating-menu:not(.collapsed) .menu-items {
  visibility: visible;
  opacity: 1;
}

#menu-button {
  width: 60px;
  height: 60px;
  background: #fb9aaa; /* Default color */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white; /* Ensures icon is visible */
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s; /* Smooth transition for background color */
}

.menu-items {
  position: absolute;
  display: inline-flex;
  flex-basis: auto;
  flex-flow: column-reverse wrap;
  transform: translate(2.5px, -250px); /* Adjusted translate value */
  transition: all 0.3s;
  opacity: 0;
}

i {
  margin: 25px;
}

.menu-item {
  width: 50px;
  height: 50px;
  margin: 5px 0px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20pt;
  color: white; /* Ensures icons are visible */
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  opacity: 0;
  position: relative; /* Needed for positioning the text */
  text-decoration: none; /* Removes underline from links */
}

.menu-item:hover {
  width: 55px;
  height: 55px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.menu-item.one {
  background-color: #fb9aaa; /* Main color */
}

.menu-item.two {
  background-color: #fb9aaa; /* Complementary color */
}

.menu-item.three {
  background-color: #8bc34a; /* Complementary color */
}

.menu-item.four {
  background-color: #00bcd4; /* Complementary color */
}

.menu-item-text {
  display: none;
  position: absolute;
  top: 50%;
  right: 80px; /* Default position, adjust per item */
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 900; /* Set font weight to heavy */
  color: white;
  opacity: 0.8;
  background-color: rgba(250, 83, 114, 0.4); /* Updated RGBA background color */
  border-radius: 10px;
  padding: 10px;
  user-select: none;
  white-space: nowrap; /* Prevent text from wrapping */
}

.menu-item:hover .menu-item-text {
  display: block;
}

a {
  text-decoration: none; /* Removes underline from links */
}

.scroll-up-button {
  position: relative;
  width: 45px; /* 50% smaller */
  height: 35px; /* 50% smaller */
  background: #fa5271;
  display: flex;
  align-items: center;
  justify-content: left;
  font-size: 16px; /* Adjust icon size to fit smaller button */
  color: white;
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  margin-left: -20px; /* Space between the menu and the scroll-up button */
  transition: background-color 0.3s, opacity 0.3s; /* Smooth transition for background color and visibility */
  z-index: 999; /* Ensure scroll-up button is behind floating menu */
  overflow: hidden; /* Ensure inner element does not overflow */
  opacity: 0; /* Hide button initially */
  pointer-events: none; /* Prevent interaction when hidden */
        padding-right: 50px;
    border-radius:30px
}

.scroll-up-button.visible {
  opacity: 1; /* Show button when visible class is added */
  pointer-events: auto; /* Allow interaction when visible */
}

/* Media query for tablets and mobile devices */
@media (max-width: 768px) {
  #floating-menu-container {
    flex-direction: row-reverse; /* Reverse the order of the buttons */
  }
  .scroll-up-button {
    margin-left: 0;
           margin-right: -18px;
        justify-content: right;
        padding-left: 50px;
            padding-right: 0px;
    }
  #floating-menu-container {
  bottom: 30px;
  }
  }
}
