/* Header background */
.HeaderBG {
  background: linear-gradient(to bottom, #d61818 60%, #f27c16 100%);
  padding: 15px 30px;
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
#Logo {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
}
/*#Logo img {*/
/*  max-width: 200px;*/
/*  height: auto;*/
/*}*/

/* Hamburger always visible */
.menu-toggle {
  cursor: pointer;
  z-index: 200;
}

.hamburger-icon {
  background: #F89521;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* Off-canvas menu */
.offcanvas-menu {
  /*position: fixed;*/
  /*top: 0;*/
  /*right: -325px;*/
  /*width: 280px;*/
  /*height: 100%;*/
  /*background: #d61818;*/
  /*color: white;*/
  /*z-index: 999;*/
  /*transition: right 0.3s ease-in-out;*/
  /*padding: 40px 20px;*/
  /*display: flex;*/
  /*flex-direction: column;*/
  /*justify-content: start;*/
  /*box-shadow: -2px 0 10px rgba(0,0,0,0.2);*/
  
      display: none;
}

.offcanvas-menu.open {
  right: 0;
}

/* Close button */
.offcanvas-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/* Nav items */
.offcanvas-menu ul {
  list-style: none;
  margin-top: 60px;
}

.offcanvas-menu ul li {
  margin: 15px 0;
}

.offcanvas-menu ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 10px;
  display: block;
  border-radius: 5px;
  transition: background 0.3s;
}

.offcanvas-menu ul li a:hover {
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
    .logo-function img {
    width: 150px;
}
#Logo {
    display: flex !important;
    width: 100% !important;
    justify-content: start !important;
}
  .offcanvas-menu.open {
    top: 123px !important;
    width: 100% !important;
}  
}

.HeaderBG {
    background: #272727 !important;
    border-bottom: 9px solid #F89521;
}
.shop-icon {
    margin-left: 20px;
}


/* Offcanvas Menu */
/*.offcanvas-menu {*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background: #f7931e;*/
/*  z-index: 9999;*/
/*  transform: translateY(-100%);*/
/*  transition: transform 0.3s ease-in-out;*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*}*/
.offcanvas-menu.open {
    position: absolute;
    top: 202px;
    width: 100%;
    height: 100%;
    background: #f7931e;
    z-index: 9999;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
     flex-direction: column; 
    align-items: center;
    width: 400px;
    right: 0 !important;
        padding-top: 60px;
}
.offcanvas-menu.open {
  transform: translateY(0);
}

/* Menu Items */
.offcanvas-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.offcanvas-menu ul li {
  margin: 20px 0;
}

.offcanvas-menu ul li a {
  color: white;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
}

/* Toggle Button */
.menu-toggle {
  position: relative;
  z-index: 10000;
  cursor: pointer;
  padding: 10px;
}

.hamburger-icon {
  width: 40px;
  height: 40px;
  background-color: #f7931e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-icon i {
  color: white;
  font-size: 20px;
}

/* Close Button (optional, if you want separate close) */
.offcanvas-close {
  display: none;
}

.offcanvas-menu a {
    font-family: "Open Sans", Sans-serif;
    font-weight: 700;
    font-size: 25px !important;
    line-height: 100%;
    text-align: center;
}
.offcanvas-menu a:hover {
    background-color: transparent !important;
    color: #1E1E1E;
}
