/* Hide hamburger icon on desktop */
@media (min-width: 992px) {
  #offcanvas-toggler, 
  .offcanvas-toggler, 
  .navbar-toggler {
    display: none !important;
  }
}

/* Show and move hamburger on mobile */
@media (max-width: 991px) {
  #offcanvas-toggler, 
  .offcanvas-toggler, 
  .navbar-toggler {
    display: block !important;
    position: absolute;
    right: 15px;
    top: 10px; /* Match header padding */
    z-index: 9999;
  }
  
  /* === Adjust header size for mobile === */
  .header, 
  .sp-header {
    height: 60px; /* Set your desired mobile header height */
    padding: 10px 0; /* Top and bottom padding */
  }

  /* === Adjust logo size for mobile === */
  .sp-logo a img {
    max-height: 40px; /* Logo height inside the smaller header */
    height: auto;
    width: auto;
  }
  
  .logo-image-phone {
    height: 40px !important;
  }
  
  #sp-header {
    height: 60px !important;
  }
}


.sp-megamenu-parent > li > a, .sp-megamenu-parent > li > span {
  padding: 0 8px !important;
}


/* Floating button style */
.floating-chat-button {
    background-color: #4FB286;
    color: white;
  	margin-top: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 30px;
    left: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;
    cursor: pointer;
    border: none;
    outline: none;
    transition: background-color 0.3s;
}

/* Ensure link inside button has white text color */
.floating-chat-button a {
    color: white !important;
    text-decoration: none;
}

/* Chat icon style */
.chat-icon {
    font-size: 20px;
    margin-right: 8px;
}

/* Hover effect */
.floating-chat-button:hover {
    background-color: #128C7E;
}

/* Tablet Portrait (e.g., iPad Portrait)
@media (min-width: 768px) and (max-width: 991px) {
    .floating-chat-button {
      	font-size: 16px
        bottom: 15px;
        left: 15px;
        padding: 10px 18px;
        font-size: 14px;
    }
}
*/
/* Desktop (e.g., Laptop) 
@media (min-width: 992px) {
    .floating-chat-button {
      	font-size: 60px
        bottom: 60px;
        left: 20px;
        padding: 5px 9px;
    }
}
*/
/*
.sp-module-content .mod-languages ul.lang-inline li a {
  padding-left: 10px !important;
  font-size: 14px !important;
}
*/

