::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-thumb {
    background: #ED3237;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #ED3237;
    border-radius: 10px;
}

:root {
     --white:#ffffff;
     --red:#ED3237;
     --baseblue:#34437A;
     --purple:#EBE5FF;
     --liteyellow:#FDFFE0;
     --litegreen:#EFFFE6;
     --liteblue:#DEF4FF;
 }
h1,h2,h3,h4,h5,h6{
	font-family: "Nunito", sans-serif;
}
body{
	font-family: "Inter", sans-serif;
	font-size: 16px;
    overflow-x: hidden;
}

 /* Style the navbar */
.men{
    
    z-index:1000;
}
.logo{
	    width: 105px;
}
#navbar {
  /*overflow: hidden;*/
      display: flex;
    justify-content: flex-end;
}

/* Navbar links */
#navbar a {
  float: left;
  display: block;
  color: var(--base);
  text-align: center;
  padding: 14px;
  font-size:16px;
  text-decoration: none; 
  margin-left: 0.8rem;
}


.mega_ul
{
    padding-left: 1px;
    list-style: none;
}
.mega_ul li
{
    display: flex;
    align-items: center;
    padding: 0px 0px 7px 0px;
}
.mega_ul li a
{
    color:#000000bd;
    font-size:15px;
}
.mega_ul li a:hover
{
    color:var(--bs-red);
}
 .megaa.dropdown-menu[data-bs-popper] {
    top: 101%;
    width: 97vw;
    left: -46vw;
    margin-top: 0;
}
 

/* Page content */
.content {
  padding: 16px;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}
 .logosz{
    width: 125px;
 }
  
#navbars{
    z-index:1000;
}
#navbars .nav-item{
    margin:10px 0;
    font-weight:600;
}
#navbars .navbar-nav{
    padding:50px 0 30vh 0;
    
}
#navbars .navbar-nav .nav-link { 
    font-size: 26px;
}

#hamburger-menu,
         #mobile-menu {
         display: none;
         }
         @media only screen and (max-width: 770px) {
         
            #navbar {
    overflow: hidden;
    display: flex;
    justify-content: space-between !important;
    
    z-index:1000;
    /*box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;*/
   }
   #mobile-menu{
  	 z-index:3500;
   }
   
         #mobile-menu {
         background-color: var(--white);
         width: 100%;
         height: 100vh;
         position: fixed;
         top: 0;
         left: 0;
         display: none;
         justify-content: center;
         align-items: center;
         flex-direction: column;
         transition: transform 0.3s ease;
         transform: translateX(-100%);
         }
         .mobile-nav-items > ul {
         padding: 0px;
         }
         .mobile-nav-items > ul > li {
         text-align: center;
         position: relative;
         list-style: none;
         margin: 10px;
         padding: 10px 20px;
         cursor: pointer;
         }
         .mobile-nav-items > ul > li > a {
         color: var(--base);
         text-decoration: none;
         font-size: 20px;
         }
         .mobile-nav-items > ul > li::after {
         content: "";
         position: absolute;
         width: 100%;
         height: 0.17rem;
         background-color: var(--white);
         left: 0;
         bottom: 0;
         transform-origin: 0% 100%;
         transform: scaleX(0);
         transition: transform 0.3s ease;
         }
         .mobile-nav-items > ul > li:hover::after {
         transform: scaleX(1);
         }
         
         #hamburger-cross {
         display: block;
         color: var(--red);
         cursor: pointer;
         font-size: 30px;
         position: absolute;
         top: 20px;
         right: 26px;
         }
         #hamburger-menu {
        display: block;
        color: var(--brown);
        cursor: pointer;
        font-size: 40px;
    }
         
         #navbar a {
  	  	padding: 0px!important;
   	 }
    
    
         }
         
         .fade-in-fwd {
	-webkit-animation: fade-in-fwd 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
	        animation: fade-in-fwd 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
}


@-webkit-keyframes fade-in-fwd {
  0% {
    -webkit-transform: translateZ(-80px);
            transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes fade-in-fwd {
  0% {
    -webkit-transform: translateZ(-80px);
            transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}


         
         .fade-in-top {
	-webkit-animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.5s both;
	        animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.5s both;
}
 
@-webkit-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

.sticky {
  position: sticky;
  top: -1;
  z-index: 1000;
  background-color: white; /* Add background to avoid transparency */
  box-shadow: 0 4px 2px -2px #95949417; /* Optional shadow for effect */
  transition:0.50s linear;
}
.sticky a{
    color:#000000 !important;
}
#conta {
    padding-top: 1.5rem  ;
    padding-bottom: 1.5rem  ;
}
.sticky #conta {
    padding-top: 0.5rem  !important;
    padding-bottom: 0.5rem  !important;
}

.whatsapp-button { 
    position: fixed;
    bottom: 15px;
    left: 15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    line-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    cursor: pointer;
    transition: all 0.5s ease;
    display: none;
} 
.whatsapp {
    width: 75%;
    margin-left: -10px;
}
.visible {
    display:block;
}
 
 
 .relative{
     position:relative;
 }
 .absolute{
     position:absolute;
 }
/*#navbardesk:after {*/
/*    content: ". ";*/
/*    background: url(./img/red-line.svg);*/
/*    background-size: 100%;*/
/*    background-repeat: no-repeat;*/
/*    position: absolute;*/
/*    bottom: 5px;*/
/*    right: 0;*/
/*    width: 56%;*/
/*    color: transparent;*/
/*}*/
/*#navbardesk:before {*/
/*    content: ". ";*/
/*    background: url(./img/red-line.svg);*/
/*    background-size: 400%;*/
/*    background-repeat: no-repeat;*/
/*    position: absolute;*/
/*    bottom: 5px;*/
/*    left: 0;*/
/*    width: 10%;*/
/*    color: transparent;*/
/*}*/
.men a.active{
    color:var(--red)!important;
}
.sticky{
    position:sticky!important;
}

 .dropdown-item:focus, .dropdown-item:hover {
    color: #1e2125;
    background-color: #e9ecef!important;
}
.absolute{
	position: absolute;
}
.relative{
	position: relative;
}
.pos{
	top: 0;
	left: 0;
	right: 0;
}
.posleft{
	right: 0;
	top: 0;
	width: 75%;
}
.marginminus{
	    margin: 0 0 -1.5rem;
}
.z1{
	z-index: 1;
}
.z2{
	z-index: 2;
}
.buttons{
    background: linear-gradient(135deg, #ED3237, #ff5722db);
    color: var(--white);
    font-weight: 500;
    padding: 8px 30px;
    font-size: 16px;
    border-radius: 50px;
}
.buttons2{
    
    background: linear-gradient(135deg, #ED3237, #ff5722db);
    color: var(--white);
    font-weight: 500;
    padding: 6px 30px;
    font-size: 16px;
    border-radius: 50px;
}
.fs-10  { font-size: 10px; }
.fs-12  { font-size: 12px; }
.fs-14  { font-size: 14px; }
.fs-16  { font-size: 16px; }
.fs-18  { font-size: 18px; }
.fs-20  { font-size: 20px; }
.fs-22  { font-size: 22px; }
.fs-24  { font-size: 24px; }
.fs-26  { font-size: 26px; }
.fs-28  { font-size: 28px; }
.fs-30  { font-size: 30px; }
.fs-32  { font-size: 32px; }
.fs-34  { font-size: 34px; }
.fs-36  { font-size: 36px; }
.fs-40  { font-size: 40px; }
.fs-45  { font-size: 45px; }
.fs-50  { font-size: 50px; }
.fs-55  { font-size: 55px; }
.fs-60  { font-size: 60px; }
.fs-64  { font-size: 64px; }
.fs-96  { font-size: 96px; }

.fw-300 { font-weight: 300; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-900 { font-weight: 900; }
strong { font-weight: 700!important; }
.carousel-control-prev{
	    margin-left: -10%;
}
.carousel-control-next{
	    margin-right: -10%;
}
a{
	text-decoration: none;
}
a:hover{
	color:#fff;
}
.colorfd{
	color:#666666;
}

.marginbot{
	margin-bottom:-80px;
}

.textblue{
	color:var(--baseblue);
}

.owl-nav{
	width: 110%;
    margin: -18% 0 0 -5%;

}
.carousel-category .owl-nav{
    width: 110%;
    margin: -10% 0 0 -5%;
}
.carousel-category .owl-stage-outer,  .owl-carousel.carousel-category.owl-loaded.owl-drag{
        min-height: 160px;
}
.owl-prev{
	    left: -3%;
    position: absolute;
}
.owl-next{
	right: -3%;
    position: absolute;
}
.jic{
	justify-items:center;
}
.owl-next span{
	font-size: 40px;
    opacity: 0.5;
}
.owl-prev span{
	font-size: 40px;
    opacity: 0.5;
}
.owl-stage-outer, .owl-carousel.owl-loaded.owl-drag{
    min-height: 400px;
}
.gredyellow{
    background: #FFDC9C;
background: linear-gradient(160deg, rgba(255, 220, 156, 1) 0%, rgba(255, 250, 232, 1) 50%, rgba(255, 220, 156, 1) 100%);
}
.radius30{
    border-radius: 40px;
}
.radius12{
    border-radius: 12px;
}
.radius10{
    border-radius: 10px;
}
.wcicon{
    width: 40px;
}

.purple{
background-color:var(--purple);
}

.liteyellow {
  background-color: var(--liteyellow);
}

.litegreen {
  background-color: var(--litegreen);
}

.liteblue {
  background-color: var(--liteblue);
}
.radius5{
    border-radius:5px;
}
.ctabg{
    background: url('img/ractcta.svg')no-repeat;
    background-size: 100%;
    height: 100%;
}
.creamcolor{
    background: #FFEFD2;
}
.greycolor{
    background: #F5F5F5;
}

 .butonicon{
    width: 20px;
 }
 .hearticon{
    width: 12px;
 }
 .form-control, .form-select{
    background-color: #FFEFD2;
 }
 .form-control:focus { 
    background-color: #fff5;
    border-color: #fed486;
    box-shadow: 0 0 0 .15rem rgba(13, 110, 253, .05);
}
.w-40{
    width: 40%;
}
.w-80{
    width: 80%;
}
.w-90{
    width: 90%;
}
.footerbg{
    margin-top: -50px;
}
.heigh{
    min-height: 400px;
}
footer a{
    color: #ffffff;
}
.socialicon{
    height: 35px;
}
.kattha{
    background-color: #700000;
}
.gradient1 {
      background: url('/img/redgrad.svg') no-repeat;
    background-size: cover;
}
.gradient2{
    background: url('/img/multishot.svg')no-repeat;
    background-size: cover;
     
}
.gradient3{
    background: url('/img/pack.svg') no-repeat;
    background-size: cover;
    
}
.mtop{
    margin-top: -30px;
}
.colorfad{
    color:#00000031;
}
.ace{
    align-content:flex-end;
}

.decor1:before{
    content: "";
      background: url({{ asset('img/decor/misile.webp') }}) no-repeat;
    background-size: contain;
    width: 100px;
    height: 150px;
    position: absolute;
    right: -8%;
    bottom: -50%;
}
.decor2:before{
    content: "";
    background: url({{ asset('img/decor/bomber.webp') }}) no-repeat;
    background-size: contain;
    width: 160px;
    height: 160px;
    position: absolute;
    left: -10%;
    top: 0%;
}
.decor3:before{
    content: "";
    background: url({{ asset('img/decor/bomb2.webp') }})no-repeat;
    background-size: contain;
    width: 155px;
    height: 115px;
    position: absolute;
    right: 2%;
    top: -60px;
}
.decor3:after{
    content: "";
    background: url({{ asset('img/decor/rocket2.webp') }})no-repeat;
    background-size: contain;
    width: 100px;
    height: 160px;
    position: absolute;
    left: 2%;
    bottom: -18%;
}
.decor4:before{
    content: "";
    background: url({{ asset('img/decor/jhari2.webp') }})no-repeat;
    background-size: contain;
    width: 200px;
    height: 300px;
    position: absolute;
    right: -11%;
    bottom: -50%;
}
.decor5:after{
    content: "";
    background: url({{ asset('img/decor/jhadi.webp')}})no-repeat;
    background-size: contain;
    width: 157px;
    height: 191px;
    position: absolute;
    left: 2%;
    top: -12%;
    z-index: 10;
}
.decor6:after{
    content: "";
    background: url({{ asset('img/decor/rocket3.webp')}}) no-repeat;
    background-size: contain;
    width: 157px;
    height: 191px;
    position: absolute;
    right: -12%;
    bottom: -5%;
    z-index: -2;
}
.decor7:before{
    content: "";
    background: url({{ asset('img/decor/jhari2.webp')}}) no-repeat;
    background-size: contain;
    width: 150px;
    height: 250px;
    position: absolute;
    right: -11%;
    bottom: -70%;
}
.decor5:before{
    content: "";
    background:url({{ asset('img/decor/chakri.svg')}}) no-repeat;
    background-size: contain;
    width: 150px;
    height: 150px;
    position: absolute;
    left: 2%;
    bottom: -3%; 
    z-index: 10;

    -webkit-animation: rotate-center 3s linear infinite both;
            animation: rotate-center 3s linear infinite both;
}

/* ----------------------------------------------
 * Generated by Animista on 2025-6-17 18:53:22
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation rotate-center
 * ----------------------------------------
 */
@-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.decor8:after{
    content: "";
    background: url({{ asset('img/decor/misile.webp')}}) no-repeat;
    background-size: contain;
    width: 157px;
    height: 191px;
    position: absolute;
    right: -15%;
    top: 10%;
    z-index: -1;
    transform: rotate(45deg);
}
.decor8:before{
    content: "";
    background: url({{ asset('img/decor/chakri.svg')}}) no-repeat;
    background-size: contain;
    width: 150px;
    height: 150px;
    position: absolute;
    left: -40%;
    bottom: -3%; 
    z-index: 10;

    -webkit-animation: rotate-center 3s linear infinite both;
            animation: rotate-center 3s linear infinite both;
}

/* ----------------------------------------------
 * Generated by Animista on 2025-6-17 18:53:22
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation rotate-center
 * ----------------------------------------
 */
@-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}


.decor9:before {
    FONT-WEIGHT: 200;
    content: "";
    background: url({{ asset('img/decor/jhari2.webp')}}) no-repeat;
    background-size: contain;
    width: 125px;
    height: 300px;
    position: absolute;
    right: 0%;
    top: -20%;
}

.hidx{
    overflow-x: hidden;
}
.hidxy{
    overflow: hidden;
}
.min600{
    min-height: 600px;
}



 .marquee-container {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      pointer-events: none;
      z-index: 0;
      z-index: 2030;
    }

    .marquee-line {
      position: absolute;
      animation: zigzag 40s linear forwards;
    }

    .marquee-line img {
      width: 16px;
      z-index: 2030;
    }

    @keyframes zigzag {
      0% {
        bottom: -60px;
        left: 0%;
        opacity: 1;
      }
      25% {
        left: 25%;
      }
      50% {
        left: 50%;
      }
      75% {
        left: 75%;
        opacity: 1;
      }
      100% {
        bottom: 100vh;
        left: 100%;
        opacity: 0;
      }
    }

     
    .minh400{
        height: 250px;
                display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        align-content: center;
        background:url('../img/headback.webp');
        background-position: center;
        background-size: cover;
        width:100%;
    }
    .minh400 img{
        height: 250px;
        object-fit: cover;
        object-position: top;
    }
     
    .bggrad{
        background: #FFDC9C;
background: linear-gradient(171deg, rgba(255, 220, 156, 1) 14%, rgba(255, 241, 201, 1) 50%, rgba(255, 220, 156, 1) 86%);
    }
 
    .greycolor .form-control{
    background-color: #F5F5F5;
}

.tip-card {
      border-left: 5px solid;
      border-radius: 0.5rem;
      padding: 3rem;
      margin-bottom: 1.5rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
    .tip-red    { border-color: #f44336; }
    .tip-yellow { border-color: #ffc107; }
    .tip-green  { border-color: #4caf50; }
    .tip-blue   { border-color: #2196f3; }
    .tip-purple { border-color: #9c27b0; }
    .tip-pink   { border-color: #e91e63; }
    .tip-orange { border-color: #ff9800; }


/*add more button*/
    .bdrr{
        border-right:1px solid inherit;
    }
    .bdrl{
        border-left:1px solid inherit;
    }
    .stepper {
      display: inline-flex;
      align-items: center;
      border: 1px solid #ccc;
      border-radius: 999px;
      overflow: hidden;
      width: 100px;
      height: 31px;
    }

    .stepper button {
      width: 32px;
      height: 100%;
      border: none;
      background-color: white;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
    }

    .stepper input {
      width: 36px;
      border: none;
      text-align: center;
      font-size: 16px;
      outline: none;
    }

    .stepper button:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }
    /* Remove arrows from number input - Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove arrows - Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.bdrr{
        border-right:1px solid #d5d0d0 !important;
    }
    .bdrl{
        border-left:1px solid #d5d0d0 !important;
    }

/*add more button*/

.gredientcol{
    background: #ffffff;
background: linear-gradient(90deg, rgba(255, 255, 255, 0) 2%, rgba(211, 220, 255, 1) 50%, rgba(255, 255, 255, 0) 98%);
}
.uppercase{
    text-transform: uppercase;
}
.obj{
    object-fit: contain;
    height: 200px;
}

.w-30px { width: 30px !important; }
.w-35px { width: 35px !important; }
.w-50px { width: 50px !important; }
.w-60px { width: 60px !important; }
.w-65px { width: 65px !important; }

.carousel-brand .owl-stage-outer, .owl-carousel.carousel-brand.owl-loaded.owl-drag {
        min-height: 230px;
}

.carousel-brand .owl-nav {
    width: 110%;
    margin: -11% 0 0 -5%;
}
 
 .colred{
    color: var(--red);
 }
 .joystik{
    position: fixed;
    bottom: 0px;
    width: 100%;
    background:#FFFBEE;
    z-index:2;
 }
 #cart-items{
     height:64vh;
     overflow:auto;
         width: 92%;
 }
 .outln{
    outline: none;
    border: 1px solid #0005;
 }
.radius50{
    border-radius:50px;
}

li.brand, .linkss a{
    color: #212529;
}
li.brand:hover{
    border-bottom: 1px solid #6e5cff96;
    border-radius: 7px;
    color:var(--red);
}
.linkss{
    list-style-type: circle;
}
.linkss a:hover{
    color:var(--red);
}


 .jce{
      justify-content: flex-end;
 }   
    






@media (max-width: 767.98px) { 
    
.logo {
    width: 60px;
}
.mob1{
        height: 80vh;
    object-fit: cover;
}
.mf-14 {
    font-size: 14px;
} 
.mf-15 {
    font-size: 15px;
} 
.mf-16 {
    font-size: 16px!important;
} 
.mf-24{
    font-size: 24px;
} 
.mf-26 {
    font-size: 26px;
} 
.mf-28 {
    font-size: 28px;
}
.mf-32 {
    font-size: 32px;
} 
.mf-40 {
    font-size: 40px;
} 
.w98{
        width: 89% !important;
}
.w50{
        width: 50% !important;
}
.od2{
    order:2;
}
    .center{
        text-align:center;
    }
    
    .marginbot{
            margin-bottom: -50px; 
    }
    .imgfataka{
        z-index:-1;
        position: relative;
    }
    .leftfataka{
        width: 50%; 
    }
    .rightfataka{
        width: 50%;
    margin-left: 1.5rem;
    
    }
    .w100{
        width:100%;
    }
    .gradient3 {
 align-items: flex-end;
    height: 81%;
}
    
    .carousel-category .owl-nav { 
    margin: -44% 0 0 -5%;
}
    .newarrivals .owl-nav {
    margin: -44% 0 0 -5%;
}

.signaturefire .owl-nav {
    margin: -47% 0 0 -5%;
}
    .carousel-brand .owl-nav {
    margin: -28% 0 0 -5%;
}
.carousel-brand, .carousel-brand .owl-stage-outer{
        min-height: 120px!important;
}
    
.wcicon {
    width: 28px;
}    
.mf-12{
    font-size:12px;
}
    
.heigh {
    min-height: 1030px;
    object-fit: cover;
    object-position: right;
}
.jcc {
        justify-content: center;
}

    .radius40mob {
    border-radius: 40px 40px 0 0;
}
    .heigh1 {
        min-height: 1150px;
        object-fit: cover;
        object-position: center;
    }
    
    .overx{
        overflow-x:hidden;
    }
    
    .minh400 {
    height: 200px !important;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        align-content: center;
        background:url('../img/headback.webp');
        background-position: center;
        background-size: cover;
        width:100%;
        margin-bottom:2rem;
}
.minh400 h2 , .minh400 p {
    margin-bottom:0;
}
    .minh400 img {
    height: 200px !important;
    object-fit: cover;
    object-position: top;
}
.mw100{
    width:100%!important;
}
    .tip-card {
    padding: 1.5rem;
    }
    
    iframe{
        height:250px;
    }
    .cardsidha{
        border-radius:0;
        padding:0;
        margin-left:0;
        margin-right:0;
    }
    
    .obj { 
        height: 170px;
    }
    .mobifont{
        font-size:10px; 
        text-align: left;
    }
    .stepper {
        margin-right: 10px;
    }
    .buttons2{
        padding: 6px 5px;
    }
    .linkss#category-list li, .linkss#brand-list li, .linkss#tag-list li{
        margin-top:0.45rem;
        margin-bottom:0.45rem;
    }
    
    .textblue {
    font-size: 20px!important;
}
    
    
    
    
     .stepper button {
        width: 100%;
        maz-width:32px
        height: 100%;
        border: none;
        background-color: white;
        font-size: 10px;
        font-weight: bold;
      cursor: pointer;
    }
    .stepper input {
    max-width: 60px;
    min-width: 20px;
    width: 100%;
    }
    
    #cart-items {
    height: 56vh;
    overflow: auto;
    width: 92%;
}
    
    .bboj{
        height: 120px!important;
    }
    .bdrmob{
        border:none!important;
    }
    .signaturefire .owl-stage-outer, .owl-carousel.signaturefire.owl-loaded.owl-drag ,.newarrivals .owl-stage-outer, .owl-carousel.newarrivals.owl-loaded.owl-drag
 {
    min-height: 250px!important;
}
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
}
/*media max-width- 767px end */
