/* Slide Up Button Styles */
.slide-up-button {
  position: fixed !important;
  bottom: 30px;
  right: 0px;
  width: 70px; /* Figma specification */
  height: 70px; /* Figma specification */
  background: transparent; /* No background */
  border: none;
  border-radius: 50%;
  margin-bottom: -10px;
  cursor: pointer;
  display: none; /* Initially hidden */
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 1; /* Figma specification */
  transition: all 0.3s ease;
  box-shadow: none; /* Remove any shadows that might create background appearance */
}

.slide-up-button__icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 50%;
  filter: brightness(0) saturate(100%); /* Convert image to black */
}

.slide-up-button:hover {
  transform: translateY(-3px);
  opacity: 0.8;
  box-shadow: none; /* Remove shadow on hover */
}

.slide-up-button:active {
  transform: translateY(-1px);
}

/* Responsive design for slide up button */
@media (max-width: 768px) {
  .slide-up-button {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
  }
  
  .slide-up-button__icon {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .slide-up-button {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  
  .slide-up-button__icon {
    width: 50px;
    height: 50px;
  }
}

/* Ultra small mobile devices (350px and below) */
@media (max-width: 350px) {
  .slide-up-button {
    width: 45px;
    height: 45px;
    bottom: 10px;
    right: 10px;
  }
  
  .slide-up-button__icon {
    width: 45px;
    height: 45px;
  }
}

/* Large screens 1700px+ */
@media (min-width: 1700px) {
  .slide-up-button {
    width: 85px;
    height: 85px;
    bottom: 40px;
  }
  
  .slide-up-button__icon {
    width: 85px;
    height: 85px;
  }
}

/* Extra Large screens 2000px+ */
@media (min-width: 2000px) {
  .slide-up-button {
    width: 100px;
    height: 100px;
    bottom: 50px;
  }
  
  .slide-up-button__icon {
    width: 100px;
    height: 100px;
  }
}

/* Ultra Large screens 2400px+ */
@media (min-width: 2400px) {
  .slide-up-button {
    width: 120px;
    height: 120px;
    bottom: 60px;
  }
  
  .slide-up-button__icon {
    width: 120px;
    height: 120px;
  }
}

/* Extra Ultra Large screens 2800px+ */
@media (min-width: 2800px) {
  .slide-up-button {
    width: 150px;
    height: 150px;
    bottom: 80px;
  }
  
  .slide-up-button__icon {
    width: 150px;
    height: 150px;
  }
}
  }
}
