/*------------- #MAIN STYLES --------------*/
/*------------------------------------------------------------------
-------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400;500;600;700&display=swap');


/*------------- #general --------------*/


@media (prefers-reduced-motion: no-preference){
    
    :root {scroll-behavior: smooth}
}
*
{
	font-family: 'Cairo',Rubik, sans-serif;
}
body{
    
    position: relative;
    padding: 0;
    margin: 0;
    
    direction:rtl;
    text-align: right;
    scroll-behavior: smooth;
    overflow-x: hidden;
    touch-action: manipulation;
    background-color: #000;
    color: #fff;
    
}

body[data-panel="noScroll"] {
    overflow-y: hidden;
}


*{box-sizing: border-box}

:root{
    
    
     
     --clr-1-hvr:#933b3c;
     --clr-2:#F9B50B;
     --clr-2-hvr:#c99105;
     --clr-black:#000;
     --clr-gray-1:#A2A1A1;
     --clr-gray-2:#646464;
     --clr-gray-0:#fff;
     --border-clr-1:#4C4C4C;
	 

     --title-0:45px;
     --title-1:40px;
     --title-2:32px;
     --title-3:28px;
     --title-4:24px;
     --title-5:22px;
     --title-6:20px;
     --title-7:18px;
     --title-8:18px;
    
     --border-r-1:25px;
     --border-r-2:15px;
     --border-r-3:10px;
     --border-r-4:6px;
    
     --section-padding: 1.5rem; 
     --section-space:3rem;
     
     --box-py-xsm:1.5rem;
     --box-py-sm:1.5rem;
     --box-py:2rem;
     --box-py-res:2rem;
    
     --box-px-xs:1rem;   
     --box-px-xsm:1.5rem;
     --box-px-sm: 1.5rem;
     --box-px: 2rem;
     --box-px-more:3rem ;    
    
     --nav-h:0px;

}
a{
    color:#fff;
    outline: none;
}
a , a:hover{
    
    text-decoration: none;
    color: inherit;
}
img{
    user-select: none;
}

.offer-wrap 
{
	/*
	border:solid 1px var(--clr-main);
	padding-left:16px;
	*/
	
}

/** general styles **/

.page-wrapper{
    
    /*padding-top: calc(var(--nav-h)); */
    /*overflow: hidden;*/
}

.section-style{
    
    position: relative;
    padding: var(--section-padding) 0;
}
.section-style:not(.sticky-inside){
    
    overflow: hidden;
}

.w-bg{
    
    padding: calc(var(--section-space)) 0;
}
.w-mr{
    margin: var(--section-padding) 0;
    
}
.mb-box{
    
    margin-bottom: var(--section-space);
}
.mt-box{
    
    margin-top: var(--section-space);
}



.scroll::-webkit-scrollbar {
    
   width: 3px;
   height: 3px;

  
}
.scroll::-webkit-scrollbar-track {
    
  background-color: rgba(0,0,0,0.1);
  border-radius: 20px;
    
}
.scroll::-webkit-scrollbar-thumb{
    
   background-color: rgba(0,0,0,0.15);
   border-radius: 20px;
     
}

/*** main-title **/
.bold{
    
    font-weight: bold;
}

.main-title{
    
    position: relative;
    margin-bottom: var(--box-py);
    text-align: center;
}
.main-title .title{
    
    font-size: var(--title-1);
    /*color: var(--clr-1);*/
    display: inline-block;
    position: relative;
    font-weight: bold;
    margin-bottom: 0;
    
}


/*** input-style  **/

.input-focus:focus{
    
    border-color: #66afe9 !important;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%) !important;


}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button
{
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"]
{
  -moz-appearance: textfield;
}
.form-group{
    
    position: relative;
}
.form-group .form-control,
.form-group .form-select{
    
    border-radius: var(--border-r-4);
    border-color: #C4C4C4;
    font-size: 16px;
    color: #000;
    box-shadow: none;
    padding: .75rem;
    height: 50px;
}
.form-group textarea.form-control{
    height: auto;
}
.form-group .form-control::placeholder{
    
    color:#858585;
}

.form-select{
    
    padding-left: 2rem !important;
    background-position: left .75rem center;
}
.form-check{
        
        display: flex;
        align-items: center;
        position: relative;
        padding-left: 0em;
        padding-right: 1.5em;
        
}
.form-check .form-check-input{
    
    float: right;
    margin-left: 0em;
    margin-right: -1.5em;
    border-color: #C4C4C4;
    transition: all .3s ease;
    box-shadow: none;
    cursor: pointer;
    flex-shrink: 0;
        
}
.form-check .form-check-input:active{
    
    filter:none
}
.form-check .form-check-input:checked{
    
    background-color: var(--clr-1);
    border-color: var(--clr-1);
}
.form-check .form-check-label{
    
    font-size: 16px;
    cursor: pointer;
    padding-right: .5rem;
}

.form-group .password-field{
    
    position: relative;
    
}
.form-group .password-field .form-control{
    
    padding-left: 45px !important;
}
.form-group .password-field .eye-icon{
    
    position: absolute;
    left: .75rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width:30px ;
    height:calc(100% - 2px) ;
    font-size: 30px;
    content: url(../img/eye-1.svg);
    transition: all .15s ease-in-out;
    background-size: cover;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.form-group .password-field .eye-icon.hide{
    
    content: url(../img/eye-2.svg);
}


/*** buttons-style  **/
button {
    border: none;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    padding: 0;
	
	
}

button span
{
	color:var(--btn_color);
}
.show-more-wrap{
    
    display: flex;
    
}
.show-more-link{
    
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #383838;
    transition: all .3s ease;
    border-radius: var(--border-r-3);
    color: #fff;
    font-size: var(--title-7);
    max-width: 120px;
    width: 100%;
    text-align: center;
    padding: .5rem .75rem;
    gap:.5rem;
}
.show-more-link svg{
    
    width: 16px;
    height: 16px;
    fill:#fff;
    
}
.show-more-link:hover{
    
    color: #fff;
    background-color:#121212;
    
}
@media(max-width:575.98px){
    
    .show-more-link:not(lg_btn){
        max-width: 100px;
    }
    
}

/**** slider--swiper ***/

.slider-container {
    position: relative;
}
.swiper{
    
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.equal-h .swiper-slide{
    
    height: auto !important;
}

.swiper-button-lock {
    display: none !important; 
}

.slider-arrows .arrow-btn{
    --dim:40px;
    width: var(--dim);
    height: var(--dim);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    cursor: pointer;
    position: absolute;
    top: calc((var(--img-dim) /2) - (var(--dim) / 2));
    z-index: 10;
    background-color: var(--btn_bgcolor);
    border-radius: 100%;
    
}

.slider-arrows .arrow-btn:not(.swiper-button-disabled):active{
    background-color: var(--clr-1);
    
}
.slider-arrows .arrow-btn:not(.swiper-button-disabled):active svg{
    stroke:#fff;
}

@media(hover:hover) and (pointer:fine){
	
	
    .slider-arrows .arrow-btn:not(.swiper-button-disabled){
		background-color: var(--clr-1);
	}
	
    .slider-arrows .arrow-btn:not(.swiper-button-disabled):hover{
        background-color: var(--clr-1);
    
    }
    .slider-arrows .arrow-btn:not(.swiper-button-disabled):hover svg{
        stroke:#000;
    }
}

.slider-arrows.middle-arrows .arrow-btn{
    top: 50%;
    transform: translateY(-50%);
}

.slider-arrows .arrow-btn svg{
    stroke:#fff;
    transition: inherit;
    padding: .2rem 0;
}

.slider-arrows .arrow-btn.prev-btn{
    right: calc((var(--dim) / 2) * -1);
    
}
.slider-arrows .arrow-btn.next-btn{
    left: calc((var(--dim) / 2) * -1);
    
}

.slider-arrows .arrow-btn.swiper-button-disabled{
     background-color: #ddd;
     cursor: not-allowed;
}
.slider-arrows .arrow-btn.swiper-button-disabled svg{
    cursor: not-allowed;
    stroke: #858585 !important;
    
}


.slider-container .swiper-pagination{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--section-padding);
    flex-wrap: wrap;
    gap:.25rem .5rem;
    left: auto;
    bottom: auto;
}
.swiper-pagination .swiper-pagination-bullet{
    margin: 0 0 !important;
    --swiper-pagination-bullet-dim:16px;
    width:var(--swiper-pagination-bullet-dim) ;
    height: var(--swiper-pagination-bullet-dim);
    background: var(--clr-1);
    transition: all .3s ease;
    opacity: .4;
}
.swiper-pagination .swiper-pagination-bullet-active{
    opacity: 1;
} 


@media(max-width:767.98px){
        
    
    .slider-arrows .arrow-btn{
        --dim:35px;
        
    }
    .slider-arrows .arrow-btn.next-btn{
        
        left: -.75rem;
    }
    .slider-arrows .arrow-btn.prev-btn{
        
        right: -.75rem;
    }
    
    .swiper-pagination .swiper-pagination-bullet{
        --swiper-pagination-bullet-dim:14px;
    }
    
    .free-mode-slider-md:not(.categories-slider-container) .slider-arrows{
        display:none;
    }
    
}
@media(max-width:575.98px){
   
    .free-mode-slider-md .slider-arrows,
    .free-mode-slider .slider-arrows{
        display:none !important;
    }
    .slider-arrows .arrow-btn{
        --dim:25px;
        
    }
    .swiper-pagination .swiper-pagination-bullet{
        --swiper-pagination-bullet-dim:12px;
    }
}
@media(min-width:1650px){
    
    .slider-arrows .arrow-btn{
        --dim:50px !important;
    }
}

/**** lightbox ***/

.fancybox__counter{
    display: none;
}
.fancybox__nav .carousel__button{
    
    transition: all .3s ease
}
.fancybox__nav .carousel__button:hover{
    
    color:var(--clr-1)
}

.fancybox__caption{
    text-align: center;
}
.fancybox__thumbs .carousel__slide .fancybox__thumb::after{
    
    border-color: var(--clr-1)
}
.fancybox__progress{
    
    background-color: var(--clr-1);
}

.lightbox-item{
    
    outline: none;
    border: none;
    box-shadow:none;
}
a[data-fancybox] img {
  cursor: zoom-in;
}
.fancybox-zoomIn {
  animation: 0.25s ease both fancybox-zoomIn;
}
.fancybox-zoomOut {
  animation: 0.15s ease both fancybox-zoomOut;
}
@keyframes fancybox-zoomIn {
  from {
    opacity: 0;
    transform: scale(0.75);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fancybox-zoomOut {
  to {
    opacity: 0;
    transform: scale(1.25);
  }
}

/*
.fancybox__thumbs,
.fancybox__button--thumbs,
.fancybox__button--slideshow{
    
    display: none;
}
.fancybox__nav .carousel__button.is-next{
    
    left: 8px;
    right: auto
}
.fancybox__nav .carousel__button.is-prev{
    
    right: 8px;
    left: auto
}
.fancybox__nav .carousel__button{
    
    transform: translateY(-50%) rotate(180deg) !important;
    transition: all .3s ease
}
@media(min-width: 1024px){
    
    .fancybox__nav .carousel__button.is-next{
        
        left: 40px;
    }
    .fancybox__nav .carousel__button.is-prev{
        
        right: 40px;
    }
}
*/

/**** tab-content & accordion_body style ****/

.tabs-content-area .tab-content{
    
    display: none;
}
.tabs-content-area .tab-content.active{
    
    display: block;
}
.accordion-panels .panel-item .accordion_body{
    
    display: none;
}
.accordion-panels .panel-item.opened .accordion_body{
    
    display: block;
}

/**** side-overlay ****/
.side-overlay{
    
    width: 0;
    height: 0;
    position: fixed;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: -999999;
    transition: opacity 0.3s ease;
    background-color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
    
}
.panel-responsive-item.active .side-overlay,
.side-overlay.active{
    
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 999;
    
}


/*** Underline From Right ****/
.hvr-underline-from-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 100%;
  right: 0;
  bottom: 0;
  background: #2098D1;
  height: 3px;
  -webkit-transition-property: left;
  transition-property: left;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  border-radius: 4px;
}
.hvr-underline-from-right:hover:before, .hvr-underline-from-right:focus:before, .hvr-underline-from-right:active:before {
  left: 0;
}

/**** scrollup ***/


.scrollup{
    
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    bottom: -100px;
    right: 25px;
    background-color: var(--clr-1);
    opacity: .5;
    border-radius: 3px;
    transition: all .3s ease;
    color: #fff;
    cursor: pointer;
    z-index: 500;
    
    
}
@media(hover: hover) and (pointer: fine) {
    
    
    .scrollup:hover{
    
        opacity: 1;
    }
}
.scrollup.active{
    
     opacity: 1;
}
.scrollup.show{
    
        bottom: 20px;
}



.chat-icon{
   
    --dim:50px;
    width: var(--dim);
    height:var(--dim);
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all .3s ease;
    z-index: 500;
    border-radius: 100%;
    bottom: 72px;
    right: -100px;
    background-color: var(--clr-1);
    

}
@media(hover:hover) and (pointer:fine){
    .chat-icon:hover{
        background-color: var(--clr-1-hvr);
    }
}

.chat-icon svg{
    
    width: 30px;
    height: 30px;
    
}
.chat-icon.show{
    right: 20px;
}

@media(max-width:991.98px){
    
    .chat-icon.show{
        bottom: 125px;
    }
    .scrollup.show {
        bottom: 75px;
		
    }
 

}


.scrollup i
{
	color:white;
}



/**** search-popup***/

.search-popup{
    
    position: fixed;
    left: 0;
    top: -200px;
    padding: 1rem 0;
    background-color: #fff;
    box-shadow: 0 0 10px 1px rgb(0 0 0 / 20%);
    border-bottom: 1px solid #eee;
    width: 100%;
    z-index: 9999;
    transition: all .3s ease;
}
.search-popup.active{
    
    top: 0;
}
.search-popup .close-search-popup{
    
    margin-right: auto;
    margin-bottom: .5rem;
    
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 22px;
    color: #909090;
    transition: all .3s ease;
    width: 30px;
    height: 30px;
    cursor: pointer;
    
}
.search-popup .close-search-popup:hover{
    
    color: var(--clr-1);
}
.search-popup .form-group{
    
    display: flex;
    align-items: center;
    
}
.search-popup .form-group input{
    
    flex: 1;
    width: auto;
    border-radius: 0px 3px 3px 0px;
    border-color: #eee;
    background-color: #f4f4f4;
    color: #777;
    height: 50px;
    
    
}
.search-popup .form-group .search-icon{
    
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background-color: var(--clr-1);
    width: 60px;
    height: 50px;
    transition: all .3s ease;
    border-radius: 3px 0px 0px 3px;
    border: none;
    outline: none;
    color: #fff
    
    
}
.search-popup .form-group .search-icon:hover{
    
    background-color: var(--clr-1-hvr);
}


@media(min-width:992px){
    
    .search-popup .custom-container{
        --max-w:1320px;
    }
}

/**** toolbar***/


.tool-bar {

  position: fixed;
  right: 0;
  bottom: 0px;
  left: 0;
  z-index: 700;
  display: none;
  align-items: center;
  justify-content: space-between;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 5px;
  height: 65px;
  background-color: #fff;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.18);
  transition: all .3s ease;

}
.tool-bar > div {
    
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
}
.tool-bar .tool .tool-link {

  display: inline-flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-weight: 400;
  height: 50px;
  position: relative;
  padding: 0px 10px 20px;
  transition: all .3s ease
}
.tool-bar .tool .tool-icon svg {
  width: 22px;
  height: 22px;
  fill: #666;
  transition: all .3s ease
}
.tool-bar .tool .tool-link span {

  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 1;
  color: #666;
  transition: inherit  
    

}
.tool-bar .tool .tool-link:hover,
.tool-bar .tool .tool-link:hover span{
    
    color: var(--clr-1);
    
}
.tool-bar .tool .tool-link:hover svg{
    
    fill:var(--clr-1);;
}
.tool-bar .tool.cart-tool .counter{
    
    top: -4px;
    right: 2px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 8px;

}

@media(max-width:991.98px){
    
     .tool-bar{
        
        display: flex;
    }
    
    .page-wrapper{
        padding-bottom: 65px !important;
    }
}


/*** float-social-list **/

.float-social-list{
    
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: -100px;
    z-index: 500;
    background-color: #2D2D2D;
    border-radius: var(--border-r-2) 0 0 var(--border-r-2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 1.25rem 0rem;
    width: 50px;
    transition: all .3s ease
}
.float-social-list.show{
    
    right: 0;
}
.float-social-list >*:not(:last-child){
    
    margin-bottom: 1.25rem
}
.float-social-list .follow-text{
    
    color: var(--btn_color);
    font-size: 14px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(-90deg);
    width: 63px;
    height: 63px;
    
}


.social-link i
{
	color: var(--btn_color);
}


.footer-bottom .social-links a i
{
	color: #ffffff;
	background-color: var(--clr-main);
}

.footer-bottom .social-links a i:hover
{
	color: #ffffff;
	background-color: var(--clr-main);
}





.float-social-list .follow-text span
{
	color: var(--btn_color);
	
}
.float-social-list .follow-text span:last-child{
    
    padding-right: 6px;
}
.float-social-list .social-link{
    
    display: inline-flex;
    color: var(--btn_color);
	
    font-size: 18px;
    transition: all .3s ease
}
.float-social-list .social-link:hover{
    
    color: var(--clr-2);
    transform: scale(1.2);
}

@media(max-width:991.98px){
    
    .float-social-list{
        width: 40px;
    }
    
}
@media(max-width:575.98px){
    
    body{
        padding-top:calc(50px + .5rem); 
    }
    .float-social-list{
        position: absolute;
        box-shadow: 0 0 9px rgb(0 0 0 / 18%);
        border-radius: 0 ;
        right: 0;
        top: 0px;
        transform: none;
        width: 100%;
        height: 50px;
        flex-direction: row;
    }
    .float-social-list >*{
        
        padding: 0 .75rem;
        flex: 1;
    }
    .float-social-list >*:not(:last-child){
        
        margin-bottom: 0;
       
    }
    .float-social-list .social-link{
        
        justify-content: center;
        
    }
    .float-social-list .follow-text{
        
        width: auto;
        height: auto;
        flex-grow: 1;
        flex-shrink: 0;
        transform: none;
    }
    .float-social-list{
        
        display: none;
    }
    body{
        padding-top: 0;
    }
    
}


/*------------- #scroll-row --------------*/ 

@media(max-width:575.98px){
    
    .scroll-row{
        
        overflow-x: auto;
        overflow-y: hidden;
        
    }
    .scroll-row > .row{
        
        flex-wrap: nowrap;
        justify-content: flex-start !important;
        margin: 0;
        padding-bottom: 1rem;
        gap: .75rem !important;
    }
    .scroll-row > .row > div{
        padding: 0;
        margin-bottom: 0;
    }
    
    .scroll-row::-webkit-scrollbar {
        height: 5px;
    }
    .scroll-row::-webkit-scrollbar-track {

        background-color: rgba(0,0,0,0.1);
        border-radius: 20px;

    }
    .scroll-row::-webkit-scrollbar-thumb{

        background-color: rgba(0,0,0,0.2);
        border-radius: 20px;

    }
    
}

/*------------- #header --------------*/ 

:root{
    --nav-h:100px;
}

@media(min-width:992px){
    
    .header .mobile-item{
    
        /*
		display: none !important;
		*/
    }
}

.top-nav{
    height: 100px;
}
.nav-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    position: relative;
    
}
.nav-content >*{
    flex: 1;
}
.nav-content .content-pull,
.nav-content .flex-item{
    
    display: flex;
    align-items: center;
    height: 100%;
    
}
.nav-content .nav-toggler{
    
    cursor: pointer;
}
.nav-content .nav-toggler svg{
    
    width: 30px;
    height: 30px;
    fill: #fff;
    outline: none !important;
}
.nav-content .nav-logo{
    text-align: center;
}
.nav-content .nav-logo img{
    max-height: 80px;
}

.nav-content .actions-wrap{
    margin-inline-start: auto;
}
.nav-content  .nav-actions{
    
  gap:0 1.5rem;
  justify-content: flex-end;
}
.nav-content  .nav-actions .action-btn{
    position: relative;
    display: flex;
    align-items: center;
    height: auto;
    color: var(--clr-gray-0);
    font-size: var(--title-4);
    gap:.25rem;
    transition: all .3s ease;
    font-weight: 600;
}

.nav-content  .nav-actions .action-btn span.txt{
    font-size: 16px;
}
.nav-content  .nav-actions .action-btn svg{
    
    fill: var(--clr-gray-0);
    
}
.nav-content  .nav-actions .action-btn:not(.no_hvr):hover{
    color: var(--clr-2);
}
.nav-content  .nav-actions .action-btn:not(.no_hvr):hover svg{
    
    fill: var(--clr-2);
}
.nav-content  .nav-actions .action-btn img,
.nav-content  .nav-actions .action-btn svg{
    
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all .3s ease;
}
.counter{
    
    position: absolute;
    top: 0px;
    right: -5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--clr-1);
    color: #fff;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 100%;
    font-size: 10px;
    cursor: pointer;
    font-weight: bold;
    
}
.nav-content  .nav-actions .action-btn.cart-btn .counter {
    
    margin: auto;
    right: auto;
    top: -12px;
}
.nav-content .user-account-btn{
    cursor: pointer;
}

.nav-content  .dropdown-menu{
    
    text-align: start;
    background-color:#fff;
    border-radius: var(--border-r-4);
    margin-top: 5px !important;
    border-color:#ddd ;
    font-size: 16px;
}
.nav-content  .lang-dropdown .dropdown-toggle{
    
    position: relative;
    display: flex;
    align-items: center;
    height: auto;
    box-shadow: none;
    padding: 0.375rem 0.75rem;
    font-size: 16px;
    color: var(--clr-gray-0);
    border: 1px solid var(--clr-gray-0);
    border-radius: 4px;
    transition: all .3s ease;
    gap:.25rem;
}
.nav-content  .dropdown-toggle::after{
    
    margin: 0;
    transition: transform .3s ease
}
.nav-content  .dropdown-toggle.show::after{
    
    transform:  rotate(180deg);
}
.nav-content  .dropdown-toggle.show{
    
    color: var(--clr-2);
    border-color: var(--clr-2);
}
.nav-content  .dropdown-toggle.show svg{
    fill:var(--clr-1);
}
.nav-content  .dropdown-item{
    
    transition: all .3s ease
}
.nav-content  .dropdown-item:hover{
    background-color: #ddd;
}
.nav-content  .dropdown-item:active,
.nav-content  .dropdown-item.active{
    
    background-color: var(--clr-1);
    color: #fff;
}

.bottom-nav{
    position: relative;
    /*
	border-bottom: 2px solid var(--clr-gray-0);
    height: 50px;
	*/
	border-bottom: solid 0.5px rgba(173,173,173,.4);
	
	
}
.bottom-nav-content{
    position: relative;
    padding: 0 0.25rem;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    text-align: center;
}
.bottom-nav-content .nav-list{
    
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    width: 100%;
    height: 100%;
    gap:.75rem 1.5rem;
}
.bottom-nav-content .nav-list.scrolled{
    justify-content: flex-start;
}
.bottom-nav-content .nav-list .list-item{
    display: inline-flex;
    align-items: flex-start;
    height: 100%;
    position: relative;
    flex-shrink: 0;
    white-space: nowrap;
}
.bottom-nav-content .nav-list .list-item .item-link{
    display: inline-block;
    font-weight: 600;
    transition: all .3s ease;
    text-transform: capitalize;
    padding: 5px 0px;
    font-size: 16px;
    color: var(--clr-gray-0);
}
.bottom-nav-content .nav-list .list-item .item-link:hover{
    color: var(--clr-2);
}

@media(max-width:991.98px){
    
    :root{
        --nav-h:80px;
    }
    
   
    
    .header .hide-mobile{
        display: none !important;
    }
	.page-wrapper{
        padding-top:var(--nav-h);
    }							 
    .header .top-nav{
        
        height: var(--nav-h);
		height: var(--nav-h);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        
        background-color:#ffffff;
        border-bottom: 1px solid var(--clr-main);
    }
    
    .nav-content{
        /* border-bottom: 3px solid #fff; */
    }
    .nav-content > *{
        
        flex: none;
    }
    .nav-content .nav-logo img{
        
        max-height: 50px;
    }
    .nav-content .nav-actions{
        gap:.85rem;
    }
    
    .nav-content  .lang-dropdown.mobile-style  a.dropdown-toggle{
    
        display: inline-flex;
        align-items: center;
        padding: 0;
        border: none;
    
    }
    .nav-content  .lang-dropdown  a.dropdown-toggle span{
        transition: inherit;
    }   
    .nav-content  .lang-dropdown.mobile-style  a.dropdown-toggle.show svg{

        fill:var(--clr-2);
    }
    .nav-content  .lang-dropdown.mobile-style  a.dropdown-toggle::after{
        display: none;
    }
    .nav-content  .user-account-dropdown.mobile-style .user-account-btn::after
    .nav-content  .user-account-dropdown.mobile-style .user-account-btn .user-name{
        
        display: none;
    }
    
    
}
@media(max-width:575.98px){
     :root{
        --nav-h:75px;
    }
    .nav-content .nav-logo img{
        max-height: 45px;
    }
    
}




/*** mobile-menu-wrapper ***/

.mobile-menu-wrapper{
    
    /*
	display: none;
	*/
}

.mobile-menu-wrapper .mobile-menu-overlay{
    
    width: 0;
    height: 0;
    position: fixed;
    left: 0;
    top: 0;
    opacity: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: -999999;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    display: none;
}
.mobile-menu-wrapper .mobile-menu-close{
    
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 15px;
    left:  -100px;
    z-index: 99999;
    color: #909090;
    font-size: 25px;
    width: 40px;
    height: 40px;
    background-color: #eee;
    transition: all .3s ease;
    
    
}
.mobile-menu-wrapper .mobile-menu-close:hover{
    
    color: var(--clr-1);
}

.mobile-menu-wrapper .mobile-menu-container{
    
    position: fixed !important;
    top: 0;
    bottom: 0;
    z-index: 999999;
    overflow-y: auto;
    right: -120%;
    width: 420px;
    transition: all 0.3s ease;
    display: block;
    box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
    box-shadow: 1px 0 5px rgb(0 0 0 / 50%);
    background-color: #fff;
    margin-right: 0px !important;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu-wrapper .mobile-menu-container .mobile-search {
    
    position: relative;
    box-shadow: 0 -1px 9px rgb(0 0 0 / 17%);
}
.mobile-menu-wrapper .mobile-menu-container .mobile-search input{
    
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 35px;
    padding-right: 15px;
    height: 70px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    background-color: transparent;
    box-shadow: none;
    vertical-align: middle;
    border-radius: 0;
    color: #909090;
}
.mobile-menu-wrapper .mobile-menu-container .mobile-search input::placeholder{
    
    color: #909090;
}
.mobile-menu-wrapper .mobile-menu-container .mobile-search button{
    
    position: absolute;
    left: 15px;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    color:#909090 ;
    font-size: 18px;
    border: none;
    outline: none;
    padding: 0;
    display: block;
    background-color: #fff;
    transition: all .3s ease
   
}
.mobile-menu-wrapper .mobile-menu-container .mobile-search button:hover{
    
    color: var(--clr-1);
}

.mobile-menu-wrapper .mobile-menu-container .mobile-nav-tabs{
    
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(129,129,129,.2);
    background-color: rgba(0,0,0,.04);
}
.mobile-menu-wrapper .mobile-menu-container .mobile-nav-tabs .mobile-tab{
    
    position: relative;
    flex: 1 0 50%;
    padding: 18px 15px;
    max-width: 50%;
    width: 50%;
    color: #909090;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .3px;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
    transition: background-color .25s ease,color .25s ease;
    
}
.mobile-menu-wrapper .mobile-menu-container .mobile-nav-tabs .mobile-tab::after{
    
    content: "";
    position: absolute;
    top: 100%;
    right:0;
    margin-top: -1px;
    width: 0;
    height: 2px;
    transition: width .25s ease;
    background-color: var(--clr-1);
}
.mobile-menu-wrapper .mobile-menu-container .mobile-nav-tabs .mobile-tab.active{
    
    background-color: rgba(0,0,0,.05);
    color: #141414;
}
.mobile-menu-wrapper .mobile-menu-container .mobile-nav-tabs .mobile-tab:first-of-type::after{
    
    left: 0;
    right: auto;
}
.mobile-menu-wrapper .mobile-menu-container .mobile-nav-tabs .mobile-tab:last-of-type::after{
    
    right: 0;
    left: auto;
}
.mobile-menu-wrapper .mobile-menu-container .mobile-nav-tabs .mobile-tab.active::after{
    
    width: 100%;
   
}


.mobile-menu-wrapper .mobile-menu-container  .mobile-menu-tab-pane .mobile-menu{
    
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}
.mobile-menu-wrapper .mobile-menu-container  .mobile-menu-tab-pane .mobile-menu .mobile-menu-item{
    
   display: block;
   position: relative;
}
.mobile-menu-wrapper .mobile-menu-container  .mobile-menu-tab-pane .mobile-menu .mobile-menu-item .mobile-menu-link{
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 15px;
    border-bottom: 1px solid rgba(129,129,129,.2);
    text-transform: uppercase;
    font-size: 16px;
    transition: all .3s ease;
    font-weight: 600;
    gap:.5rem;
    color: #000;
  
}
.mobile-menu-wrapper .mobile-menu-container  .mobile-menu-tab-pane .mobile-menu .mobile-menu-item .mobile-menu-link svg{
    width: 16px;
    height: 16px;
    fill:#000;
}
.mobile-menu-wrapper .mobile-menu-container  .mobile-menu-tab-pane .mobile-menu .mobile-menu-item:last-child .mobile-menu-link{
        
    border-bottom: none;
}
.mobile-menu-wrapper .mobile-menu-container  .mobile-menu-tab-pane .mobile-menu .mobile-menu-item .mobile-menu-link:hover{
    
    color: var(--clr-1)
}
.mobile-menu-wrapper .mobile-menu-container  .mobile-menu-tab-pane .mobile-menu .mobile-menu-item .mobile-menu-link:hover svg{
    fill:var(--clr-1);
}


.mobile-menu-wrapper.active .mobile-menu-overlay{
        
        width: 100%;
        height: 100%;
        opacity: 1;
        z-index: 9999;
}
.mobile-menu-wrapper.active .mobile-menu-container{
        
        right: 0;
    
}
.mobile-menu-wrapper.active .mobile-menu-close {
    display: flex;
    left: 12px;
}
    


/*** mobile-menu-wrapper ***/



@media(max-width:991.98px){
    
    .mobile-menu-wrapper{
        
        display: block;
    }
    
    
}

@media (max-width: 575.98px){
    
    .mobile-menu-wrapper .mobile-menu-container {
        max-width: calc(96% - (40px + 15px + 6px));
    }
    
    .mobile-menu-wrapper .mobile-menu-container .mobile-menu-tab-pane .mobile-menu .mobile-menu-item .mobile-menu-link,
    .mobile-menu-wrapper .mobile-menu-container .mobile-search input{
        
        font-size: 15px;
    }
    
    
}



/*------------- #footer --------------*/ 

footer.section-style{
    padding-bottom: 0;
    /*background-color: #191919;*/
    color: #000000;
}
.footer-area .footer-wrap{
    margin-bottom: 1.5rem;
    height: calc(100% - 1.5rem);
}

.footer-area .footer-about{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction:column;
    gap:1.5rem;
    height: 100%;
}
.footer-area .footer-about .logo-link{
    display: block;
    /*background-color: #000;*/
    padding: 1rem;
    border-radius: var(--border-r-2);
}
.footer-area .footer-about .logo-link img{
    max-height: 100px;
}
.footer-area .footer-about .payment-row{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:.75rem;
    flex-wrap: wrap;
}
.footer-area .footer-about .payment-row img{
    width: 50px;
    height: 35px;
    object-fit: contain;
}

.footer-area .menu-title{
    font-size: var(--title-5);
    font-weight: bold;
    margin-bottom: 1.5rem;
}
.footer-area .footer-menu{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.footer-area .footer-menu .list-item:not(:last-child){
    margin-bottom: 1rem;
}
.footer-area .footer-menu .item-link{
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    color: var(--clr-gray-1);
    transition: all .3s ease;
}
.footer-area .footer-menu .item-link:hover{
    color: var(--clr-2)
}

.footer-area .footer-bottom{
    margin-top: 1.5rem;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap:1.5rem;
    border-top: 1px solid #4C4C4C;
}
.footer-area .footer-bottom .copy-rights{
    
    font-size: 16px;
    margin-bottom:0px;
}
.footer-area .footer-bottom .social-links{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
}
.footer-area .footer-bottom .social-links .social-link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #797979;
    border-radius: 4px;
    color: #fff;
    transition: all .3s ease;
    font-size: 20px;
    padding: .5rem;
    width: 35px;
    height: 35px;
	background-color: var(--clr-main);
    
}
.footer-area .footer-bottom .social-links .social-link:hover{
    background-color: var(--clr-1);
    transform: translateY(-3px);
}

@media(max-width:575.98px){
    
    
    .footer-area .footer-about .logo-link img{
        max-height: 80px;
    }
    
    .footer-area .footer-bottom{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
}

/*------------- #categories-section --------------*/ 
.categories-area .categories-slider-container{
    --img-dim:100px;
}
.categories-area .categories-slider-container  .swiper-slide{
    display: flex;
    justify-content: center;
    height: auto;
}
.categories-area .category-item{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap:.5rem;
    transition: all .3s ease;
    
}
.categories-area .category-item .category-img{
    width: var(--img-dim);
    height: var(--img-dim);
    border-radius: 100%;
    object-fit: cover;
    
}
.categories-area .category-item .category-text{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    transition:inherit;
	color: var(--ulcats_text_color);
	
    
}
.categories-area .category-item:hover .category-text{
    color: var(--clr-2);
}

@media(max-width:991.98px){
    
    .categories-area .categories-slider-container{
        --img-dim:80px;
    }
    
}
@media(max-width:767.98px){
    
     .categories-area .categories-slider-container  .swiper-slide{
        width: 120px;
    }
    .categories-area .category-item .category-text{
        font-size: 14px;
    }
    .categories-area .categories-slider-container .swiper{
        overflow: visible;
    }
    

    
}
@media(max-width:575.98px){
     .categories-area .categories-slider-container{
        --img-dim:70px;
    }
    
    
    .categories-area .categories-slider-container  .swiper-slide{
        width: 100px;
    }
    .categories-area .category-item .category-text{
        font-size: 13px;
    }
    
}
@media(min-width:1650px){
    .categories-area .categories-slider-container{
        --img-dim:100px;
    }
    .categories-area .category-item .category-text{
        font-size: var(--title-7);
    }
}




/*------------- #hero-section --------------*/ 
.top-sections-wrapper{
    
    min-height:calc((var(--vh, 1vh) * 100) - var(--nav-h));
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.hero-section{
    flex: 1;
    background-blend-mode: multiply;
    background-color: rgba(0, 0, 0, 0);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    padding: 0;
    
    
}
.hero-section .h-full{
    height: 100%;
}

.hero-section .hero-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    height: 100%;
    gap:1.5rem;
    /*color: #fff;*/
    text-align:  center;
    padding: var(--section-space) 0;
}

.hero-section .hero-content .content-title{
    font-size: var(--title-0);
    font-weight: bold;
    margin-bottom: 0;
	color:var(--main_title_color);
    
}

.hero-section .hero-content .content-text{
    font-size: var(--title-4);
    font-weight: 500;
    margin-bottom: 0;
    max-width: 600px;
	color:var(--main_title_color);
	
}
.hero-section .hero-content .content-btns{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:1rem var(--box-px-xsm);
    width: 100%;
    flex-wrap: wrap;
}

.hero-section .hero-content .content-btns .content-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap:.5rem;
    padding: .75rem var(--box-px-xsm);
    border-radius: var(--border-r-3);
    transition: all .3s ease;
    color: #fff;
    background-color:var(--btn_bgcolor);
    /*max-width: 225px;
    width: 100%;*/
    text-align: center;
    font-size: var(--title-7);
}

.hero-section .hero-content .content-btns .content-btn span{
    transition: inherit;
    width: 25px;
    height: 25px;
    display: inline-flex;
}
.hero-section .hero-content .content-btns .content-btn svg{
    width: 100%;
    height: 100%;
    
}

.hero-section .hero-content .content-btns .content-btn:hover{
    
    background-color:var(--btn_bgcolor);
}
.hero-section .hero-content .content-btns .content-btn:hover span{
    
    transform: translateX(-3px);
}

.single-slider-container .swiper-pagination{
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 1rem;
    align-items: flex-end;
    z-index: auto;
}
.single-slider-container .swiper-pagination .swiper-pagination-bullet{
    background-color: #fff;
}
.single-slider-container.banner-slider-container .swiper-slide{
    height: auto;
}

@media(max-width:767.98px){
    .hero-section .hero-content .content-title{
        font-size:var(--title-1);
    }
    .hero-section .hero-content .content-text{
        font-size:var(--title-5);
    }
    
    .single-slider-container .slider-arrows .arrow-btn{
        display: none;
    }
     .single-slider-container .swiper-pagination{
        display: flex;
        
    }
}

@media(max-width:575.98px){
    
    
   
}

@media(min-width:992px){
    
    .single-slider-container .slider-arrows .arrow-btn.next-btn{
    
        left: 0;
        
    }
    .single-slider-container .slider-arrows .arrow-btn.prev-btn{

        right: 0;
        
    }
}

/*------------- #offers-section --------------*/ 
.offers-area .row{
    gap:1.5rem 0;
}
.offers-area .offer-box .box-img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    
	/*
	--img-dim:300px;
	*/
    --img-dim:200px;
    
}
.offers-area .offer-box .box-img img{
    width: 100%;
    object-fit: cover;
    height: var(--img-dim);
}
.offers-area .offer-box .box-img .note{
    position: absolute;
    left:0;
    top:0 ;
    font-size: var(--title-7);
    font-weight: bold;
    color: #fff;
    text-align: center;
    background-color:var(--clr-1) ;
    padding:var(--box-px-xs) var(--box-px-sm);
    text-align: center;
    border-bottom-right-radius: var(--border-r-1);
}
.offers-area .offer-box .box-img .note.discount{
    
    background-color:var(--clr-2) ;
    color: #000;
}
.offers-area .offer-box .box-content{
    padding: .75rem;
    background-color: var(--ulcats_bgcolor);
    border-radius: 0 0 var(--border-r-2) var(--border-r-2);
    border-top: 4px solid #000;
	border: var(--clr-main) solid 1px;
}


.offers-area .offer-box .box-text{
    margin-bottom: 0;
    font-size: var(--title-4);
    text-align: center;
    transition: all .3s ease;
    color: #000;
    font-weight: 500;
}
.offers-area .offer-box .box-text span{
    display: block;
	color:var(--btn_color);
}
.offers-area .offer-box:hover .box-text{
    color: var(--clr-1);
}

@media(max-width:991.98px){
    .offers-area .offer-box .box-img{
        /*--img-dim:300px;*/
		--img-dim:200px;
    }
    .offers-area .offer-box .box-text{
        font-size: var(--title-5);
    }
}

@media(max-width:767.98px){
    
    .offers-area .offer-box .box-img{
        /*
		--img-dim:350px;
		*/
		--img-dim:200px;
    }
}

@media(max-width:575.98px){
    .offers-area .offer-box .box-img{
        /*
		--img-dim:300px;
		*/
		--img-dim:200px;
    }
    .offers-area .offer-box .box-text{
        font-size: var(--title-6);
    }
}


/*------------- #products-section --------------*/ 

.products-wrapper{
    
	/*
	--img-dim:350px;
	*/
	--img-dim:200px;
}
/*
.products-slider-container .slider-arrows .arrow-btn{
    --dim:45px;
}
*/


.product-item{
     height: 100%;
	display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
	border: solid 1px var(--mainborder_color);
	border-bottom-right-radius:10px;
	border-bottom-left-radius:10px;
}
.product-item .product-img{
    
    position: relative;
    
}
.product-item .product-img a{
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-item .product-img img{
    width: 100%;
    object-fit: cover;
    height: var(--img-dim);
}

.product-item .product-img img :hover{
    width: 100%;
    object-fit: cover;
    height: var(--img-dim);
}

.add-to-fav {
  --dim:35px;
  position: absolute;
  top: .75rem;
  left: .75rem;
  width: var(--dim);
  height: var(--dim);
  font-size: 18px;
  border-radius: 50%;
  background-color: #fff;
  color: var(--clr-1);
  transition:  background .3s ease-in-out ;   
 
}

.add-to-fav.active,
.add-to-fav:active{
    color: #fff;
    background-color:var(--clr-1);
}
@media(hover:hover) and (pointer:fine){
    
    .add-to-fav:hover{
         color: #fff;
        background-color:var(--clr-1) ;
    }
}
.add-to-fav span {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease-in-out;
  transform: scale(0) translate(-50%, -50%);
  opacity: 0;
  display: inline-flex;
}
.add-to-fav:not(.active) span:first-of-type,
.add-to-fav.active span:last-of-type {
  transform: scale(1) translate(-50%, -50%);
  opacity: 1;
}

.product-item .add-to-fav{
    top: .25rem;
    left: .5rem;
}
.product-item .note{
    position: absolute;
    right: 0;
    top: 0;
    font-size: 14px;
    padding: .5rem .75rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background-color: var(--clr-1);
    text-align: center;
    color: #fff;
    border-bottom-left-radius: var(--border-r-2)
}
.product-item .note.discount{
    background-color: var(--clr-2);
    color: #000;
}
.product-item .offer-alert{
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: .5rem .75rem;
    background-color: #FEE7C5;
    font-size: 16px;
}

.product-item .product-body{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap:.25rem;
    margin-top: 0;
    
    border-top:4px solid #000;
    background-color: #fff;
    border-radius: 0 0 var(--border-r-2) var(--border-r-2);
    padding: .75rem;
    color: #000;
    font-weight: 600;
}
.product-item .colors-row{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:.75rem;
}
.product-item .colors-row .color-item{
    --dim:30px;
    width: calc(var(--dim) + 3px);
    height: calc(var(--dim) + 3px);
    border-radius: 100%;
    transition: all .3s ease;
    cursor: pointer;
    position: relative;
    border: 3px solid #D9D9D9;
}
.product-item .colors-row .color-item.empty{
    cursor: not-allowed;
    pointer-events: none;
}
.product-item .colors-row .color-item.empty::after{
    position: absolute;
    content: '';
    left: 50%;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: #fff;
    transform: translateX(-50%) rotate(-45deg);
    
}
.product-item .colors-row .color-item:not(.empty).active{
    /*border: 3px solid #9e9e9e;*/
}
.product-item .product-name{
    display: inline-block;
    font-size: var(--title-7);
    transition: all .3s ease;
    margin-bottom: 0;
}
.product-item a.product-name:hover{
    color: var(--clr-1);
}
.product-item .price-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap:.25rem .75rem;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}
.product-item .price-wrap span{
    display: inline-block;
}
.product-item .price-wrap .old{
    text-decoration: line-through;
}
.product-item .price-wrap .discount{
    color: #FF0003;
}

.count-wrap{
    display: flex;
    align-items: center;
    gap:.5rem;
    --dim:35px;
}
.count-wrap .count-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--dim);
    height: var(--dim);
    background-color: #d9c7c7;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    transition: all .3s ease;
    border-radius: 100%;
    flex-shrink: 0;
}
.count-wrap .count-btn svg{
    width: 14px;
    height: 14px;
    fill:#000;
}
.count-wrap .count-btn:active{
    background-color: var(--clr-1) !important;
}
.count-wrap .count-btn:active svg{
    fill: #fff  !important;
}
@media(hover:hover) and (pointer:fine){
    .count-wrap .count-btn:hover{
        background-color: var(--clr-1)  !important;
    }
    .count-wrap .count-btn:hover svg{
        fill: #fff  !important;
    }
}
.count-wrap .count-btn.disabled{
    background-color: #9E9E9E !important;
    cursor: not-allowed;
}
.count-wrap .count-num{
    height: var(--dim);
    width: auto;
    border-color: var(--clr-main);
    /*color: #fff;*/
    text-align: center;
    border-radius: 4px;
    font-size: 16px;
    max-width: 70px;
    padding: .25rem;
    background-color: transparent;
}


.add-btn{

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem var(--box-px-sm);
    font-size: 16px;
    font-weight: bold;
    border-radius: var(--border-r-4);
    text-align: center;
    background-color: var(--clr-1);
    /*color: #fff;*/
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    min-width: 200px;
    
}
.add-btn.active {
  background-color: #00850D;
  
}
.add-btn .check-icon,
.add-btn.active .cart-icon {
  display: none;
}
.add-btn.active .cart-text-done,
.add-btn .cart-text {
    display: block;
}
.add-btn.active .check-icon {
  display: block;
  filter: #fff;
}
.add-btn.active .cart-text {
    display: none;
}
.add-btn span {
  display: none;
}
.add-btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: invert(1);
  transition: all 0.3s ease-in-out 0.1s;
}
@media(hover:hover) and (pointer:fine) {
  .add-btn:not(.active):hover {
    background-color: var(--clr-1-hvr);
    
  }
}


.product-item .action-wrap{
    margin-top: .375rem;
    --dim:36px;
}
.product-item .count-wrap .count-num{
    max-width: 55px;
    color: #000;
    border-color: #000;
}
.product-item .count-wrap .count-btn{
    --dim:30px;
    background-color: #000;
}
.product-item .count-wrap .count-btn svg{
    fill:#fff;
}


.product-item .action-wrap .discover-btn span,
.product-item .action-wrap .add-btn img
{
    padding: 0.05rem 0;
}

.product-item .action-wrap .discover-btn,
.product-item .action-wrap .add-btn{
    height: var(--dim);
    padding-top: 0;
    padding-bottom: 0;
    font-size: calc(var(--title-7) - 2px);
    border-radius: 4px;
    font-weight: 600;
    min-width: inherit;
}


@media(max-width:991.98px){
    
    .product-item .product-name{
        font-size: 16px;
    }
}

@media(max-width:767.98px){
    
    .products-wrapper{
        --img-dim:300px;
    }
}

@media(max-width:575.98px){
    
    
    
     .products-wrapper{
        --img-dim:200px;
    }
    
    .products-slider-container .swiper{
        overflow: visible;
    }
    .products-slider-container .swiper-slide{
        width: 285px;
    }
    
    .product-item .colors-row{
        gap:.25rem;
    }
    .product-item .colors-row .color-item{
        --dim:25px;
    }
    .product-item .product-body{
        margin-top: 0;
        padding: .5rem .25rem;
    }
    
    .product-item .note{
        font-size: 12px;
        padding: .375rem .5rem;
        
    }
    
    .product-item .add-to-fav{
        width: 30px;
        height: 30px;
        font-size: 16px;
        /*
        left: 0.5rem;
        top: 0.5rem;*/
    }
    
    
    .product-item .count-wrap .count-btn svg{
        width: 12px;
        height: 12px;
    }
    
    
    .products-wrapper.two-col-wrapper .product-item .colors-row .color-item{
        --dim:22px;
    }
    .products-wrapper.two-col-wrapper .product-item .action-wrap{
         --dim:30px;
    }
    .products-wrapper.two-col-wrapper .product-item .count-wrap .count-btn{
        --dim:25px !important;
    }
    .products-wrapper.two-col-wrapper .product-item .product-name,
    .products-wrapper.two-col-wrapper .product-item .price-wrap,
    .products-wrapper.two-col-wrapper .product-item .count-wrap .count-num,
    .product-item .offer-alert{
        font-size: 14px;
    }
    .products-wrapper.two-col-wrapper .product-item .note{
        font-size: 11px;
    }
    .products-wrapper.two-col-wrapper .product-item .count-wrap .count-num{
        max-width: 50px;
    }
    
    .products-wrapper .bootstarp-pagination{
        margin-top: 1.5rem;
    }
    
}

@media(max-width:379.98px){
    .products-wrapper.two-col-wrapper{
        --img-dim:200px;
    }
}

/*------------- #all-products --------------*/ 

.products-wrapper .row{
    gap:1.5rem 0;
}

.all-products-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:1.5rem;
    margin-bottom: 1.5rem;
}
.all-products-title{
    font-size: var(--title-4);
    font-weight: bold;
    margin-bottom: 0;
}

.product-filter-btn{
    display: none;
    align-items: center;
    justify-content: center;
    width: auto;
    gap: 0.5rem;
    color: var(--clr-2);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: 1px solid var(--clr-2);
    min-width: 120px;
    transition: all .3s ease;
    height: 40px;
    transition: all .3s ease
}
.product-filter-btn:hover{
    background-color: var(--clr-2);
    color: #000;
}

.all-products-header .sort-wrap{
    display: flex;
    align-items: center;
    gap:.5rem;
}
.all-products-header .sort-wrap p{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0;
    flex-shrink: 0;
}
.all-products-header .sort-wrap .sort-select{
    height: 40px;
    font-size: 16px;
    border-radius: 0px;
    padding: 0.5rem 0.5rem 0.5rem 2rem;
    cursor: pointer;
}


.bootstarp-pagination{
    
    display: flex;
    justify-content: center;
    
}
.bootstarp-pagination .pagination{
    
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    padding-top: 1px;
    margin: 0;
}
.bootstarp-pagination .pagination .page-item .page-link{
    
    color: #636363;
    border-color: #dedede;
    box-shadow: none;
    font-size: 1rem;
    margin-top: -1px;
    
}
.bootstarp-pagination .pagination .page-item.active .page-link{
    
    background-color: var(--clr-1);
    border-color: var(--clr-1);
    color: #fff;
}
.bootstarp-pagination .pagination .page-item:not(.active) .page-link:hover,
.bootstarp-pagination .pagination .page-item:not(.active) .page-link:focus{
    
    background-color: #ddd;
    z-index: auto
}
.bootstarp-pagination .pagination .page-item.disabled .page-link{
    
    pointer-events: none;
    
}
.bootstarp-pagination .pagination .page-item:first-child .page-link{
    
    border-radius: 0 0.25rem  0.25rem 0 ;
}
.bootstarp-pagination .pagination .page-item:last-child .page-link{
    
    border-radius:  0.25rem  0  0  0.25rem ;
}


@media(max-width:991.98px){
    
    .all-products-header{
        flex-wrap: wrap;
    }
    .all-products-title{
       
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--border-clr-1);
        width: 100%;
    }
    .all-products-header-options{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .product-filter-btn{
        display: flex;
    }
}
@media(max-width:575.98px){
    .product-filter-btn{
        width: 100%;
    }
}



/***sidebar-content***/

.sidebar-content .filter-actions{
    
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
    gap:.75rem;
    min-height: 40px;
}
.sidebar-content .filter-actions .filter-title{
    
    font-size: var(--title-4);
    margin-bottom: 0;
    font-weight: 700;
    
}
.sidebar-content .filter-actions .filter-clean{
    display: inline-block;
    font-size: 14px;
    transition: all .3s ease;
    
}
.sidebar-content .filter-actions .filter-clean:hover{
    
    color: var(--clr-2);
    
}
.sidebar-content .filters-accordion-area{
    
    position: relative;
}
.sidebar-content  .panel-items:not(:last-of-type){
    
    padding-bottom: 1.5rem;
}
.sidebar-content  .panel-items .accordion_header{
    
    padding: 10px;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sidebar-content  .panel-items .accordion_header .accordion_title .accordion_title_text{
    
    display: block;
    color: #000;
    font-size: 16px;
    font-weight: 700;

}
.sidebar-content  .panel-items .accordion_header .accordion_icon{
    
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #000;
    transition: all 0.3s ease;
    
}
.sidebar-content  .panel-items.active .accordion_header .accordion_icon{
    
    transform: rotate(-90deg);
}
.sidebar-content  .panel-items .accordion_body {
    
    background-color: ;
    width: 100%;
    padding-top: 1.5rem;
    
}
.sidebar-content  .panel-items.toolbox-sorting {
    
    display: none
}

.sidebar-content  .panel-items .accordion_body .filters-type-list{
    
    position: relative;
}
.sidebar-content  .panel-items .accordion_body .filters-type-list .filter-type{
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    
}
.sidebar-content  .panel-items .accordion_body .filters-type-list .filter-type:last-of-type{
    
    margin-bottom: 0;
}
.sidebar-content  .panel-items .accordion_body .filters-type-list .filter-type .filter-check{
    
    flex: 1;
}
.sidebar-content  .panel-items .accordion_body .filters-type-list .filter-type .filter-check .form-check-input{
    
    transition: all .3s ease;
    box-shadow: none;
    cursor: pointer;
    background-color: transparent;
    border-color: #fff;
}
.sidebar-content  .panel-items .accordion_body .filters-type-list .filter-type .filter-check .form-check-label{
    
    font-size: 16px;
    cursor: pointer;
     transition: all .3s ease;
}
.sidebar-content  .panel-items .accordion_body .filters-type-list .filter-type .filter-check .form-check-input:checked{
    
    background-color: var(--clr-1);
    border-color: var(--clr-1);
}


.sidebar-content  .panel-items .accordion_body .filters-color-list{
    
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap:.75rem;
}
.sidebar-content  .panel-items .accordion_body .filters-color-list .filters-color-item{
    
    display: inline-block;
}
.sidebar-content  .panel-items .accordion_body .filters-color-list .filters-color-item .form-check-input{
    --dim:30px;
    width: calc(var(--dim) + 3px);
    height: calc(var(--dim) + 3px);
    transition: all .3s ease;
    box-shadow: none;
    cursor: pointer;
    border-radius: 100%;
    background-color: var(--color);
    border: 3px solid #D9D9D9 ;
    background-image: none !important;
    position: relative;
}
.sidebar-content  .panel-items .accordion_body .filters-color-list .filters-color-item .form-check-input.light_clr:checked{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3E%3C/svg%3E");
}
.sidebar-content  .panel-items .accordion_body .filters-color-list .filters-color-item .form-check-input::after{
    position: absolute;
    left: 0px;
    top: -16px;
    font-size: 14px;
    border-radius: 100%;
    color: green;
    transition: all .3s ease;
    opacity: 0;
    z-index: -1;
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
.sidebar-content  .panel-items .accordion_body .filters-color-list .filters-color-item .form-check-input:checked::after{
    opacity: 1;
    z-index: 10;
}

.sidebar-content  .panel-items .accordion_body .size-list{
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap:.75rem;
    
}
.sidebar-content  .panel-items .accordion_body .size-list .size-item{
    font-size: 16px;
    margin-bottom: 0;
    display: block;
    text-align: center;
    padding: 0rem;
    height: 30px;
    min-width:60px;
    font-weight: 700;
    border: 2px solid #fff;
    color: #fff;
    transition: all .3s ease;
    position: relative;
    cursor: pointer;
    text-transform: uppercase;
}
.sidebar-content  .panel-items .accordion_body .size-list .size-item:hover{
    border-color: var(--clr-1);
    
}
.sidebar-content  .panel-items .accordion_body .size-list .size-item.active{
    background-color: var(--clr-1);
    border-color: var(--clr-1);
    color: #fff;
}
.sidebar-content  .panel-items .accordion_body .size-list .form-check{
    padding: 0;
    margin: 0;
}
.sidebar-content  .panel-items .accordion_body .size-list .form-check-input{
    display: none;
}


.sidebar-content .panel-items .accordion_body .price-range-inputs{
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
.sidebar-content .panel-items .accordion_body .price-range-inputs .price-range-field{
    background-color: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
    padding: 0;
    box-shadow: none;
}
.sidebar-content .panel-items .accordion_body .price-range-inputs .price-range-field:last-child{
    
    text-align: left
}
.sidebar-content .panel-items .accordion_body .ui-widget.ui-widget-content{
    
    border-color: var(--clr-1);
    
    
}
.sidebar-content .panel-items .accordion_body .ui-widget-header{
    
    background-color: var(--clr-1);
}
.ui-slider .ui-slider-handle{
    outline: none;
    background-color: #fff;
    border-color: var(--clr-1);
    cursor: pointer;
    
}
.ui-slider .ui-slider-handle:hover{
    
    background-color: #e9e9e9;
}

/*
.filters-accordion-area .filters-results-btn{
    
    display: block;
    max-width: 200px;
    width: 100%;
    background-color: #fff;
    font-size: 16px;
    border: 1px solid var(--clr-1);
    color: var(--main-clr);
    padding: .375rem .75rem;
    border-radius: .25rem;
    transition: all .3s ease;
    margin: 1.5rem auto 0;
    text-transform: capitalize;
}
.filters-accordion-area .filters-results-btn:hover{
    background-color: var(--clr-1);
    color: #fff;
}
*/

.sidebar-content  .sidebar-close{
    margin-bottom: 1rem;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    background-color: var(--clr-1);
    color: #fff;
    font-size: 16px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    cursor: pointer;
    margin-inline-start: auto;
}
.sidebar-content  .sidebar-close:hover{
    background-color: var(--clr-1-hvr);
}


@media(max-width:991.98px){
    .sidebar-content  .sidebar-close{
        display: flex;
    }
    .sidebar-content .filter-actions{
        min-height: inherit;
    }
    
    
    .sidebar-content{
        
        position: fixed;
        right: -120%;
        top: 0;
        bottom: 0;
        overflow-y: auto;
        height: 100%;
        width: 450px;
        max-width: 90%;
        padding: 1.5rem var(--box-px-xs);
        background-color: #fff;
        z-index: 1000;
        -webkit-overflow-scrolling: touch;
        z-index: 2200;
        transition: all .3s ease;
        box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
    }
    .sidebar-content.active{
        
        right: 0px;
    }
    
    
    
}

@media(max-width:991.98px){
    
    .sidebar-content .panel-items .accordion_header{
        background-color: #eee
    }
    .sidebar-content .panel-items .accordion_body .price-range-inputs .price-range-field{
        color: #000;
    }
    .sidebar-content .panel-items .accordion_body .size-list .size-item{
        color: #646464;
        border-color:#646464;
    }
    .sidebar-content .panel-items .accordion_body .filters-type-list .filter-type .filter-check .form-check-input{
        border-color: #C4C4C4;
    }
    .sidebar-content .panel-items .accordion_body .filters-type-list .filter-type .filter-check .form-check-label{
        color: #000;
    }
    .sidebar-content .filter-actions{
        color: #000;
    }
    
    
}
@media(max-width:575.98px){
    .all-products-header .sort-wrap{
        display: none;
    }
    .sidebar-content  .panel-items.toolbox-sorting{
        display: block;
    }
}



/*------------- #banner-section --------------*/ 
.banner-area{
    background-blend-mode: multiply;
    background-color: rgba(0, 0, 0, 0.5);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-r-2);
    padding: 0 .75rem;
}
.banner-area .row{
    height: 100%;
    min-height: inherit;
}

.banner-slider-container{
    
}
.banner-area .banner-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 1.5rem;
    color: #fff;
    text-align: center;
    min-height: 50vh;
    
    padding: calc(var(--section-space)) 0;
    
}
.banner-area .banner-content .content-title{
    font-size: var(--title-0);
    font-weight: bold;
    margin-bottom: 0;
    
}

.banner-area .banner-content .content-text{
    font-size: var(--title-4);
    font-weight: 500;
    margin-bottom: 0;
    max-width: 600px;
}
.banner-area .banner-content .content-btns{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:1rem var(--box-px-xsm);
    width: 100%;
    flex-wrap: wrap;
}

.discover-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap:.5rem;
    padding: .75rem var(--box-px-sm);
    border-radius: var(--border-r-3);
    transition: all .3s ease;
    color: #fff;
    
    background-color:var(--btn_bgcolor);
    /*max-width: 225px;
    width: 100%;*/
    text-align: center;
    font-size: var(--title-7);
}
.discover-btn span{
    transition: inherit;
    width: 24px;
    height: 24px;
    display: inline-flex;
}
.discover-btn svg{
    width: 100%;
    height: 100%;
    
}
.discover-btn:hover{
    
    background-color:#933b3c ;
    color: #fff;
}
.discover-btn:hover span{
    
    transform: translateX(-3px);
}

.banner-text-section .banner-content{
    background-color: #FFCD844A;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: var(--section-space) 0 ;
}
.banner-text-section .content-title{
    font-size: var(--title-2);
    text-align: center;
    margin: 0 auto;
    line-height: 1.6;
    max-width: 92%;
}

@media(max-width:991.98px){
    .banner-text-section .content-title{
        max-width: none;
    }
}
@media(max-width:767.98px){
    .banner-area .banner-content .content-title{
        font-size:var(--title-1);
    }
    .banner-area .banner-content .content-text{
        font-size:var(--title-5);
    }
    
}

@media(max-width:575.98px){
    
    .banner-area{
        min-height: 50px;
    }
    
    .banner-area .banner-content .content-title{
        font-size:var(--title-2);
    }
    .banner-area .banner-content .content-text{
        font-size:var(--title-6);
    }
    
    
}


/*------------- #features-section --------------*/ 
.features-area .row{
    justify-content: center;
    gap:1.5rem 0;
}
.features-area .feature-item{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
   
    
}
.features-area .feature-item .item-icon{
    height: 85px;
} 
.features-area .feature-item .item-texts{
    margin-top: .75rem;
    padding: 0 .5rem;
}
.features-area .feature-item .item-title{
    font-size: var(--title-4);
    font-weight: bold;
    margin-bottom: 0;
}
.features-area .feature-item .item-text{
    font-size: var(--title-7);
    padding-top: .75rem;
    color: var(--clr-gray-0);
    max-width: 425px;
    margin: 0 auto;
    font-weight: 600;
}
.features-area .feature-item .item-text a{
    transition: all .3s ease;
    border-bottom: 1px solid;
    display: inline-flex;

}
.features-area .feature-item .item-text a:hover{
    color: var(--clr-2);
}


/*------------- #gallery-section --------------*/ 

.gallery-section{
    margin-bottom: calc((var(--section-padding) + 1px) * -1);
    padding-bottom: 0;
}

.gallery-area .gallery-link{
    --img-h:400px;
    position: relative;
    display: block;
    transition: all .3s ease;
}
.gallery-area .gallery-link img{
    width: 100%;
    height: var(--img-h);
    /*object-fit: cover;*/
    object-fit: contain;
	border: solid 1px #e0e0e0;
    border-radius: 15px;
}

.gallery-area .gallery-item .gallery-link::after{
    
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgb(115 17 18 / 50%);
    content: "\f00e";
    font-family: "Font Awesome 5 Free"; font-weight: 900;
    color: #fff;
    z-index: -1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--title-1);
    opacity: 0;
    
}

.gallery-area .gallery-item .gallery-link:hover::after{
    
    opacity: 1;
    z-index: 10;
    
}

@media(max-width:767.98px){
    .gallery-area .gallery-link{
        --img-h:350px;
    }
}
@media(max-width:575.98px){
    .gallery-area .gallery-link{
        --img-h:200px;
    }
    
    .gallery-area .gallery-slider-container .swiper{
        overflow: visible;
    }
    .gallery-area .gallery-slider-container .swiper-slide{
        width: 200px;
    }
}


/*------------- #product-description-section --------------*/ 



.product-description-details{
    max-width: 700px;
    --items-alt:1.25rem;
}
.product-description-details >*:not(:last-child){
    margin-bottom: var(--items-alt);
}
.product-description-details .product-name{
    
    font-size: var(--title-3);
    font-weight: bold;
    line-height: 1.5;
    transition: all .3s ease;
    
}
.product-description-details .product-name a{
    transition: inherit;
}
.product-description-details .product-name span{
    background-color: var(--clr-1);
    color: #fff;
    font-size: 14px;
    padding: .375rem;
    display: inline-block;
    vertical-align: middle;
    font-weight: 600;
    
}
.product-description-details .product-name span.discount{
    background-color: var(--clr-2);
    color: #000;
}
.product-description-details .product-description-text{
    font-size: var(--title-8);
    text-align: justify;
    color: var(--clr-gray-1);
    /*margin-top: -.5rem;*/
}
.product-description-details .price-wrap{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap:.5rem var(--box-px-xs);
    
}
.product-description-details .price-wrap .price-item{
    
    font-size: var(--title-4);
    font-weight: 700;
}
.product-description-details .price-wrap .price-item.real{
    color: #08ba1 9;
}
.product-description-details .price-wrap .price-item.old{
    color: #08ba1 9;
	text-decoration: line-through;
}


.product-description-details .price-wrap .flex{
    display: flex;
    gap:.25rem
}
.product-description-details .price-wrap .price-item.discount{
    color: var(--clr-2);
}
.product-description-details .product-badge{
    padding: .75rem var(--box-px);
    font-size: var(--title-8);
    font-weight: bold;
    color: #fff;
    border-radius: var(--border-r-4);
    background-color: #1F1F1F;
    text-align: center;
    /*margin-top: -.5rem;*/
}


.product-description-details .product-options.flex-option{
    display: flex;
    align-items: center;
    gap:1rem;
}
.product-description-details .product-options .option-title{
    font-size: var(--title-6);
    font-weight: bold;
    color: var(--clr-gray-0);
    margin-bottom: 1rem;
}

.product-description-details .product-options-selects .row{
    gap:var(--items-alt) 0;
}
.product-description-details .product-options .product-options-select{
    height: 48px;
    border-radius: 0px;
}

.product-description-details .colors-items{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap:.75rem;
}
.product-description-details .colors-items .color-item{
    --dim: 40px;
    width: calc(var(--dim) + 3px);
    height: calc(var(--dim) + 3px);
    border-radius: 100%;
    transition: all .3s ease;
    cursor: pointer;
    position: relative;
    border: 3px solid #D9D9D9;
}
.product-description-details .colors-items .color-item:not(.empty)::after{
    position: absolute;
    left: 0px;
    top: -16px;
    font-size: 14px;
    border-radius: 100%;
    color: green;
    transition: all .3s ease;
    opacity: 0;
    z-index: -1;
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
.product-description-details .colors-items .color-item.active:not(.empty)::after{
    opacity: 1;
    z-index: 10;
}
.product-description-details .colors-items .color-item.empty{
    pointer-events: none;
}
.product-description-details .colors-items .color-item.empty::after{
    position: absolute;
    content: '';
    left: 50%;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: #fff;
    transform: translateX(-50%) rotate(-45deg);
}

.product-description-details .size-list{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap:.75rem;
}
.product-description-details .size-list .size-item{
    
    font-size: var(--title-7);
    margin-bottom: 0;
    display: block;
    text-align: center;
    padding: 0rem;
    height: 35px;
    min-width: 70px;
    font-weight: 700;
    border: 2px solid var(--clr-main);
    /*color: #fff;*/
    transition: all .3s ease;
    position: relative;
    cursor: pointer;
    text-transform: uppercase;
    
}
.product-description-details .size-list .size-item:hover{
    
    border-color: var(--clr-1);
    
}
.product-description-details .size-list .size-item.active{
    background-color: var(--clr-1);
    border-color: var(--clr-1);
    color: #fff;
}

.product-description-details .count-wrap{
    
}
.product-description-details .count-wrap .count-num{
    max-width: 100px;
    font-weight: bold;
    font-size: var(--title-7);
    --dim:40px;
}

.product-description-details .single-product-list{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
    margin-bottom: 1.5rem;
    padding-bottom: 0.25rem;
}
.product-description-details .single-product-list .single-product-list-item{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.product-description-details .single-product-list .single-product-list-item> span{
    font-weight: bold;
    display: inline-flex;
    font-size: var(--title-7);
}
.product-description-details .single-product-list .single-product-list-item .sub{
    color: var(--clr-gray-1)
}
.product-description-details .single-product-list .single-product-list-item .val{
    color: var(--clr-1);
}


.product-description-details .product-actions{
    display: flex;
    align-items: center;
    gap:var(--items-alt) var(--box-px-sm);
    
    flex-wrap: wrap;
}

@media(max-width:991.98px){
    .product-description-details{
        max-width: none;
    }
    .product-description-details .qty-option{
        padding-top: calc(var(--items-alt) / 2);
    }
}
@media(max-width:575.98px){
    
    .product-description-details .product-actions{
        flex-direction: column;
        align-items: stretch;
    }
    .product-description-details .product-options.qty-option .option-title{
        display: block !important;
    }
    
    
    .product-description-details .product-actions{
        gap:1.25rem var(--box-px-sm);
    }
    .product-description-details .add-btn{
        width: 100%;
    }
    
}
@media(min-width:992px){
    .product-description-details .product-actions{
        flex-direction: row-reverse;
        justify-content: flex-end;
    }
    .product-description-details .cart-action{
        padding-top: .25rem;
    }
    .product-description-details .qty-option{
        padding-top: calc(var(--items-alt) / 2);
    }
    .product-description-details .product-actions >*{
        padding-top: calc(var(--items-alt) / 2);
    }
}

/**** product-description-slider-container ***/


.product-description-area .product-description-img-container{
    
     padding-left: .5rem;
}
.product-description-area .product-description-img-container .product-gallery{
    
    position: relative;
    margin-bottom: 1.25rem;
   
   
}

.product-description-area .guide-message{
    
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.75);
    border-radius: 2em;
    padding: 0 1.1em;
    height: 35px;
    color: #000;
    font-weight: 600;
    font-size: 12px;
    text-align: center;
    transition: all .3s ease;
    text-transform: capitalize;
    opacity: 1;
    z-index: 10;
    transition: all .3s ease;
    cursor: no-drop;
    user-select: none;
    gap:5px;
    width: max-content;
}
.product-description-area .add-to-fav{
    
}
.product-description-area .note{
    position: absolute;
    right: 0.75rem;
    top: 0.75rem;
    font-size: 14px;
    padding: 0.5rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background-color: var(--clr-1);
    text-align: center;
}

.product-description-area .note.discount{
    background-color: var(--clr-2);
    color: #000;
}


.product-description-area  .product-description-slider .slick-slide .product-full-img{
    
    display: block;
    position: relative;
}
.product-description-area  .product-description-slider .slick-slide .product-full-img img{
    
    display: block;
    width: 100%;
    height: 400px;
    /*
	object-fit: cover;
	image product
	*/
	
	object-fit: scale-down;
    transition: all .3s ease;
    text-align: center;
    margin: auto;
    box-shadow: none;
    border: none;
    
}


.product-description-area  .product-description-slider.slider-nav .slick-list{
    
    margin: 0 -6px;
}
.product-description-area  .product-description-slider.slider-nav .slick-slide {

    margin: 0 6px;
   
}
.product-description-area  .product-description-slider .product-img-thumbnail{
    
    position: relative;
    display: block;
   
}
.product-description-area  .product-description-slider .product-img-thumbnail img{
    
    
    display: block;
    width: 100%;
    max-height: 100px;
    object-fit: scale-down;
    transition: all 0.3s ease;
    opacity: 1;
    cursor: pointer;
    margin: auto;
    text-align: center;
    

}
.product-description-area  .product-description-slider.slider-nav .slick-slide.is-active img{
    
      opacity: 1;
}
.product-description-area .product-description-slider.slider-nav .slick-slide.is-active .product-img-thumbnail::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--clr-2);
   
}
.product-description-area .product-description-slider .slick-arrow{
    
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 16px;
    width: 28px;
    height: 28px;
    background-color: var(--clr-1);
    color: #fff;    
    transition: all .3s ease;
    z-index: 10;
}
.product-description-area .product-description-slider .slick-arrow:hover{
    
    background-color: var(--clr-1-hvr);
    color: #fff
}
@media(hover:hover) and (pointer:fine){
    
    .product-description-area .product-description-slider .slick-arrow:hover{

        background-color: var(--clr-1-hvr);
        color: #fff
    }
}																				  
.product-description-area .product-description-slider .slick-arrow.slick-disabled{
    
    opacity: 0;
    pointer-events: none;
    
}
.product-description-area .product-description-slider.slider-nav .slick-arrow.next-arrow{
    
    left: -14px;
}
.product-description-area .product-description-slider.slider-nav .slick-arrow.prev-arrow{
    
    right: -14px;
}


.product-description-area .product-description-slider.slider-nav .slick-arrow.next-arrow i{
    
    left: -14px;
	color:#fff;
}
.product-description-area .product-description-slider.slider-nav .slick-arrow.prev-arrow i{
    
    right: -14px;
	color:#fff;
}


@media(max-width:1199.98px){
    
    .product-description-area .product-description-img-container{
        
        padding-left: .5rem;
    }
}
@media(max-width:991.98px){
    
    .product-description-area .product-description-img-container{
        
        padding-left: 0;
    }
}

@media(max-width:767.98px){
    
    .product-description-area .product-description-slider .slick-arrow{
        
        width: 28px;
        height: 28px;
        font-size: 15px;
    }
    .product-description-area .product-description-slider.slider-nav .slick-arrow.next-arrow{
    
        left: -8px;
    }
    .product-description-area .product-description-slider.slider-nav .slick-arrow.prev-arrow{
    
        right: -8px;
    }
    .product-description-area .product-description-slider.slider-nav .slick-list{
        
        margin: 0  -.375rem;
    }
    .product-description-area .product-description-slider.slider-nav .slick-slide{
        
        margin: 0 .375rem;
    }
    
}
@media(max-width:575.98px){
    
    .product-description-area .product-description-img-container .product-gallery{
        margin-bottom: 1rem;
    }
    .product-description-area .product-description-slider .slick-slide .product-full-img img{
        
        height: 300px;
    }
    .product-description-area  .product-description-slider .product-img-thumbnail img{
        
        max-height: 100px;
    }
}



/******************single-product-disc*******************/

.single-product-disc .nav-pills {
  border-bottom: 1px solid var(--border-clr-1);
  margin-bottom: 1.5rem;
  padding: 0;
  gap:1.5rem;
}

.single-product-disc .nav-pills .nav-item .nav-link {
  font-size: var(--title-6);
  color: #fff !important;
  padding-bottom: 1rem;
  padding-top: 0;
  font-weight: bold;
  padding-right: 0;
  padding-left: 0;
}

.single-product-disc .nav-pills .nav-link.active,
.single-product-disc .nav-pills .show > .nav-link {
  border-radius: 0;
  background-color: transparent !important;
  border-bottom: 4px solid var(--clr-2) !important;
  /*color: var(--clr-1) !important;*/
}


.single-product-disc .description-tap p{
 font-size: var(--title-6);
  color: var(--clr-gray-1);
  text-align: justify;
  font-weight: 500;
  margin-bottom: 1rem;
}
.single-product-disc .description-tap p:last-child{
    margin-bottom: 0;
}

/*
@media (min-width: 992px) {
  .single-product-disc .nav-pills,
  .single-product-disc .description-tap {
    max-width: 85%;
  }
  
}
*/
.single-product-info-tap {
  border: 1px solid var(--border-clr-1);
  
  border-radius: var(--border-r-2);
  padding: 0;
  margin-bottom: 0;
  overflow: hidden;
}

.single-product-info-tap .single-product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--box-px-sm);
  gap:.75rem;
  border-bottom: 1px solid var(--border-clr-1);
    
}
.single-product-info-tap .single-product-item:last-child{
    border: none;
}

.single-product-info-tap .single-product-item:nth-child(even) {
  background-color: ;
}


.single-product-info-tap .single-product-item span {
  
  font-size: var(--title-7);
  font-weight: 500;
  color: var(--clr-gray-1);
}



.single-product-info-tap .single-product-item span:last-child {
  color: var(--clr-gray-0);
  text-align: end;
}

@media (min-width: 992px) {
  .single-product-info-tap{
     max-width: 800px;
    
  }

 .single-product-info-tap .single-product-item span{
        font-size: var(--title-8);
    }
    
 .single-product-info-tap .single-product-item span {
    flex: 1;
    
  }
    
}
@media (min-width: 576px) {
  

  
}


/*------------- #gifts-section --------------*/ 

.gifts-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}
.gifts-icon img{
    max-height: 200px;
    max-width: 80%;
}
.gifts-box{
    border: 1px solid rgba(0, 0, 0, 0.33);
    background: #FFF;
    box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.05);
    border-radius: var(--border-r-1);
    position: relative;
    padding: var(--box-py) var(--box-px-xsm);
    color: #000;
}


.gifts-box .box-title{
    font-size: var(--title-2);
    font-weight: bold;
    text-align: center;
    margin-bottom: var(--box-py);
}

.gifts-box .tabs-list{
    display: flex;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: var(--box-py);
    overflow-x: auto;
    overflow-y: hidden;
    
}
.gifts-box .tabs-list::-webkit-scrollbar {
    display: block;
    height: 5px
}
.gifts-box .tabs-list::-webkit-scrollbar-track {
    /*background-color: rgba(0,0,0,.1);*/
	background-color: #fff;
    border-radius: 10px
}
.gifts-box .tabs-list::-webkit-scrollbar-thumb {
    /*background-color: rgba(0,0,0,.15);*/
	background-color: #ccc;
    border-radius: 10px
}
.gifts-box .tabs-list .tab-btn{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all .3s ease;
    position: relative;
    background-color: var(--clr-1);
    flex: 1;
    color: #fff;
    font-size: calc(var(--title-7) - 2px);
    gap:.5rem;
    padding: .75rem var(--box-px-xs);
    border-left: 2px solid #fff;
    
}
.gifts-box .tabs-list .tab-btn:not(.active):not(.done):hover{
    background-color: var(--clr-1-hvr);
}
.gifts-box .tabs-list .tab-btn:first-child{
    border-radius: 0 var(--border-r-3) var(--border-r-3) 0;
}
.gifts-box .tabs-list .tab-btn:last-child{
    border: none;
    border-radius: var(--border-r-3)   0 0 var(--border-r-3);
}
.gifts-box .tabs-list .tab-btn.active,
.gifts-box .tabs-list .tab-btn.done{
    background-color: #ff5e71;
}
.gifts-box .tabs-list .tab-btn .text{
    text-align: center;
    display: block;
}
.gifts-box .tabs-list .tab-btn .icon{
    display: block;
    width: 45px;
    height: 45px;
    
}
.gifts-box .tabs-list .tab-btn .icon >*{
    width: 100%;
    height: 100%;
    fill:#fff;
    color:#fff;
    object-fit: contain;
}


.gifts-box .slider-items{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap:.75rem var(--box-px-xsm);
    margin-top: var(--box-py);
}
.gifts-box .slider-items .prev-btn.flex-wrapped{
    order: 2;
}
.gifts-box .slider-items .next-btn.flex-wrapped{
    order: 3;
}
.gifts-box .slider-items .slider-btn{
    display: inline-flex;
    align-items: center;
    font-size: 26px;
    transition: all .3s ease;
}
.gifts-box .slider-items .slider-btn:active{
    color: var(--clr-1);
}
@media(hover:hover) and(pointer:fine){
    .gifts-box .slider-items .slider-btn:hover{
    color: var(--clr-1);
    }
}
.gifts-box .slider-items .slider-btn.swiper-button-disabled{
    cursor: no-drop;
    color: #9e9e9e ;
}
.gifts-box .slider-items .swiper-pagination{
    width: auto;
    margin: 0;
   
    
}
.gifts-box .slider-items .swiper-pagination .swiper-pagination-bullet{
    width: var(--title-2);
    height: 10px;
    border-radius: 50px;
}

.gifts-box .product-wrap .form-check-input{
    display: none;
}
.gifts-box .product-item{
    cursor: pointer;
}
.gifts-box .product-item .product-body{
    border: 4px solid rgba(163, 163, 163, 0.20);
    border-top: 0px;
}
.gifts-box .product-item .check-btn{
    --dim:35px;
    width: calc(var(--dim) + 3px);
    height: calc(var(--dim) + 3px);
    border: 3px solid #D9D9D9;
    background-color: #fff;
    transition: all .3s ease;
    border-radius: 100%;
    position: absolute;
    left: .5rem;
    top: .25rem;
    cursor: pointer;
    z-index: 10;
}
.gifts-box .product-item .check-btn.active,
.gifts-box .product-wrap .form-check-input:checked + label.product-item .check-btn{
    background-color: #00850D;
}

.gifts-box .tabs-arrows{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:.75rem var(--box-px-xsm);
    margin-top: 1rem;
}
.gifts-box .tabs-arrows .arrow-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: .75rem 1rem;
    background-color: var(--clr-1);
    color: #fff;
    border-radius: var(--border-r-3);
    transition: all .3s ease;
    font-size: var(--title-7);
    width: 100%;
    max-width: 300px;
    
    
}
.gifts-box .tabs-arrows .arrow-btn:hover{
    background-color: var(--clr-1-hvr);
}
.gifts-box .tabs-arrows .arrow-btn.disabled{
    background-color: #9E9E9E;
    pointer-events: none;
    color:#fff  ;
}


.gifts-box .box-footer{
    margin-top: var(--box-py);
    padding-top: var(--box-py);
    border-top: 1px solid #eee;
    
}
.gifts-box .box-footer .items-wrapper .row{
    gap:1rem 0;
}
.gifts-box .box-footer .item-box{
    position: relative;
    cursor: pointer;
}
.gifts-box .box-footer .item-box .item-img{
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    --img-dim:180px;
    border: 2px solid #000;
}
.gifts-box .box-footer .item-box .item-img img{
    width: 100%;
    height: var(--img-dim);
    object-fit: cover;
}
.gifts-box .box-footer .item-box .del-btn {
  --dim:35px;
  position: absolute;
  top: .75rem;
  left: .75rem;
  width: var(--dim);
  height: var(--dim);
  font-size: 18px;
  border-radius: 50%;
  background-color: #fff;
  color: var(--clr-1);
  transition:  background .3s ease-in-out ;   
 
}
.gifts-box .box-footer .item-box .del-btn:active{
    color: #fff;
    background-color:var(--clr-1);
}
@media(hover:hover) and (pointer:fine){
    
    .gifts-box .box-footer .item-box .del-btn:hover{
         color: #fff;
        background-color:var(--clr-1) ;
    }
}

.gifts-box .box-footer .submit-wrap{
    margin-top: var(--box-py-res);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}
.gifts-box .box-footer .total{
    border: 3px solid #000;
    color: var(--clr-1);
    font-weight: bold;
    font-size: var(--title-7);
    padding: .75rem 1rem;
    border-radius: var(--border-r-2);
    transition: all .3s ease;
    margin-bottom: 1rem;
    
}

.gifts-modal .modal-body{
    padding: 1.5rem var(--box-px-xsm);
    padding-top: calc(1.5rem + .25rem);
}
.gifts-modal .modal-dialog{
    max-width: calc(800px + 1rem);
    padding: 0 .5rem;
}
.gifts-modal .product-description-details{
    color: #000;
    --items-alt:1.25rem;
    max-width: none;
}
.gifts-modal .product-description-details .product-name a:hover{
    color: var(--clr-1);
    
}
.gifts-modal .product-description-details .product-description-text,
.gifts-modal .product-description-details .product-options .option-title{
    color: var(--clr-gray-2)
}
.gifts-modal .product-description-details .size-list .size-item{
    border-color:  var(--clr-gray-2);
    color: var(--clr-gray-2);
}
.gifts-modal .product-description-details .size-list .size-item:not(.active):hover{
    background-color: #ddd
}
.gifts-modal .product-description-details .size-list .size-item.active{
    color: #fff;
    border-color:  var(--clr-1);
}
.gifts-modal .product-description-details .cart-action .add-btn{
    width: 100%;
    font-size: var(--title-7);
}
.gifts-modal .btn-close{
    position: absolute;
    left: .5rem;
    top: .5rem;
    cursor: pointer;
    z-index: 10;
}

.count-wrap.light-mode .count-num{
    border-color: #000;
    color: #000;
}
.count-wrap.light-mode .count-btn{
    background-color: #000;
}
.count-wrap.light-mode .count-btn svg{
    fill:#fff;
}

@media(max-width:991.98px){

    .gifts-box .tabs-list .tab-btn{
        flex-shrink: 0;
        
    }
    .gifts-box .tabs-list .tab-btn .text{
        white-space: nowrap;
    }
    .gifts-box .tabs-list.scrolled {
        justify-content: flex-start;
        padding-bottom: .25rem;
		padding-bottom: 0;
    }
    .gifts-box .tabs-list.scrolled .tab-btn{
        flex: none;
    }
    
    
    .gifts-modal .product-description-details .product-name{
        font-size: var(--title-4);
    }
    .gifts-modal .product-description-details .price-wrap .price-item{
        font-size: var(--title-5);
    }
    

}
@media(max-width:575.98px){
    
    .gifts-box .slider-items .swiper-pagination .swiper-pagination-bullet{
        width: var(--title-3);
    }
    .gifts-box .product-item .check-btn{
        left: .5rem;
        top: .5rem;
        --dim:30px;
    }
    
    .gifts-modal .modal-dialog{
        padding: 0;
    }
	
	.gifts-box .tabs-list .tab-btn .icon{
	
        width: 40px;
        height: 40px;
    }

}
@media(min-width:992px){
    .gifts-section .custom-container{
        --max-w:1320px;
    }
    
    .gifts-box {
        padding: var(--box-py) var(--box-px);
    }
    .gifts-box .box-title{
        font-size: var(--title-0);
    }
    .gifts-box .tabs-list{
        max-width: 95%;
    }
}


/*------------- #cart-section --------------*/ 
.cart-items-area .cart-item:not(:last-child){
    margin-bottom: 1.5rem;
}
.cart-item{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    border: 1px solid var(--border-clr-1);
    padding: 1.5rem var(--box-px-xsm);
    gap: 1.5rem var(--box-px-xsm);   
}
.cart-item .cart-info{
    flex: 1;
    display: flex;
    gap: 0.75rem;
}
.cart-item .cart-info .cart-img{
    --dim-w:220px;
    --dim-h:220px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: var(--dim-h);
}
.cart-item .cart-info .cart-img img{
    width: var(--dim-w);
    height: 100%;
    object-fit: cover;
}
.cart-item .cart-info .cart-details{
    flex: 1;
}
.cart-item .cart-info .cart-details .item-title a{
    font-size: var(--title-7);
    font-weight: bold;
    display: inline-block;
    transition: all .3s ease;
    margin-bottom: 1rem;
    
}
.cart-item .cart-info .cart-details .item-title a:hover{
    color: var(--clr-2);
}
.cart-item .cart-info .cart-details .item-info-list{
    margin: 0;
    padding: 0;
    list-style-type: none;
    
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap:.75rem;
}
.cart-item .cart-info .cart-details .item-info-list .list-item {
    font-size: var(--title-7);
    display: inline-flex;
    gap:.25rem;
    flex-wrap: wrap;
    font-weight: 600;
}
.cart-item .cart-info .cart-details .item-info-list .list-item .sub{
    color: var(--clr-gray-);
}
.cart-item .cart-actions{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--box-px-sm);
}
.cart-item .cart-actions .cart-del{
    --dim:35px;
    width: calc(var(--dim) + 0px);
    height: calc(var(--dim) + 0px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    background-color: #fff;
    color: var(--clr-1);
    cursor: pointer;
    transition: all .3s ease;
    border-radius: 100%;
}
.cart-item .cart-actions .cart-del:hover{
    background-color: var(--clr-1);
    color: #fff;
}
.cart-item .cart-actions .count-wrap .count-btn {
    
    --dim:30px;
}
.cart-item .cart-actions .count-wrap .count-num{
    font-weight: bold;
    font-size: var(--title-7);
    max-width: 80px;
    --dim:35px;
}
.to-checkout-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    border-radius: var(--border-r-4);
    border: 1px solid var(--clr-1);
    color: var(--clr-1);
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    font-size: var(--title-7);
    min-width: 200px;
    gap:.5rem;
}
.to-checkout-btn.filled,
.to-checkout-btn:not(.filled):hover{
    background-color: var(--clr-1);
    color: #fff;
}
.to-checkout-btn.filled:hover{
    background-color: var(--clr-1-hvr);
}

.order-note{
    font-size: var(--title-7);
    text-align: center;
    background: rgba(255, 205, 132, 0.29);
    padding:1rem .75rem;
    margin-bottom: 1rem;
    font-weight: 500;
}
.summary-box{
    padding: 0rem var(--box-px-xs);
    border: 1px solid var(--border-clr-1);
    
}
.summary-box >*{
    padding: 1.5rem 0;
}
.summary-box >*:not(:last-child){
    border-bottom: 1px solid var(--border-clr-1);
}
.summary-box .head-title{
    display: flex;
    align-items: center;
    gap:.5rem;
    font-size: var(--title-4);
    font-weight: bold;
    margin-bottom: 1.5rem;
}
.summary-box .head-title span{
    fill:var(--clr-1);
    width: 25px;
    height: 25px;
    display: none;
}

.summary-box .bill-title{
    font-size: var(--title-6);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.summary-box .bill-list{
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap:1rem;
}
.summary-box .bill-list .list-item{
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    gap:.75rem;
}

.summary-box .bill-list .list-item .item-txt{
    display: block;
    margin-bottom: 0;
}
.summary-box .bill-list .list-item .sub{
    color: var(--clr-gray-1);
}
.summary-box .bill-list .list-item .val{
    font-weight: bold;
}
.summary-box .bill-list .list-item.total{
    font-weight: bold;
    font-size: var(--title-6);
    color: var(--clr-2);
}
.summary-box .bill-list .list-item.total .sub{
    /*color: #fff*/
}
.summary-box .bill-list .list-item.discount .item-txt{
    color: #cf0202 !important;
}

.summary-checkout-box .bill-list .list-item .sub a{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap:.25rem;
    transition: all .3s ease;
}
.summary-checkout-box .bill-list .list-item .sub a:hover{
    color: var(--clr-2);
}
.summary-checkout-box .bill-list .list-item .sub a p{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}
.summary-checkout-box .bill-list .list-item .sub a span{
    font-size: 12px;
}


.summary-box .features-area .feature-item .item-title{
    font-size: 22px;
} 
.summary-box  .features-area .feature-item .item-icon{
    max-height: 80px;
}

@media(max-width:767.98px){
    .cart-item{
        flex-direction: column;
    }
    .cart-item .cart-actions{
        flex-direction: row-reverse;
    }
}
@media(max-width:575.98px){
    .cart-item .cart-info{
        flex-direction: column;
    }
    .cart-item .cart-info .cart-img{
        --dim-h:150px;
        --dim-w:100%;
        width: 100%;
		/*max-width:250px;*/
        min-height: inherit;
        height: var(--dim-h);
        max-height: var(--dim-h);
    }
    .cart-item .cart-info .cart-details .item-title a{
        margin-bottom: .75rem;
    }
    
    .summary-checkout-box .bill-list .list-item{
        flex-direction: column;
        gap:.5rem;
    }
    
}

@media(max-width:575.98px) , (min-width:992px) and (max-width:1199.98px){
    .summary-checkout-box .bill-list.wrap-list .list-item{
        flex-direction: column;
        gap:.5rem;
    }
}
@media(min-width:992px){
    .order-info-container {
      position: sticky;
      position: -webkit-sticky; /* Safari */
      top: .25rem;
      height: 100%;
    }
}
@media(min-width:1650px){
    .cart-item .cart-info .cart-img{
        --dim-w:150px;
        --dim-h:120px;
    }
}


.order-info .promo-code {
  position: relative;
}
.order-info .promo-code-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--clr-gray-1);
  margin-bottom: 0.75rem;
}
.order-info .promo-code-input {
  position: relative;
  display: flex;
  align-items: stretch;
}
.order-info .promo-code-input input {
  flex: 1;
  padding: 0 0.5rem;
  height: 40px;
  outline: none;
  box-shadow: none;
  transition: all 0.25s ease;
  border-radius: 0 var(--border-r-4) var(--border-r-4) 0px;
}
.order-info .promo-code-input .promo-code-container {
  position: relative;
  flex: 1;
}
.order-info .promo-code-input .add-success {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  color: green;
  font-size: 1rem;
  pointer-events: none;
}
.order-info .promo-code-input.active .add-success {
  opacity: 1;
  pointer-events: all;
  transition: all 0.25s ease 0.25s;
}
.order-info .promo-code-input.active input {
  flex: none;
  width: 0;
  padding: 0;
  border: none;
  overflow: hidden;
}
.promo-code-btn-container {
  text-align: center;
}
.promo-code-btn {
  outline: none;
  height: 40px;
  text-align: center;
  width: 66px;
  border-radius: 5px 0px 0px 5px;
  background-color: var(--clr-1);
  border: 2px solid var(--clr-1);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
}
.promo-code-btn:hover {
  color: var(--clr-1);
  background: #fff;
}
.promo-code-btn:active {
  letter-spacing: 1px;
}
.promo-code-btn:after {
  content: attr(value);
}
.onclic {
  width: 40px;
  background-color: transparent;
  border-radius: 50%;
  border-color: #ac03225b;
  border-width: 3px;
  font-size: 0;
  border-left-color: var(--clr-1);
  margin-right: 0.5rem;
  animation: rotating 2s 0.25s linear infinite;
}
.onclic:after {
  content: "";
}
.onclic:hover {
  color: var(--clr-1);
  background: white;
}
.validate {
  font-size: 13px;
  color: var(--clr-1);
  border: 2px solid var(--clr-1);
  width: 40px;
  background-color: transparent;
  border-radius: 50%;
}
.validate:after {
  font-family: "FontAwesome";
  content: "\f00d";
}
@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}




/*------------- #sub-page --------------*/ 
.info-box{
    
    border: 1px solid var(--border-clr-1);
    border-radius: var(--border-r-2);
    padding: var(--box-py) var(--box-px-xsm);
    padding-bottom: calc(var(--box-py) - 0.5rem) !important;
    position: relative;
}
.info-box .box-title{
    font-size: var(--title-2);
    font-weight: bold;
    color: var(--clr-2);
    text-align: center;
    margin-bottom: var(--box-py);
}

.info-box .box-content{
    
    line-height: 1.6;
}

.info-box .box-content h6{
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: var(--title-6);
}

.info-box .box-content p{
    margin-bottom: .5rem;
    color: var(--clr-gray-1);
    font-size: var(--title-7);
}

.info-box .box-content a,
.info-box .box-content span{
    display: inline-block;
}
.info-box .box-content a{
    color: var(--clr-gray-1);
    transition: all .3s ease;
}
.info-box .box-content a:hover{
    color: var(--clr-1);
}


@media(max-width:575.98px){
    .info-box .box-title{
        font-size: var(--title-3);
    }
}
@media (min-width:992px){
    .info-box{
        padding: var(--box-py) var(--box-px);
    }
    .info-section .custom-container{
        --max-w:1320px;
    }
    
}

/*------------- #sign-section --------------*/ 

.auth-section{
    padding: var(--section-space) 0px;
    border-top: 5px solid var(--clr-1);
}
.auth-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.auth-logo aaa{
    display: block;
    background-color: #191919;
    padding: 1rem;
    border-radius: var(--border-r-2);
}
.auth-logo img{
    max-height: 100px;
}

.auth-box{
    
    max-width: 800px;
    margin: 0 auto;
    padding: var(--box-alt) var(--box-px-xsm);
    border: 1px solid var(--border-clr-1);
    box-shadow: 0px 3px 3px rgba(187, 187, 187, 0.160784);
    border-radius: var(--border-r-2);
    --box-alt:var(--box-py-res);
    background-color: #fff;
    color: #000;
}

.auth-box .box-head{
   margin-bottom: var(--box-alt); 
}
.auth-box .head-title{
    font-size: var(--title-1);
    font-weight: 700;
    margin-bottom: 0;
    text-align: center;
    
}
.auth-box .head-text{
    margin-bottom: 0;
    font-size: var(--title-8);
    text-align: center;
    color: var(--clr-gray-2);
    margin-top: .75rem;
}
.auth-box .social-login{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:.75rem var(--box-px-sm);
    margin-bottom: var(--box-alt);
}
.auth-box .social-login .social-item{
    display: block;
    background-color: #F0F0F0;
    border-radius: 4px;
    padding: 0.5rem;
    transition: all .3s ease;
}
.auth-box .social-login .social-item >*{
    width: var(--title-1);
    height: var(--title-1);
    object-fit: contain;
}
.auth-box .social-login .social-item:hover{
    background-color: #ddd;
    transform: translateY(-3px);
}

.auth-box .login-or{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--box-alt);
    width: 100%;
    z-index: 1;
}
.auth-box .login-or::after{
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: var(--border-clr-1);
    z-index: -1;
}
.auth-box .login-or span{
    background-color: #fff;
    padding: 0 0.5rem;
    font-weight: 700;
    font-size: 16px;
}

.auth-box .login-form .form-group{
    margin-bottom: 1rem;
    position: relative;
}

.auth-box .login-form .form-label{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.auth-box .note{
    display: inline-block;
    font-size: 14px;
    margin-top: 10px;
    transition: all .3s ease;
}
.auth-box a.note:hover{
    color: var(--clr-1);
}

.auth-box .auth-btn{
    width: 100%;
    border-radius: var(--border-r-4);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    gap: 0.5rem;
    background-color: var(--clr-1);
    overflow: hidden;
    transition: 0.3s all ease;
    color: #fff;
    font-size: var(--title-8)
}
.auth-box .auth-btn:hover{
    background-color: var(--clr-1-hvr);
}

.auth-box .login-link{
    font-size: 16px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
    
}
.auth-box .login-link a{
    transition: all .3s ease;
    color: var(--clr-1);
}
.auth-box .login-link a:hover{
    color: blue;
}

.auth-box .confirm-send{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-bottom: var(--box-alt)
} 

.auth-box .confirm-send img{
    max-height: 120px;
}



/*------------- #checkout-section --------------*/
.checkout-box{
    padding: var(--box-py) var(--box-px-xsm);
    border: 1px solid var(--border-clr-1);
    --items-gap:1.25rem;
    
}
.checkout-box .form-row:not(:last-child){
    margin-bottom: var(--box-py);
}

.checkout-box .form-row:not(:last-child):not(.no-border){
    padding-bottom: var(--box-py);
    border-bottom: 1px solid var(--border-clr-1)
}

.checkout-box .form-row .form-title{
    font-size: var(--title-4);
    font-weight: bold;
    margin-bottom: var(--box-py);
    display: flex;
    align-items: center;
    gap:.5rem;
    
}



.checkout-box .form-row .form-group:not(:last-child){
    margin-bottom: var(--items-gap);
    
}
.checkout-box .form-group .form-label{
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--clr-gray-0);
    position: relative;
}

.checkout-box .form-group .form-label.required::after{
    content: "*";
    position: absolute;
    top: 0;
    left: -10px;
    color: var(--clr-1);
    font-size: 1rem;
    display: inline-block;
    font-weight: bold;
}

.checkout-box .form-group .form-control:not(.normal),
.checkout-box .form-group .form-select:not(.normal){
    background-color: #303131;
    border-color: #303131 ;
    color: #fff;
}
.checkout-box .form-group .form-control:not(.normal)::placeholder{
    color: #fff;
}

.checkout-box .form-group.flex-group{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:var(--items-gap) 1rem;
}
.checkout-box .form-group.flex-group>*{
    flex: 1;
}

.checkout-box .form-check  .form-check-input{
    background-color: transparent;
    border-color:var(--clr-gray-1) ;
}
.checkout-box .form-check  .form-check-input:checked{
    background-color: var(--clr-1);
    border-color: var(--clr-1);
}
.checkout-box .form-check .form-check-label{
    color: var(--clr-gray-1);
    transition: all .3s ease;
}

.checkout-box .form-check  .form-check-input:checked + .form-check-label{
    color: #ccc;
}

.dicount-code .input-wrap{
    display: flex;
    align-items: flex-start;
    gap:.75rem;
}
.dicount-code .code-input{
    
}
.dicount-code .submit-btn{
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: .75rem var(--box-px-sm);
    border-radius: var(--border-r-4);
    color: #fff;
    background-color: var(--clr-1);
    transition: all .3s ease;
    
}
.dicount-code .submit-btn:hover{
    background-color: var(--clr-1-hvr);
}
.dicount-code .note{
    font-size: calc(var(title-7) - 2px);
    display: block;
    margin-top: .25rem;
    margin-bottom: 0;
    
}
.dicount-code .note.success{
    color: green;
}
.dicount-code .note.failed{
    color: #cf0202;
}
.summary-box .dicount-code .code-input,
.summary-box .dicount-code .submit-btn{
    height: 45px;
}


.checkout-box .checkout-note{
    padding: 1.5rem var(--box-py-xsm);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap:1rem;
    height: 100%;
}
.checkout-box .checkout-note .note-title{
    font-size: var(--title-6);
    margin-bottom: 0;
    flex: 1;
}
.checkout-box .checkout-note .note-link{
    font-size: 16px;
    transition: all .3s ease;
    margin-bottom: 0;
}
.checkout-box .checkout-note a.note-link:hover{
    color: var(--clr-2);
}
.checkout-box .checkout-note .note-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    padding: .75rem ;
    background-color: var(--clr-1);
    transition: all .3s ease;
    border-radius: var(--border-r-3);
    width: 100%;
    height: 50px;
}
.checkout-box .checkout-note .note-btn:hover{
    background-color: var(--clr-1-hvr);
}
.checkout-box .checkout-note .form-group{
    width: 100%;
    max-width: 500px;
    margin-bottom: 0 !important;
}
.checkout-box .checkout-note.user-checkout{
    background-color: rgba(255, 205, 132, 0.29);
    
}
.checkout-box .checkout-note.guest-checkout{
    background-color: #d4cdb9;
    color: #000;
    
}

@media(max-width:767.98px){
    .checkout-box .form-group.flex-group>*{
        flex: none;
        width: 100%;
    }

}
@media(max-width:575.98px){
    .checkout-box .form-row .row:not(.normal-gx){
        --bs-gutter-x:.5rem;
    }
}
@media(min-width:992px){
    .dicount-code .code-input{
    
        max-width: 350px;
    }
    
}


/*------------- #responsive --------------*/ 


@media(max-width:1199.98px){
    

    
}

@media(max-width:991.98px){
    

}

@media(max-width:767.98px){
        

    :root{
        
        --box-px-xsm:1rem;
    }

}

@media(max-width:575.98px){
    
    :root{
        
          --title-0:36px;
          --title-1:32px;
          --title-2:28px;
          --title-3:24px;
          --title-4:22px;
          --title-5:20px;
          --title-6:18px;
          --title-7:16px;
        
          --border-r-1:15px;
          --border-r-2:10px;
          --border-r-3:8px; 
        
          --section-padding:1.5rem;
          --section-space:3rem;
        
          --box-py-res:1.5rem;
          --box-py-xsm:1rem;  
        
          --box-px-xs:.75rem;   
          --box-px-xsm:.75rem;
          --box-px: 1rem;
          --box-px-sm: 1rem;
          --box-px-more:1rem ;
          
        
            
    }
   
    
}
    

/*------------- #custom-grid --------------*/ 

.gx-75 {
    --bs-gutter-x: .75rem;
}


.custom-container{
    --max-w:"none";
    max-width: var(--max-w);
}

@media (min-width:992px){
    
     .custom-container{
        
        --max-w:98%;
    }
}

@media(min-width:1650px){
    
    .custom-container{
        
        --max-w:92%;
    }
}

@media (min-width:480px) and (max-width:575.98px){
    
    .row-cols-xs-gutter{
        
        --bs-gutter-x:.75rem;
    } 
     .row-cols-xs-2>* {
         
        flex: 0 0 auto;
        width: 50%;
        
     
    }
    
}

@media(max-width:991.98px){
    
    .gx-lg-75{
        
        --bs-gutter-x: .75rem;
    }
    
    
  .container{
        
        padding: 0 var(--box-px-xsm)
       
    }
    
}

@media(max-width:767.98px){
    
    .gx-md-75{
        
        --bs-gutter-x: .75rem;
    }
}

@media(max-width:575.98px){
    
    .gx-sm-75{
        
        --bs-gutter-x: .75rem;
    }
}




/*------------- #contact-section --------------*/ 

.contact-box{
    
    padding: 3rem 1rem;
    background: #FFFFFF;
    border: 1px solid rgba(225, 225, 225, 0.8);
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.contact-box .contact-form-area,
.contact-box .contact-info-area{
    
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.contact-box .box-container{
    max-width: 80%;
    margin: auto;
}
.contact-box .contact-form-area form{
    
    width: 100%;
}
.contact-box .contact-form-area .form-group{
    
    margin-bottom: 1.5rem;
}
.contact-box .contact-form-area .form-group .form-label{
    
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    
}
.contact-box .contact-form-area .form-group textarea{
    min-height: 100px;
}
.contact-box .contact-form-area .submit-btn{
    
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    border: none;
    padding: .75rem;
    background-color: var(--clr-1);
    transition: all .3s ease;
    outline: none;
    color: #fff;
    font-size: var(--title-7);
    height: 55px;
    font-weight: bold;
    
}
.contact-box .contact-form-area .submit-btn:hover{
    
    background-color: var(--clr-1-hover);
}

.contact-box .contact-info-area{
    
    justify-content: center;
}
.contact-box  .contact-info-title{
    
    text-align: center;
    font-size: var(--title-4);
    font-weight: bold;
    
}
.contact-box .contact-info-area .info-img{
    
    margin: 0 auto;
    text-align: center;
    display: block;
    max-height:300px ;
}
.contact-box .contact-info-area .info-item{
    
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.contact-box .contact-info-area .info-item:last-child{
    
    margin-bottom: 0;
}
.contact-box .contact-info-area .info-item .item-icon{
    
    margin-left: 1rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F3F3F3;
    border-radius: 100%;
    flex-shrink: 0;
}
.contact-box .contact-info-area .info-item svg{
    
    width: 23px;
    height: 23px;
    fill:var(--clr-1);
    
}
.contact-box .contact-info-area .info-item .item-val{
    
    font-size: var(--title-7);
    font-weight: bold;
    transition: all .3s ease;
    word-break: break-word;
}
.contact-box .contact-info-area .info-item a.item-val:hover{
    
    color: var(--clr-1)
}
.contact-box .contact-info-title,
.contact-box .contact-info-area .info-items{
    
    margin-bottom: 1.5rem;
}


.contact-area .map-container iframe{
    
    width: 100%;
    height: 400px;
}

@media(max-width:991.98px){
    
    .contact-box .contact-info-area{
        
        margin-top: 2rem;
        display: block;
    }
    

}
@media(max-width:767.98px){
        

    .contact-box .box-container{
        
        max-width: none;
    }    
    
    
}
@media(max-width:575.98px){
    
    .contact-box{
        
        padding: 2rem 1rem
    }
    .contact-area .map-container iframe{
        
        height: 350px;
    }
    
    .contact-box .contact-info-title,
    .contact-box .contact-info-area .info-items{
        
        margin-bottom: 2rem;
    }
}



/*------------- #contact-row --------------*/

.contact-row{
    
    padding:1.5rem 0 0.5rem ;
    background-color:var(--clr-1);
    z-index: 50;
}
.contact-row .form-group{
    
    padding-bottom: 1rem;
    position: relative;
}
.contact-row .form-group .form-control,
.contact-row .form-group select{
    
    border-color: transparent;
}
.contact-row .submit-btn{
    
    display: block;
    background-color: var(--clr-2);
    font-size: 16px;
    color: #fff;
    border-radius: var(--border-r-4);
    font-weight: bold;
    padding: .75rem;
    height: 52px;
    width: 100%;
    min-width: 100px;
    transition: all .3s ease;
}
.contact-row .submit-btn:hover{
    
    background-color: var(--clr-2-hover)
}
@media(max-width:575.98px){
    
    .contact-row .gx-xs-75{
    
    
        --bs-gutter-x:.75rem;
    }
}






.whatsapp-icon{
   
    position: fixed;
    
    align-items: center;
    justify-content: center;
    right: 20px;
    text-align: center;
    -webkit-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    transition-duration: 300ms;
    z-index: 999;
    border-radius: 100%;
    bottom: 150px;
    

}
.whatsapp-icon:hover{
    
    box-shadow: 0 6px 50px 8px rgb(21 131 233 / 15%)
}

.whatsapp-icon img{
    
    display: block;
    width: 40px;
    height:40px;
}

.whatsapp-icon.show{
    
    right: 20px;
    
}