/*
Theme Name: Bag Mantra
Theme URI: https://www.bagmantra.com/
Author: Nag Mantra
Author URI: https://www.bagmantra.com/
Description: Bag Mantra WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: bagmantra-wp
*/
body {
    background: #fff;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

img {
    min-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

h1 {
    font-weight: 700;
    font-size: 50px;
    padding-bottom: 0px;
    line-height: normal;
}

h2 {
    font-weight: 700;
    font-size: 36px;
    padding-bottom: 20px;
    line-height: normal;
}

h3 {
    font-weight: 700;
    font-size: 30px;
    padding-bottom: 20px;
    line-height: normal;
}

h4 {
    font-weight: 700;
    font-size: 26px;
    padding-bottom: 20px;
    line-height: normal;
}

h5 {
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 10px;
    line-height: normal;
}

h6 {
    font-weight: 600;
    font-size: 18px;
    padding-bottom: 10px;
    line-height: normal;
}

p {
    line-height: 35px;
    font-size: 18px;
    margin: 0px;
    padding-bottom: 15px;
}

.headermenu{
/*  position: fixed;*/
  background: #020202;
  padding: 10px 0;
}
nav{
/*  position: fixed;*/
  z-index: 99;
  width: 100%;
  
  background: #020202;
}
nav .wrapper{
  position: relative;
  max-width: 1300px;
  padding: 0px 30px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .logo a{
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links{
  display: inline-flex;
}
.nav-links li{
  list-style: none;
  z-index: 9;
}
.nav-links li a{
  color: #f2f2f2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;

}

/*.nav-links li a:hover{
  background: #3A3B3C;
}*/
.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: #242526;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}
.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: #242526;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
}
.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 991px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #242526;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
    z-index: 9;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
}
nav input{
  display: none;
}



.body-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.body-text div{
  font-size: 45px;
  font-weight: 600;
}

.topcontactStrip {
  text-align: right;
}

.topcontactStrip ul li{
  display: inline-block;
  padding: 0 10px;
}

.topcontactStrip ul {
  padding: 25px 0;
}

.topcontactStrip ul li a{
  color: #fff;
}

.rowheadericon {
  text-align: right;
}

.rowheadericon ul li{
  display: inline-block;
  padding: 0 5px;
}

.rowheadericon ul li a:hover{
  color: #64b09f;
  transition: all 0.3s ease-in-out;
}

.rowheadericon ul {
  padding: 25px 0;
}

.rowheadericon ul li a{
  color: #fff;
}

.carousel-caption h1{
    /*font-size: 150px;*/
    font-size: 120px;
    color: #64b09f;
    text-transform: uppercase;
    text-align: center;
    font-family: "Anton", sans-serif;
    line-height: 150px;
}
.carousel-caption h1 span{
  color: #e1b562;
}

.carousel-caption p{
  font-size: 17px;
  line-height: 25px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.headersliderbtn a{
  background: #fff;
  color: #000;
  padding: 15px 35px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
}

.headersliderbtn a:hover{
  background: #ffd19a;
  box-shadow: -1px 6px 10px 0 rgba(120, 60, 20, .2);
  transition: all 0.6s ease-out;
}

.headersliderbtn{
  margin: 25px 0 0 0;
}

.selldatacontainer ul li{
  display: inline-block;
  color: #fff;
  font-size: 34px;
  font-family: "Anton", sans-serif;
  padding: 0 20px;
}

.selldatacontainer ul li::before{
  content: url('assets/images/star.png'); /* Replace with your image path */
  display: inline-block;
  width: 23px;
  height: 16px;
  margin-right: 35px;
  margin-top: -35px;
  vertical-align: middle;
}

.selldatacontainer{
  background: #000;
  padding: 10px 0;
}

.homebodybg{
  background: url(assets/images/bodybg.jpg) no-repeat;
   background-size: cover;
}

.homebodybg h2{
  color: #000;
  /*font-size: 45px;*/
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  font-family: "Poppins", sans-serif;
  line-height: 45px;
}

.homebodybg h3 {
    font-weight: 700;
    font-size: 18px;
    padding-bottom: 20px;
    line-height: normal;
    text-align: center;
}   

.aboutussec{
  margin: 50px 0 0 0;
}

.homebodybg h2 span{
  color: #64b09f;
}

.aboutussec p{
  font-size: 18px;
  color: #575757;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  line-height: 30px;
  text-align: center;
}

.aboutreadmorebtn a{
  background: #e1b562;
    color: #000;
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.aboutreadmorebtn a:hover{
      background: #64b09f;
    box-shadow: -1px 6px 10px 0 rgba(120, 60, 20, .2);
    transition: all 0.6s ease-out;
}
.aboutreadmorebtn{
  text-align: center;
  margin: 30px 0 0 0;
}

/*-------New Design CSS---------*/

.newdesigntitle h2{
  text-align: left;
  color: #000;
  /*font-size: 45px;*/
  font-size: 36px;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  line-height:36px;
}

.newdesigntitle h2 span{
  color: #64b09f;
}

/*.newdesignseparator{
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}*/

.rightline{
width: 70%;
height: 50px;
border-bottom: 5px solid #64b09f;
position: absolute;
}

.newdesignbox{
  position: relative;
}

.newprodetails{
      position: absolute;
    top: 0;
    left: 0;
    width:100%;    
    height:100%;
    display: flex;
    /*justify-content: center;*/
    justify-content: flex-end;
    flex-direction: column;
    align-items: center;
    padding: 0 0 20px 0;
}

.newprodetails h3{
  color: #8fffe6;
  font-size: 36px;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  background: #000;
  opacity: 0.75;
  padding: 5px 20px;
}

.newprodetails a{
      background: #fff;
    color: #000;
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.newprodetails a:hover {
    background: #64b09f;
    box-shadow: -1px 6px 10px 0 rgba(120, 60, 20, .2);
    transition: all 0.6s ease-out;
}

/*.newprodetails{
  box-shadow: 10px 10px 0px 2px rgba(100,176,159,1);
-webkit-box-shadow: 10px 10px 0px 2px rgba(100,176,159,1);
-moz-box-shadow: 10px 10px 0px 2px rgba(100,176,159,1);
}
*/
.newdesignbox img{
  width: 100%;
  height: 446px;
  object-fit: cover;
  border-right: 5px solid #64b09f;
  border-bottom: 5px solid #64b09f;
  border-radius: 20px;
}
.newdesignbox img:hover{
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  opacity: 1;
  transition: 0.7s ease-out;
}

.newdesignbox{
  position: relative;
  overflow: hidden;
}

.newdesignbox::before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  content: "";
  display: block;
  height: 100%;
  left: -75%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  width: 50%;
  z-index: 2;
}
.newdesignbox:hover::before, .newdesignbox:focus::before {
  -webkit-animation: shine 0.85s;
          animation: shine 0.85s;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}

.leftline{
  width: 60%;
  height: 50px;
  border-bottom: 5px solid #64b09f;
  position: absolute;
}

.hotsellingtitle h2{
  text-align: right;
  color: #000;
  /*font-size: 45px;*/
  font-size: 36px;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  line-height: 36px;
}


.hotsellingtitle h2 span{
  color: #64b09f;
}
.hotsellingpro{
  margin: 30px 0;
}
.hotsellingpro img{
/*  height: 501px;*/
  width: 100%;
  border-radius: 25px;
}

/*.hotsellingpro img:hover{
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  opacity: 1;
  transition: 0.7s ease-out;
}

.hotsellingpro{
  position: relative;
  overflow: hidden;
}

.hotsellingpro::before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  content: "";
  display: block;
  height: 100%;
  left: -75%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  width: 50%;
  z-index: 2;
}
.hotsellingpro:hover::before, .hotsellingpro:focus::before {
  -webkit-animation: shine 0.85s;
          animation: shine 0.85s;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}*/


.hotsellingpro h3{
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin: 10px 0 0 0;
  padding-bottom: 0px;
}

.hotsellingpro p{
  font-size: 18px;
    color: #575757;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    line-height: 27px;
    text-align: justify;
    padding-bottom: 0px;
}

.hotsellingpro h6 {
  text-align: center;
  padding: 20px 0;
}

.hotsellingpro h6 .priceCut{
  font-size: 24px;
  font-weight: 500;
  color: #e1b562;
  padding-right: 10px;
  text-decoration: line-through;
}


.hotsellingpro h6 .hilightPrice{
  font-size: 30px;
  font-weight: 600;
  color: #64b09f;
}

.badge-overlay {
    position: absolute;
    margin: 20px;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    -webkit-transition: width 1s ease, height 1s ease;
    -moz-transition: width 1s ease, height 1s ease;
    -o-transition: width 1s ease, height 1s ease;
    transition: width 0.4s ease, height 0.4s ease;
}

.badge-overlay ul li{
  display: inline-block;
}

.badge-overlay ul li:first-child{
    background: #fff;
    color: #64b09f;
    font-size: 12px;
    font-weight: 400;
    padding: 10px;
    border-radius: 20px;
    margin-right: 190px;
}

.badge-overlay ul li i{
    background: #fff;
    color: #64b09f;
    font-size: 12px;
    font-weight: 400;
    padding: 10px;
    border-radius: 50px;
}

.hotsellingpro .buyBotton {
  text-align: center;
}

.hotsellingpro a.viewButton{
    background: #64b09f;
    color: #fff;
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.hotsellingpro a.viewButton:hover{
    background: #ffd19a;
    color: #000;
    box-shadow: -1px 6px 10px 0 rgba(120, 60, 20, .2);
    transition: all 0.6s ease-out;
}

.moreproductbtn a{
      background: #e1b562;
    color: #000;
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.moreproductbtn a:hover{
  background: #ffd19a;
    box-shadow: -1px 6px 10px 0 rgba(120, 60, 20, .2);
    transition: all 0.6s ease-out;
}

.moreproductbtn{
  margin: 30px 0;
  text-align: center;
}

.offertext {
  position: absolute;
  top: 20%;
  left: 30%;
}

.offercontainer{
  position: relative;
}

.offertext h2{
  font-size: 24px;
    color: #fff;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    line-height: 50px;
    text-align: left;
    padding-bottom: 0px;
    text-transform: uppercase;
}

.offertext h3{
    font-size: 48px;
    color: #fff;
    font-weight: 300;
    font-family: "Poppins", sans-serif;
    line-height: 50px;
    text-align: left;
    padding-bottom: 20px;
    text-transform: uppercase;
}

.offercontainer h4{
    font-size: 48px;
    color: #64b09f;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    line-height: 27px;
    text-align: left;
    padding-bottom: 0px;
    text-transform: uppercase;
}

.offerbuynowbtn{
  text-align: center;
}

.offerbuynowbtn a{
      background: #fff;
    color: #000;
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 1px solid  #64b09f;
    text-transform: uppercase;
}

.offerbuynowbtn a:hover{
  background: #ffd19a;
    box-shadow: -1px 6px 10px 0 rgba(120, 60, 20, .2);
    transition: all 0.6s ease-out;
}

.offerbuynowbtn{
      position: absolute;
    bottom: -8px;
    text-align: center;
    width: 100%;
    margin: 0px auto;
}

.offerbuynowbtn a:after{
  content: '\f062';
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    margin-left:15px;
    color:#000;
    
}



.popularbagvideostitle h2{
      text-align: left;
    color: #000;
    /*font-size: 45px;*/
    font-size: 36px;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    line-height: 36px;
}

.popularbagvideostitle h2 span {
    color: #64b09f;
}

.videosbox p{
    font-size: 18px;
    color: #575757;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    line-height: 27px;
    text-align: left;
    padding: 20px 0;
}

.middlevideobnox{
  margin: 30px 0 0 0;
}

.testimonialtitle h2{
      text-align: right;
    color: #000;
    /*font-size: 45px;*/
    font-size: 36px;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    line-height: 36px;
}

.testimonialtitle h2 span{
  color: #64b09f;
}

.testimonialscontent p{
      font-size: 18px;
    color: #575757;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    line-height: 27px;
    text-align: left;
  }

  .testimonialscontent h3{
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #000;
    margin: 10px 0 0 0;
    padding-bottom: 0px;
    text-align: left;
  }

/*  .testimonialscontent{
     position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  }*/

   .owl-prev{
        width: 15px;
/*        height: 100px;*/
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        display: block !important;
        border:0px solid black;
        background: none;
        left: -5%;
    }

.owl-next {
        width: 15px;
/*        height: 100px;*/
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        display: block !important;
        border:0px solid black;
        right: -5%;
        background: none;
    }

    .owl-nav span{
      font-size: 40px;
      color: #c1c1c1;
    }

    .footercontainer{
      background: #000;
      padding: 40px 0 0 0;
    }

    .footermenu h2{
      font-size: 24px;
      font-weight: 600;
      font-family: "Poppins", sans-serif;
      color: #fff;
      padding-bottom: 0px;
    }

    .footermenu ul li a{
      font-size: 16px;
      color: #ababab;
      font-weight: 400;
    }

    .footermenu ul li a:hover{
      color: #fff;
      transition: all 0.3s ease-in-out;
    }

    .footersubscribe h2{
      font-size: 24px;
      font-weight: 600;
      font-family: "Poppins", sans-serif;
      color: #fff;
      padding-bottom: 0px;
    }

    .footerlogo img{
      width: auto;
      min-width: auto;
    }

    .clientseparator .rightline{
        width: 60%;
        height: 50px;
        border-bottom: 5px solid #64b09f;
        position: absolute;
    }

    .clientseparator{
      margin: 50px 0 0 0;
    }

    .testimonialtitle{
      margin: 50px 0 0 0;
    }

    .testimonialscontent{
      margin-bottom: 50px;
    }

    .clientuserimg{
      padding-bottom: 50px;
    }

    .popularbagvideostitle{
      margin: 50px 0 0 0;
    }

    .newdesignseparator{
      margin: 50px 0 0 0;
    }

    .videoseparator{
       position: relative;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
    }

    .videoseparator hr{
      border: 3px solid #64b09f;
    opacity: 99999;
    border-radius: 2px;
    }

.offercontainer{
  margin: 50px 0 0 0;
}

.hotsellingtitle{
  margin: 50px 0 0 0;
}

.newdesigntitle{
  margin: 50px 0 0 0;
}
.footermenu ul li{
  padding-bottom: 10px;
}

.copyrightstext a{
  font-size: 16px;
  color: #ababab;
  font-weight: 400;
}

.copyrightstext{
  text-align: left;
}

.footersitemap a{
  font-size: 16px;
  color: #ababab;
  font-weight: 400;
}

.footersitemap{
  text-align: right;
}

/*.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}*/
.subscribefrom {
  /*width: max-content;
  height: max-content;*/
  font-size: 16px;
  border: 2px solid black;
  overflow: hidden;
}
.subscribefrom input {
    font-size: 16px;
    width: 100%;
    height: 48px;
    transition: padding 0.2s;
    background: #000;
    border: 1px solid #ababab;
    padding: 0 10px;
    text-transform: uppercase;
    border-radius: 20px;
}
.subscribefrom input::selection {
  background: #fdd17c;
}
.subscribefrom button {
        background: none;
    transition: padding 0.2s;
    position: absolute;
    right: 115px;
    border: none;
}
.subscribefrom button i{
      padding: 10px;
    background: #64b09f;
    border-radius: 50%;
    margin: 5px;
}


.copyrightstext p{
      font-size: 16px;
    color: #ababab;
    font-weight: 400;
}

.video-embed--responsive {
  width: 100%;
  max-width: 420px; /* adjust max width as needed */
  margin: 0 auto;
  aspect-ratio: 9 / 16; /* preserves vertical short format */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.video-embed--responsive iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/*WooCommerce Styles*/
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

/*WooCommerce Styles*/
/* ===============================
   WooCommerce + Bootstrap Styling
   =============================== */

/* General WooCommerce reset */
.woocommerce-page-wrapper {
  background-color: #f8f9fa;
}

.woocommerce {
  font-family: inherit;
}

/* ===============================
   Shop / Category Page (archive-product.php)
   =============================== */

/* Product Card */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  list-style: none;
  text-align: center;
  border: none;
  margin-bottom: 30px;
}

.woocommerce ul.products li.product .product-inner.card {
  border: 1px solid #e9ecef;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.woocommerce ul.products li.product .product-inner.card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

/* Product Image */
.woocommerce ul.products li.product img {
  max-width: 100%;
  height: auto;
  border-bottom: 1px solid #e9ecef;
}

/* Product Title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 15px 0 10px;
  color: #212529;
}

/* Price */
.woocommerce ul.products li.product .price {
  font-size: 1rem;
  color: #198754; /* Bootstrap green */
  font-weight: 600;
  margin-bottom: 10px;
}

.woocommerce ul.products li.product .price del {
  color: #6c757d;
  margin-right: 5px;
}

/* Buttons */
.woocommerce ul.products li.product .button {
  display: inline-block;
  margin-top: auto;
  margin-bottom: 15px;
  padding: 8px 16px;
  font-size: 0.9rem;
  border-radius: 0.375rem;
  background-color: #0d6efd;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s;
}

.woocommerce ul.products li.product .button:hover {
  background-color: #0b5ed7;
}

/* ===============================
   Single Product Page
   =============================== */

/* Gallery & summary alignment */
.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  margin-bottom: 30px;
}

.woocommerce div.product div.images img {
  border-radius: 0.5rem;
  border: 1px solid #dee2e6;
}

/* Product Title */
.woocommerce div.product .product_title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Price */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-size: 1.25rem;
  font-weight: 600;
  color: #198754;
  margin-bottom: 15px;
}

/* Add to cart */
.woocommerce div.product form.cart .button {
  background-color: #0d6efd;
  color: #fff;
  border-radius: 0.375rem;
  padding: 10px 20px;
  font-size: 1rem;
  transition: all 0.2s;
}

.woocommerce div.product form.cart .button:hover {
  background-color: #0b5ed7;
}

/* Tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  margin: 30px 0;
  padding-left: 0;
  border-bottom: 2px solid #dee2e6;
  display: flex;
  gap: 10px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  list-style: none;
  margin: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 10px 20px;
  border-radius: 0.375rem 0.375rem 0 0;
  background: #f8f9fa;
  color: #212529;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  background: #fff;
  border: 1px solid #dee2e6;
  border-bottom: 2px solid #fff;
}

/* ===============================
   Cart / Checkout
   =============================== */

.woocommerce-cart table.shop_table,
.woocommerce-checkout table.shop_table {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  overflow: hidden;
}

.woocommerce-cart table.shop_table th,
.woocommerce-checkout table.shop_table th {
  background: #f8f9fa;
  padding: 12px;
  text-align: left;
  font-weight: 600;
}

.woocommerce-cart table.shop_table td,
.woocommerce-checkout table.shop_table td {
  padding: 12px;
  border-top: 1px solid #dee2e6;
}

/* Checkout Buttons */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout button.button.alt {
  background: #198754;
  border-radius: 0.375rem;
  padding: 12px 20px;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-checkout button.button.alt:hover {
  background: #157347;
}

/* Notices (success/error/info) */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  border-radius: 0.375rem;
  padding: 12px 15px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.woocommerce-message {
  background: #d1e7dd;
  color: #0f5132;
}

.woocommerce-error {
  background: #f8d7da;
  color: #842029;
}

.woocommerce-info {
  background: #cff4fc;
  color: #055160;
}

.product-card img {
  width: 100%;
  border-radius: 5px;
}

.single-product-card .product-images {
    max-width: 100%;
}

.single-product-card .badge {
    z-index: 10;
}

.single-product-card .product-meta {
    margin-top: auto;
}

.single-product-card img {
  width: 100%;
}

.site-main h1{
        text-align: left;
    color: #000;
    /* font-size: 45px; */
    font-size: 36px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    line-height: 36px;
    padding-bottom: 30px;
}

.shopprobtn a{
  background: #64b09f;
    color: #fff;
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
}

.shopprobtn a:hover{
      background: #ffd19a;
    color: #000;
    box-shadow: -1px 6px 10px 0 rgba(120, 60, 20, .2);
    transition: all 0.6s ease-out;
}

.woocommerce-loop-product__title{
      font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin: 10px 0 0 0;
    padding-bottom: 0px;
}

del .woocommerce-Price-amount bdi{
    font-size: 24px;
    font-weight: 500;
    color: #e1b562;
    padding-right: 10px;
    text-decoration: line-through;
}
ins .woocommerce-Price-amount bdi{
        font-size: 30px;
    font-weight: 600;
    color: #64b09f;
}

.woocommerce-product-price del{
  text-decoration: none;
}

.woocommerce-product-price ins{
  text-decoration: none;
}

.woocommerce-pagination{
  background: #fff;
}

.woocommerce-pagination ul li{
  display: inline-block;
  background: #64b09f;
    padding: 10px;
    margin: 0 5px; 
}

.woocommerce-pagination ul{
  text-align: center;
}

.page-numbers.current{
  color: #fff;
}

.page-numbers{
  color: #000;
}

.related h2{
  color: #64b09f;
    font-size: 45px;
    font-weight: 900;
    text-align: center;
    font-family: "Poppins", sans-serif;
    line-height: 45px;
}

.relatedproductlist a{
  background: #64b09f;
    color: #fff;
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
}

.relatedproductlist a:hover{
      background: #ffd19a;
    color: #000;
    box-shadow: -1px 6px 10px 0 rgba(120, 60, 20, .2);
    transition: all 0.6s ease-out;
}

.card-body h2{
      font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin: 0px 0 0 0;
    padding-bottom: 0px;
}



.prosaleprice bdi{
  font-size: 30px;
    font-weight: 600;
    color: #64b09f;
}

.proregularprice bdi{
  font-size: 24px;
    font-weight: 500;
    color: #e1b562;
    padding-right: 10px;
    text-decoration: line-through;
}

h4.productprice{
  margin-bottom: 0px;
}

p.singleproductdescription{
      font-size: 18px;
    color: #575757;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    line-height: 27px;
    text-align: left;
    padding-bottom: 0px;
}

.price del{
  text-decoration: none;
}

.price  ins{
  text-decoration: none;
}

.review-featured-img img{
  width: auto;
    min-width: auto;
}

.testimonial-content p{
  font-size: 16px;
    color: #575757;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    line-height: 27px;
    text-align: center;
    padding-bottom: 0px;
}

.common-page-wrapper p{
      font-size: 18px;
    color: #575757;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    line-height: 27px;
    text-align: left;
    padding-bottom: 10px;
}

.contactbox i{
  background: #64b09f;
  color: #000;
  border-radius: 50px;
  padding: 10px;
}

.contactbox{
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 20px;
  background: #f1f1f1;
  margin: 20px 0 0 0;
}

.contactbox h5{
      font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin: 10px 0 0 0;
    padding-bottom: 0px;
}

.contactbox p a{
      font-size: 16px;
    color: #575757;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    line-height: 27px;
    text-align: left;
    padding-bottom: 0px;
}

.contactuscontainer h1{
    color: #000;
    /* font-size: 45px; */
    font-size: 36px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    line-height: 36px;
    margin-bottom: 30px;
}

.contactuscontainer h3{
    text-align: left;
    color: #000;
    /* font-size: 45px; */
    font-size: 22px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    line-height: 36px;
    margin-bottom: 30px;
}

.contactuscontainer p{
      font-size: 16px;
    color: #575757;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    line-height: 27px;
    text-align: left;
    padding-bottom: 0px;
}

.contactformbgfield{
  height: 100px;
}

.contactfromsubmitbtn .submitbtn{
  background: #64b09f;
    color: #fff;
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
}

.contactfromsubmitbtn .submitbtn:hover{
  background: #ffd19a;
    color: #000;
    box-shadow: -1px 6px 10px 0 rgba(120, 60, 20, .2);
    transition: all 0.6s ease-out;
}

.contactfromsubmitbtn{
  text-align: right;
}

.contactformcontainer p{
      font-size: 16px;
    color: #575757;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    line-height: 27px;
    text-align: center;
    padding-bottom: 0px;
}

.common-page-wrapper h1 {
      text-align: left;
    color: #000;
    /* font-size: 45px; */
    font-size: 36px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    line-height: 36px;
}


.footersitemap ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footersitemap ul li {
  display: inline-block;
  margin: 0 8px; /* spacing between items */
  position: relative;
}

.footersitemap ul li:not(:last-child)::after {
  content: "|";              /* pipe separator */
  position: absolute;
  right: -10px;               /* adjust spacing */
  color: #fff;                /* separator color */
}

.contactuscontainer {
  background: #f9fafb;
}

.contactinfo h1 {
  font-size: 40px;
  font-weight: 700;
  color: #333;
}

.contactinfo ul li {
  font-size: 1.1rem;
  color: #444;
  transition: transform 0.2s ease;
  background: #fff;
  margin-bottom: 10px;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.contactinfo ul li a {
  color: #444;
  text-decoration: none;
  font-weight: 500;
}

.contactinfo ul li:hover {
  transform: translateX(5px);
}

.contactinfo i {
  font-size: 20px;
    color: #64b09f;
    border: 1px solid #64b09f;
    padding: 5px;
    border-radius: 50%;
}

.contactformcontainer {
  background: #fff;
}

.contactformcontainer h2 {
  font-weight: 600;
  color: #222;
}

.contactformcontainer input,
.contactformcontainer textarea,
.contactformcontainer select {
  border-radius: 8px !important;
  border: 1px solid #ddd;
  padding: 10px 12px;
}

.contactformcontainer input:focus,
.contactformcontainer textarea:focus {
  border-color: #007bff;
  box-shadow: none;
}

.testimonialPageContainer {
  background: #f9fafc;
}

.testimonial-card {
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.quote-icon i{
  color: #64b09f;
}

.testimonial-content {
  font-style: italic;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
  position: relative;
}

.testimonial-client img {
  object-fit: cover;
}

.client-placeholder {
  width: 60px;
  height: 60px;
  background: #e9ecef;
  font-size: 1.2rem;
}

.testimonial-client h6 {
  font-size: 1rem;
  color: #222;
}

.innerPageContainer ul {
  padding: 0 0 20px 20px;
}

.innerPageContainer ul li {
  list-style: disc;
  font-size: 18px;
  color: #575757;
}

.innerPageContainer ol {
  padding: 0 0 20px 20px;
}

.innerPageContainer ol li {
  list-style: inherit;
  font-size: 18px;
  color: #575757;
}

#load-more-products {
  background: #e1b562;
  color: #000;
  padding: 15px 35px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.testimonial-slider .owl-stage {
  display: flex;
}
.testimonial-slider .owl-item {
  display: flex;
  height: auto !important;
}
.testimonial-slider .testimonialscontent {
  background: #fff; /* optional card styling */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bm-out-of-stock-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #dc3545; /* Bootstrap red */
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 1;
}

.offercontainer img{
  width: 100%;
}

.footersectionimg img{
  width: 100%;
}

.contactformcontainer h2{
  text-align: center;
  color: #000;
  font-size: 25px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  line-height: 25px;
}

.contactformcontainer{
  padding: 20px;
}

#mobilecarouselExampleCaptions{
  display: none;
}

.logo img {
  width: 70%;
  min-width: 70%;
}

.contactinfo img{
  width: 100%;
  margin-bottom: 20px;
}