/* ============================================================
   Bouton Scroll To Top - Styles généraux
   ============================================================ */
#lbb-scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #ffffff;
  border: 2px solid #0a2c42;
  border-radius: 8px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Chevron SVG */
#lbb-scroll-top-btn .lbb-scroll-top-icon {
  width: 28px;
  height: 28px;
  display: block;
}

/* Apparition du bouton */
#lbb-scroll-top-btn.visible {
  display: flex;
}

/* ============================================================
   Responsive - Tablettes
   ============================================================ */
@media (max-width: 1024px) {
  #lbb-scroll-top-btn {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  #lbb-scroll-top-btn .lbb-scroll-top-icon {
    width: 22px;
    height: 22px;
  }
}

/* ============================================================
   Responsive - Mobiles
   ============================================================ */
@media (max-width: 640px) {
  #lbb-scroll-top-btn {
    width: 42px;
    height: 42px;
    bottom: 16px;
    right: 16px;
    border-width: 1.5px;
  }

  #lbb-scroll-top-btn .lbb-scroll-top-icon {
    width: 18px;
    height: 18px;
  }
}
