* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  gap: 1rem;
}

.logo img {
  height: 60px;
}

.main-nav {
  margin-left: auto;
  transition: all 0.3s ease;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-family: sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #716f85;
  text-decoration: none;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #37c583;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons svg {
  width: 20px;
  height: 20px;
  fill: #363a57;
  transition: fill 0.3s;
}

.social-icons a:hover svg {
  fill: #1ad17a;
}

.btn-contact {
  background-color: #19D07B;
  font-family: "Kumbh Sans", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  fill: #FFF;
  color: #FFF;
  border-style: none;
  border-radius: 30px;
  padding: 14px 23px;
  text-decoration: none !important;
}

.btn-contact::after {
  content: '→';
  font-size: 16px;
  margin-left: 8px;
  transition: transform 0.2s ease;
  display: inline-block;
}

.btn-contact:hover {
  background: #17b86a;
}

.btn-contact:hover::after {
  transform: translateX(4px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  padding: 0;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.no-scroll {
  overflow: hidden;
}

/* Submenu styles */
.has-submenu {
  position: relative;
}
.has-submenu > .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  min-width: 200px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 999;
}
.has-submenu:hover > .submenu {
  display: block;
}
.submenu li a {
  padding: 8px 15px;
  display: block;
  color: #333;
  text-decoration: none;
}
.submenu li a:hover {
  background-color: #f0f0f0;
}
.submenu .has-submenu > .submenu {
  top: 0;
  left: 100%;
}

.no-big-screen-show{
    display:none;
}

/* Responsive */
@media (max-width: 1029px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 15px;
  }

  .has-submenu > a::after {
    content: '▾';
    float: right;
    font-size: 30px !important;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.no-big-screen-show{
    display:block;
}

  .logo img {
    height: 50px;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    transition: right 0.3s ease;
    padding-top: 80px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }

  .main-nav.show {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
  }

  .nav-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }

  .nav-list li:last-child {
    border-bottom: none;
  }

  .main-nav a {
    font-size: 16px;
    display: block;
  }

  .menu-toggle {
    display: flex;
    order: 1;
  }

  .header-right {
    order: 2;
    gap: 10px;
  }

  .social-icons {
    display: none;
  }

  .btn-contact {
    display: none;
    padding: 8px 12px;
    font-size: 14px;
    order: 2;
  }

  /* Mobile submenu (accordion style) */
  .has-submenu > .submenu {
    position: static;
    box-shadow: none;
    background: transparent;
  }

  .has-submenu.open > .submenu {
    display: block;
  }

  .has-submenu > a::after {
    content: '▾';
    float: right;
    font-size: 12px;
    margin-left: 8px;
    transition: transform 0.3s ease;
  }

  .has-submenu.open > a::after {
    transform: rotate(180deg);
  }
}

@media (max-width: 480px) {
  .header-right {
    gap: 8px;
  }
  .btn-contact {
    display: none;
    padding: 6px 10px;
    font-size: 13px;
  }
}
/* Submenu toggle for mobile */
.has-submenu.open > .submenu {
  display: block !important;
}

/* Arrow indicator */
.has-submenu > a::after {
  content: '▾';
  float: right;
  font-size: 12px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.has-submenu.open > a::after {
  transform: rotate(180deg);
}


/* responsive code start hare */
.header-inner {
    max-width: 100%;
    padding: 10px 90px;
}
@media (max-width:1242px) {
  .header-inner {
    max-width: 100%;
    padding: 10px 30px;
}
}

@media (max-width:896px) {
.footer-row{
 flex-direction: column !important;
 justify-content: center;
 align-items: center;
}
.footer-col .links-container {
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

.mobile-overlay.active {
  display: none;
}


.header-banner {
  
    padding: 90px 15px !important;
  
}

@media (max-width:425px) {
  .desc{
    padding: 29px;
  }
}
@media (max-width:600px) {
      .details .img {
        width: 100%;
        height: 233px !important;
    }
     .desc{
    padding: 15px !important;
  }
  
 .banner-title {
   
    font-size: 46px !important;
   
}
  
  .header-banner {
    padding: 54px 15px !important;
}

.desc p
 {
     font-size:17px;
 }
 
 .slick-arrow{
     display:none !important;
 }
 
 .slick-dots{
     display:none !important;
 }
  

.brand-bg {
    background: #ffffff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding-left: 13px;
    padding-right: 13px;

}
    .header-inner {
        max-width: 100%;
        padding: 10px 12px;
    }
}


#zoom-img{
    width:99% !important;
}

.woocommerce-ordering{
        display:none !important;
    }



/* responsive code end hare */