.header-offcanvas-open {
    position: relative;
    display: none;
    overflow: hidden;
    align-items: center;
    align-self: center;
    flex-direction: column;
    justify-content: center;
    width: 26px;
    height: 26px;
    padding: 0;
    cursor: pointer;
    color: var(--light-color);
    border: none;
    background-color: transparent;
    gap: 6px;
  }
  @media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .header-offcanvas-open {
      display: flex;
    }
  }
  .header-offcanvas-open span {
    display: block;
    width: 100%;
    height: 2px;
    transition: var(--transition);
    border-radius: 10px;
    background-color: currentColor;
  }
  .header-offcanvas-open:hover span:nth-child(2) {
    transform: translateX(8px);
  }
  .header-offcanvas-open:hover span:nth-child(3) {
    transform: translateX(4px);
  }
  .header-offcanvas {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    transition: var(--transition);
    transform: translateX(100%);
    opacity: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  .header-offcanvas.active {
    visibility: visible;
    transform: translateX(0);
    opacity: 1;
  }
  .header-offcanvas-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    padding: 15px 30px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .header-offcanvas-logo {
    display: flex;
  }
  .header-offcanvas-close {
    position: relative;
    display: flex;
    width: 30px;
    height: 30px;
    padding: 10px;
    text-indent: -9999px;
    color: var(--light-color);
    border: none;
    background-color: transparent;
  }
  .header-offcanvas-close::before, .header-offcanvas-close::after {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    margin-top: -1px;
    content: "";
    background-color: currentColor;
  }
  .header-offcanvas-close::before {
    transform: rotate(45deg);
  }
  .header-offcanvas-close::after {
    transform: rotate(-45deg);
  }
  .header-offcanvas-close:hover {
    transform: rotate(90deg);
  }
  .header-offcanvas-body {
    flex: 1 0;
    padding: 30px;
  }
  .header-offcanvas .offcanvas-menu-nav > ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .header-offcanvas .offcanvas-menu-nav > ul li {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .header-offcanvas .offcanvas-menu-nav > ul li > a {
    font-size: var(--body-font-size);
    font-weight: 600;
    line-height: 30px;
    display: flex;
    flex: 1 0;
    padding: 8px 0;
    text-transform: uppercase;
  }
  .header-offcanvas .offcanvas-menu-nav > ul li .offcanvas-sub-menu-toggle {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 44px;
    cursor: pointer;
    transition: var(--transition);
  }
  .header-offcanvas .offcanvas-menu-nav > ul li .offcanvas-sub-menu-toggle svg {
    width: 12px;
    height: auto;
  }
  .header-offcanvas .offcanvas-menu-nav > ul li .offcanvas-sub-menu-toggle:hover {
    color: var(--primary-color);
  }
  .header-offcanvas .offcanvas-menu-nav > ul li .offcanvas-sub-menu-toggle.active {
    transform: rotateX(180deg);
  }
  .header-offcanvas .offcanvas-menu-nav > ul li ul {
    display: none;
    flex: 1 0 100%;
    width: 100%;
    margin: 0;
    padding-left: 20px;
    list-style: none;
  }
  .header-offcanvas .offcanvas-menu-nav > ul li ul li > a {
    text-transform: capitalize;
  }
  .no-sub-menu .offcanvas-sub-menu-toggle{
    display: none !important;
  }

/* ===========================
   CHANGE (OFFCANVAS BOOK NOW) - CSS (STATIC)
   - Static layout styles belong in module.css
   - Color styles must stay in module.html (HubL), not here
   =========================== */
.header-offcanvas-body .offcanvas-book-btn-wrapper{
  display: flex;
  justify-content: center; /* keeps it centered like your screenshot */
}

@media only screen and (max-width: 575px) {
  .offcanvas-book-btn-wrapper .btn {
    font-size: 12px;
    padding: 15px;
    margin: -15px auto -5px auto;
  }
}