
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/* 
font-family: "Montserrat", sans-serif;
*/

:root{
    /* --primary-color: #efe2d9; */
    --primary-color: #e5ded4;
    --secondary-color: #ebcdb9;
    --white-color: #fff;
    --dark-color: #333;


    --montserrat-font: "Montserrat", sans-serif;


    --fs-1: 6rem;
    --fs-2: 5rem;
    --fs-3: 3.8rem;
    --fs-4: 2.8rem;
    --fs-5: 2.6rem;
    --fs-6: 2.2rem;
    --fs-7: 2rem;
    --fs-8: 1.8rem;
    --fs-9: 1.5rem;
    --fs-10: 1.4rem;
    --fs-11: 1.2rem;

    --fw-300: 300;
    --fw-400: 400;
    --fw-500: 500;

    /* spacing */
    --section-padding: 60px;

    /* shadow */
    --shadow: 0 12px 30px -10px hsla(0, 0%, 14%, 0.1);

    /* border radius */
    --radius-circle: 50%;
    --radius-5: 5px;
    --radius-25: 25px;

    /* transition */
    --transition-1: 0.25s ease;
    --transition-2: 0.5s ease;
    --transition-3: 1s ease;
    --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
    --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);
}


*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    font-family: var(--montserrat-font);
}

ul{
    padding-inline: 0;
}

li{
    list-style: none;
}

a,
img,
span,
button,
ion-icon{
    display: block;
}

p{
    line-height: 3.4rem
}

a{
    color: inherit;
    text-decoration: none;
}

h1,h2{
    font-weight: 600;
}

button{
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
}


body::-webkit-scrollbar {
    width: 1rem;
}
  
body::-webkit-scrollbar-thumb {
  background: linear-gradient(#d3b098, #e9d1bf);
}
  
body::-webkit-scrollbar-track {
   background-color: #fff;
}

body{
    background-color: var(--primary-color);
}

::-moz-selection { /* Code for Firefox */
    color: var(--primary-color);
    background: #806e62;
  }
  
  ::selection {
    color: var(--primary-color);
    background: #806e62;
  }



.container{
    width: 85%;
    margin: 0 auto;
}

.section{
    padding-block: var(--section-padding);
}

main{
    overflow: hidden;
}

.primary_btn{
    margin: 0 50px 0 0 ;
	position: relative;
	text-decoration: none;
	width: 200px;
	padding: 10px 20px;
	font-size: 18px;
    font-weight: 300;
	font-weight: bolder;
	text-align: center;
	border: 2px solid #bd8966;
	color: #bd8966;
	background-color: transparent;
}

.primary_btn::after{
    display: block;
	content: "";
	width: 0%;
	height: 100%;
	background-color: var(--secondary-color);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: width 0.7s
}

.primary_btn:hover{
    color: #333;
}

.primary_btn:hover::after{
  width: 100%;
}


.btn_secondary{
    position: relative;
	padding: 16px 32px;
	background-color: #cba790;
	color: #333;
	font-family: verdana;
	font-size: 15px;
	border: none;
	overflow: hidden;
	cursor: pointer;
}

.btn_secondary::before{
	position: absolute;
	content: "";
	top: 0;
	left: -110%;
	bottom: 0;
	width: 50%;
	background-color: rgba(255,255,255,0.2);
	transform: skewX(-30deg);
	transition: left 0.7s ease-in-out;
}

.btn_secondary:hover::before{
	left: 120%;
}

.section_header_content{
    margin: 0 auto;
    text-align: center;
    font-size: 5rem;
    padding: 3.5rem;
}


/**************************************
             Header Menu  
***************************************/
.row{
	display: flex;
	flex-wrap: wrap;
}
.v-center{
	align-items: center;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
	display: block;
	width: 100%;
	padding-block: 18px;
    z-index: 1000;
    transition: 0.7s ease-in-out;
    height: 8rem;
}

.header.header-active{
    background-color: var(--secondary-color);
    box-shadow: 0 3px 3px rgba(0,0,0,0.1);
    transition: 0.7s ease-in-out;
    padding-block: 12px;
}

.header .item-left{
	flex:0 0 17%;
}

.header .logo img{
    width: 100px;
}

.header-active .logo img{
    width: 100px;
    margin-top: 1rem;
}

.header .item-center{
	flex:0 0 66%;
}
.header .item-right{
	flex:0 0 17%;
	display: flex;
	justify-content: flex-end;
}
.header .item-right a{ 
     text-decoration: none;
     font-size: 20px;
     color: var(--dark-color);
     display: inline-block;
     margin-left: 15px;
     transition: color 0.3s ease;
}

.header .menu > ul > li{
	display: inline-block;
	line-height: 50px;
	margin-left: 25px;
}
.header .menu > ul > li > a{
	font-size: 16px;
	font-weight: 500;
	color: var(--dark-color);
	position: relative;
	text-transform: capitalize;
	transition: color 0.3s ease;
}

.header.header-active .menu > ul > li > a{
    color: var(--dark-color);
}

.header.header-active a{
    color: var(--dark-color);
}

.header .menu > ul > li .sub-menu{
	position: absolute;
	z-index: 500;
	background-color:#ffffff;
	box-shadow: -2px 2px 70px -25px rgba(0,0,0,0.3); 
	padding: 20px 30px;
	transition: all 0.5s ease;
	margin-top:25px;
	opacity:0;
	visibility: hidden;
}


@media(min-width: 992px){

.header .menu > ul > li.menu-item-has-children:hover .sub-menu{
	margin-top: 0;
	visibility: visible;
	opacity: 1;
}
}

.header .menu > ul > li .sub-menu > ul > li{
	line-height: 1;
}
.header .menu > ul > li .sub-menu > ul > li > a{
	display: inline-block;
	padding: 10px 0;
	font-size: 15px;
	color: #454444;
	transition: color 0.3s ease;
	text-decoration: none;
	text-transform: capitalize;
}
.header .menu > ul > li .single-column-menu{
	min-width: 280px;
	max-width: 350px;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li{
   line-height: 1;
   display: block; 
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
	padding:10px 0;
	display: inline-block;
	font-size: 15px;
	color:#454444;
	transition: color 0.3s ease;
}
.header .menu > ul > li .sub-menu.mega-menu{ 
    left: 50%;
    transform: translateX(-50%);	
}

.header .menu > ul > li .sub-menu.mega-menu-column-4{
  max-width: 1100px;
  width: 100%; 	
  display: flex;
  flex-wrap: wrap;
  padding:20px 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item{
  flex:0 0 25%;
  padding:0 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title{
	font-size: 16px;
	color:#d6b299;
	font-weight: 500;
	line-height: 1;
	padding:10px 0;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title{
	text-align: center;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img{
	max-width: 100%;
	width: 100%;
	vertical-align: middle;
	margin-top: 10px;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,
.header .menu > ul > li .sub-menu > ul > li > a:hover,
.header .item-right a:hover,
.header .menu > ul > li:hover > a{
	color: #bd8f6d;
}

.mobile-menu-head,
.mobile-menu-trigger{
	display: none;
}


.menu_shop_all_products{    
    margin: 0 auto;
    margin-top: 6rem;
    padding: 6px;
}

.menu_shop_all_products.primary_btn{
    padding: 6px !important;
    font-size: 16px !important;
}


/*responsive*/
@media(max-width: 1160px){

	.header .item-center{
		order:3;
		flex:0 0 100%;
	}
	.header .item-left,
	.header .item-right{
		flex:0 0 auto;
	}
	.v-center{
		justify-content: space-between;
	}
	.header .mobile-menu-trigger{
		display: flex;
		height: 30px;
		width: 30px;
		margin-left: 15px;
		cursor: pointer;
		align-items: center;
		justify-content: center;
	}
	.header .mobile-menu-trigger span{
		display: block;
		height: 2px;
		background-color: var(--white-color);
		width: 24px;
		position: relative;
	}

    .header .mobile-menu-trigger span{
        background-color: #333;
    }

	.header .mobile-menu-trigger span:before,
	.header .mobile-menu-trigger span:after{
		content: '';
		position: absolute;
		left:0;
		width: 100%;
		height: 100%;
		background-color: var(--dark-color);
	}


	.header .mobile-menu-trigger span:before{
		top:-6px;
	}
	.header .mobile-menu-trigger span:after{
		top:6px;
	}
	.header .item-right{
		align-items: center;
	}

	.header .menu{
		position: fixed;
		width: 320px;
		background-color:#ffffff;
		left:0;
		top:0;
		height: 100%;
		overflow: hidden;
		transform: translate(-100%);
		transition: all 0.5s ease;
		z-index: 1099;
	}
    .header .menu > ul > li > a{
        color: #333;
    }
	.header .menu.active{
	   transform: translate(0%);	
	}
	.header .menu > ul > li{
		line-height: 1;
		margin:0;
		display: block;
	}
	.header .menu > ul > li > a{
		line-height: 50px;
		height: 50px;
		padding:0 50px 0 15px;
		display: block;
		border-bottom: 1px solid rgba(0,0,0,0.1);
	}
	.header .menu > ul > li > a i{
		position: absolute;
		height: 50px;
		width: 50px;
		top:0;
		right: 0;
		text-align: center;
		line-height: 50px;
		transform: rotate(-90deg);
	}
	.header .menu .mobile-menu-head{
		display: flex;
		height: 50px;
		border-bottom: 1px solid rgba(0,0,0,0.1);
		justify-content: space-between;
		align-items: center;
		position: relative;
		z-index: 501;
		position: sticky;
		background-color: #ffffff;
		top:0;
	}
	.header .menu .mobile-menu-head .go-back{
		height: 50px;
		width: 50px;
		border-right: 1px solid rgba(0,0,0,0.1);
		cursor: pointer;
		line-height: 50px;
		text-align: center;
		color:#000000;
		font-size: 16px;
		display: none;
	}
	.header .menu .mobile-menu-head.active .go-back{
		display: block;
	}
	.header .menu .mobile-menu-head .current-menu-title{
		font-size: 15px;
		font-weight: 500;
		color:#000000;
	}
	.header .menu .mobile-menu-head .mobile-menu-close{
	    height: 50px;
		width: 50px;
		border-left: 1px solid rgba(0,0,0,0.1);
		cursor: pointer;
		line-height: 50px;
		text-align: center;
		color:#000000;	
		font-size: 25px;
	}
	.header .menu .menu-main{
		height: 100%;
		overflow-x: hidden;
		overflow-y: auto;
	}
	.header .menu > ul > li .sub-menu.mega-menu,
	.header .menu > ul > li .sub-menu{
		visibility: visible;
		opacity: 1;
		position: absolute;
		box-shadow: none;
		margin:0;
		padding:15px;
		top:0;
		left:0;
		width: 100%;
		height: 100%;
		padding-top: 65px;
		max-width: none;
		min-width: auto;
		display: none;
		transform: translateX(0%);
		overflow-y: auto;
	}
.header .menu > ul > li .sub-menu.active{
	display: block;
}
@keyframes slideLeft{
	0%{
		opacity:0;
		transform: translateX(100%);
	}
	100%{
	    opacity:1;
		transform: translateX(0%);	
	}
}
@keyframes slideRight{
	0%{
		opacity:1;
		transform: translateX(0%);
	}
	100%{
	    opacity:0;
		transform: translateX(100%);	
	}
}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img{
		margin-top:0;
	}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title{
		margin-bottom: 20px;
	}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center:last-child .title{
		margin-bottom:0px;
	}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item{
		flex: 0 0 100%;
        padding: 0px;
	}
	.header .menu > ul > li .sub-menu > ul > li > a,
	.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a{
		display: block;
	}
	.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul {
		margin-bottom: 15px;
	}
	.menu-overlay{
		position: fixed;
		background-color: rgba(0,0,0,0.5);
		left:0;
		top:0;
		width: 100%;
		height: 100%;
		z-index: 1098;
		visibility: hidden;
		opacity:0;
		transition: all 0.5s ease;
	}
	.menu-overlay.active{
	  visibility: visible;
	  opacity:1;	
	}
}


@media screen and (max-width: 360px) {
    .header .logo a{
        font-size: 20px;
    }

    .header-active .logo img{
        width: 100px;
    }
}


.wish_count_container{
    position: relative;
}

.wish_count{
    position: absolute;
    top: -55%;
    left: 40%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ee752450;
    color: #000;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart_count_menu_container{
    position: relative;
}

.cart_count_menu{
    position: absolute;
    top: -55%;
    left: 40%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ee752450;
    color: #000;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}



/************************************************
                  Search Bar  
*************************************************/

#search-bar{
    background-color: #000000a6;
    width: 100%;
    height: 0;
    position: fixed;
    display: flex;
    z-index: 100000;
    border-radius: 0;
    bottom: 0;
    transition: all 0.5s ease;
 }

 #search-bar div:first-child{
    position: absolute;
    width: 44px;
    height: 44px;
    right: 0;
    background: linear-gradient(42deg, #efe2d9 0.01%, #ebcdb9 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.25em;
    border: 1.5px solid var(--secondary-color);
    color: #fff;
    margin: 30px;
    cursor: pointer;
 }

 #search-bar div:first-child:hover{
    background: inherit;
 }

 #search-bar form{
    border-radius: 50px;
    border: 1px solid #efe2d9;
    background: var(--primary-color);
    width: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
 }

 #search-bar form input{
    border-radius: 50px;
    background: var(--primary-color);
    border: none;
    outline: none;
    padding: 10px 20px;
    color: #333;
    font-size: 18px;
    width: 100%;
 }

 #search-bar form button{
    display: inline-block;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;;
    background-color: var(--secondary-color);
    font-size: 1.2rem;
    padding-inline: 6px;
    font-weight: 600;
    line-height: 22px;
    border-radius: 50px;
    border: 2px solid #bd8f6d;
    padding: 16px 38px 16px 38px;
 }

 @media screen and (max-width: 730px){
    #search-bar form{
        width: 80%;
    }
 }



/************************************************
                Home - Hero section  
*************************************************/
.home{
    margin-top: 6rem;
}

.home__swiper{
    position: relative;
    z-index: 10;
  }
  
  .home__article
  {
    position: relative;
    padding-top: 13rem;
    width: 100%;
    height: 100vh;
  }

  .home__article::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
  }
  
  .home__img,
  .home__shadow,
  .home__content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .home__img{
    object-fit: cover;
    object-position: center;
    z-index: -1;
  }
  
  .home__shadow{
    background-color: hsla(0, 0%, 0%, 0.05);
    z-index: -1;
  }
  
  .home__data{
     padding-top: 4rem;
     text-align: center;
  }
  
  .home__subtitle{
    font-size: 1.5rem;
    color: var(--white-color);
    margin-bottom: 0.5rem;
    z-index: 10;
  }
  
  .home__title{
    width: 100%;
    font-size: 3.5rem;
    color: var(--white-color);
    margin-bottom: 2.5rem;
    font-weight: 500;
  }
  
  .home__button{
    color: var(--white-color);
    font-size: 1.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.5rem;
    font-weight: 600;
  }
  
  .home__button i{
    font-size: 1.5rem;
    transition: transform 0.4s;
  }
  
  .home__button:hover i{
    transform: translateX(0.5rem);
  }
  
  .home__social{
    position: absolute;
    z-index: 10;
    left: 3.5rem;
    bottom: 4rem;
    display: grid;
    row-gap: 1.5rem;
  }
  
  a.home__social-link i{
    color: var(--white-color);
    font-size: 2.5rem;
  }
  
  /* Swiper class */
  .swiper{
    height: 100vh;
  }
  
  .swiper-pagination{
    color: var(--white-color);
    width: initial;
    height: max-content;
    top: 8rem;
    left: initial;
    right: 6rem;
    font-size: 3.5rem;
    font-weight: 600;
    display: flex;
    column-gap: 0.25rem;
    align-items: center;
  }
  
  .swiper-pagination-total{
    font-size: 1.8rem;
  }
  
  .swiper-button-prev::after,
  .swiper-button-next::after
  {
     content: '';
  }
  
  .swiper-button-prev,
  .swiper-button-next
  {
     font-size: 3rem;
     color: var(--white-color);
     width: initial;
     height: initial;
     position: initial;
     outline: none;
  }
  
  .swiper-navigation{
    position: absolute;
    z-index: 10;
    height: max-content;
    bottom: 4rem;
    right: 3.5rem;
    display: flex;
    column-gap: 5.5rem;
  }

    /* For large devices */
    @media screen and (min-width: 1150px){

        .home__data{
          text-align: initial;
        }
    
      
        .home__subtitle{
          margin-bottom: 1rem;
        }
      
        .home__title{
           font-size: 7rem;
           margin-bottom: 4.5rem;
           width: 75%;
        }
      
      
        .home__social{
          left: 20rem;
        }
      
        .swiper-pagination{
          top: 15rem;
          right: 20rem;
          font-size: 4.5rem;
        }
    
        .swiper-pagination-total{
          font-size: 2.5rem;
        }
      
        .swiper-navigation{
          right: 20rem;
          column-gap: 8.5rem;
        }
      
        .swiper-button-prev,
        .swiper-button-next{
          font-size: 3rem;
        }
    }
      
    /* For taller devices */
    @media screen and (min-width: 800px) and (min-height: 800px){
        
    .home__article{
        padding-top: 17rem;
    }
    
    .swiper-pagination{
        top: 13rem;
    }
    }


    @media screen and (max-height: 660px){
        .home__social{
            bottom: 0;
            left: 10rem;
        }
    }



/************************************************
            Home - our story section  
*************************************************/

.out_story_container{
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    position: relative;
}

.out_story_container-right img{
    width: 100%;
    height: 120vh;
    object-fit: cover;
}

.our_story_float_img{
    position: absolute;
    right: 30%;
    top: 30%;
    width: 400px;
    height: 400px;
    border: 10px solid var(--secondary-color);
}

.our_story_float_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.out_story_container-left{
    padding-left: 50px;
    padding-top: 100px;
}

.out_story_container-left h1{
    font-size: 10rem;
}

.out_story_container-left p{
    font-size: 1.8rem;
    width: 80%;
    margin-top: 3rem;
}

.out_story_container-left .primary_btn{
    margin-top: 100px;
}

@media screen and (max-width: 1490px) {
    .out_story_container-left p{
        width: 60%;
    }
}


@media screen and (max-width: 1250px) {
    .out_story_container-left h1{
        font-size: 10rem;
    }
}


@media screen and (max-width: 1110px) {
    .out_story_container-left h1{
        font-size: 9rem;
        text-align: center;
    }

    .out_story_container-left p{
        margin-top: 2rem;
        text-align: center;
        width: 90%;
    }

    .our_story_float_img{
        position: absolute;
        right: 25%;
        top: 25%;
        width: 350px;
        height: 350px;
    }

    .out_story_container{
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .our_story_float_img{
        display: none;
     }
}


@media screen and (max-width: 840px){

    .out_story_container-left h1{
        text-align: center;
        font-size: 8rem;
    }

    .out_story_container-right img{
        height: 60vh;
        width: 100%;
    }


    .out_story_container-left{
         padding-left: 0;
         padding-top: 50px;
         display: flex;
         flex-direction: column;
         align-items: center;
         justify-content: flex-start;
         height: 70vh;
    }

    .out_story_container-left p{
        width: 90%;
        text-align: center;
    }

    .out_story_container-left .primary_btn{
        margin-top: 50px;
    }
    .our_story_float_img{
       display: none;
    }
}

@media screen and (max-width: 780px){
    .out_story_container-left{
        height: auto;
    }
}


@media screen and (max-width: 450px){

    .out_story_container-left{
        height: auto;
    }

    .out_story_container-left h1{
        font-size: 5rem;
    }
}



/***************************************************
               Home section accordion 
****************************************************/

.accordion_images{
    padding-block: 12rem;
}

.img-accordion{
	width: 100%;
	height: 80vh;
	display: flex;
}

.img{
	flex: 1;
	height: 100%;
	/* transform: skew(5deg); */
	cursor: pointer;
	margin: 0 2px;
	transition: all 0.3s;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border: 1px solid #222;
	position: relative;
}


.img p{
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 10px;
	background-color: rgba(0,0,0,0.6);
	color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
	transform: rotate(-90deg);
	transform-origin: 0% 0%;
	transition: all 0.3s;
	text-transform: uppercase;
	white-space: nowrap;
}

.img-accordion:hover .img{
	transform: skew(0);
}

.img:hover{
	flex: 5;
}

.img:hover p{
	border: 2px solid #222;
	color: #fff;
	transform: rotate(0deg);
}

@media screen and (max-width: 700px){
    .section_header_content h2{
        font-size: 4rem;
    }

    .img-accordion{
        width: 100%;
        height: 80vh;
        display: flex;
        flex-direction: column;
    }

    .img p{
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 10px;
        background-color: rgba(0,0,0,0.6);
        color: #fff;
        font-size: 1.8rem;
        font-weight: bold;
        letter-spacing: 2px;
        transform: rotate(0deg);
        /* transform-origin: 0% 0%; */
        transition: all 0.3s;
        text-transform: uppercase;
        white-space: nowrap;
    }
}



/***************************************************
              Home new arrival section
****************************************************/
.Home_new_arrival_container{
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 2.5rem;
}

.home_new_arrival_imgs{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.home_arrival_img_con{
    height: 300px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.home_arrival_img_con:hover img{
    transform: scale(1.4);
    transition: all 0.4s ease-in-out;
}

.home_arrival_img_con img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.Home_new_arrival_content{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.Home_new_arrival_content h2{
   font-size: 5rem;
}

.Home_new_arrival_content p{
    font-size: 3rem;
}

.Home_new_arrival_content .btn_secondary{
    width: 60%;
    text-align: center;
    margin-top: 3rem;
}

@media screen and (max-width: 770px) {
    .Home_new_arrival_container{
       display: flex;
       flex-direction: column;
    }
}

@media screen and (max-width: 770px){
    .home_new_arrival_imgs{
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}


/***************************************************
                 Home Grid categories
****************************************************/

.home_grid_category_container{
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 5vw);
    grid-gap: 1.5rem; 
    margin-top: 10rem;
}

.home_grid_category_item_img_con{
    width: 100%;
    height: 100%;
}

.home_grid_category_item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease-in-out;
}


.home_grid_category_item{
   position: relative;
   transition: all 0.4s ease-in-out;  
   overflow: hidden;  
}

.home_grid_category_item:hover img{
    transform: scale(1.2);
}

.home_grid_category_btn .btn_secondary{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    background-color: rgba(230,205,185,0.8);
}

.home_grid_category_btn a{
    text-transform: uppercase;
}


.home_grid_category_item1 {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
}

.home_grid_category_item2 {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 3;
}

.home_grid_category_item3 {
    grid-column-start: 5;
    grid-column-end: 9;
    grid-row-start: 1;
    grid-row-end: 6;
}

.home_grid_category_item4 {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 3;
    grid-row-end: 6;
}

.home_grid_category_item5 {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 6;
    grid-row-end: 9;
}

.home_grid_category_item6 {
    grid-column-start: 5;
    grid-column-end: 9;
    grid-row-start: 6;
    grid-row-end: 9;
}


@media screen and (max-width: 830px) {
    .home_grid_category_container{
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .home_grid_category_item_img_con{
        height: 400px;
    }
}


/***************************************************
                 Home Flash Sale
****************************************************/

.flash_sale_container{
    width: 100%;
    height: 50vh;
    /* background-image: url('../images/flash_sale.jpg'); */
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.flash_sale__content h2{
   color: var(--white-color);
   font-size: 5rem;
   letter-spacing:0.5rem;
}

.flash_sale__content p{
    color: var(--white-color);
    font-size: 2.5rem;
}

.flash_sale__content .btn_secondary{
    width: 30%;
    margin: 1rem auto;
}

@media screen and (max-width: 510px){
    .flash_sale__content h2{
        font-size: 3rem;
    }
    .flash_sale__content p{
        font-size: 1.5rem;
    }
    .flash_sale__content .btn_secondary{
        width: 90%;
    }
}



/***************************************************
                 Home craft section
****************************************************/

.home_craft_container{
    display: flex;
    flex-direction: column;
    margin-top: 5rem;
}

.home_craft_content{
    background-color: #e6cdb9;
    padding: 5rem;
}

.home_craft_content .btn_secondary{
    width: 20%;
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.home_craft_content h2{
    font-size: 5rem;
    color: var(--dark-color);
}

.home_craft_content p{
    font-size: 2rem;
    color: var(--dark-color);
}

.home_craft_imgs{
    display: flex;
}

.home_craft_img_con{
    flex: 25%;
    height: 600px;
    position: relative;
}

.home_craft_img_con::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    background-color: rgba(0,0,0,0.5);
    transition: all 0.3s ease-in-out;
}

.home_craft_img_con:hover::after{
    transform: scale(1);
}

.craft_item_exp{
    position: absolute;
    padding: 2rem;
    top: 25%;
    z-index: 10;
    transform: scale(0);
    transition: all 0.3s 0.5s ease-in-out;
}

.craft_item_exp p{
    color: var(--white-color);
    text-align: center;
    font-size: 2rem;
}

.home_craft_img_con:hover .craft_item_exp{
    transform: scale(1);
}

.home_craft_img_con img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1180px){
    .home_craft_content .btn_secondary{
        width: 40%;
    }
}

@media screen and (max-width: 850px){
    .home_craft_content .btn_secondary{
        width: 60%;
    }

    .home_craft_imgs{
        display: flex;
        flex-wrap: wrap;
    }

    .home_craft_img_con{
        flex: 50%;
        height: 400px;
    }
}


@media screen and (max-width: 540px){
    .craft_item_exp p{
        color: var(--white-color);
        text-align: center;
        font-size: 1.5rem;
    }

    .home_craft_content h2{
        font-size: 3rem;
    }
}

@media screen and (max-width: 410px){
    .home_craft_img_con{
        flex: 100%;
    }

    .home_craft_content h2{
        font-size: 2rem;
    }
    
    .home_craft_content p{
        font-size: 1.4rem;
        line-height: 1.6;
    }
}



/***************************************************
                 Home all rugs section
****************************************************/

.all_rugs{
    margin-top: 4rem;
}

.all_rugs_container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.all_rugs_img_con{
    height: 700px;
}

.all_rugs_content{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.all_rugs_content h2{
   font-size: 5rem;
}

.all_rugs_content p{
    font-size: 1.8rem;
    line-height: 3.4rem;
}

.all_rugs_img_con img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.all_rugs_content .primary_btn{
    width: 50%;
}


@media screen and (max-width: 740px){
    .all_rugs_container{
        grid-template-columns: 1fr;
    }
}



@media screen and (max-width: 410px){

    .all_rugs{
        margin-top: 2.5rem;
    }

    .all_rugs_content h2{
        font-size: 3rem;
     }

     .all_rugs_content p{
        font-size: 1.3rem;
        line-height: 2.4rem;
        margin-block: 1rem;
    }

    .all_rugs_img_con{
        height: 400px;
    }

    .all_rugs_content .primary_btn{
        width: 100%;
    }    
}



/***************************************************
                 Home city section
****************************************************/
.home_city{
    margin-block: 10rem;
}
.home_city_container{
    height: 70vh;
    /* background-image: url('../images/hambutg_1.jpg'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home_city_content{
    width: 50%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    padding: 8rem;
    color: var(--white-color);
}

.home_city_content h2{
    font-size: 4rem;
    margin-bottom: 4rem;
    color: #fff;
}

.home_city_content p{
    font-size: 2.5rem;
}

.home_city_content div{
    margin-bottom: 3rem;
}

.home_city_container{
    height: auto;
}

@media screen and (max-width: 1280px){
    .home_city_content{
        width: 70%;
    }
}

@media screen and (max-width: 1100px){
    .home_city_content{
        width: 70%;
    }

    .home_city_container{
        height: auto;
    }
}

@media screen and (max-width: 820px){
    .home_city_content p{
       font-size: 1.8rem;
    }

     .home_city_content{
         width: 70%;
     }
}

@media screen and (max-width: 660px){
    .home_city_content{
        width: 100%;
    }
    .home_city_content h2{
        font-size: 2.2rem;
    }

    .home_city_content p{
        font-size: 1.5rem;
    }

}


@media screen and (max-width: 410px){
    
    .home_city_content{
        padding: 4rem;
    }
    
    .home_city_content h2{
        font-size: 2.2rem;
    }

    .home_city_content p{
        font-size: 1.5rem;
    }

    .home_city_container{
        height: auto;
    }
}






/***************************************************
                     Footer 
****************************************************/
footer{
    background-color: var(--secondary-color);
}

.footer_up{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--dark-color);
}

.footer_up_part:first-child{
    width: 33%;
}


.footer_up_part h2{
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.footer_up_part p{
    font-size: 1.8rem;
    margin-block: 2rem;
}

.footer_up_part li a{
    font-size: 1.8rem;
    margin-block: 1.6rem;
    transition: all 0.4s ease-in-out;
}

.footer_up_part li a:hover{
    letter-spacing: 3px;
}

.footer_up_part form{
    display: flex;
}

.footer_up_part form input{
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--dark-color);
    padding: 1rem 0.5rem;
    width: 80%;
    transition: all 0.4s ease-in-out;
}

.footer_up_part form input:focus,
.footer_up_part form input:focus-within{
    width: 80%;
}

.footer_up_part form button{
    font-size: 1.5rem;
}

.footer_up_part:nth-child(3) a{
   margin-bottom: 2rem;
   font-size: 2rem;
}

.footer_up_part:nth-child(3) a i{
    font-size: 2rem;
    margin-right: 0.5rem;
}

.footer_down{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-block: 1rem;
}

.footer_down p{
    font-size: 1.5rem;
}

.footer_card_container{
    display: flex;
    gap: 1rem;
}


.footer_card_container img{
    width: 70px;
    height: 40px;
    padding: 3px;
    object-fit: contain;
    /* border: 1px solid #fff9f9; */
}


@media screen and (max-width: 950px) {
    .footer_up_part:first-child{
        width: auto;
    }

    .footer_up{
        gap: 4rem;
    }
}

@media screen and (max-width: 950px) {
    .footer_card_container{
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
}




/***************************************************
               All About Rugs Page 
****************************************************/
.rugs_main_title{
    font-size: 6rem;
    text-align: center;
    margin-block: 4rem;
    margin-top: 20rem;
}


.rug_box_container{
    margin-top: 10rem;
}


.rug_box{
    display: flex;
    justify-content: space-between;
    gap: 8rem;
}

.rug_box_content{
    width: 48%;
}

.rug_box.rug_box_reverse{
    flex-direction: row-reverse;
}

.rug_box_content h2{
    font-size: 3rem;
    margin-bottom: 3rem;
}

.rug_box_content p{
    font-size: 1.8rem;
}

.rug_box_img{
    height: 600px;
    width: 48%;
    margin: 0 auto;
}

.rug_box_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 10px solid #bd8966;
    padding: 10px;
}

@media screen and (max-width: 880px){
    .rug_box{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 8rem;
    }

    .rug_box_content{
        width: 100%;
    }

    .rug_box_img{
        width: 100%;
        height: 500px;
    }

    .rug_box.rug_box_reverse{
        flex-direction: column;
    }
    
}



/***************************************************
               Contact Page 
****************************************************/

.contact_container{
    height: 120vh;
    background-image: url('../images/pattern.jpg');
    background-size: cover;
    background-position: center;

    display: grid;
    grid-template-columns: 1.2fr 0.7fr;
    gap: 1.5rem;
}

.contact_left{
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact_left form{
    width: 80%;
    background-color: var(--primary-color);
    padding: 16px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1),
                0px 0px 10px rgba(0, 0, 0, 0.1);
}

.form_group{
    width: 100%;
}

.contact_left form input{
    width: 100%;
    padding: 16px;
    background-color: transparent;
}

.contact_row{
    display: flex;
    gap: 1rem;
}

.contact_left form textarea{
    width: 100%;
    background-color: transparent;
    margin-block: 1rem;
    padding: 16px;
    height: 30vh;
}

.contact_left form textarea,
.contact_left form input{
    border: none;
    border: 1px solid var(--dark-color);
    resize: none;
    font-size: 16px;
}

.contact_left_content{
   text-align: center;
}

.contact_left_content h2{
   font-size: 4rem;
   font-weight: 500;
   margin-bottom: 2.5rem;
}

.contact_left_content p{
    line-height: 1.8;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact_left form textarea::placeholder,
.contact_left form input::placeholder{
   font-family: var(--montserrat-font);
   font-size: 16px;
}

.contact_left .btn_secondary{
    width: 100%;
    background-color: #b3998a;
}


.contact_right{
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact_right_box{
    width: 90%;
    background-color: var(--primary-color);
    padding: 16px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1),
                0px 0px 10px rgba(0, 0, 0, 0.1);
}

.contact_right_box ul li{
    border: 1px solid #555;
    color: #555;
    display: flex;
    justify-content: center;
    margin-block: 2rem;
    padding: 2.5rem;
    font-size: 1.7rem;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.contact_right_box ul li:hover{
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
}

.contact_right_box ul li span{
    margin-right: 1rem;
}

.contact_social_medias{
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.contact_social_medias a{
    font-size: 3rem;
    color: #555;
}

@media screen and (max-width: 1264px){
    .contact_right_box ul li{
        font-size: 1.4rem;
    }

    .contact_left_content h2{
        font-size: 3rem;
     }
     
     .contact_left_content p{
         font-size: 1rem;
     }
}


/*@media screen and (max-width: 1040px){*/
/*    .contact_right_box{*/
/*        width: 90%;;*/
/*    }*/
/*}*/

@media screen and (max-width: 1100px){
    .contact_container{
        height: 140vh;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact_right_box{
        width: 80%;;
    }
}

@media screen and (max-width: 350px){
    .contact_row{
        flex-direction: column;
    }
}


/************************************************
                  About Page   
*************************************************/

.about_us_title{
    font-size: 5rem;
    text-align: center;
    margin-block: 4rem;
    margin-top: 18rem;
    font-weight: 400;
}

.about_us_container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 5rem;
}

.about_us_img{
    height: 800px;
    width: 80%;
}

.about_us_img img{
   width: 100%;
   height: 100%;
   object-fit: cover;
   border: 10px solid #bd8966;
   padding: 1rem;
}

.about_us_content{
    text-align: center;
}

.about_us_content{
    font-size: 1.8rem;
    margin-block: 1.5rem;
    line-height: 1.5;
}

.about_us_video{
    height: 600px;
    margin-bottom: 15rem;
    margin-top: 5rem;
}

.about_us_video video {
    width: 100%;
    height: 600px;
    object-fit: cover;
}


@media screen and (max-width: 920px){
    .about_us_content p{
        font-size: 1.5rem;
    }
    .about_us_img{
        width: 100%;
    }
}


@media screen and (max-width: 750px){
    .about_us_container{
        grid-template-columns: 1fr;
    }
}



/************************************************
            Terms & Condition Page   
*************************************************/

.terms_title{
    font-size: 5rem;
    text-align: center;
    margin-block: 4rem;
    margin-top: 18rem;
}

.terms_container{
    width: 80%;
    margin: 0 auto;
    padding-block: 5rem;
}

.terms_container div{
    margin-block: 1rem;
    font-size: 1.8rem;
    line-height: 1.5;
}

.terms_container div h3{
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 600;
}


.terms_container div h4{
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.terms_container p{
    font-size: 1.5rem;
}

@media screen and (max-width: 780px){
    .terms_title{
        font-size: 4rem;
    }
}



/***************************************************
                  Contact Page 
****************************************************/

.form_design_container{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../images/pattern.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.form_design_container form{
    width: 35%;
    background-color: var(--primary-color);
    padding: 16px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1),
                0px 0px 10px rgba(0, 0, 0, 0.1);
}

.form_design_container form{
    text-align: center;
}

.form_design_container form h1{
    font-size: 3rem;
    font-weight: 400;
}

.form_design_container form input{
    border: none;
    border: 1px solid var(--dark-color);
    resize: none;
    font-size: 16px;
    width: 100%;
    padding: 16px;
    background-color: transparent;
}

.form_design_container form .form_group{
    margin-block: 1rem;
}

.form_design_container form .btn_secondary{
    width: 100%;
    background-color: #b3998a;
}


.form_design_container .form_essential{
    display: flex;
    justify-content: space-between;
    margin-block: 1.5rem;
    font-size: 1.4rem;
}

.form_design_container .form_essential a:hover{
 text-decoration: underline;
}

.form_design_container form input::placeholder{
   font-family: var(--montserrat-font);
   font-size: 16px;
}

@media screen and (max-width: 1080px) {
    .form_design_container form{
        width: 45%;
    }
}

@media screen and (max-width: 760px) {
    
    .form_design_container form{
        width: 60%;
    }
}

@media screen and (max-width: 590px) {
    
    .form_design_container form{
        width: 80%;
    }
}

@media screen and (max-width: 440px){
 
    .form_design_container .form_essential{
        flex-direction: column;
    }
}


/***************************************************
                  Blog Page 
****************************************************/

.blogs_container{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 5.5rem;
}

.blog_box_img_container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
}

.blog_box{
    width: 30%;
    margin-bottom: 4rem;
}

.blog_box h2{
    font-size: 2rem;
    margin-block: 2rem;
}

.blog_box p{
    line-height: 1.4;
    font-size: 1.7rem;
}

.blog_box span{
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: #bd8f6d;
}

.blog_box .btn_secondary{
    text-align: center;
    margin-top: 2rem;
}

@media screen and (max-width: 1300px) {
    .blog_box{
        width: 45%;
    }

    .blog_box p{
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 660px) {
    .blog_box{
        width: 100%;
    }

    .about_us_title{
        font-size: 4rem;
    }
}

@media screen and (max-width: 360px) {
    .about_us_title{
        font-size: 3rem;
    }
}


/***************************************************
                 Single Blog Page 
****************************************************/

.single_blog_container{
    padding-block: 20rem;
}

.single_blog_up h1{
    text-align: center;
    font-size: 3.5rem;
}

.single_blog_up span{
    text-align: center;
    color: #bd8f6d;
    font-size: 1.5rem;
    margin-bottom: 5rem;
}


.single_blog_up p,
.single_blog_down p{
    font-size: 2rem;
}

.single_blog_down{
    font-size: 2rem;
    line-height: 1.5;
}

.single_blog_down b{
    font-size: 1.5rem;
}

.single_blog_img_container{
    margin-block: 4rem;
    height: 60rem;
}

.single_blog_img_container img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.single_blog_down h1,
.single_blog_down h2,
.single_blog_down h3,
.single_blog_down h4,
.single_blog_down h5,
.single_blog_down h6{
    margin-bottom: 1rem;
}

.single_blog_down h2{
    font-size: 2.2rem;
}

.single_blog_down h3{
    font-size: 2.2rem;
}

.single_blog_down ul{
    margin-bottom: 1rem;
}

.single_blog_down  ul li{
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.blog_tag_container{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 2rem;

}

.blog_tag_container span{
    background-color: #b3998a;
    padding: 16px;
    border-radius: 4rem;
    font-size: 1.5rem;
}

/***************************************************
                     FAQ Page 
****************************************************/

.details-menu-faq{
    padding: 2em;
    width: 90%;
    max-width: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1.5em;
    color: #fff;
    padding-block: 5rem;
    margin: 0 auto;
 }
 
 .detail-item-faq{
     background: linear-gradient(135deg, #a57d63, #98765f);
     box-shadow: -1px -1px 0 #9ea3a5,
                 1px 1px 0 #7c7e7f;
     padding: 3.5rem !important;
     border-radius: 1em;
     cursor: pointer;
     transition: color 300ms;
     width: 100%;
 }
 
 .detail-title-faq, .detail-title-faq > div{
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 1em;
 }

 .detail-title-faq h2{
    margin: 0;
    color: #fff;
 }
 
 .detail-title-faq i{
     color: #efe2d9;
 }
 
 .detail-title-faq > div i{
     font-size: 1.5em;
 }
 
 .detail-btn-faq{
     background: none;
     border: none;
     font-size: 1.1em;
     color: #fff;
     cursor: pointer;
 }
 
 .details-faq{
     display: grid;
     grid-template-rows: 0fr;
     transition: grid-template-rows 500ms ease-in-out;
 }
 
 
 .details-faq > div {
     margin-top: 0;
     overflow: hidden;
     transition: margin-top 300ms;
 }
 
 .details-faq p{
     line-height: 25px;
     font-size: 1.4rem;
 }
 
 .details-faq p:not(.details p:last-child){
     margin-bottom: 1em;
 }
 
 
 /* classes will be added by javascript */
 .details-open-faq{
     grid-template-rows: 1fr;
 }
 
 .details-open-faq > div{
     margin-top: 1.5em;
 }
 
 .detail-item-faq-active{
     background: linear-gradient(90deg, #efe2d9 0%, #ebcdb9 50%, #d6b7a3 100%);
     color: #000;
 }

 .detail-item-faq-active .detail-title-faq h2{
    color: #000;
 }
 
 .detail-item-faq-active .detail-item-faq i{
     color: #000;
 }


 /***************************************************
                   whishlist page
 ****************************************************/

 .whishlist_container{
    padding-block: 10rem;
    display: flex;
    justify-content: flex-start;
    /* align-items: flex-start; */
    flex-wrap: wrap;
    gap: 3rem;
 }

 .whishlist_box_up{
    position: relative;
 }

 .whishlist_container .whishlist_box_up{
    width: 28%;
    margin-bottom: 5rem;
 }


 .whishlist_box{
    text-align: center;
 }


 .whishlist_box img{
   width: 100%;
   height: 450px;
   object-fit: contain;
 }

 .whishlist_box .product_name{
    font-size: 1.5rem;
 }

 .prices_box{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    gap: 1.5rem;
    font-size: 1.5rem;
 }

 .product_size{
    font-size: 1.5rem;
 }

 .discount_price{
    color: rgb(179, 30, 30);
 }

 /* .price{
    
 } */

 .discount_percent{
    position: absolute;
    top: -5%;
    right: 0;
    background-color: rgb(179, 30, 30, 0.5);
    color: #fff;
    padding: 16px;
    font-weight: bold;
    font-size: 1.5rem;
    border-radius: 1rem;
 }

 .remove_whish{
    position: absolute;
    top: -5%;
    left: 0;
    background-color: rgb(221, 54, 54);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    cursor: pointer;
 }

 @media screen and (min-width: 1740px){
    .discount_percent{
        right: 15%;
     }
    
     .remove_whish{
        left: 15%;
     }
 }


 @media screen and (max-width: 1320px){
    .remove_whish{
        left: 0;
        top: 0;
     }

     .discount_percent{
        top: 0;
     }
 }


 @media screen and (max-width: 1000px){
    .whishlist_container a{
        width: 30%;
     }
 }

 @media screen and (max-width: 800px){
    .whishlist_container a{
        width: 35%;
     }
 }

 @media screen and (max-width: 680px){
    .whishlist_container a{
        width: 49%;
     }

     .whishlist_container{
        justify-content: center;
     }
 }

 @media screen and (max-width: 530px){
    .whishlist_container{
        padding-block: 2rem;
     }
 }


 @media screen and (max-width: 460px){
    .whishlist_box img{
        width: 100%;
        height: 250px;
        object-fit: cover;
      }
 }


 /***************************************************
                   Products page
 ****************************************************/
 .product_banner{
      background-image: url('../images/all_carpets.jpg');
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      height: 70vh;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      background-attachment: fixed;
 }

 .product_banner::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
 }

 .product_banner h1{
    z-index: 10;
    font-size: 6rem;
    color: var(--white-color);
    font-weight: 500;
    letter-spacing: 2px;
 }



/************ price range ****************/

 .price-range-container {
    text-align: center;
    padding: 20px;
    /* background: #ffffff; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    /* border-radius: 10px; */
    width: 100%;
  }
  
  .price-range-container h2 {
    margin-bottom: 20px;
    color: #333;
  }
  
  .price-range-container .slider-container {
    position: relative;
    margin-bottom: 20px;
  }
  
  .price-range-container .slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #fafafa;
    outline: none;
    opacity: 0.8;
    transition: opacity 0.2s;
  }
  
  .price-range-container .slider:hover {
    opacity: 1;
  }
  
  .price-range-container .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #98765f;
    cursor: pointer;
  }
  
  .price-range-container .slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #98765f;
    cursor: pointer;
  }
  
  .price-range-container .price-display {
    font-size: 18px;
    color: #555;
    font-weight: bold;
    display: flex;
    justify-content: center;
    gap: 10px;
  }
 



.filter_box{
    padding: 1rem;
}

.filter_box form{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.filter_group{
    width: 30%;
    margin-bottom: 3rem;
}

.filter_group .btn_secondary{
    width: 100%;
}

.filter_box form select{
   width: 100%;
   padding: 16px;
   font-size: 2rem;
   background-color: #e5c7b4;
   color: #000;
   font-family: var(--montserrat-font);
   border-radius: 2rem;
   border: none;
   padding-left: 2rem;
   padding-right: 2rem;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.filter_box .btn_secondary{
    border-radius: 3rem;
    font-size: 2rem;
}



/********* size Range width ******** */

.size-range-container {
    text-align: center;
    padding: 20px;
    /* background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px; */
    width: 100%;
  }
  
  .size-range-container h2 {
    margin-bottom: 20px;
    color: #333;
  }
  
  .size-range-container .slider-container {
    position: relative;
    margin-bottom: 20px;
  }
  
  .size-range-container .slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #fafafa;
    outline: none;
    opacity: 0.8;
    transition: opacity 0.2s;
  }
  
  .size-range-container .slider:hover {
    opacity: 1;
  }
  
  .size-range-container .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #98765f;
    cursor: pointer;
  }
  
  .size-range-container .slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #98765f;
    cursor: pointer;
  }
  
  .size-range-container .size-display {
    font-size: 16px;
    color: #555;
    font-weight: bold;
    display: flex;
    justify-content: center;
    gap: 10px;
  }  
  /*********  ***********/



  /********* size Range Length ******** */
  .size-selector-box {
    text-align: center;
    padding: 20px;
    /* background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 12px; */
    width: 100%;
  }
  
  h2 {
    color: #333;
    margin-bottom: 20px;
  }
  
  .slider-wrapper {
    position: relative;
    margin-bottom: 15px;
  }
  
  .range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: #fafafa;
    border-radius: 5px;
    outline: none;
    opacity: 0.8;
    transition: all 0.3s;
  }
  
  .range-slider:hover {
    opacity: 1;
  }
  
  .range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #98765f;
    cursor: pointer;
  }
  
  .range-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #98765f;
    cursor: pointer;
  }
  
  .range-values {
    font-size: 16px;
    color: #555;
    font-weight: bold;
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  /******************* */


.products_container{
   display: grid;
   grid-template-columns: repeat(4,1fr);
   justify-content: center;
   align-items: center;
   gap: 2.5rem;
   padding-top: 10rem;
}

.product_box_up{
    position: relative;
}

.product_box{
    text-align: center;
    height: 500px;
    margin-bottom: 15rem;
}

.product_box img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product_box .discount_percent{
    position: absolute;
    top: -5%;
    right: 0;
    background-color: rgb(179, 30, 30, 0.5);
    color: #fff;
    padding: 16px;
    font-weight: bold;
    font-size: 1.5rem;
    border-radius: 1rem;
}

.product_name{
    font-size: 1.5rem;
}

.whish_btn{
    position: absolute;
    top: -5%;
    left: 0;
    background-color: rgb(221, 54, 54);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    cursor: pointer;
}


@media screen and (max-width: 1480px){
    .product_box .discount_percent{
        top: 0%;
    }
    .whish_btn{
        position: absolute;
        top: 0%;
    }
}

@media screen and (max-width: 1480px){
    .product_box .discount_percent{
        top: 10%;
    }

    .whish_btn{
        position: absolute;
        top: 10%;
    }
}


@media screen and (max-width: 1100px){
    .products_container{
        grid-template-columns: repeat(3,1fr);
     }
}


@media screen and (max-width: 780px){
    .products_container{
        grid-template-columns: repeat(2,1fr);
     }

     .filter_group{
        width: 45%;
        margin-bottom: 3rem;
    }
   
}


@media screen and (max-width: 530px){
    .products_container{
        grid-template-columns: 1fr;
     }

     .filter_group{
        width: 100%;
    }

    .product_box .discount_percent{
        top: 5%;
    }

    .whish_btn{
        position: absolute;
        top: 5%;
        left: 10%;
    }
   
}



/***************************************************
                single Product page
 ****************************************************/

 .single_product_main{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    justify-content: center;
    align-items: center;
    margin-top: 12rem;
    gap: 3rem;
 }

 .single-pro-image{
    display: grid;
    grid-template-columns: 0.3fr 1.5fr;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    align-self: flex-start;
 }

 .small-img-col img{
    width: 100%;
 }

 .small-img-group{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
 }

 .small-img-col{
    height: 150px;
    padding: 5px;
    cursor: pointer;
 }

 .small-img-col img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
 }

 .small-img.active{
    border: 2px solid #806e62;
 }

 #mainImage{
    height: 100%;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.3s ease;
 }

 #mainImage:hover{
    transform: scale(1.05);
 }

 .single_product_details h1{
    font-size: 5rem;
    font-weight: 500;
 }

 .single_product_details p{
    font-size: 1.7rem;
 }

 .single_product_price_box{
    display: flex;
    margin-block: 2rem;
    font-size: 2.5rem;
 }

 .single_main_price{
    margin-right: 4rem;
    text-decoration: line-through;
 }

 .single_dis_price{
    color: #C20000;
 }

 .single_product_details .btn_secondary{
    text-align: center;
    margin-block: 3rem;
 }

 .single_product_details ul{
    margin-top: 2rem;
 }

 .single_product_details li{
    margin-bottom: 2rem;
 }

 .single_product_details li strong{
    font-size: 1.5rem;
 }

 .single_product_details li span{
    font-size: 1.5rem;
 }

 .single_product_full_desc_head{
    font-size: 3rem;
    margin-bottom: 2rem;
 }

 .single_product_full_desc p{
    font-size: 1.5rem;
    margin-bottom: 3rem;
 }

 .single_product_full_desc ul{
    margin-bottom: 3rem;
 }

 .single_product_full_desc ul li{
    font-size: 1.5rem;
    margin-bottom: 1rem;
 }

 .single_product_full_desc h3{
    font-size: 1.5rem;
 }

 .single_product_extra_details{
    margin-top: 3rem;
 }

 .single_product_extra_details div{
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
 }

 .single_product_extra_details div i{
    font-size: 2rem;
 }

 .single_product_extra_details div span{
    font-size: 1.5rem;
 }


 @media screen and (max-width: 1100px){
    .single-pro-image{
        display: flex;
        flex-direction: column-reverse;
     }

     .small-img-group{
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
     }

     #mainImage{
        object-fit: contain;
     }
 }

 @media screen and (max-width: 900px){
    .single_product_main{
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 12rem;
        gap: 3rem;
     }

     #mainImage{
        object-fit: contain;
        width: 80%;
        margin: 0 auto;
     }

     .small-img-group{
        justify-content: center;
        width: 100%;
     }

 }


 /***************************************************
                     cart page
 ****************************************************/

 .cart_page_banner{
    background-image: url('../images/cart_banner.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
 }

 .cart_page_banner::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
 }

 .cart_page_banner h1{
    font-size: 8rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    z-index: 10;
    color: #fff;
 }


 .cart_page_container{
    display: grid;
    grid-template-columns: 1.5fr 0.5fr;
    gap: 3rem;
 }


 .cart_page_left table {
    border-collapse: collapse;
    width: 100%;
  }

  .cart_page_left td,
  .cart_page_left th {
    text-align: left;
    padding: 8px;
  }

  .cart_page_left thead{
    background-color: #98765f;
    color: #fff;
    font-size: 1.5rem;
    
  }

  .cart_page_left th{
    padding-block: 2rem;
  }

  .cart_page_left td{
    font-size: 1.5rem;
  }

  .product_qty_wrapper{
    display: flex;
  }

  .product_qty_wrapper button{
    display: inline-block;
    cursor: pointer;
    background-color: #98765f;
    text-align: center;
    color: #fff;
    width: 43px;
    height: 36px;
  }

  .product_qty_wrapper input{
    width: 43px;
    height: 36px;
    text-align: center;
    margin-inline: 5px;
  }

  .cart_page_right{
    background-color: #98765f;
    color: #fff;
    padding: 16px;
    border-radius: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    height: 600px;
  }

  .cart_page_right h3{
    font-size: 1.8rem;
    margin-bottom: 4rem;
  }

  .cart_page_right div{
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    font-size: 1.7rem;
  }

  .coupon_box form{
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
  }

  .coupon_box form input{
    padding: 16px;
    font-size: 1.4rem;
  }

  .coupon_box form button{
     color: #fff;
     background-color: #b58c70;
     padding: 10px;
     transition: all 0.3s ease-in-out;
  }

  .coupon_box form button:hover{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }

  .coupon_guest_message{
    margin-top: 1rem;
    display: flex;
    justify-content: center;
  }

  .coupon_guest_message span{
    color: rgb(164, 21, 21);
    /* margin-top: 10px; */
    margin-right: 10px;
    font-size: 2.5rem;
  }

  .coupon_guest_message p{
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .cart_page_right .btn{
    color: #fff;
    background-color: #b58c70;
    padding: 15px 10px;
    transition: all 0.3s ease-in-out;
    text-align: center;
    margin-top: 3rem;
    font-size: 2rem;
    letter-spacing: 1px;
    border-radius: 4rem;
  }

  .cart_page_right .btn:hover{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }


  @media screen and (max-width: 1030px){
    .cart_page_container{
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
     }
  }

  @media screen and (max-width: 1030px){
     .cart_page_banner h1{
        font-size: 5rem;
     }
  }

  @media screen and (max-width: 670px){
    .cart_page_left{
        overflow-x: auto;
    }
  }


/***************************************************
                products craft page
 ****************************************************/

 .product_banner_craft{
    background-image: url('../images/craft_banner.jpg');
 }


 .products_container_crafts .product_box{
    text-align: center;
    height: 300px;
    margin-bottom: 15rem;
}


/***************************************************
                     404 page
****************************************************/

.not_found_page_container{
    height: 100vh;
    background-image: url('../images/not_found_desert_shadow.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.not_found_content{
    text-align: center;
}

.not_found_content h1{
     font-size: 30rem;
     color: #ffffff6c;
}

.not_found_content h3{
    font-size: 2rem;
    color: #fff;
}

.not_found_content .btn_secondary{
    width: 40%;
    margin: 0 auto;
    margin-top: 2rem;
}


/***************************************************
                all  banner section
****************************************************/

.all_banner{
    width: 100%;
    /* height: 25vh; */
    background-color: var(--secondary-color);
    margin-bottom: 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.all_banner_container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.all_banner_box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.all_banner_box i{
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background-color: #cba790;
  padding: 16px;
  border-radius: 50%;
}

.all_banner_box p{
    font-size: 1.8rem;
}


@media screen and (max-width: 750px) {

    .all_banner{
        padding: 32px;
        /* height: 35vh; */
    }

    .all_banner_container{
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        justify-content: center;
        gap: 3rem;  
    }

    .all_banner_box{
        padding: 16px;
    }
    
    .all_banner_box i{
        font-size: 3rem;
        padding: 12px;
      }

    .all_banner_box p{
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 750px) {
    .all_banner_container{
        grid-template-columns: 1fr;
    }
}



/***************************************************
             Advertise banner section
****************************************************/

.advertise_banner_container{
    width: 100%;
    height: 500px;
    /* background-image: url('../images/banner_carpet.jpg'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}







/************************* toastr custom style  **********************/
.toast-message {
    font-size: 1.4rem; 
}

.toast-title {
    font-size: 20px; 
    font-weight: bold; 
}





/***************************************************
                multi language Page
***************************************************/

.translator_main_box img{
    width: 30px;
}


.translator_main_box{
    /* background-color: #fff; */
    background-color: var(--primary-color);
    border-radius: 10px;
    color: #000;
    width: 150px;
    padding: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99999;
    cursor: pointer;
}

.selected_translator{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    cursor: pointer;
}

.translator_all_list{
    /* background-color: #fff; */
    background-color: var(--primary-color);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1),
                      0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    color: #000;
    width: 150px;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 16px;
    position: absolute;
    bottom: 100%;
    left: 0;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.translator_all_list:hover{
    background-color: #fff;
}

.translator_all_list.active{
    opacity: 1;
    visibility: visible;
}

.translator_all_list.active a{
    background-color: transparent;
    color: #000;
}

.translator_box{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 15px;
    transition: all 0.4s ease-in-out;
}



/*********** pagination  ***************/

.pagination{
    display: flex;
    gap: 20px;
}

.pagination .page-item{
    background-color: var(--secondary-color);
    width: 35px;
    height: 35px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    border-radius: 50%;
    transition: all 0.3s;
    font-size: 1.6rem;
    cursor: pointer;
} 

.pagination .page-item:hover{
    background-color: #98765f;
}

.pagination .page-item.active{
    background-color: #98765f;
    color: #fff;
}

.pagination_btns{
    margin-block: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/***************************************************
                Flash Sale Page
****************************************************/
#clockdiv{
    font-family: sans-serif;
    color: #fff;
    display: inline-block;
    font-weight: 100;
    text-align: center;
    font-size: 55px;
    width: 100%;
    margin: 0 auto;
}

#clockdiv > div{
    padding: 50px;
    border-radius: 7px;
    background-color: var(--secondary-color);
    display: inline-block;
    color: #000;
}


#clockdiv div > span{
    padding: 65px;
    border-radius: 3px;
    background-color: var(--primary-color);
    display: inline-block;
    color: #000;
}

.smalltext{
    padding-top: 5px; 
    font-size: 25px;
}


/***************************************************
                Checkout Page
****************************************************/

.checkout_container{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.checkout_container h3{
    font-size: 2rem;
}

.checkout_left,
.checkout_right{
    padding: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.checkout_left_header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout_left_address_con{
  margin-top: 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.checkout_address_box{
    border: 1px solid #b3b0b0;
    width:48%;
    padding: 16px;
    height: 420px !important;
    overflow-y: auto;
    overflow-x: auto;
}

.checkout_address_box_radio{
    background-color: #b89a8593;
    padding: 8px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
}

.checkout_address_box_radio input{
    width: 1.5rem;
    height: 1.5em;
}

.checkout_address_box_radio input,
.checkout_address_box_radio label{
   cursor: pointer;
}

.checkout_address_box ul{
    margin-top: 1rem;
}

.checkout_address_box ul li{
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.checkout_address_box ul li strong{
    width: 30%;
}

/***********  ************/

.shipping_container .ship_box{
    display: flex;
    flex-direction: column;
    margin-block: 2rem;
}

.checkout_seperator{
    border-bottom: 1px solid rgb(169, 169, 169);
    width: 100%;
    height: 1px;
    margin-block: 3rem;
}

.shipping_container .ship_box div:nth-child(1){
    display: flex;
    align-items: center;
}

.shipping_container .ship_box div:nth-child(1) label{
   margin-left: 10px;
   font-size: 1.5rem;
   font-weight: 500;
   cursor: pointer;
}

.shipping_container .ship_box div:nth-child(1) input{
    width: 1.5rem;
    height: 1.5em;
    cursor: pointer;
}

.shipping_container .ship_box div:nth-child(2){
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 3rem;
    font-size: 12px;
    font-weight: bold;
    color: #757576;
}


.checkout_price_details div{
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.checkout_price_details_final{
    display: flex;
    flex-direction: column;
}

.subs_total_and_tax .tax{
    font-size: 12px;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: flex-start;
}

.subs_total_and_tax .tax strong{
    margin-right: 0.5rem;
}

.checkout_price_details_final span{
    font-weight: bold;
}



.checkout_terms{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.checkout_terms input{
    height: 1.8rem;
    width: 1.8rem;
}

.checkout_terms label{
    font-size: 1.5rem;
    margin-left: 1rem;
}

.checkout_terms label a{
    margin-top: 1rem;
    text-decoration: underline;
}

.checkout_right .btn_secondary{
    text-align: center;
}


@media screen and (max-width: 1210px) {
      
     .checkout_address_box{
          width:100%;
      }
      .checkout_right{
        height: 800px;
      }
}


@media screen and (max-width: 880px) {
    .checkout_container{
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .checkout_right{
        height: auto;
      }
}





/* The Modal (background) */
.modal_checkout {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    padding-top: 100px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
  }
  
  .modal_content_checkout {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
  }
  
  @-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
  }
  
  @keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
  }
  
  .close_checkout {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close_checkout:hover,
  .close_checkout:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
  
  .modal_header_checkout {
    padding: 2rem 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #b58c70;
    color: #fff;
  }

  .modal_header_checkout h2{
    font-size: 2rem;
    width: 50%;
  }
  
  .modal_body_checkout {padding: 2px 16px;}
  


  /****** checkout form  *******/
  .checkout_form_row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }

  .modal_body_checkout form{
    width: 80%;
    margin: 0 auto;
    padding-block: 3rem;
  }

  .checkout_form_group{
    width: 100%;
  }

  .checkout_form_row input,
  .checkout_form_row select{
    width: 100%;
    margin-block: 2rem;
    padding: 16px;
    font-size: 1.5rem;
    border: none;
    border-bottom: 1px solid #555;
    transition: all 0.4s ease-in-out;
  }

  .checkout_form_row input:focus,
  .checkout_form_row select:focus{
    border-bottom: 1px solid #b58c70;
  }

  .modal_body_checkout .btn_secondary{
    width: 30%;
    text-align: center;
    margin-top: 1.5rem;
  }

  @media screen and (max-width: 750px) {
    .checkout_form_row{
        flex-wrap: wrap;
    }
  }

  @media screen and (max-width: 630px) {
    .modal_body_checkout .btn_secondary{
        width: 60%;
      }
  }



/***************************************************
                  Payment Page
****************************************************/

.payment-page {
    background: #ffffff;
    width: 90%;
    /* max-width: 800px; */
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 1.5rem;
    overflow: hidden;
  }
  
  .tabs-section {
    display: flex;
    background: #ebcdb9;
  }
  
  .tab-button {
    flex: 1;
    padding: 10px;
    font-size: 2rem;
    color: white;
    border: none;
    background: rgb(185, 153, 132);
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .tab-button.active, .tab-button:hover {
    background: #ebcdb9;
  }
  
  .content-section {
    padding: 20px;
  }
  
  .tab-content {
    display: none;
  }
  
  .tab-content.active {
    display: block;
  }
  
  .tab-content h2 {
    margin: 0 0 10px;
  }
  
  .tab-content p {
    margin: 0 0 20px;
  }
  
  .tab-content .payment_btn {
    display: inline-block;
    background: #98765f;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: background 0.3s ease;
  }
  
  .tab-content .payment_btn:hover {
    background: #806e62;
  }
  
  .summary-section {
    background: #f8f9fa;
    padding: 20px;
    border-top: 1px solid #ddd;
  }
  
  .summary-section h2 {
    margin-bottom: 15px;
  }
  
  .summary-item, .summary-total {
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
    font-size: 1.5rem;
  }
  
  .summary-total {
    font-weight: bold;
    font-size: 1.8rem;
  }


  /* *************************************** */


.text-danger{
    color: red;
    font-size: 14px;
}

.captch_group {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    margin-top: 2rem;
}

.captch_group div{
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: 5px;
    gap: 10px;
    font-size: 20px;
    border: 1px solid #c3c1c1;
}

input.random_num{
    border-radius: 0;
    width: 70% !important;
    padding-left: 1rem;
}

.captcha_error{
    display: block;
    color: red;
    font-size: 1.4rem;
}


/***************************************************
                  track order Page
****************************************************/

/* Container */
.track-order-container {
    max-width: 75%;
    margin: 15rem auto;
    padding: 20px;
    background: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Header */
.track-order-header {
    padding-bottom: 20px;
    border-bottom: 2px solid #ddd;
}

.track-order-header h1 {
    margin: 0;
    font-size: 3rem;
    color: #333;
}

.track-order-header p {
    margin: 10px 0 0;
    color: #555;
    font-size: 1.5rem;
}

/* Form */
.track-order-form {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.track-order-form input {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.track-order-form .btn-track-order {
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.track-order-form .btn-track-order:hover {
    background-color: #0056b3;
}

/* Order Status */
.order-status {
    text-align: left;
    margin-top: 20px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.order-status h2 {
    margin: 0 0 10px;
    color: #333;
    font-size: 2.5rem;
}

.order-status ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.order-status li {
    margin: 5px 0;
    color: #555;
}

.order-status li{
    font-size: 1.4rem;
}

.order-status li:nth-child(3){
    text-decoration: underline;
}

/* Order Progress */
.order-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}

.progress-step {
    text-align: center;
    flex: 1;
}

.progress-step img {
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
}

.progress-step p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.progress-step.completed img {
    filter: grayscale(0);
    opacity: 1;
}

.progress-step.active img {
    filter: grayscale(0);
    opacity: 1;
}

.progress-step img {
    filter: grayscale(100%);
    opacity: 0.5;
}

.progress-step.completed p,
.progress-step.active p {
    color: #333;
}

/* Hidden Class */
.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .order-progress {
        flex-direction: column;
    }

    .progress-step {
        margin-bottom: 15px;
    }
}



/***************************************************
                  track order Page
****************************************************/
.not_access_request_whole_container{
    height: 100vh;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../images/pattern.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.error-container {
    width: 60%;
    text-align: center;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.error-container h1 {
    font-size: 8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.error-container p {
    font-size: 2em;
    color: #555555;
    margin-bottom: 30px;
}


@media screen and (max-width: 950px) {
    .error-container {
        width: 80%;
        padding: 60px;
    }
}






/***************************************************
            payment success Page
****************************************************/

/* Container */
.success-container {
    max-width: 70%;
    margin: 150px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Header */
.success-header {
    background-color: #b3998a;
    color: #ffffff;
    padding: 20px;
    border-radius: 10px 10px 0 0;
}

.success-header h1 {
    margin: 0;
    font-size: 1.8em;
}

/* Success Message */
.success-message {
    margin: 20px 0;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 15px auto;
}

.success-message h2 {
    margin: 10px 0;
    font-size: 2.5rem;
    color: #28a745;
}

.success-message p {
    color: #555;
    font-size: 1.5rem;
}

/* Order Details */
.order-details {
    margin: 20px 0;
    text-align: left;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
}

.order-details h3 {
    margin: 0 0 10px;
    color: #333;
}

.order-details ul {
    list-style: none;
    padding: 0;
}

.order-details li {
    margin: 5px 0;
}

/* Actions */
.success-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.btn-payment-success {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.btn-track {
    background-color: #b3998a;
    color: #ffffff;
}

.btn-track:hover {
    background-color: #9f8677;
}

.btn-continue {
    background-color: #b3998a;
    color: #ffffff;
}

.btn-continue:hover {
    background-color: #9f8677;
}

/* Responsive Design */
@media (max-width: 768px) {
    .success-actions {
        flex-direction: column;
    }

    .btn-payment-success {
        width: 100%;
    }
}















