*{
  margin: 0;
  padding: 0;
  font-family: var(--f-system),var(--f-fallback);
  box-sizing: border-box;
}
a{
    text-decoration: none;
    color: #000;
}
img{
    cursor: pointer;
}

hr{
    background-color: #464646;
    height: 1px;
    border: none;
    margin-bottom: 2px;
}

section{
    width: 100%;
}
.flex{
    max-width: 100%;
    display: flex;
    align-items: center;
}

.container{
    padding: 0px 1%;
    width: 100%;
    min-width: 340px;
    height: 100%;
}

.container-full{
    width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
#main-header{
    height: 60px;
    padding: 5px 0;
    width: 100%;
    justify-content: space-between;
    background: var(--color-header);
    position: fixed;
    /*box-shadow: rgba(0, 0, 0, 0.02) 0px 5px 5px;*/
    top: 0;
    z-index: 100;

}
.brand-name {
    font-family: 'Raleway', sans-serif;
    display: flex;
    align-items: center;
}
#start{
    justify-content: center;
    align-items: center;
    padding-left: 10px;
    flex-basis: 20%;
}
#center{
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
    flex-basis: 60%;
}
#end{
    justify-content: center;
    align-items: center;
    padding-right: 10px;
    flex-basis: 20%;
}
.mt-10{
    margin-top: 10px !important;
}
.mt-20{
    margin-top: 20px !important;
}
.mt-30{
     margin-top: 30px !important;
  }
/* Brand and logo */
.togle-menu{
    position: relative;
    top: 2px;
    padding-right: 10px;
}
.brand {
    position: relative;
    padding: 0px 10px 0px 10px;
}

.logo {
    width: 130px;
    font-size: 25px;
    font-weight: 700;
    margin: 0;
    font-family: var(--bs-font-sans-serif);
}

.logo img {
    width: 100%;   /* Makes the image responsive */
    height: auto;  /* Maintains the aspect ratio */
    object-fit: cover; /* Ensures the image fits within the dimensions */
    max-width: 60px; /* Limits the max width */
    max-height: 60px; /* Optionally set max height */
}


/*---search----*/
.search-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    position: absolute;
    transition: 0.5s case-in-out;
}
#close-btn{
    visibility: hidden;
}
.search-input{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    min-width: 500px;
    height: 40px;
    border: 1px solid #ffc107;
    padding: 5px 10px;
    border-radius: 25px 0px 0px 25px;
    background-color: white;
}

.search-input input{
    width: 100% !important;
    height: 100% !important;
    font-size: 20px !important;
    font-weight: 500;
    border: none !important;
    outline: none !important;
    background-color: white !important;

}

.search-btn{
    border: 1px solid #ffc107;
    border-radius: 0px 25px 25px 0px;
    margin: 0px;
    padding: 10px;
    position: relative;
    display: flex;
    height: 40px;
    width: 80px;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    background-color: #ffc107;
    cursor: pointer;
    letter-spacing: 2px;
    color: #131921;

  }
  .search-btn:hover{
    background-color: #ffc107;
  }

  #open-btn {
    visibility: hidden;
}
@media(max-width:820px){
.brand{
    position: relative;
    padding-left: 0px !important;
}
.search-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    right: 100%;
    width: 100%;
    z-index: 1;
    position: absolute;
    transition: 0.5s case-in-out;
    background-color: var(--color-header);
    padding-top: 10px;
}
/*---search----*/
.search-input{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 360px;
    min-width: 185px;
    height: 40px;
    border: 1px solid #ffc107;
    padding: 5px 10px;
    border-radius: 25px 0px 0px 25px;
    
}
.search-btn{
    border: 1px solid var(--color-header);
    border-radius: 0px 25px 25px 0px;
    margin-right: 10px;
    padding: 10px;
    position: relative;
    display: flex;
    height: 40px;
    width: 80px;
    margin-right: 20px;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    background-color: #ffc107;
    cursor: pointer;
    letter-spacing: 2px;
    color: #131921;
}
.active{
    right: 0 !important;
   
}

 #open-btn{
  visibility:visible;
  }

  #close-btn{
    display: flex;
    width: 20px;
    visibility: visible;
    margin-left: 10px;
    margin-right: 5px;

}

}


/*to cat*/
 #top-nav{
        border-top: 1px solid #f3f3f3;
        margin-top: 60px;
        width: 100%;
        background: var(--color-header);
        z-index: 99;
       
    }

    #top-nav a {
        display: inline-block;
        padding: 0em 1em 0em 1em;
        margin: 0em 0em 0em 0em;
        color: #0f171c;
        text-decoration: none ;
        cursor: pointer;
        border-radius: 25px;
    }
@media(max-width:820px){
 
    #top-nav a {
      margin-right: 10px;
       
       
    }
}


.grid-layout {
    margin-top: 1%;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(390px,1fr));
    grid-gap: 1em;  
}
.grid-box{
    background-color: #fff;
    padding: 2%;
    border-radius: 5px !important;
}

/* side menu*/
      .side-menu{
        margin-top: 0px;
        padding-top: 10px;
        padding-left: 15px;
        padding-right: 10px;
        background-color: #fff;
        width: 270px;
        height: 100%;
        display: flex;
        justify-content: start;
        position: fixed;
        top: 0;
        left: -270px;
        transition: 850ms;
        z-index: 4;
        overflow: hidden;
      }
       .side-menu-item::-webkit-scrollbar{
        width: 0;

      }
      .side-menu-item{
            width: 270px;
            margin: 0px;
            overflow: auto;
      }
      .show {
        left: 0;
        transition: 350ms;
      }
      .nav-text{
        display: flex;
        justify-content: start;
        height: 50px;
        padding: 1rem;
      }
      #show-side-menu{
       
         cursor: pointer;
      }
      #hide-side-menu{
        
         cursor: pointer;
      }
.filter-header{
    font-weight: 700;
    font-size: 14px;
    margin: 10px 5px 10px;
    clear: both;
    color: #282c3f;
    display: block;
    letter-spacing: 2px;
}
.filter-list{
   display: flex;
   justify-content: start;
    margin-bottom: 5px;
}

.radio-input{
    margin: 0 10px 0px 5px;

}
.radio-name{
    margin: 0;
    font-size: 14px;
    color: #909090;
    cursor: pointer;
    min-height: 15px
    
}   
.dot {
  height: 16px;
  width: 16px;
  border: 1px solid #c5c5c5 !important;
  border-radius: 50%;
  display: inline-block;
}

.dot-empty {
  height: 20px;
  width: 20px;
 
}

.btn-filter{
    border-radius: 25px;
    padding: 10px;
    margin-top: 5px;
    margin-left: 50px;
    min-width: 108px;
    font-size: 12px;
    font-weight: 500;
    background-color: #F18AAD;
    border: 1px solid #F18AAD;
    color: #000;
    text-align: center;
    width: 150px;
    letter-spacing: 2px;
    cursor: pointer;
     color: #fff;
}

    }

.btn-filter:hover{
    background-color: #E96A97 !important;
    border: 1px solid #F18AAD !important;
    color: #fff !important;
}


.lhs{
   margin-top: 100px;
   margin-left: 10px;
  display: flex;
  flex-direction: column; 
}
.main {
  display: flex;
  flex-direction: column;
  background: hsl(218, 34%, 96%);

  padding-bottom: 60px !important;

  
}

@media(max-width:820px){
.lhs {
  display: none;
  }

.grid-layout {
    grid-template-columns: 1fr;
 }
}



.campaign {
    position: relative;
    display: block;
  
}
.campaign img{
    text-decoration: none;
    color: inherit;
    border: none;
    outline: none;
}

.campaign-lable{
    background: rgba(255,63,108,.8);
    display: inline-block;
    position: absolute;
    top: 16px;
    left: 0;
    text-transform: uppercase;
    color: #fff;
    font-size: 12px; */
    font-weight: 700;
    line-height: 18px;
    z-index: 2;
}
.campaign-lable:after{
    border-width: 9px;
}
.campaign-lable:after{
    content: "";
    position: absolute;
    border-color: rgba(255,63,108,.5) transparent rgba(255,63,108,.5) rgba(255,63,108,.8);
    border-style: solid;
    border-width: 9px;
    left: 100%;
    width: 0;
    height: 0;
    top: 0;
}
 






#mountroot {
    clear: both;
    min-height: 100vh;
   
}
.success {
    margin-top: 10% ;   
}

  /* wrapper grid */
  .wrapper{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25%,1fr));
    justify-items: center;
    align-items: center;
   
    
}
    .wrapper .card {
        min-width: 210px;
        max-width: 210px;
        margin: 0 10px 0px;
        text-align: left;
        position: relative;
        vertical-align: top;
        overflow: hidden;
        display: inline-block;
        margin-top: 20px;
        
      }

    /* wrapper scroll */
    .wrapper-scroll{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(25%,1fr));
        justify-items: center;
        align-items: center;
    
    }
    .wrapper-scroll .card {
        min-width: 210px;
        max-width: 210px;
        margin: 0 10px 0px;
        text-align: left;
        position: relative;
        vertical-align: top;
        overflow: hidden;
        display: inline-block;
        
      }

  .hide-toggle{
        margin-left: -40px !important;
        margin-right: 40px !important;
    }

  @media(max-width:820px){
.hide-toggle{
        margin-left: -0px !important;
        margin-right: 0px !important;
    }
    .lhs{
           margin-left: -300px !important;
        }
    .main {
        margin-left: 0px !important;
    }
    .wrapper{
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(50%,1fr));
        justify-items: center;
        align-items: center;
       
        
    }

    .wrapper .card {
        min-width: 160px;
        max-width: 160px;
        margin: 0 10px 0px;
        text-align: left;
        position: relative;
        vertical-align: top;
        overflow: hidden;
        display: inline-block;
        margin-top: 20px;
      }



     .wrapper-scroll{
        display: flex;
        overflow-x: auto;
        justify-items: center;
        align-items: center;
       
      }

    .wrapper-scroll::-webkit-scrollbar{
        width: 0px;
      }
    .wrapper-scroll .card {
        min-width: 210px;
        max-width: 210px;
        margin: 0 10px 0px;
        text-align: left;
        position: relative;
        vertical-align: top;
        overflow: hidden;
        display: inline-block;
      }   
      
   

  }

 /* wrapper scroll end*/
.card-header{
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: scale-down;
    overflow: hidden;
}

.card-header img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: contain;
    overflow: hidden;
}
.card-body{
    margin: 5px;
}
.card-footer{
    margin: 5px;
}
  

  /* image ratio  */

.ratio-1X1 {
        width: 100%;
        aspect-ratio: 1/1;
        object-fit: cover;
      }

.ratio-3X4 {
        width: 100%;
        aspect-ratio: 3/4;
        object-fit: scale-down;
        overflow: hidden;
      }
.ratio-4X3 {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
      }


/* product container*/
  .pdp-container{
    margin-top: 20px;
    margin-left: 50px;
    margin-right: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50%,1fr));
  }
  .img-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(45%,1fr));
    grid-gap: 10px;
    margin-bottom: 10px;

  }

  .img-grid{
    background-color: #fff;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50%,1fr));
  }

@media (max-width:820px){
.pdp-container{
    margin-left: 20px;
    margin-right: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100%,1fr));
  }
    .img-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100%,1fr));
  }

.img-grid {
      background-color: #fff;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100%,1fr));
}

}
/*ad to cart*/
.cart-container{
    height: 100%;
    padding: 0 0 0 30px;
    box-sizing: border-box;
  
    }

   @media (max-width:820px){
  
        .cart-container{
            margin-left: 0px  !important;
            padding-left: 0px  !important;
        }
    }
    .pdp-brand-name{
        color: #282c3f;
        padding: 0 20px 0 0;
        margin: 0 0;
        font-size: 24px;
        font-weight: 700;
        line-height: 1;
    }
    .pdp-item-name{
        color: #535665;
        padding: 5px 20px 14px 0;
        margin: 0 0;
        font-size: 20px;
        opacity: .8;
        font-weight: 400;
    }

    .pdp-price-container{
        color: #696e79;
        font-size: 14px;
       
       /* margin-top: 14px;*/
        margin-bottom: 5px;
        display: inline-block;
    }
    .pdp-price{
        color: #282c3f;
        font-size: 35px;
        font-weight: 700;
        line-height: 1;
        cursor: pointer;
        margin-right: 12px
    }

    .pdp-MRP{
      
        opacity: .8;
        font-size: 25px;
        line-height: 1.2;
    }

    .pdp-pric, .pdp-MRP{
        color: #282c3f;
        margin-right: 12px
    }
    .pdp-discount{
        font-size: 25px;
        font-weight: 600;
        letter-spacing: .5px;
        color: var(--color-red);;
    }

    .pdp-more-color-container{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(75px,1fr));
    }
    .pdp-more-color-image-ratio{
        height: 100px;
        width: 75px;

    }

   .pdp-more-size-container{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(75px,1fr));
    }

    .pdp-cart-container{
        margin-top: 25px;
    }
    .pdp-more-size{
        height: 100px;
        width: 75px;

    }




/* product container end */


.pdp-size, .pdp-qty{
        color: #282c3f;
        font-weight: 700;
        line-height: 1;
        opacity: .8;
        font-size: 20px;
    }

    


.hscrollmenu {
  overflow-x: auto;
  white-space: nowrap;
  width: 100%;
  min-width: 340px;
  display: flex;
  justify-content: space-evenly;

}
.hscrollmenu::-webkit-scrollbar{
    width: 0;
}
.hscrollmenu  li {
  display: inline-block;
  color: white;
  text-align: center;
  margin-right: 0px;
  text-decoration: none;
}

.hscrollmenu  li:hover {
 text-decoration: underline;
}
.leader-link{
    color: black;
    padding: 0px 15px;
    cursor: pointer;
}

.nav-link{
    color: black;
    padding: 0px;
    cursor: pointer;
}

@media(max-width:820px){
.hscrollmenu {
    justify-content: start;
}

}

.p-description{
    display: inline-block;
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding: 0;
    text-decoration: none;
    color: #878787;
    font-size: 14px;
    font-weight: 500;
}
.p-price{
        color: #282c3f;
        line-height: 1;
        margin-right: 12px
        }
.p-MRP{
      opacity: .8;
      line-height: 1.2;
    }    
.p-qty{
         color:green ;
       line-height: 1.2;

    }
.p-pric, .p-MRP{
        color: #282c3f;
        margin-right: 12px
    }
.p-discount{
        letter-spacing: .5px;
        color: rgb(204, 12, 57);
    }



@media (max-width:820px){
#main-header{
        height: 60px;
        padding: 5px 0;
        width: 100%;
        min-width: 360px;
        justify-content: space-between;
        background: var(--color-header);
        position: fixed;
        top: 0;
        
    }
.togle-menu{
    position: relative;
    top: 2px;
    padding-right: 2px;
}



    .uppercase{
        padding: 0 0;
    }
}




.event-grid {
    margin-top: 0em;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0.5em;
}
.event-card {
    margin-bottom: 0em;
}
.event-card-body {
    padding: 1em;
}
.event-grid ul {
    list-style-type: none;
    font-size: 1em;
    line-height: 2em;
    letter-spacing: 0.02em;
    padding-inline-start: 0px;
}
.event-grid li {
    line-height: 1.8em;
    border-bottom: 1px #111 dotted;
    margin-bottom: 0.8em;
}
.event-grid li a{
   color: var(--primary-darker);
}

@media screen and (max-width:980px) {
.event-grid ul {
    list-style-type: none;
    font-size: 1em;
    margin: 0em;
    padding: 0em;
}

}


.grid-container {
  display: grid;
  grid-template-columns: auto auto auto;
  padding: 2%;
}


.footer{
        padding-top: 30px;
        background: #ffff;
        width: 100%;
        bottom: 0;
    }
    .f-container{
        margin: 20px 100px 0px 100px;
      
        padding-bottom: 20px;
       
    }
      .b-top{
        border-top: 1px solid #848484;
      }
      .b-bottom{
        border-bottom: 1px solid #848484;
      }
    .p-content{
        padding: 0px;
      }
    .p-content h1{
        font-size: 18px;
        color: #848484;
    }
    .p-content h2{
        font-size: 16px;
        color: #848484;
    }
    .p-content p{
        font-size: 14px;
        color: #848484;
    }
    .p-content ol li{
        font-size: 14px;
        color: #848484;
    }
    .p-content ol li::marker {
        font-size: 14px;
        color: #848484;
    }

    .f-grid{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(25%,1fr));
        justify-content: center;
        align-items: center;
    }
    .f-grid .f-col{
        min-width: 240px;
        max-width: 240px;
        margin-top: 30px;
        padding: 0px;
    }
  .social{
    padding: 0px;
  }
  .social a{
    padding-right: 10px;
  }

    @media (max-width:820px){
    .f-container{
        margin: 10px;
        height: auto;
        
    }
    .f-grid{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(50%,1fr));
         justify-content: center;
         align-items: center;
    }
    .f-grid .f-col{
        min-width: 180px;
        max-width: 180px;
        margin-top: 30px;
        padding: 10px;

    }
    .f-nav{
       padding-bottom: 20px;
       padding: 10px; 
    }
    .p-content{
        padding: 10px;
      }
    }

   
    .f-nav-title{
        color: #848484;
        font-weight: 500;
        margin-top: 15px;
       margin-bottom: 15px;
    }
    .f-nav a{
        color: #848484;
        padding: 0 10px 0 0;
        border-right: 1px solid #848484;
        font-size: 14px;
    }
    .f-nav a:last-child{
        border-right: none;
    }


.sticky {
  position: -webkit-sticky; /* For Safari */
  position: sticky;
  top: 0; /* Adjust this value as needed */
  z-index: 98; /* Ensure it stays on top */
  background-color: white; /* Optional: Set a background color */
}

.terms{
        margin: 20px 150px 0px 150px;
    }
@media (max-width:820px){
   .terms{
        margin: 0 !important;
    }

}


