@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
*{
    box-sizing: border-box;
}
body{
	color: #000;
	font-family: "Lexend", sans-serif;
	font-size: 15px;
	line-height: 22px;
	font-weight: 400;
	margin:0;
}
main{
	min-height: 600px;
}
@media only screen and (max-width: 767px) {
    body {
        font-size: 14px;
        line-height: 24px;
    }
}
.container{
	width:100%;
	max-width:1620px;
	padding:0 50px;
	margin:0 auto;
}
@media only screen and (max-width: 1300px) {
	.container{
		padding:0 20px;
	}
}
.text-center{
	text-align: center;
}


.d-flex{
	display: flex;
}
.justify-content-start{
	justify-content: flex-start;
}
.justify-content-between{
	justify-content: space-between;
}
.justify-content-end{
	justify-content: flex-end;
}
.align-items-start{
	align-items: flex-start;
}
.align-items-center{
	align-items: center;
}
.align-items-end{
	align-items: flex-end;
}
.flex-wrap{
	flex-wrap:wrap;
}

a{
	text-decoration: unset;
	color:inherit;
}
.mb__100{
	margin-bottom: 100px;
}
.mb__50{
	margin-bottom: 50px;
}
.mb__25{
	margin-bottom: 25px;
}
.pt__50{
	padding-top: 50px;
}
.hidden-xs{
	display:block;
}
.visible-xs{
	display:none;
}
@media only screen and (max-width: 767px) {
	.hidden-xs{
		display:none;
	}
	.visible-xs{
		display:block;
	}
	.mb__100{
		margin-bottom: 50px;
	}
	.pt__50{
		padding-top: 30px;
	}
}

input:focus,
select:focus{
	outline:none;
}
.position-relative{
	position: relative;
}
/* btn css start*/
.btn{
	font-size: 18px;
	color: #ffffff;
	font-weight: 600;
	background: #fdc0bf;
	border:1px solid #fdc0bf;
	height: 44px;
	line-height: 43px;
	min-width: 180px;
	padding:0 20px;
	display: inline-block;
	text-transform: capitalize;
	border-radius: 0;
	text-decoration: unset;
	cursor: pointer;
	border-radius: 6px;
	text-align: center;
}
.btn-gray{
	font-size: 18px;
	color: #ffffff;
	font-weight: 600;
	background: #7185a8;
	border:1px solid #7185a8;
	height: 44px;
	line-height: 43px;
	min-width: 180px;
	padding:0 20px;
	display: inline-block;
	text-transform: capitalize;
	border-radius: 0;
	text-decoration: unset;
	cursor: pointer;
	border-radius: 6px;
	text-align: center;
}

.btn:hover,
.btn:focus{
	background: #7185a8;
	color:#fff;
	border-color: #7185a8;
}

.btn-gray:hover,
.btn-gray:focus{
	background: #fdc0bf;
	color:#fff;
	border-color: #fdc0bf;
}
@media only screen and (max-width: 767px) {
	.btn{
		height:40px;
		line-height: 39px;
		font-size: 15px;
	}
}
/* btn css end*/

/* Title css start */
.section__header{
	margin:0 0 30px;
}
.title_name{
	font-size:36px;
	line-height: 46px;
	margin:0 0 15px;
	font-weight: 600;
}
@media only screen and (max-width: 767px) {
	.title_name{
		font-size:28px;
		line-height: 38px;
	}
	.section__header{
		margin:0 0 20px;
	}
}
/* Title Css end*/

/* Table css start*/
.table_div_d::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}
.table_div_d::-webkit-scrollbar{
	width: 6px;
	background-color: #F5F5F5;
}
.table_div_d::-webkit-scrollbar-thumb{
	background-color: #666;
}
.table_div_d {
    overflow-x: scroll;
    width: 100%;
}
.table{
	background: #fff;
	margin: 0;
	width: 100%;
	max-width: 100%;
	border-spacing: 0;
}
.table thead{
	background: #fdc0bf;
}
.table thead th{
	border-bottom: none;
    font-size: 15px;
    color: #ffffff;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    vertical-align: middle;
    min-width: 110px;
    padding:10px;
}
.table thead th:after{
	position: absolute;
    content: "";
    width: 1px;
    height: 65%;
    right: 0;
    background: #fff;
    top: 50%;
    transform: translate(0, -50%);
}
.table thead th:last-child:after{
	display:none;
}
.table td{
	font-size: 15px;
	padding: 10px;
	text-align: center;
}
.table-striped>tbody>tr:nth-of-type(even) {
    background-color: #f4f2f2;
}
@media only screen and (max-width: 767px) {
	.table thead th{
		min-width: 170px;
	}
}
/* Table css end*/

/* Swiper buttons css start*/
.arrows_d .swiper-button-prev,
.arrows_d .swiper-button-next{
	width: 40px;
	height: 40px;
	border:1px solid #eaeaea;
	border-radius: 100%;
	position: absolute;
	top:50%;
	transform: translateY(-50%);
}
.arrows_d .swiper-button-prev{
	background: #fff url(../images/left_arrow.png)no-repeat scroll center center;
	background-size: 20px;
	left:-50px;
}
.arrows_d .swiper-button-next{
	background: #fff url(../images/right_arrow.png)no-repeat scroll center center;
	background-size: 20px;
	right:-50px;
}
.arrows_d .swiper-button-prev:after,
.arrows_d .swiper-button-next:after{
	display: none;
}
@media only screen and (max-width: 1300px) {
	.arrows_d .swiper-button-prev{
		left:-15px;
	}
	.arrows_d .swiper-button-next{
		right:-15px;
	}
}
/* Swiper buttons css end*/

/* Annoucment bar sec start*/
.announcementSec{
	padding: 5px 0;
	background:#ffbfc0;
	text-align: center;
}
.announcementSec .quotes11{
	display:none;
	color:#fff;
	text-transform: uppercase;
}
/* Annoucment bar sec end*/

/* header css start*/
header{
	border-bottom:1px solid #eaeaea;
}
header ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
header .header_inner{
	padding: 7px 0;
	display: flex;
	justify-content: space-between;
}
header .logo__d{
	width:180px;
}
header .logo__d img{
	max-width:110px;
	width:100%;
	display: block;
}
header .nav-search__input-group{
	width:calc(100% - 380px);
	display: flex;
	align-items: center;
}
header .nav-search__input-group form{
	width: 100%;
	position: relative;
	max-width: 500px;
}
header .nav-search__input{
	height: 45px;
	background-color: #f5f6f7;
	border: 1px solid #f5f6f7;
	padding: 0 15px 0 45px;
	border-radius: 0;
	width: 100%;
	color: #818386;
	font-size: 16px;
	line-height: 23px;
	font-weight: 400;
}
textarea,
select,
 input::placeholder{
	font-family: "Lexend", sans-serif;
}
header .nav-search__submit{
	position: absolute;
	left: 0;
	height: 45px;
	border: none;
	background: transparent;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	top:0;
}
header .nav-search__submit img{
	width:20px;
}
header .search-dropdown{
	position: absolute;
    background: #fff;
    border: 1px solid #eaeaea;
    width: 100%;
    z-index: 1000;
    max-height: 300px;
    display:none;
    overflow-y: auto;
    padding:20px;
}
header .search-dropdown .popularSearch h5{
	font-size: 16px;
	font-weight: 600;
	margin:0 0 10px;
}
header .search-dropdown .popularSearch li{
	display: inline-block;
}
header .search-dropdown .popularSearch a{
	display: inline-block;
	padding: 3px 7px;
	border-radius: 5px;
	background: #f7f7f7;
	margin: 3px;
	font-size: 14px;
}
header .search-dropdown .popularSearch a:hover{
	color:#7584a3;
}
header .h_site_icons{
	width:180px;
	display: flex;
	align-content: center;
	justify-content: flex-end;
}
header .h_site_icons ul{
	display: flex;
	align-items: center;
	gap:14px;
}
header .h_site_icons a{
	padding:0 5px;
}
header .h_site_icons .acc_dropdown_menu{
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	background: white;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	list-style: none;
	padding: 10px;
	margin: 0;
	z-index: 1000;
	border-radius: 6px;
	min-width:200px;
}
header .h_site_icons .acc_dropdown_menu.show{
	display: block;
}
header .h_site_icons .acc_dropdown_menu li{
	border-bottom:1px solid #f5f5f5;
}
header .h_site_icons .acc_dropdown_menu li:last-child{
	border-bottom:none;
}
header .h_site_icons .acc_dropdown_menu a{
	display: block;
	padding: 5px 0;
}
header .h_site_icons .acc_dropdown_menu a:hover{
	color:#7584a3;
}
header .mob_search{
	display: none;
}
header .menu-drawer{
    border-top:1px solid #eaeaea;	
}
header nav{
	width: 100%;
	max-width: 1520px;
	padding: 0 20px;
	margin: 0 auto;
}
header nav ul{
	display: flex;
	flex-wrap:wrap;
	justify-content: center;
}
header nav li{
	margin:0 10px;
	position: relative;
}
header nav li a{
	color: #000;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 400;
	padding:10px 0;
	text-decoration: unset;
	display:inline-block;
}
header nav li a:hover{
	color:#7584a3;
}
header .dd_arrow{
	width:20px;
	height:10px;
	display:inline-block;
	background:url(../images/down-arrow.png)no-repeat scroll center center;
	background-size: 15px;
}
header nav .nav_dropdown{
	display:none;
	position: absolute;
	left: 0;
	width: 300px;
	background:#fff;
	border:1px solid #eaeaea;
	border-radius: 5px;
	z-index: 9;
	text-align: left;
	padding:10px 0;
}
header nav ul > li:hover .nav_dropdown.sub_list_nav{
	display:block;
}
header nav ul > li > ul > li{
	border-bottom:1px solid #f5f5f5;
}
header nav ul > li > ul > li > a{
	font-size: 15px;
	padding:5px 0;
	width:calc(100% - 20px);
}
header nav ul > li > ul > li:last-child{
	border-bottom:unset;
}
header nav ul > li > ul.sub_list_nav > li{
	position:relative;
	display: flex;
    justify-content: space-between;
    align-items: center;
}
header nav .nav_dropdown.hasSubDropdown{
	display: none;
}
header nav ul > li ul.sub_list_nav.nav_dropdown > li:hover .sub_sub_list_nav.nav_dropdown{
	display: block;
	left:286px;
	top:-1px;
}
header .header_menu_icon{
	display: none;
}
header .close_d{
	display:none;
}

@media only screen and (min-width: 1200px) {
	header .hasSubDropdown.dd_arrow{
		    transform: rotate(-90deg);
	}
}
@media only screen and (max-width: 1199px) {
	header .logo__d img{
		max-width: 80px;
	}
	header .header_menu_icon{
		display: block;
	}
	header .menu-drawer{
		position: fixed;
		top: 0;
		width: 320px;
		right: 0;
		transition: .4s;
		transform: translate(100%);
		visibility: hidden;
		z-index: 9;
		background: #fff;
		height:100vh;
		padding:20px;
	}
	.menuOpen header .menu-drawer{
		transform: translate(0);
		visibility: visible;
		overflow-y: scroll;
	}
	header .overlay_menu{
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, .36);
		visibility: hidden;
		/*transition: all .1s linear;*/
		z-index: 2;
		transform: translate(100%);
	}
	.menuOpen header .overlay_menu{
		transform: translate(0);
        visibility: visible;
        overflow-y: scroll;
	}
	header .close_d{
		text-align: right;
		display: flex;
		justify-content: flex-end;
	}
	header .close_d span{
		width:40px;
		height: 40px;
		display: block;
	}
	header .close_d svg path{
		fill:#000;
	}
	header nav{
		padding:0;
	}
	header nav ul{
		justify-content: flex-start;
	}
	header nav li{
		width:100%;
		margin: 0;
		border-bottom: 1px solid #ffffff5e;
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;	
	}
	header nav .nav_dropdown{
		position: unset;
		width: 100%;
		padding: 0 0 0 16px;
		border: none;
		background: transparent;
	}
	header nav ul > li{
		border-bottom: 1px solid #f5f5f5;
	}
	header nav ul > li > ul > li > a{
		padding:10px 0;
	}
}
@media only screen and (max-width: 767px) {
	header .logo__d{
		width:90px;
	}
	header .h_site_icons a{
		max-width:30px;
		display: block;
	}
	header .h_site_icons{
		width: calc(100% - 120px);
	}
	header .mob_search{
		display:block;
	}
	header .site_header{
		position: relative;
	}
	header .nav-search__input-group{
		position: absolute;
		bottom: -40px;
		left: 0;
		right: 0;
		width: calc(100% - 40px);
		margin: 0 auto;
		display: none;
		z-index:9;
	}
	.searchOpen header .nav-search__input-group{
		display:block;
	}
	header .nav-search__input{
		font-size: 14px;
		line-height: 21px;
	}
}
/* header css end*/

cart-drawer{
	position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    background-color: #12121280;
    transition: visibility 0.2s ease;
    visibility: hidden;
}
.cart__open cart-drawer{
	visibility: visible;
}
cart-drawer .cart-drawer__overlay{
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
cart-drawer .drawer__inner{
	height: 100%;
    width: 40rem;
    max-width: calc(100vw - 3rem);
    border: 1px solid #f7f7f7;
    border-right: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translate(100%);
    transition: transform .2s ease;
    background:#fff;
}
.cart__open cart-drawer .drawer__inner {
    transform: translate(0);
}
cart-drawer .drawer__header{
	padding: 30px;
	background: #f5f5f5;
	z-index: 10;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
cart-drawer .drawer__heading{
	margin:0;
	font-size: 24px;
	line-height: 32px;
}
cart-drawer .drawer__close{
	background: transparent;
	margin: 0;
	border: none;
	cursor: pointer;
}
cart-drawer .cart_details{
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: auto;
}
cart-drawer .cart_item{
	display: flex;
	justify-content: space-between;
	margin:0 0 15px;
}
cart-drawer .cart_item .cart_item_left{
    width: 120px;
}
cart-drawer .product-thumbnail img{
	width:100%;
}
cart-drawer .cart_item_right{
    width: calc(100% - 140px);
}
cart-drawer .cart_item .cart_item_title{
	font-size: 16px;
	line-height: 24px;
	margin: 0 0 10px;
}
cart-drawer .cart_item .cart_item_price{
	font-size: 18px;
    line-height: 26px;
    margin: 0 0 9px;
}
cart-drawer .cart_item .cart_compare_price{
	padding-left: 5px;
	text-decoration: line-through;
	color:#999;
}
cart-drawer .cart_item .cart_item_remove{
	color:#999;
	text-decoration: underline;
	text-transform: capitalize;
}
cart-drawer cart-drawer-items{
	padding:30px;
	overflow: auto;
	flex: 1;
}
cart-drawer .cart-drawer__footer{
	border-top: 1px solid #eaeaea;
	padding:30px;
}
cart-drawer .cart-drawer__footer .totals{
	font-size: 22px;
	display: flex;
	justify-content: space-between;
	font-weight: 700;
	margin-bottom: 20px;
}
cart-drawer .cart__buttons .btn{
	width:100%;
	margin-top: 10px;
}
cart-drawer .btn.checkout_btn{
    background: #7185a8;
    border: 1px solid #7185a8;
}
cart-drawer .btn.checkout_btn:hover, 
cart-drawer .btn.checkout_btn:focus{
    background: #fdc0bf;
    border: 1px solid #fdc0bf;
}
@media only screen and (max-width: 767px) {
	cart-drawer .drawer__header{
		padding: 15px;
	}
	cart-drawer cart-drawer-items{
		padding:15px;
	}
	cart-drawer .drawer__heading{
		font-size: 20px;
		line-height: 28px;
	}
	cart-drawer .cart_item .cart_item_left{
		width: 90px;
	}
	cart-drawer .cart_item_right{
		width: calc(100% - 110px);
	}
	cart-drawer .cart_item .cart_item_title{
		font-size: 15px;
		line-height: 23px;
	}
	cart-drawer .cart_item .cart_item_price{
		font-size: 14px;
		line-height: 24px;
		margin: 0 0 7px;
	}
	cart-drawer .cart-drawer__footer{
		padding:20px 15px;
	}
	cart-drawer .cart-drawer__footer .totals{
		font-size: 18px;
		margin:0 0 10px;
	}
}
/* Cart Drawer css start*/

/* Cart Drawer css end*/

/* Footer css start*/
footer{
	background: #f7f7f7;
	padding: 50px 0;
}
footer .main_footer_cols{
	margin:0 -10px;
}
footer .footer_column{
	padding:0 10px;
	width:20%;
	margin:0 0 30px;
}
footer h3{
    font-weight: 600;
    margin: 0 0 18px;
    font-size: 20px;
    line-height: 28px;
    animation: auto;
    text-transform: capitalize;
}
footer ul{
	list-style: none;
	padding:0;
	margin:0;
}
footer ul li,
footer p{
	margin:0 0 15px;
}
footer .widget_footer a{
	text-decoration: unset;	
	color:#000;
	display: block;
}
footer .widget_footer a:hover{
	color:#7584a3;
}
footer .f_social_icons{
	display: flex;
	align-items: center;
	justify-content: center;
}
footer .f_social_icons li{
	margin:0 13px;
}
footer .f_social_icons a svg:hover path{
	fill:#7584a3;
}
@media only screen and (max-width: 1199px) {
	footer .footer__logo img{
		max-width: 120px;
	}
}
@media only screen and (max-width: 1023px) {
	footer .footer_column{
		width:33.33%;
	}
}
@media only screen and (max-width: 767px) {
	footer{
		padding:40px 0 20px;
	}
	footer .main_footer_cols{
		margin:0;
	}
	footer .footer_column{
		width:100%;
		padding:0;
	}
	footer .footer__logo{
		text-align: center;	
	}
	footer .footer__logo img{
		margin: 0 auto;
		max-width: 160px;
	}
	footer .footer_column{
		border-bottom: 1px solid #d7d7d7;
		margin:0 0 10px;
	}
	footer .footer_column:first-child{
		border-bottom:unset;
	}
	footer h3{
		margin: 0;
		padding: 10px 0;
		background: url(../images/plus.png) no-repeat scroll right center;
		background-size: 14px;
		font-size: 17px;
		font-weight: 400;
	}
	footer .footer_column.active h3{
		background: url(../images/minus.png) no-repeat scroll right center;
		background-size: 14px;
	}
	footer .widget_footer{
		padding:5px 0 10px;
		display:none;
	}
	footer .footer_column.active .widget_footer{
		display: block;
	}
	footer .widget_footer p:last-child{
		margin:0;	
	}
	footer .footer_btm{
		margin-top: 30px;
	}
}
/* Footer css end*/

/* main slideshow css start*/
.h_mainSlider .item_d img{
	width:100%;
	object-fit: cover;
    height: 550px;
}
.h_mainSlider .swiper{
	position: relative;
}
.h_mainSlider .swiper-dots-pagination{
	bottom:15px;
	position: absolute;
	left: 0;
	right:0;
	margin:0 auto;
	z-index: 9;
	text-align: center;
}
.h_mainSlider .swiper-dots-pagination .swiper-pagination-bullet{
	width:13px;
	height:13px;
	border:2px solid #d7d7d7;
	background:#fff;
	border-radius: 100%;
	opacity: 1;
	margin:0 8px;
}
.h_mainSlider .swiper-dots-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
	background: #d7d7d7;
}
/* main slideshow css end*/

/* Category Sec css start*/
.categorySec .threeBlocks_d{
    max-width: 901px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    column-gap: 16px;
    padding-top: 5px;
}
.categorySec .threeBlocks_d > div{
	flex:1;
}
.categorySec .item_d {
    position: relative;
    overflow: hidden;
}
.categorySec .item_d a{
	display: block;
}
.categorySec .img_d{
	position: relative;
}
.categorySec .img_d:after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%; 
	background: linear-gradient(to top, rgb(0 0 0 / 50%), rgba(255, 255, 255, 0));
	pointer-events: none; 
}
.categorySec .img_d img {
    max-width: 100%;
    transition: transform 1s;
}
.categorySec .item_d h4 {
    position: absolute;
    bottom: 0;
    width: 100%;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    color: #fff;
    padding: 14px;
    z-index: 1;
    margin:0;
}
.categorySec .item_d:hover .img_d img {
    transform: scale(1.3);
}
.categorySec .middle_d .item_d:first-child, 
.categorySec .right_d .item_d:first-child {
    margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
	.categorySec .threeBlocks_d .right_d .item_d:first-child {
		max-width: 248px;
	}
}
@media screen and (max-width: 767px) {
	.categorySec .threeBlocks_d{
		flex-wrap: wrap;
	}
    .categorySec .threeBlocks_d > div {
        flex: unset;
        width: 100%;
    }
    .categorySec .item_d {
        margin: 0 0 16px;
        width: 100%;
    }
    .categorySec .middle_d .item_d, 
    .categorySec .right_d .item_d {
        width: calc(50% - 8px);
    }
    .categorySec .middle_d, 
    .categorySec .right_d {
        display: flex;
        justify-content: space-between;
    }
    .categorySec .item_d h4{
    	font-size:14px;
    	line-height: 20px;
    }
}
/* Category Sec css end*/

/* Img with text sec css start*/
.imgWithTextSec{
	background:#fdc0bf1a;
}
.imgWithTextSec .two_block{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.imgWithTextSec .two_block > div{
	width:50%;
}
.imgWithTextSec .img_d img{
	width:100%;
	display: block;
}
.imgWithTextSec .content_d{
	padding:50px;
}
.imgWithTextSec h5{
	margin: 0 0 10px;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 400;
	letter-spacing: 1px;
}
.imgWithTextSec .desc{
	margin: 0 0 20px;
}
.imgWithTextSec .info_d{
	max-width:700px;
}
@media screen and (max-width: 767px) {
	.imgWithTextSec .two_block > div{
		width:100%;
	}
	.imgWithTextSec .content_d{
		padding:30px 20px;
		text-align: center;
	}
}
/* Img with text sec css end*/

/* Customer Reviews Sec css start*/
.customerReviewsSec{
	padding:100px 0;
	background:#fdc0bf1a;
}
.customerReviewsSec .swiper-slide{
	height:auto;
	transform: scale(0.9);
}
.customerReviewsSec .swiper-slide.swiper-slide-active{
	transform: scale(1);
}
.customerReviewsSec .item__d{
	border:1px solid #eaeaea;
	padding:30px;
	background: #fff;
	text-align: center;
	height:100%;
}
.customerReviewsSec .rating_star{
	margin:0 0 10px;
}
.customerReviewsSec .r_title{
	margin: 0 0 13px;
	font-size: 22px;
	line-height: 30px;
	color:#7584a3;
}
.customerReviewsSec .r_quote{
	font-size: 16px;
	margin: 0 0 16px;
}
.customerReviewsSec .r_author{
	font-size: 16px;
	color:#666;
}
@media screen and (max-width: 767px) {
	.customerReviewsSec{
		padding:50px 0;
	}
	.customerReviewsSec .item__d{
		padding:20px 10px;
	}
	.customerReviewsSec .r_title{
		margin: 0 0 10px;
		font-size: 18px;
		line-height: 26px;
	}
}
/* Customer Reviews Sec css end*/

/* Icon With text sec css start*/
.iconTextSec{
	padding: 50px 0;
	background: #fdc0bf1a;
}
.iconTextSec .inner_d{
	display:flex;
	justify-content: space-between;
	margin:0 -20px;
}
.iconTextSec .item_d{
	width:33.33%;
	padding:0 20px;
	text-align: center;
}
.iconTextSec .icon_d{
	text-align: center;
	margin:0 0 12px;
}
.iconTextSec .icon_d img{
	width:70px;
	margin:0 auto;
}
.iconTextSec h4{
	margin:0 0 10px;
	font-size: 22px;
	line-height: 30px;
	font-weight: 600;
}
.iconTextSec p{
	margin:0;
}
@media screen and (max-width: 767px) {
	.iconTextSec .inner_d{
		gap:25px;
		flex-wrap: wrap;
	}
	.iconTextSec .item_d{
		width:100%;
	}
	.iconTextSec h4{
		margin: 0 0 5px;
		font-size: 18px;
		line-height: 26px;
	}
}
/* Icon with text sec css end*/

/* Brand Logos sec css start*/
.brandsSec{
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}
.brandsSec .bl_list{
    display: inline-block;
    animation: 50s slideLogos infinite linear;
    padding:5px 0;
}
.brandsSec .bl_list img{
  height: auto;
  max-height: 22px;
  margin: 0 40px;
  vertical-align: middle;
  max-width: 100%;
}
@keyframes slideLogos {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}
@media only screen and (max-width: 767px) {
  .brandsSec .bl_list img{
    height: auto;
    max-height: 22px;
    margin: 0 20px;
  }
}
/* Brand Logos sec css end*/

/* Breadcrumb css start*/
.breadcrumb .breadcrumb__list{
    margin: 0;
    padding: 0;
    list-style: none;
}
.breadcrumb .breadcrumb__list li{
	text-transform: capitalize;
}
/* Breadcrumb Css end*/

/* Product Card Css Start*/
.featuredCollections .inner__d{
	position: relative;
} 
.product_card .product_inner{
	border:1px solid #eaeaea;
	padding: 15px;
	background: #fff;
	border-radius: 10px;
}
.product_card .card__inner{
	position: relative;
}
.product_card .product_img img{
	max-width: 100%;
	margin:0 auto;
	opacity:1;
	transition: opacity .8s ease;
	display: block;
}
.product_card .product_img.hoverSecImg .thumb_img{
	display:block;
	opacity:1;
}
.product_card .product_img .hover_img{
	display:none;
	opacity: 0;
}
.product_card:hover .product_img.hoverSecImg .thumb_img{
	display:none;
	opacity:0;
}
.product_card:hover .product_img.hoverSecImg .hover_img{
	opacity:1;
	display:block;
}
.product_card .card__inner .badge{
	position: absolute;
	left:0;
	top:5px;
	width: auto;
	display: inline-block;
	padding: 1px 7px;
	background: #d7d7d7;
	color:#000;
	font-size: 12px;
	text-transform: uppercase;
}
.product_card .card__inner .badge.new_badge{
	left:5px;
	right:auto;
	background: green;
	color:#fff;
}
.product_card .card__inner .badge.sale_badge{
	background: red;
	color:#fff;
	right:5px;
	left:auto;
}
.product_card .card__content{
	padding:15px 0;
}
.product_card .card__heading{
	font-size: 18px;
	line-height: 26px;
	margin:0 0 9px;
	height: 52px;
	overflow:hidden;
}
.product_card .card__price{
	font-size: 16px;
}
.product_card .compare_price{
	color:#999;
	text-decoration: line-through;
	padding-left: 5px;
}
.product_card .card__add_btn .btn{
	width:100%;
}
@media only screen and (max-width: 580px) {

}
@media only screen and (max-width: 580px) {
	.product_card .product_inner{
		padding:10px;
	}
	.product_card .btn{
		padding:0 5px;
		min-width: 80px;
	}
	.product_card .card__heading{
		font-size: 15px;
		line-height: 22px;
		height: 24px;
		overflow: hidden;
	}
	.product_card .card__price {
	    font-size: 14px;
	}
	.product_card .card__inner .badge{
		font-size: 10px;
		line-height: 14px;
	}
}
/* Product Card Css end*/

/* collection page css start */
.collections .collection__header{
	background:#fdc0bf0f;
	padding:50px 0;
	margin:0 0 80px;
}
.collection_toolbar{
	margin:0 0 40px;
}
.collection_toolbar .collectionTbBtn{
	flex:1;
}
.collection_toolbar .sorting_text{
	text-align: right;
}
.collection_toolbar .sorting_text select{
	height: 40px;
	border: 1px solid #eaeaea;
	padding: 0 10px;
	color: #666;
	font-size: 15px;
	font-weight: 400;
	font-family: "Lexend", sans-serif;
}
.collection_toolbar .filter_btn{
	width: auto;
	border: 1px solid #eaeaea;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 100px;
	gap: 6px;
	color: #666;
	font-weight: 400;
	cursor: pointer;
}
.collections .product__list{
	margin:0 -15px;
	row-gap:50px;
}
.collections .product_card{
	padding:0 15px;
	width:25%;
}

/* pagination css start*/
.pagination {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  flex-wrap: wrap;
  margin-top:50px;
}
.pagination a {
  color: #333;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color 0.3s;
  border: 1px solid #ddd;
  margin: 0 4px 8px;
  border-radius: 4px;
}

.pagination a.active {
  background-color: #fdc0bf;
  color: white;
  border: 1px solid #fdc0bf;
}
.pagination a:hover:not(.active) {
  background-color: #fdc0bf;
  color:#fff;
  border-color: #fdc0bf;
}
/* pagination css end*/
@media only screen and (max-width: 1199px) {
	.collections .product_card{
		width:33.33%;
	}
}
@media only screen and (max-width: 767px) {
	.collection_toolbar{
		gap:10px;
	}
	.collections .collection__header{
		padding:30px 0;
		margin:0 0 50px;
	}
	.collections .product_card{
		width:50%;
		padding:0 5px;
	}
	.collections .product__list{
		margin:0 -5px;
	}
	.collection_toolbar .filter_btn{
		max-width: 100%;
		width:100%;
	}
	.collection_toolbar .sorting_text select{
		width:100%;
	}
}
@media only screen and (max-width: 580px) {
	.collections .product__list{
		row-gap:20px;
	}
}
/* collection page css end*/

/* collection filter drawer css start*/
facets-drawer{
	position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    background-color: #12121280;
    transition: visibility 0.2s ease;
    visibility: hidden;
}
.filter__open facets-drawer{
	visibility: visible;
}
facets-drawer .filter-drawer__overlay{
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
facets-drawer .drawer__inner{
	height: 100%;
    width: 40rem;
    max-width: calc(100vw - 3rem);
    border: 1px solid #f7f7f7;
    border-right: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translate(100%);
    transition: transform .2s ease;
    background:#fff;
}
.filter__open facets-drawer .drawer__inner {
    transform: translate(0);
}
facets-drawer .drawer__header {
    padding: 30px;
    background: #f5f5f5;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
facets-drawer .drawer__heading {
    margin: 0;
    font-size: 24px;
    line-height: 32px;
}
facets-drawer .drawer__close {
    background: transparent;
    margin: 0;
    border: none;
    cursor: pointer;
}
facets-drawer .filter_details {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: auto;
}
facets-drawer filter-drawer-items{
	overflow: auto;
	flex: 1;
	padding: 30px;
}
facets-drawer filter-drawer-items h2{
	margin: 0 0 10px;
	font-size: 16px;
	line-height: 26px;
}
facets-drawer filter-drawer-items .checkbox-control{
	margin:0 0 8px;
	display:flex;
}
facets-drawer filter-drawer-items .checkbox-control input{
	margin-right: 5px;
}
facets-drawer .cart-drawer__footer {
    border-top: 1px solid #eaeaea;
    padding: 30px;
}
facets-drawer .cart-drawer__footer .btn{
	width:100%;
}
@media only screen and (max-width: 767px) {
	facets-drawer .drawer__header{
		padding: 15px;
	}
	facets-drawer .drawer__heading{
		font-size: 20px;
		line-height: 30px;
	}
	facets-drawer filter-drawer-items{
		padding:15px;
	}
	facets-drawer .cart-drawer__footer{
		padding:15px;
	}
}
/* collection filter drawer css end*/

/* Product page css start*/
.product_section{
	padding:50px 0 0;
}
.product_section .breadcrumb{
	margin-bottom: 20px;
}
.product_section .product{
	display:flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.product_section .product > div{
	width:calc(50% - 30px);
}
.product_section .product__media{
	text-align: center;
}
.product_section .product__media .img_d{
	border:1px solid #eaeaea;
	border-radius: 10px;
	overflow:hidden;
}
.product_section .product__media img{
	max-width: 100%;
	margin:0 auto;
	display: block;
}
.product_section .product__title{
	margin: 0 0 17px;
	font-size: 26px;
	line-height: 36px;
	font-weight: 700;
}
.product_section .product__price{
	font-size: 22px;
	line-height: 30px;
	font-weight: 700;
	margin:0 0 17px;
}
.product_section .product__price .compare_price{
	color: #999;
	text-decoration: line-through;
	padding-left: 5px;
}
.product_section .product_desc{
	font-size: 16px;
	line-height: 26px;
	margin:0 0 20px;
}
.product_section .product__quantity{
	margin:0 0 25px;
}
.product_section .product__quantity label{
	margin: 0 0 5px;
	display: block;
	font-weight: 600;
}
.product_section .quantity_input{
	display: flex;
	border: 1px solid #eaeaea;
	max-width: 140px;
}
.product_section .quantity_input .quantity-input__button{
	width: 40px;
	height: 50px;
	background: transparent;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.product_section .quantity_input .qty_minus{
	border-right: 1px solid #eaeaea;
}
.product_section .quantity_input .qty_plus{
	border-left: 1px solid #eaeaea;
}
.product_section .quantity_input .quantity-input__element{
	width: 60px;
	height:50px;
	border:none;
	text-align: center;
	font-size: 16px;
	cursor: pointer;
}
.product_section .quantity_input .quantity-input__element::-webkit-outer-spin-button,
.product_section .quantity_input .quantity-input__element::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.product_section .add_btn{
	margin:0 0 25px;
}
.product_section .add_btn .btn{
	width:100%;
}
.product_section .product_meta > div{
	margin:0 0 10px;
	font-size: 16px;
}
.product_section .product_meta > div span:first-child{
	font-weight: 600;
}
@media only screen and (max-width: 991px) {
	.product_section .product > div{
		width:calc(50% - 15px);
	}
}
@media only screen and (max-width: 767px) {
	.product_section{
		padding:30px 0 0;
	}
	.product_section .product > div{
		width:100%;
	}
	.product_section .product__media{
		margin:0 0 30px;
	}
	.product_section .product__title{
		font-size: 22px;
		line-height: 30px;
	}
	.product_section .product__price{
		font-size: 18px;
		line-height: 26px;
	}
	.product_section .product_desc{
		font-size: 15px;
		line-height: 25px;
	}
	.product_section .quantity_input .quantity-input__button,
	.product_section .quantity_input .quantity-input__element{
		height:40px;
	}
	.product_section .product_meta > div{
		font-size: 15px;
	}
}
/* Product Page css end*/

/* Login Register page css start*/
.form_data{
	margin:0 0 15px;
}
.form_data input,
.form_data select,
.form_data textarea{
	height:40px;
	border:1px solid #000;
	width:100%;
	padding: 0 10px;
	font-size: 15px;
	background:#fff;
}
.form_data textarea{
	height:100px;
	padding-top: 10px;
	padding-bottom: 10px;
}
.form_data label{
	width:100%;
	display:block;
	margin:0 0 4px;
}
.loginRegisterPage{
	margin:80px 0 100px;
}
.loginRegisterPage .box_content{
    max-width: 500px;
    margin: 0 auto;
    background: #fdc0bf0f;
    border-radius: 10px;
    overflow: hidden;
    padding: 30px;
}
 .loginRegisterPage .action_btn{
 	margin:40px 0 20px;
 }
.loginRegisterPage form a{
 	text-decoration: underline;
 }
.loginRegisterPage a:not(.btn):hover {
  color: #7584a3;
}
 .loginRegisterPage.register_page .box_content{
 	max-width:100%;
 }
 .loginRegisterPage.register_page .inner_form{
 	display:flex;
 	flex-wrap:wrap;
 	justify-content: space-between;
 }
  .loginRegisterPage.register_page .inner_form > div{
  	width:48%;
  }
 @media only screen and (max-width: 767px) {
 	.loginRegisterPage .box_content{
 		padding:30px 20px;
 	}
 	.loginRegisterPage {
	    margin: 50px 0;
	}
	.loginRegisterPage .action_btn{
		margin:30px 0 0;
	}
	.loginRegisterPage.register_page .inner_form > div{
	  	width:100%;
	 }
 }
/* Login Register page css end*/

/* Profile page css start */
.profile__page .profile__top_sec{
	display:flex;
	align-items: center;
}
.profile__page .profile__top_sec .barcode_box{
	background: white;
	padding: 10px;
	text-align: center;
}
.profile__page .profile__top_sec .customer__name_d{
	padding-left: 22px;
	font-size: 15px;
}
.profile__page .profile__top_sec .customer__name_d span{
	color: #666;
	text-transform: capitalize;
}
.profile__page .tabs_p{
	padding:0;
	margin:0 0 30px;
	list-style: none;
	display: flex;
	justify-content: center;
	gap:15px;
}
.profile__page .tabs_p li{
	font-size: 18px;
    color: #fdc0bf;
    font-weight: 600;
    background: transparent;
    border: 1px solid #fdc0bf;
    height: 44px;
    line-height: 43px;
    min-width: 120px;
    padding: 0 20px;
    display: inline-block;
    text-transform: capitalize;
    border-radius: 0;
    text-decoration: unset;
    cursor: pointer;
    border-radius: 6px;
    text-align: center;
}
.profile__page .tabs_p li:hover,
.profile__page .tabs_p li.active{
	background: #fdc0bf;
	color:#fff;
}
.profile__page .title_name{
    font-size: 20px;
    line-height: 30px;
    background: #fdc0bf;
    padding: 7px 5px;
}
.benefitsReward__d ul{
	padding: 0;
	margin: 0 0 20px;
	list-style: none;
	display: flex;
	justify-content: center;
	gap:10px;
}
.benefitsReward__d ul li{
	background:#fdc0bf;
	padding: 9px 20px;
	color:#fff;
	cursor: pointer;
	border-radius: 6px;
}
.benefitsReward__d .tab_container{
	padding:15px 10px;
	background: #fff;
}
.benefitsReward__d .three_btns{
	margin:0 0 20px;
}
.benefitsReward__d .trade_btn{
	padding: 0 15px;
	height: 40px;
	line-height: 40px;
	border: 1px solid #fdc0bfd1;
	background: #fdc0bfd1;
	color: #fff;
	text-align: center;
	font-weight: 700;
	font-size: 15px;
	min-width: 120px;
	margin: 0 6px 5px 0;
	cursor: pointer;
	border-radius: 6px;
}
.benefitsReward__d .trade_btn:hover{
	border-color: #fdc0bf;
	background:#fdc0bf
}
.toggleCheckBtn{
	display: flex;
    align-items: center;
    font-weight: 500;
    margin:0 0 10px;
}
.toggleCheckBtn label{
	margin-right: 9px;
}
.toggleCheckBtn .switch {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 40px;
}
.toggleCheckBtn .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggleCheckBtn .slider_d {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  -webkit-transition: .4s;
  transition: .4s;
  border:1px solid #707070;
}
.toggleCheckBtn .slider_d:before {
	position: absolute;
	content: "NO";
	height: 38px;
	width: 40px;
	left: 0px;
	bottom: 0;
	background-color:#f7f7f7;
	-webkit-transition: .4s;
	transition: .4s;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 400;
	color: #000;
	font-size: 14px;
}
/*.toggleCheckBtn input:checked + .slider_d {
  background-color: var(--black);
}*/
.toggleCheckBtn input:focus + .slider_d {
  box-shadow: 0 0 1px #2196F3;
}
.toggleCheckBtn input:checked + .slider_d:before {
	content: "YES";
  -webkit-transform: translateX(40px);
  -ms-transform: translateX(40px);
  transform: translateX(40px);
  background-color: #fdc0bf;
  left:-2px;
  color:#fff;
}
.profile__page .table_div {
	margin-top: 40px;
}
.profile__page .table_div_d {
    overflow-x: scroll;
    width: 100%;
}
 @media only screen and (max-width: 767px) {
	.profile__page .profile__top_sec{
		flex-wrap: wrap;
		justify-content: center;
		gap: 15px;
		text-align: center;
	}
	.profile__page .profile__top_sec .customer__name_d{
		padding:0;
		width:100%;
	}
	.profile__page .tabs_p li{
		height: 40px;
        line-height: 39px;
        font-size: 15px;
	}
}
/* Profile page css end*/

/* cart page css start*/
.cart__page{
	padding:50px 0 0;
}
.cart__page .cart__inner{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.cart__page .cart__left{
	width:calc(100% - 410px);
}
.cart__page .cart__right{
	width:380px;
}
.cart__page .cart_items_header{
	display: flex;
	font-size: 15px;
	font-weight: 400;
	padding: 10px 0;
	border-bottom: 1px solid #eaeaea;
	color: #666;
}
.cart__page .cart_items_header .header_product{
	flex:1;
}
.cart__page .cart_items_header .header_quantity{
	width:150px;
	text-align: center;
}
.cart__page .cart_items_header .header_total{
    width: 120px;
    text-align: right;
}
.cart__page .cart_item{
	display: flex;
	align-items: flex-start;
	padding: 20px 0;
	border-bottom: 1px solid #eaeaea;
	align-items: center;
}
.cart__page .cart_item .cart_item_img{
	width: 120px;
	height: auto;
	margin-right: 20px;
}
.cart__page .cart_item .cart_item_img img{
	width:100%;
	object-fit: cover;
	display: block;
}
.cart__page .cart_item .product_details {
    flex: 1;
}
.cart__page .cart_item .cart_actions{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-left: 30px;
	width: 150px;
}
.cart__page .quantity_input{
	display: flex;
	border: 1px solid #eaeaea;
	max-width: 140px;
	margin:0 0 15px;
}
.cart__page .quantity_input .quantity-input__button{
	width: 40px;
	height: 50px;
	background: transparent;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.cart__page .quantity_input .qty_minus{
	border-right: 1px solid #eaeaea;
}
.cart__page .quantity_input .qty_plus{
	border-left: 1px solid #eaeaea;
}
.cart__page .quantity_input .quantity-input__element{
	width: 60px;
	height:50px;
	border:none;
	text-align: center;
	font-size: 16px;
	cursor: pointer;
}
.cart__page .quantity_input .quantity-input__element::-webkit-outer-spin-button,
.cart__page .quantity_input .quantity-input__element::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.cart__page .cart_item .remove_link a{
	text-decoration: underline;
}
.cart__page .cart_item .remove_link a:hover{
	color: #7584a3;
}
.cart__page .cart_item .total_price{
	width: 120px;
	text-align: right;
	font-weight: bold;
	font-size: 15px;
}
.cart__page .cart_item .product_title{
	font-size: 16px;
    line-height: 24px;
    margin: 0 0 10px;
}
.cart__page .cart_item .product-price{
	margin-bottom:10px;
}
.cart__page .cart_recap{
	background:#fdc0bf0f;
	padding:30px 20px;
	border-radius: 10px;
}
.cart__page .cart_recap .cartsummaryD{
	display: flex;
	justify-content: space-between;
	margin: 0 0 25px;
	font-size: 15px;
	font-weight: 500;
	gap:10px;
}
.cart__page .cart_recap .cartsummaryD.total__d{
	font-size: 20px;
}
.cart__page .cart_recap select{
	font-size: 15px;
    font-weight: 500;
    width: 100%;
    min-width: 100px;
    max-width: 193px;
    height: 30px;
    border-radius: 0;
    padding: 0 5px;
}
.cart__page .cart_recap .action_btn .btn{
	width:100%;
}
.cart__page .coupon_update_d{
	margin:30px 0 0;
}
.cart__page .coupon_update_d .coupon{
	display: flex;
	align-items: center;
	gap:10px;
}
.cart__page .coupon_update_d .form_data{
	margin:0;
}
@media only screen and (max-width: 1023px) {
	.cart__page .cart__left {
	    width:100%;
	    margin:0 0 30px;
	}
	.cart__page .cart__right {
	    width: 100%;
	    display: flex;
	    justify-content: flex-end;
	}
	.cart__page .cart_recap{
		width:380px;
	}
}
@media only screen and (max-width: 767px) {
	.cart__page .cart_item{
		align-items: flex-start;
	}
	.cart__page .cart_items_header .header_quantity,
	.cart__page .cart_items_header .header_total{
		display: none;
	}
	.cart__page .cart_item .cart_item_img{
		width:80px;
	}
	.cart__page .cart_item .cart_actions{
		display:none;
	}
	.cart__page .quantity_input .quantity-input__button,
	.cart__page .quantity_input .quantity-input__element{
		height:40px;
		font-size: 14px;
	}
	.cart__page .cart_item .product_title{
		margin-bottom: 5px;
	}
	.cart__page .cart_item .product-price{
		margin-bottom:8px;
	}
	.cart__page .cart_item .total_price{
		text-align: left;
		margin:0 0 5px;
	}
	.cart__page .quantity_input{
		margin:0 0 10px;
	}
	.cart__page .cart_recap{
		width:100%;
		padding:20px;
	}
	.cart__page .coupon_update_d{
		flex-direction: column;
		gap: 15px;
	}
	.cart__page .coupon_update_d .btn{
		min-width: 90px;
	}
	.cart__page .coupon_update_d .updateCart_d{
		text-align: center;
	}
}
/* cart page css end*/

/* Static Pages css start*/
.static_pages{
	padding: 50px 0;
}
.static_pages p{
	margin:0 0 15px;
}
.static_pages a{
	color:#ffbfc0;
	text-decoration: underline;
}
.static_pages a:hover{
	color:#7584a3;
}
/* Static Pages css end*/

/* Order page css start*/
.order__page{
	padding:50px 0 0;
}
.orderSummaryNDetails{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-wrap: wrap;
}
.orderSummaryNDetails .table_div_d{
	width:calc(100% - 440px);
}
.orderSummy__d{
	width: 400px;
}
.orderSummy__d .inner_d{
	background: #fdc0bf0f;
    padding: 30px 20px;
    border-radius: 10px;
}
.orderSummy__d .inner_d > div{
	display: flex;
	justify-content: space-between;
	margin:0 0 20px;
	font-size: 18px;
	font-weight: 600;
}
.orderSummy__d .inner_d > div:last-child{
	margin:0;
}
.orderDetails_d .return_action{
	max-width: calc(100% - 440px);
	margin-top: 30px;
}
.orderLists .return_order_btn{
	margin-left: 5px;
}
.billingShippingAdd{
	width: calc(100% - 440px);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin:50px 0 0;
}
.billingShippingAdd > .item_d{
	border:1px solid #eaeaea;
	border-radius: 10px;
	padding: 30px;
	width:48%;
}
.billingShippingAdd > .item_d h4{
	font-size: 20px;
	line-height: 28px;
	margin: 0 0 10px;
}
.billingShippingAdd .box_d{
	font-size: 15px;
    line-height: 25px;
}
@media only screen and (max-width: 767px) {
	.order__page{
		padding:30px 0 0;
	}
	.billingShippingAdd{
		width:100%;
		gap:20px;
		margin:30px 0 0;
	}
	.billingShippingAdd > .item_d{
		width:100%;
		padding:20px;
	}
	.orderSummaryNDetails .table_div_d{
		width:100%;
		margin-bottom: 20px;
	}
	.orderSummy__d{
		width:100%;
	}
	.orderSummy__d .inner_d > div{
		font-size: 16px;
	}
	.orderSummy__d .inner_d{
		padding:20px;
	}
	.orderDetails_d .return_action{
		max-width: 100%;
	}
}

/* Order Page css end*/


/* Checkout Page css start*/
.checkout__page .checkout_inner_d{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.checkout__page .checkout_inner_d .LCheckout_d{
	width:56%;
}
.checkout__page .checkout_inner_d .RCheckout_d{
	width:40%;
}
.checkout__page h3{
	margin: 0 0 20px;
	font-size: 22px;
	line-height: 32px;
	font-weight: 600;
}
.checkout__page .yourOrder_d .item_d{
    background: #fdc0bf0f;
    padding: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin:0 0 15px;
}
.checkout__page .yourOrder_d .item_d .item_img{
	width:80px;
}
.checkout__page .yourOrder_d .item_img img{
	width:100%;
	display: block;
}
.checkout__page .yourOrder_d .title_qty_d{
	width:calc(100% - 220px);
}
.checkout__page .yourOrder_d .item_d .item_price{
	width:100px;
	text-align: right;
}
.checkout__page .yourOrder_d .item_qty{
	font-weight: 300;
	margin-top: 5px;
}
.checkout__page .card-input-container {
  background: white;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.checkout__page .card-number-input {
  font-size: 18px;
  padding: 10px 12px;
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 8px;
  letter-spacing: 2px;
  outline: none;
  transition: border 0.2s ease-in-out;
}

.checkout__page .card-number-input:focus {
  border-color: #007bff;
}
.checkout__page .payment_methods{
	    margin: 0;
    list-style: none;
    padding: 0;
}
.checkout__page .payment_methods li{
    background: #fdc0bf0f;
    padding: 20px;
    margin:0 0 10px;
}
.checkout__page .payment_methods li.payment_method_stripe_cc label{
    display: inline-flex;
    justify-content: space-between;
    width: calc(100% - 40px);
    margin: 0 0 10px;
}
.checkout__page .payment_methods li.payment_method_stripe_cc label img{
	margin: 0 0 3px 3px;
}
.checkout__page .orderReview_box{
	margin:30px 0;
}
.checkout__page .orderReview_box .cartsummaryD{
    display: flex;
    justify-content: space-between;
    margin: 0 0 20px;
    font-size: 18px;
    padding:0 20px;
}
.checkout__page .orderReview_box .cartsummaryD.total__d{
	font-size: 22px;
	background: #f7f7f7;
	padding: 20px;
	border-radius: 5px;
}
.checkout__page .orderReview_box select{
	height: 35px;
	padding: 0 10px;
	font-size: 16px;
	max-width: 228px;
}
.checkout__page .privacyText{
	margin:25px 0;
}
.checkout__page .placeOrder_btn{
	text-align: center;
	margin:25px 0 0;
}
.checkout__page .placeOrder_btn .btn{
	width:100%;
}
@media only screen and (max-width: 1023px) {
	.checkout__page .card-number-input{
		font-size: 15px;
		width: 100%;
		max-width: 300px;
	}
}
@media only screen and (max-width: 767px) {
	.checkout__page .checkout_inner_d .LCheckout_d{
		width:100%;
	}
	.checkout__page .checkout_inner_d .RCheckout_d{
		width:100%;
	}
	.checkout__page h3{
		font-size: 20px;
		line-height: 30px;
	}
	.checkout__page .card-input-container{
		padding:10px;
	}
	.checkout__page .orderReview_box .cartsummaryD{
		font-size: 15px;
	}
	.checkout__page .orderReview_box select{
		font-size: 14px;
		max-width: 158px;
	}
	.checkout__page .yourOrder_d .item_d .item_price{
		width:80px;
	}
	.checkout__page .yourOrder_d .title_qty_d {
	    width: calc(100% - 175px);
	}
	.checkout__page .orderReview_box .cartsummaryD.total__d{
		font-size: 20px;
	}
	.checkout__page .payment_methods li.payment_method_stripe_cc label img{
		margin: 0 0 2px 2px;
		max-width: 32px;
	}
}
/* Checkout Page css end*/

/*Category Slider css start*/
.categorySec .swiperCategories{
overflow:hidden;
position: relative;
}
.categorySec .inner___d{
	position: relative;
}
.categorySec .item_d{
	border-radius: 10px;
}
.categorySec .img_d img{
	width:100%;
	display: block;
}
.categorySec .arrows_d .swiper-button-prev{
	left:10px;
}
.categorySec .arrows_d .swiper-button-next{
	right:10px;
}
/*Category slider css end*/


/* Design by anshuman */
.text-red-500.text-sm.mt-1 {
    font-size: 13px;
    color: red;
}

span.invalid-feedback {
    color: #ff6262;
    font-size: 13px;
}

.success-maindiv{
	text-align: center;
}

.success_msg {
	color: #ffbfc0;
	font-family: "Nunito Sans", "Helvetica Neue", sans-serif;
	font-weight: 900;
	font-size: 40px;
	margin-bottom: 10px;
}
.p_msg {
	color: #404F5E;
	font-family: "Nunito Sans", "Helvetica Neue", sans-serif;
	font-size:20px;
	margin: 0;
}
.checkmark {
	color: #ffbfc0;
	font-size: 100px;
	line-height: 200px;
	margin-left:-15px;
}
.card {
	background: white;
    padding: 60px;
    border-radius: 4px;
    display: inline-block;
    margin: 30px 0px 30px 0px;
}

.liveSearchResults {
    background: white;
    border: 1px solid #ddd;
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    width: 100%;
    z-index: 999;
}

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

.liveSearchResults li {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.liveSearchResults li:hover {
    background-color: #f5f5f5;
}

/* span.cart_item_count {
    position: absolute;
    right: 69px;
    top: 80px;
    text-align: center;
    border-radius: 7px;
    width: 18px;
    height: 18px;
    background-color: #ff6161;
    border: 1px solid #fff;
    font-weight: 400;
    color: #f0f0f0;
    line-height: 16px;
    font-size: 12px;
}
@media only screen and (max-width: 768px) {
    span.cart_item_count {
        position: absolute;
        right: 65px; 
        top: 30px;   
        text-align: center;
        border-radius: 7px;
        width: 18px;
        height: 18px;
        background-color: #ff6161;
        border: 1px solid #fff;
        font-weight: 400;
        color: #f0f0f0;
        line-height: 16px;
        font-size: 12px;
    }
} */


.cart-wrapper {
    position: relative;
    display: inline-block;
}

.cart_item_count {
    position: absolute;
    top: -8px;
    right: -8px;
    text-align: center;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    background-color: #ff6161;
    border: 1px solid #fff;
    font-weight: 400;
    color: #f0f0f0;
    line-height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Optional tweaks for mobile */
@media (max-width: 768px) {
    .cart_item_count {
        top: -6px;
        right: -6px;
        width: 16px;
        height: 16px;
        font-size: 11px;
        line-height: 16px;
    }
}




.custom-alert {
	position: relative;
	padding: 15px 20px 15px 15px;
	border-left: 5px solid #28a745;
	background-color: #e9f7ec;
	color: #155724;
	border-radius: 6px;
	margin: 20px 0;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.success-alert {
	border-left-color: #28a745;
	background-color: #e9f7ec;
	color: #155724;
}

.custom-alert-title {
	font-weight: bold;
	display: block;
	margin-bottom: 5px;
	font-size: 16px;
}

.custom-alert p {
	margin: 0;
	font-size: 15px;
}

.close-alert {
	position: absolute;
	top: 12px;
	right: 15px;
	background: none;
	border: none;
	font-size: 20px;
	color: #155724;
	cursor: pointer;
}

.close-alert:hover {
	color: #0c4228;
}

.rating_star img.black-star {
	filter: grayscale(100%) brightness(0);
}


.custom-modal {
    display: flex; /* For centering */
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.custom-modal-content {
    background-color: #fff;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: fadeIn 0.3s ease-in-out;
}

.custom-modal-header {
    background-color: #fdc0bf; /* Soft pink */
    padding: 15px;
    color: #fff;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
}

.custom-modal-body {
    padding: 20px;
    text-align: center;
    font-size: 16px;
    color: #333;
}

.custom-modal-footer {
    text-align: center;
    padding: 15px;
    background-color: #f9f9f9;
}

.modal-ok-btn {
    background-color: #fdc0bf; /* Match header */
    color: #fff;
    border: none;
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-ok-btn:hover {
    background-color: #f59b9a; /* Slightly deeper pink for hover */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart_item_qty {
    margin-top: 4px;
    font-size: 14px;
    color: #555;
}



/* End design by anshuman */
