/* Messenger Button - Fixed Bottom Right */

.messenger-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  cursor: pointer;
  text-decoration: none;
}

.messenger-button img {
  display: block;
  width: 50px;
  height: 50px;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .messenger-button {
    bottom: 16px;
    right: 16px;
  }

  .messenger-button img {
    width: 36px;
    height: 36px;
  }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
  .messenger-button {
    bottom: 12px;
    right: 12px;
  }

  .messenger-button img {
    width: 52px;
    height: 52px;
  }
}
