/*----------------Table of contents Start---------------------------

1.Shop CSS
2.Mini Cart CSS 
3.Cart CSS
4.Checkout CSS
5.MyAccount CSS
6.Single Product CSS

----------------------Table of contents Start----------------------------*/


:root {
	--primary-color: #FFDE9F;
	--secondary-color: #FFFFFF;
	--text-color: #0B1315;
	--accent-color: #99A9AD;
	--black-color: #000000;
} 


/************************ 1.Shop CSS ***************************/

.box-image {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 100px 15px;
	background-image: url(../images/menupage-1/hero-1.png);
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.box-image-overlay {
	position: absolute;
	background: rgb(11 19 21 / 40%);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.custom-cart-view .box-text h1{
	font-size: 96px;
	line-height: 111px;
}

.box-text {
	text-align: center;
}

.box-text h1 {
	font-family: 'Elsie',sans-serif;
	font-weight: 400;
	font-size: 96px;
	line-height: 111px;
	text-align: center;
	color: var(--secondary-color);
}

.shop-breadcrumbs {
	width: 100%;
	height: auto;
	padding: 20px 0;
	background: var(--text-color);
	border-bottom: 1px solid rgb(217 217 217 / 10%);
}

.shop-breadcrumbs .breadcrumbs {
	max-width: 1170px;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 0;
}
.custom-product-grid {
	text-align: center;
	max-width: 1170px;
	width: 100%;
	margin: 100px auto;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}

.custom-product-grid .sidebar {
	flex: 0 0 auto;
	width: 25%;
	padding: 0px 10px;
}

.tg-container.products-grid {
	flex: 0 0 auto;
	width: 75%;
	padding: 0px 10px;
}

.bermiz-full-width-content .tg-container.products-grid {
	width: 100%;
	padding:0;
}

.section-title {
	font-family: 'Elsie',sans-serif;
	font-weight: 400;
	font-size: 60px;
	line-height: 70px;
	text-align: center;
	color: var(--secondary-color);
	margin-top: 20px;
}

.section-subtitle {
	font-family: 'Lexend',sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 30px;
	text-align: center;
	color: var(--accent-color);
	margin-top: 20px;
}

.products-grid .products{
	width: 100%;
	height: auto;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 30px;
	margin-top: 80px;
	margin-bottom: 80px;
}

.products-grid .products .product-card,
.products-grid .products-list.list .products .product-card{
	border: 1px solid var(--accent-color);
	padding: 15px;
}

.bermiz-full-width-content .products-grid .products.columns-2 .product-card,
.products-grid .products.columns-3 .product-card,
.products-grid .products.columns-4 .product-card {
	border: 0;
	padding: 0;
}

.products-grid .products.columns-2 {
	grid-template-columns: repeat(2, 3fr);
}

.products-grid .products.columns-3 {
	grid-template-columns: repeat(3, 3fr);
}

.products-grid .products.columns-4 {
	grid-template-columns: repeat(4, 4fr);
}

.bermiz-full-width-content .products-grid .products.columns-2 .product-info,
.products-grid .products-list.list .products .product-card .product-info {
	width: calc(100% - 200px);
}

.bermiz-full-width-content .products-grid .products.columns-2 .product-card ,
.products-grid .products-list.list .products .product-card{
	display: flex;
	align-items: flex-start;
	column-gap: 30px;
	row-gap: 30px;
	flex-direction: row;
}

.product-card a.woocommerce-LoopProduct-link.woocommerce-loop-product__link{
	display: none;
}

.bermiz-full-width-content .products-grid .products.columns-2 .product-image ,
.products-grid .products-list.list .products .product-card .product-image{
	max-width: 170px;
	height: auto;
	width: 100%;
	overflow: hidden;
}

.bermiz-full-width-content .products-grid .products.columns-2 .product-image img,
.products-grid .products-list.list .products .product-card .product-image img {
	max-width: 170px;
	height: 170px;
	object-fit: cover;
}

.products-grid .products .product-image {
	overflow: hidden;
	position: relative;
}

.products-grid .products .product-image img.attachment-woocommerce_thumbnail{
	transform: scale(1) rotateZ(0deg);
	transition: all 0.3s linear;
}

.products-grid .products .product-image:hover img.attachment-woocommerce_thumbnail {
	transform: scale(1.25) rotateZ(-5deg);
}

.product-info .product-title,
.single-product .related.products h2.product-title {
	font-family: 'Elsie',sans-serif;
	font-weight: 400;
	font-size: 30px;
	line-height: 35px;
	color: var(--secondary-color);
	text-align: left;
	transition: all 0.3s linear;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-overflow: ellipsis;
}

.single-product .related.products h2.product-title {
	margin-bottom: 0;
}

.product-info .product-title:hover,
.single-product .related.products h2.product-title:hover {
	color: var(--primary-color);
}

.product-info .product-description {
	font-family: 'Lexend',sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: var(--accent-color);
	margin-top: 20px;
	text-align: left;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

.product-info .product-price,
.single-product .product .product-price{
	font-family: 'Elsie',sans-serif;
	font-weight: 400;
	font-size: 36px;
	line-height: 41px;
	color: var(--primary-color);
	text-align: left;
}

.product-info .product-cart {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	margin-top: 20px;
}

.product-info .add-to-cart a.button {
	width: 50px;
	height: 50px;
	background-color:var(--primary-color);
	color: var(--black-color);
	border-radius: 50%;
	text-align: center;
	line-height: 0;
	font-size: 0;
	font-weight: bold;
	text-decoration: none;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: background-color 0.3s ease, transform 0.2s ease;
	display: flex !important;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.product-info .add-to-cart a.button::before {
	content: url(../images/Homepage1/cart-icon.svg);
}

.product-info .add-to-cart a.button.loading::after {
	position: unset;
	font-size: 22px;
}

.product-info .add-to-cart a.button.loading::before {
	display: none;
}

.product-info .add-to-cart a.button.loading {
	opacity: 1;
}

.product-info .add-to-cart .added_to_cart{
	display: none;
}

.product-category-filter {
	width: 100%;
	height: auto;
}

ul.category-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px 60px;
}

ul.category-list li img {
	display: block;
	margin: 0 auto;
}

ul.category-list li a {
	font-family: 'Lexend',sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	text-align: center;
	color: var(--accent-color);
	display: inline-block;
	text-align: center;
}

ul.category-list li a span {
	text-align: center;
	margin-top: 20px;
	font-family: 'Lexend',sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	text-align: center;
	color: var(--accent-color);
	display: inline-block;
}

.woocommerce nav.woocommerce-pagination {
	margin: 80px auto 0;
}

.woocommerce .woocommerce-pagination .page-numbers {
	list-style: none;
	border: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 20px;
	margin: 0;
	padding: 0;
}

.woocommerce .woocommerce-pagination .page-numbers li {
	padding: 0;
	border: 0;
	margin: 0;
}

.woocommerce .woocommerce-pagination .page-numbers span ,
.woocommerce .woocommerce-pagination .page-numbers a{
	padding: 0;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px !important;
	color: var(--secondary-color);
	font-size: 20px;
	font-family: 'Lexend',sans-serif;
	border-radius: 60px;
	border: 2px solid  var(--accent-color);
	background: transparent;
	transition: all 0.3s linear;
}

.woocommerce .woocommerce-pagination .page-numbers span.current,
.woocommerce .woocommerce-pagination .page-numbers a:hover,
.woocommerce .woocommerce-pagination .page-numbers span:hover {
	background: var(--secondary-color);
	color: var(--black-color);
	border-color: var(--secondary-color);
}

.woocommerce ul.products::after, 
.woocommerce ul.products::before {
	content: unset;

}

.products-grid .products-list.list .products {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
}

.products-grid .products .product-card {
	display: flex;
	align-items: flex-start;
	column-gap: 30px;
	flex-direction: row;
	row-gap: 30px;
	border: 1px solid var(--accent-color);
	padding: 15px;
}


.bermiz-full-width-content .products-grid .products.columns-2 .product-info,
.products-grid .products .product-info {
	width: calc(100% - 200px);
}

.products-grid .products.columns-2 .product-info {
	width: 100%;
}


.products-grid .products.columns-2 .product-card,
.products-grid .products.columns-3 .product-card,
.products-grid .products.columns-4 .product-card,
.single-product .products.columns-4 .product-card {
	display: flex;
	align-items: flex-start;
	column-gap: 30px;
	flex-direction: column;
	row-gap: 30px;
	border: 1px solid var(--accent-color);
	padding: 15px;
}

.products-grid .products .product-image {
	overflow: hidden;
}

.products-grid .products.columns-2 .product-image,
.products-grid .products.columns-3 .product-image,
.products-grid .products.columns-4 .product-image {
	max-width: 100%;
	width: 100%;
}

.products-grid .products.columns-2 .product-image a,
.products-grid .products.columns-3 .product-image a,
.products-grid .products.columns-4 .product-image a{
	width: 100%;
	height: auto;
	display: block;
}


.products-grid .products.columns-2 .product-image a img,
.products-grid .products.columns-3 .product-image img,
.products-grid .products.columns-4 .product-image img{
	max-width: 100%;
	width: 100%;
	max-height: 380px;
	object-fit: cover;
	height: auto;
}

.products-grid .products.columns-3 .product-info,
.products-grid .products.columns-4 .product-info {
	width: 100%;
}

.custom-filters-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 25px;
}

.custom-filters-wrapper a.filter-toggle {
	font-family: 'Lexend', sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 34px;
	color: var(--secondary-color);
	text-align: left;
	transition: all 0.3s linear;
	margin-right: 15px;
}

.woocommerce-shop-toolbar-layout-option {
	display: inline-flex;
	margin-left: auto;
	align-items: center;
	gap: 0px 15px;
	margin-right: 15px;
}

.woocommerce .woocommerce-result-count {
	margin: 0;
	font-family: 'Lexend', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 26px;
	color: var(--secondary-color);
	text-align: left;
	padding: 0;
}

.woocommerce .woocommerce-ordering select{
	-webkit-appearance: none; 
	-moz-appearance: none;
	appearance: none;
	max-width: 370px;
	width: 100%;
	height: 48px;
	border: 1px solid var(--primary-color);
	color: var(--secondary-color);
	font-size: 18px;
	font-family: 'Lexend', sans-serif;
	line-height: 24px;
	padding: 8px 40px 8px 16px;
	background-color: rgb(11 19 21 / 20%);
	background: url(../images/Homepage3/form-arrow.svg) no-repeat;
	background-position: 96% center;
	font-size: 16px;
	appearance: none;
}

.woocommerce .woocommerce-ordering select option {
	color: var(--secondary-color);
	background-color: var(--text-color);
}

.woocommerce .woocommerce-ordering {
	margin: 0;
}

.woocommerce-shop-toolbar-layout-option .view-toggle-btn.active svg path,
.woocommerce-shop-toolbar-layout-option .view-toggle-btn:hover svg path {
	fill: var(--primary-color);
}

.bermiz-full-width-content .sidebar {
	position: fixed;
	left: 0;
	top: 0;
	max-width: 430px;
	width: 100%;
	z-index: 3;
	height: 100%;
	transform: translateX(-100%);
	transition: all 0.3s;
	background-color: var(--text-color);
	text-align: left;
	box-shadow: -3px 0 3px rgb(0 0 0 / 4%);
	border-right: 1px solid var(--secondary-color);
	overflow-y: scroll;
	display: flex;
	flex-direction: column;
	border-left: 2px solid var(--secondary-color);
}

.off-canvas-active .sidebar {
	transform: translateX(0px);
}

.sidebar-overlay-filter{
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	bottom: 0;
	z-index: 997;
	opacity: 0;
	background-color: rgba(0, 0, 0, 0.7);
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0s ease;
}

.off-canvas-active .sidebar-overlay-filter {
	opacity: 1;
	visibility: visible;
}

.bermiz-full-width-content .active-filter-toggle-sidebar {
	display: inline-block;
}

.custom-product-grid .sidebar .filter-btn-close {
	width: fit-content;
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 4;
}

.bermiz-full-width-content .custom-product-grid .sidebar .filter-btn-close {
	display: block;
}

.custom-product-grid .sidebar .filter-content {
	padding: 45px 15px 15px;
}

.bermiz-full-width-content .custom-product-grid .sidebar .filter-content {
	padding: 45px 15px 15px;
}


.custom-product-grid .sidebar .filter-content .widget {
	padding: 20px 0px;
}

.widget .widget-title,
.sidebar-widget .widget-title,
.wp-block-woocommerce-filter-wrapper .wc-blocks-filter-wrapper h3{
	font-family: 'Elsie', sans-serif;
	font-weight: 400;
	font-size: 36px;
	line-height: 40px;
	color: var(--primary-color);
	text-align: left;
	border-bottom: 1px solid rgb(217 217 217 / 10%);
	padding-bottom: 15px;
	margin-bottom: 20px;
}

.tg-container .tg-column-wrapper .tg-column {
	max-width: 100%;
	height: auto;
	margin-bottom: 15px;
	transition: all 0.3s linear;
}

.tg-container .tg-column-wrapper .tg-column:last-child {
	margin-bottom: 0px;
}

.tg-container .tg-column-wrapper .tg-column a {
	display: flex;
	align-items: center;
	gap: 0px 15px;
	justify-content: flex-start;
	transition: all 0.3s linear;
}

.tg-container .tg-column-wrapper .tg-column .collection-thumb-title-wrapper {
	font-family: 'Lexend', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 26px;
	color: var(--accent-color);
	transition: all 0.3s linear;
	max-width: calc(100% - 115px);
	width: 100%;
	text-align: left;
	max-width: calc(100% - 115px);
	width: 100%;
}

.tg-container .tg-column-wrapper .tg-column .collection-thumb-img {
	transition: all 0.3s linear;
}

.tg-container .tg-column-wrapper .tg-column a:hover .collection-thumb-title-wrapper{
	color: var(--secondary-color);
}

.tg-container .tg-column-wrapper .tg-column a:hover .collection-thumb-img img {
	filter: brightness(0) saturate(100%) invert(87%) sepia(16%) saturate(1010%) hue-rotate(335deg) brightness(102%) contrast(104%);
}

.widget.widget_price_filter .price_slider_wrapper .ui-widget-content {
	height: 3px;
	margin-bottom: 30px;
	background-color:var(--primary-color);
}

.widget.widget_price_filter .ui-slider .ui-slider-range,
.widget.widget_price_filter .ui-slider .ui-slider-handle{
	background-color: var(--accent-color);
}


.widget.widget_price_filter .ui-slider .ui-slider-handle {
	width: 16px;
	height: 16px;
}

.widget.widget_price_filter .price_slider_amount {
	display: flex;
	flex-direction: column-reverse;
}

.widget.widget_price_filter .price_slider_amount .price_label,
.wc-block-price-filter__control .wc-block-formatted-money-amount{
	font-family: 'Lexend', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	color: var(--secondary-color);
	text-align: left;
}

.wc-block-price-filter__control .wc-block-formatted-money-amount{
	background-color: transparent;
	margin-bottom: 0;
}

.widget.widget_price_filter .price_slider_amount button.button,
.wc-block-components-price-slider__actions .wc-block-components-filter-reset-button {
	margin: 15px 0px 0px;
	padding: 12px 20px;
	background-color: var(--primary-color);
	text-align: center;
	text-transform: capitalize;
	border: 1px solid transparent;
	color: var(--text-color);
	font-size: 18px;
	font-family: 'Lexend', sans-serif;
	font-weight: 500;
	width: fit-content;
	transition: all 0.3s linear;
	text-decoration: none;
}

.widget.widget_price_filter .price_slider_amount button.button:hover {
	color: var(--secondary-color);
	background: transparent;
	border: 1px solid var(--primary-color);
}

.wc-block-price-slider .wc-block-components-price-slider__range-input-progress{
	background: var(--accent-color);
}
.wc-block-price-slider .wc-block-components-price-slider__range-input-wrapper:before{
	background: var(--primary-color);
}

.wc-block-components-price-slider__control .wc-block-components-price-slider__label{
	display: none;
}

.wc-block-price-slider .wc-block-components-price-slider__actions {
	justify-content: start;
	border-radius: 3px;
}

.wc-block-components-price-slider--is-input-inline .wc-block-components-price-slider__controls .wc-block-components-price-slider__amount {
	max-width: 45px !important;
}

.widget.widget_best_selling_products .tg-container .tg-column-wrapper .tg-column a:hover .collection-thumb-img img {
	filter: unset;
}

.widget.widget_best_selling_products .tg-container .tg-column-wrapper .tg-column a:hover .collection-thumb-title-wrapper {
	color: var(--accent-color);
}

.widget.widget_best_selling_products .tg-container .tg-column-wrapper .tg-column a .collection-thumb-title-wrapper .collection-thumb-title:hover {
	color: var(--primary-color);
}

.widget.widget_best_selling_products .collection-thumb-title-wrapper >span {
	display: block;
	margin-bottom: 10px;
	text-align: left;
}

.widget.widget_best_selling_products .collection-thumb-title-wrapper .collection-thumb-title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.widget.widget_best_selling_products .collection-thumb-title-wrapper .collection-thumb-date {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 4px;
	margin: 0;
	color: var(--accent-color);
}

.widget.widget_best_selling_products .tg-column a {
	align-items: flex-start;
}

.widget.widget_best_selling_products .collection-thumb-img img {
	border-radius: 0;
	max-width: 100px;
	width: 100px;
	height: 75px;
	object-fit: cover;
}


/* General star styling */

.product-rating {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
}

.woocommerce .products .star-rating {
	margin: 0;
}

.woocommerce .products span.rating-count {
	color: var(--secondary-color);
	font-size: 18px;
	line-height: 24px;
	letter-spacing: 2px;
}

.star-rating.no-rating .star {
	color: var(--primary-color); 
}

.star-rating.rated .star-rating {
	color: var(--primary-color);
}

/* Container for the watchlist icon */

.wishlist_table {
	max-width: 1170px;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 100px 0px;
	z-index: 1;
}

.watchlist-icon {
	position: absolute;
	top: 15px;
	right: 15px;
	display: inline-block;
	z-index: 1;
}

.watchlist-icon .heart-btn {
	cursor: pointer;
	transition: color 0.3s ease, transform 0.2s ease;
	background: rgba( 255, 255, 255, 1 );
	box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
	backdrop-filter: blur( 9.5px );
	-webkit-backdrop-filter: blur( 9.5px );
	border-radius: 12px;
	border: 1px solid rgba( 255, 255, 255, 0.18 );
	padding: 5px;
}

.watchlist-icon .heart-btn:hover{
	background: rgba( 255, 255, 255, 1 );
}

.watchlist-icon .heart-btn svg  {
	transition: all 0.2s linear;
}

.watchlist-icon .heart-btn:hover svg{
	transform: scale(1.2);
	transition: all 0.2s linear;
}

.watchlist-icon form {
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.wishlist-add-to-cart-container .wc-block-components-product-price, 
.wishlist-add-to-cart-container .woocommerce-Price-amount {
	display: none !important;
}

.wishlist_table .wishlist-add-to-cart-container .add_to_cart_inline {
	padding: 0 !important;
	border: unset !important;
}

.wishlist_table button.remove-wishlist-btn {
	color: var(--secondary-color) !important;
	font-size: 40px;
	line-height: 40px;
	width: unset;
	height: unset;
	font-weight: 400;
	background: transparent;
	border: none;
	cursor: pointer;
	font-family: 'Lexend',sans-serif;
	padding: 0;
}

.wishlist_table button.remove-wishlist-btn:hover{
	border: none;
}

.wishlist_table .woocommerce-info {
	margin:0;
}

.wishlist-loader {
	border: 0.3em dotted var(--black-color);
	border-radius: 50%;
	-webkit-animation: 1s loader-01linear infinite;
	animation: 1.5s loader-01 linear infinite;
	display: inline-block;
	width: 24px;
	height: 24px;
	color: inherit;
	vertical-align: middle;
	pointer-events: none;
}


@-webkit-keyframes loader-01 {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes loader-01 {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.remove-product  .wishlist-loader {
	width: 30px;
	height: 30px;
	border: 0.25em dotted var(--secondary-color);
}


/************************** 2. Mini Cart CSS  *****************************/

.ic-cart-header-btn {
	position: relative;
	width: 60px;
	height: 60px;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	cursor: pointer;
}

.cart-no {
	width: 20px;
	height: 20px;
	background: var(--secondary-color);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 0;
	color: var(--text-color);
	font-family: 'Lexend', sans-serif;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 15px;
	padding: 5px;
}

.ic-cart-sidebar-wrapper {
	position: fixed;
	right: 0;
	top: 0;
	width: 430px;
	z-index: 3;
	height: 100%;
	transform: translateX(100%);
	transition: all 0.3s;
	background-color: var(--text-color);
	text-align: left;
	box-shadow: -3px 0 3px rgb(0 0 0 / 4%);
	border-right: 1px solid var(--primary-color);
	overflow-y: scroll;
	display: flex;
	flex-direction: column;
	border-left: 2px solid var(--primary-color);
}

.active-mini-cart .ic-cart-sidebar-wrapper {
	transform: translateX(0);
}

.ic-cart-sidebar-wrapper .quantity + span.woocommerce-Price-amount.amount::before {
	content: 'Price';
	margin-right: 5px;
}

.ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_header {
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_header p {
	color: var(--secondary-color);
	text-align: center;
	font-family: 'Elsie', sans-serif;
	font-size: 30px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_header .ic-cart-header-btn-close,
.filter-btn-close {
	background: var(--secondary-color);
	border-radius: 8px;
	cursor: pointer;
	padding: 5px;
}

.ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_body {
	border-top: 1px solid var(--secondary-color);
	margin-bottom: 0;
	position: relative;
	flex: 1 1 auto;
	display: flex;
	height: 100%;
}

.cartcontents {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}

.ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_body .widget_shopping_cart_content {
	position: relative;
	flex: 1 1 auto;
	overflow-y: auto;
}

.ic-cart-sidebar-wrapper_body .woocommerce-mini-cart li::before,
.ic-cart-sidebar-wrapper_body .woocommerce-mini-cart li::after {
	content: unset !important;
}

.ic-cart-sidebar-wrapper_body ul.woocommerce-mini-cart li {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	padding: 15px 0px;
	border-bottom: 1px solid hsl(0deg 0% 92% / 50%);
	vertical-align: top;
	margin: 0 0 15px 0;
}

.ic-cart-sidebar-wrapper_body .woocommerce-mini-cart li a.remove.remove_from_cart_button {
	width: 18px;
	height: 18px;
	font-size: 0;
	line-height: 0;
}

.ic-cart-sidebar-wrapper_body .woocommerce-mini-cart li a.remove.remove_from_cart_button:hover {
	background: transparent;
}

.ic-cart-sidebar-wrapper_body ul.woocommerce-mini-cart li img {
	width: 90px;
	min-height: 60px;
	margin: 0;
	border-radius: 12px;
}

.ic-cart-sidebar-wrapper_body ul.woocommerce-mini-cart  li .ic-mini-cart-count-price.ic-mini-cart-title-input p{
	color: var(--secondary-color);
	font-family: 'Lexend', sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
	text-transform: capitalize;
	padding: 0px 0 5px;
	text-align: left;
}

.ic-cart-sidebar-wrapper_body ul.woocommerce-mini-cart {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	padding: 0px 15px;
}

.ic-cart-sidebar-wrapper_body p.woocommerce-mini-cart__total.total {
	padding: 20px 15px;
	font-family: 'Lexend', sans-serif;
	font-size: 22px;
	font-style: normal;
	font-weight: 600;
	color: var(--secondary-color);
	line-height: 26px;
	text-transform: capitalize;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--accent-color);
	border-top: 1px solid var(--accent-color);
}

.ic-cart-sidebar-wrapper_body p.woocommerce-mini-cart__buttons.buttons a.button,
.ic-cart-sidebar-wrapper_body .woocommerce-mini-cart__empty-message a.button{
	margin: 0;
	padding: 12px 20px;
	background: var(--primary-color);
	text-align: center;
	text-transform: capitalize;
	border: 1px solid transparent;
	color: var(--text-color);
	font-size: 18px;
	font-family: 'Lexend', sans-serif;
	font-weight: 500;
}

.ic-cart-sidebar-wrapper_body p.woocommerce-mini-cart__buttons.buttons a.button:hover,
.ic-cart-sidebar-wrapper_body .woocommerce-mini-cart__empty-message a.button:hover{
	color: var(--secondary-color);
	background: transparent;
	border: 1px solid var(--primary-color);
}

.ic-cart-sidebar-wrapper_body p.woocommerce-mini-cart__buttons.buttons {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
	padding:20px 15px;
}

.ic-cart-sidebar-wrapper_body .woocommerce-mini-cart__empty-message {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding: 20px 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.ic-cart-sidebar-wrapper_body .woocommerce-mini-cart__empty-message p{
	padding: 20px 0px;
	text-align: center;
	text-transform: capitalize;
	color: var(--secondary-color);
	font-family: 'Lexend', sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 30px;
}

.ic-cart-sidebar-wrapper_body .woocommerce-mini-cart__empty-message a.button {
	width: fit-content;
	padding: 16px 20px;
	display: block;
	margin: 0 auto;
}
/************************** 3.Cart CSS  *****************************/

.woocommerce-page .custome-container .woocommerce{
	max-width: 1170px;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 100px 0px;
	z-index: 1;
}

.custome_cart {
	max-width: 100%;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

table.woocommerce_cart_table {
	width: 100%;
	border: 1px solid var(--accent-color);
	border-collapse: collapse;
}

table.woocommerce_cart_table ,
table.woocommerce_cart_table tbody,
table.woocommerce_cart_table thead,
table.woocommerce_cart_table tr,
table.woocommerce_cart_table th,
table.woocommerce_cart_table td{
	border: 1px solid var(--accent-color);
}

table.woocommerce_cart_table th.product-thumbnail{
	width: 15%;
}

table.woocommerce_cart_table th.product-name{
	width: 35%;
}

table.woocommerce_cart_table th.product-price{
	width: 10%;
}

table.woocommerce_cart_table th.product-quantity{
	width: 20%;
}

table.woocommerce_cart_table th.product-subtotal{
	width: 10%;
}

table.woocommerce_cart_table th.product-remove{
	width: 10%;
}

table.woocommerce_cart_table tbody tr td{
	text-align: center;
	padding: 10px;
}

table.woocommerce_cart_table thead tr th {
	font-size: 20px;
	line-height: normal;
	font-family: 'Lexend', sans-serif;
	color: var(--secondary-color);
	text-transform: capitalize;
	padding: 10px;
	background: var(--text-color);
}

table.woocommerce_cart_table tbody .product-name h2{
	font-size: 30px;
	line-height: 34px;
}

table.woocommerce_cart_table tbody .product-name a,
table.woocommerce_cart_table tbody td {
	color: var(--secondary-color);
	text-align: center;
	font-family: 'Elsie',sans-serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

table.woocommerce_cart_table tbody .product-name a:hover {
	color: var(--primary-color);
}

table.woocommerce_cart_table tbody  .product-remove a.remove {
	color: var(--secondary-color) !important;
	font-size: 40px;
	width: unset;
	height: unset;
	display: block;
	font-weight: 700;
}

table.woocommerce_cart_table tbody .product-remove a.remove:hover {
	color: var(--primary-color) !important;
	background: transparent;
}

table.woocommerce_cart_table tbody  .quantity-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
}

table.woocommerce_cart_table tbody .quantity-buttons button {
	width: 40px;
	height: 60px;
	border: 1px solid #616F7D;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	color: var(--accent-color);
	cursor: pointer;
	font-size: 24px;
	padding: 0;
}

table.woocommerce_cart_table tbody .quantity-buttons .quantity {
	width: 50px;
	height: 60px;
}

table.woocommerce_cart_table tbody .quantity-buttons input[type="number"] {
	width: 100% !important;
	height: 100%;
	text-align: center;
	border: 1px solid #616F7D;
	background: transparent !important;
	color: var(--secondary-color);
	font-family: 'Lexend',sans-serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

table.woocommerce_cart_table tbody .quantity-buttons input[type="number"]

table.woocommerce_cart_table tbody .quantity-buttons input[type="number"]:focus-visible,
table.woocommerce_cart_table tbody .quantity-buttons input[type="number"]:focus{
	outline: 0 ;
	outline-width: 0 ;
}

table.woocommerce_cart_table tbody .quantity-buttons input[type="number"]::-webkit-outer-spin-button,
table.woocommerce_cart_table tbody .quantity-buttons input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

table.woocommerce_cart_table tbody .quantity-buttons input[type="number"] {
	-moz-appearance: textfield;
}

.woocommerce_cart_table .coupon {
	text-align: left;
}

.cart-collaterals {
	padding-top: 100px;
}

.custome_cart .cart-collaterals .cart_totals{
	background: rgb(153 169 173 / 10%);
	padding: 40px;
	max-width: 570px;
	width: 100%;
}

.cart-collaterals .cart_totals h2 {
	color: var(--secondary-color);
	font-family: 'Lexend',sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	border-bottom: 1px solid var(--primary-color);
	padding-bottom: 10px;
	text-transform: capitalize;
}

.custome_cart .cart-collaterals .cart_totals table {
	padding: 8px 0px;
	margin: 0;
}

.custome_cart .cart-collaterals .cart_totals tr td,
.custome_cart .cart-collaterals .cart_totals tr th {
	border: 0px;
	color: var(--secondary-color);
	font-family: 'Lexend',sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	text-transform: capitalize;
	padding: 10px 0;
	text-align: left;
}

.custome_cart .cart-collaterals .cart_totals table small {
	color: var(--secondary-color);
}

.custome_cart .cart-collaterals .cart_totals tr td  {
	text-align: left;
}

.custome_cart .cart-collaterals .cart_totals tr th {
	width: 40%;
}

.custome_cart .cart-collaterals .cart_totals .order-total th,
.custome_cart .cart-collaterals .cart_totals .order-total td{
	border-top: 1px solid var(--primary-color);
	padding-top: 10px;
}

.custome_cart .cart-collaterals .cart_totals .wc-proceed-to-checkout {
	padding: 0px 0px 0px;
}

.custome_cart .cart-collaterals .cart_totals .wc-proceed-to-checkout a.checkout-button,
.single-product .product .single_add_to_cart_button.button {
	margin: 0;
	padding: 12px 20px;
	background: var(--primary-color);
	text-align: center;
	text-transform: capitalize;
	border: 1px solid transparent;
	color: var(--text-color);
	font-size: 18px;
	font-family: 'Lexend',sans-serif;
	font-weight: 500;
}

.single-product .product .single_add_to_cart_button.button {
	padding: 20px 32px;
}

.custome_cart .cart-collaterals .cart_totals .wc-proceed-to-checkout a.checkout-button:hover,
.single-product .product .single_add_to_cart_button.button:hover {
	color: var(--secondary-color);
	background: transparent;
	border: 1px solid var(--primary-color);
}

.custome_cart .cart-collaterals .shipping-calculator-form {
	margin: 10px 0px;
}

.custome_cart .cart-collaterals .shipping-calculator-form input {
	max-width: 100%;
	width: 100%;
	height: 40px;
	border: 1px solid var(--primary-color);
	color: var(--secondary-color);
	font-size: 18px;
	font-family: 'Lexend', sans-serif;
	line-height: 24px;
	padding: 10px;
	background-color: rgb(11 19 21 / 20%);
}

.custome_cart .cart-collaterals .shipping-calculator-form .form-row span {
	height: 100%;
	padding: 0;
}

.woocommerce .select2-container .select2-selection--single .select2-selection__arrow b{
	filter: brightness(0) invert(1);
}

.custome_cart .cart-collaterals .shipping-calculator-form input::placeholder {
	color: var(--secondary-color);
}

.custome_cart .cart-collaterals .shipping-calculator-form input:focus,
.custome_cart .cart-collaterals .shipping-calculator-form input:focus-visible {
	outline: 0;
	outline-width: 0;
}

.custome_cart .cart-collaterals .shipping-calculator-form span[role="combobox"] {
	background: transparent;
	border: 0;
}	

.custome_cart .cart-collaterals .shipping-calculator-form span[role="textbox"] {
	color: var(--secondary-color);
	text-align: left;
	font-size: 18px;
	line-height: 24px;
	border: 1px solid var(--primary-color);
	padding: 8px 10px;
	box-sizing: border-box;
	font-weight: 400;
}

.custome_cart .cart-collaterals .shipping-calculator-form span[role="presentation"] b{
	border-color: #FFF transparent transparent transparent;
}

.custome_cart .cart-collaterals .shipping-calculator-form .form-row {
	padding: 0;
	margin: 10px 0px;
	max-width: 100%;
	width: 100%;
}

.cart-collaterals .cart_totals button[name="calc_shipping"] {
	padding: 12px 20px;
	background: var(--primary-color);
	text-align: center;
	margin-top: 5px;
	text-transform: capitalize;
	border: 1px solid transparent;
	color: var(--text-color);
	font-size: 18px;
	font-family: 'Lexend',sans-serif;
	font-weight: 500;
}

.cart-collaterals .cart_totals button[name="calc_shipping"]:hover {
	color: var(--secondary-color);
	border: 1px solid var(--primary-color);
	background: transparent;
}

.product-update-btn td {
	width: 100%;
	max-width: 100%;
}

.main-product-update-btn {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}


.main-product-update-btn button.button,
.return-to-shop a.button,
.checkout.woocommerce-checkout .place-order button.button,
.woocommerce form.checkout_coupon  button.button,
.wishlist_table .wishlist-add-to-cart-container .button,
.wishlist_table .wishlist-add-to-cart-container a.added_to_cart.wc-forward{
	opacity: 1 !important;
	padding: 12px 20px;
	background: var(--primary-color);
	text-align: center;
	text-transform: capitalize;
	border: 1px solid transparent;
	color: var(--text-color) !important;
	font-size: 18px;
	font-family: 'Lexend',sans-serif;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s linear;
}

.main-product-update-btn button.button:disabled {
	background-color: rgba(255, 222, 159, 0.5);
}

.main-product-update-btn button.button:disabled:hover{
	cursor: no-drop;
}

.main-product-update-btn button.button:not(:disabled):hover,
.return-to-shop a.button:hover,
.checkout.woocommerce-checkout .place-order button.button:hover,
.woocommerce form.checkout_coupon  button.button:hover,
.wishlist_table .wishlist-add-to-cart-container .button:hover {
	border: 1px solid var(--primary-color) !important;
	background: transparent !important;
	color: var(--secondary-color) !important;
}



.wishlist_table .wishlist-add-to-cart-container a.added_to_cart.wc-forward {
	background: transparent !important;
	color: var(--secondary-color) !important;
	border: 1px solid var(--primary-color);
	margin-top: 15px;
}

.wishlist_table .wishlist-add-to-cart-container a.added_to_cart.wc-forward:hover {
	border: 1px solid transparent;
	color: var(--text-color) !important;
	background: var(--primary-color) !important;
}

.return-to-shop  {
	margin-top: 40px;
}

.main-coupon {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.main-coupon input {
	border: 1px solid var(--primary-color);
	background: transparent;
	width: 100%;
	padding: 14px;
	outline: none;
	width: calc(100% - 80px);
	height: 100%;
	font-weight: 400;
	color: white;
	font-size: 16px;
	font-family: 'Lexend', sans-serif;
}

.main-coupon input::placeholder {
	color: var(--secondary-color);
}

.main-coupon button.button:hover {
	background: var(--primary-color) !important;
	color: #000 !important;
}

.woocommerce-checkout .woocommerce .woocommerce-info {
	display: block;
}

.woocommerce .woocommerce-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
}

.woocommerce-error, .woocommerce-info, .woocommerce-message {
	padding: 10px 10px 10px 45px;
	margin: 0 0 20px;
	position: relative;
	background-color: transparent;
	color: var(--secondary-color);
	border: 1px solid var(--primary-color);
	border-top: 1px solid var(--primary-color);
	list-style: none outside;
	width: auto;
	word-wrap: break-word;
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
	font-family: 'Lexend', sans-serif;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.woocommerce-message {
	border-top-color: var(--primary-color);
}

.woocommerce-error a, .woocommerce-form-coupon-toggle .woocommerce-info a, .woocommerce-message a {
	text-decoration: underline;
	color: var(--primary-color);
}

.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before {
	top: 50%;
	left: 15px;
	transform: translate(-0%, -50%);
}

.woocommerce-message::before {
	color: var(--primary-color);
}

.woocommerce-info::before {
	color: var(--primary-color);
}

.woocommerce form.checkout_coupon {
	margin: 0;
	padding: 10px;
	background-color: transparent;
	color: var(--secondary-color);
	border: 1px solid var(--primary-color);
	list-style: none outside;
	width: auto;
	margin-bottom: 20px;
	word-wrap: break-word;
}

.woocommerce form.checkout_coupon p {
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
	font-family: 'Lexend', sans-serif;
	padding: 0;
	margin: 0;
	padding-bottom: 10px;
}

.woocommerce form.checkout_coupon input {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--accent-color);
	background: transparent;
	font-size: 16px;
	line-height: 18px;
	color: var(--secondary-color);
	font-weight: 400;
	font-family: 'Lexend', sans-serif;
	height: 49px;
}

.woocommerce form.checkout_coupon input::placeholder {
	color: var(--secondary-color);
}

.woocommerce form.checkout_coupon  .form-row-first,
.woocommerce form.checkout_coupon  .form-row-last {
	padding: 0;
}

.woocommerce form.checkout_coupon  .form-row-first {
	width: calc(100% - 190px);
}

.woocommerce form.checkout_coupon  .form-row-last{
	width: 170px;
}

.woocommerce .blockUI.blockOverlay::before {
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='40' height='40' fill='rgba(0,0,0,1)'%3E%3Cpath d='M12 4C9.25144 4 6.82508 5.38626 5.38443 7.5H8V9.5H2V3.5H4V5.99936C5.82381 3.57166 8.72764 2 12 2C17.5228 2 22 6.47715 22 12H20C20 7.58172 16.4183 4 12 4ZM4 12C4 16.4183 7.58172 20 12 20C14.7486 20 17.1749 18.6137 18.6156 16.5H16V14.5H22V20.5H20V18.0006C18.1762 20.4283 15.2724 22 12 22C6.47715 22 2 17.5228 2 12H4Z'%3E%3C/path%3E%3C/svg%3E") center center;
}

.coupon .coupon-error-notice {
	font-size: 20px;
	line-height: 30px;
	margin-top: 10px;
}

body .select2-container--open .select2-dropdown--below,
body .select2-container--open .select2-dropdown--above {
	border: 0;
	border-radius: 5px;
	font-size: 16px;
	color: var(--secondary-color);
	background-color: var(--black-color);
	border-color: var(--black-color);
	font-family: 'Lexend',sans-serif;
}

body .select2-results .select2-results__options .select2-container--default .select2-results__option[data-selected=true] {
	background-color: var(--accent-color);
}

.custome_cart .cart-collaterals::after,
.custome_cart .cart-collaterals::before {
	content: unset;
}

.custome_cart .cart-collaterals {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

.custome_cart .cart-collaterals .cart_left_image {
	max-width: 570px;
	width: 100%;
	height: inherit;
}

.custome_cart .cart-collaterals .cart_left_image img {
	height: 100%;
	object-fit: cover;
}


/************************** 4.Checkout CSS  *****************************/

.checkout.woocommerce-checkout {
	display: inline-block;
}

.checkout.woocommerce-checkout h3 {
	margin-bottom: 0;
}
.checkout.woocommerce-checkout .woocommerce-billing-fields > h3,
.checkout.woocommerce-checkout .woocommerce-additional-fields > h3,
.checkout.woocommerce-checkout #order_review_heading {
	color: var(--secondary-color);
	font-family: 'Elsie',sans-serif;
	font-size: 40px;
	font-style: normal;
	font-weight: 400;
	line-height: 50px;
	margin-bottom: 30px;
}

.checkout.woocommerce-checkout .col2-set {
	max-width: 570px;
	width: 100%;
	float: left;
	margin-right: 30px;
}

.checkout.woocommerce-checkout .col2-set > .col-1,
.checkout.woocommerce-checkout .col2-set > .col-2,
.checkout.woocommerce-checkout .col2-set > [class^="col"]{
	width: 100%;
	float: none;
	margin-bottom: 0;
	padding: 0;
}

.checkout.woocommerce-checkout #customer_details {
	overflow: hidden;
}

.checkout.woocommerce-checkout #ship-to-different-address label > span {
	background: transparent;
	font-size: 16px;
	line-height: 18px;
	color: white;
	font-weight: 400;
	margin-top: 0px;
	padding: 0px 12px 0;
	font-family: 'Lexend',sans-serif;
}

.checkout.woocommerce-checkout #order_review_heading,
.checkout.woocommerce-checkout #order_review {
	max-width: 570px;
	width: 100%;
	float: left;
	margin: 0;
	padding: 0;
	background: rgb(153 169 173 / 10%);
	padding: 40px;
}

.checkout.woocommerce-checkout #order_review_heading {
	padding-bottom: 10px;
}

.checkout.woocommerce-checkout #order_review {
	padding-top: 0;
}

.checkout.woocommerce-checkout #order_review table.shop_table thead .product-total  {
	width: 45%;
}

.checkout.woocommerce-checkout #order_review table.shop_table tbody td.product-name {
	color:var(--secondary-color);
	font-family: 'Lexend',sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
	text-transform: capitalize;
}

.checkout.woocommerce-checkout #order_review table.shop_table th {
	padding: 0;
}

.checkout.woocommerce-checkout #order_review table.shop_table td,
.checkout.woocommerce-checkout #order_review table.shop_table th {
	color:var(--secondary-color);
	font-family: 'Lexend',sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	margin-top: 0;
	margin-bottom: 0;
	padding: 5px 0px;
	text-transform: capitalize;
}

.checkout.woocommerce-checkout .form-row {
	padding: 0;
	margin: 0;
	margin-bottom: 30px;
}

.checkout.woocommerce-checkout .form-row label {
	width: 100%;
	padding: 0;
	font-size: 16px;
	line-height: 18px;
	color: var(--secondary-color);
	font-weight: 400;
	font-family: 'Lexend',sans-serif;
	margin-bottom: 10px;
}

.checkout.woocommerce-checkout .form-row .required{
	color: var(--secondary-color);
}

.checkout.woocommerce-checkout .form-row input,
.checkout.woocommerce-checkout .form-row textarea{
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--accent-color);
	background: transparent;
	font-size: 16px;
	line-height: 18px;
	color: var(--secondary-color);
	font-weight: 400;
	font-family: 'Lexend',sans-serif;
	height: 40px;
}

.checkout.woocommerce-checkout .form-row textarea::placeholder {
	color: var(--secondary-color);
}

.checkout.woocommerce-checkout .form-row textarea {
	height: 120px;
}

.checkout.woocommerce-checkout .form-row span[role="textbox"] {
	color: var(--secondary-color);
	font-size: 16px;
	line-height: 18px;
	font-weight: 400;
	font-family: 'Lexend',sans-serif;
	background: transparent;
	padding: 0;
}

.checkout.woocommerce-checkout .form-row span[role="combobox"]{
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--accent-color);
	height: 40px;
	background: transparent;
}

.checkout.woocommerce-checkout .form-row span[role="presentation"] b{
	height: 40px;
	border-color: #FFF transparent transparent transparent;
}

.checkout.woocommerce-checkout .col-2 h3#ship-to-different-address {
	margin-bottom: 20px;
}

.checkout.woocommerce-checkout .col-2 h3#ship-to-different-address label {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.checkout.woocommerce-checkout #order_review .shop_table{
	border-top: 1px solid var(--primary-color);
	padding-top: 10px;
	margin: 0;
}

.checkout.woocommerce-checkout #order_review table.shop_table thead tr th,
.checkout.woocommerce-checkout #order_review table.shop_table tr.order-total th,
.checkout.woocommerce-checkout #order_review table.shop_table tr.order-total td{
	font-size: 20px;
	line-height: 30px;
	color: var(--secondary-color);
	padding-bottom: 10px;
}

.checkout.woocommerce-checkout #order_review table.shop_table tr.order-total th,
.checkout.woocommerce-checkout #order_review table.shop_table tr.order-total td{
	padding-bottom: 0;
	padding-top: 10px;
}

.checkout.woocommerce-checkout #order_review table.shop_table {
	border-spacing: 0; 
	border-collapse: separate;
}

.checkout.woocommerce-checkout #order_review table.shop_table thead tr th {
	border-bottom: 1px solid var(--primary-color);
	padding-bottom: 10px;
}

.checkout.woocommerce-checkout #order_review table.shop_table tr.order-total th,
.checkout.woocommerce-checkout #order_review table.shop_table tr.order-total td {
	border-top: 1px solid var(--primary-color);
	border-bottom: 1px solid var(--primary-color);
	padding-top: 10px;
	padding-bottom: 10px;

}

.checkout.woocommerce-checkout #payment {
	background: transparent;
	padding: 0;
	margin: 0;
}

input[type="radio"] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 24px;
	height: 24px;
	border: 2px solid #F5D7A1;
	border-radius: 50%;
	cursor: pointer;
	position: relative;
}

input[type="radio"]:checked::before {
	content: "";
	width: 14px;
	height: 14px;
	background-color: #F5D7A1;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 16px;
	height: 16px;
	border: 2px solid #F5D7A1;
	border-radius: 2px;
	cursor: pointer;
	position: relative;
}

input[type="checkbox"]:checked::before {
	content: "✔";
	color: var(--black-color);
	font-size: 12px;
	line-height: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #F5D7A1;
	border-radius: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.checkout.woocommerce-checkout #payment .payment_methods {
	padding: 20px 0px;
	border-bottom:1px solid var(--primary-color) ;
}

.checkout.woocommerce-checkout #payment .payment_methods li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 15px;
}

.checkout.woocommerce-checkout #payment .payment_methods li label {
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	cursor: pointer;
	color: var(--secondary-color);
	position: relative;
	display: block;
	font-family: 'Lexend',sans-serif;
}

.checkout.woocommerce-checkout #payment .payment_methods li .payment_box {
	margin: 0;
	background: transparent;
	color: var(--secondary-color);
	padding: 10px 0 0;
}

.checkout.woocommerce-checkout #payment .payment_methods li .payment_box::before{
	content: unset;
}

.checkout.woocommerce-checkout #payment .payment_methods li .payment_box p {
	margin-bottom: 0;
	color: var(--secondary-color);
	font-size: 16px;
	font-weight: 400;
	font-family: 'Lexend', sans-serif;
	line-height: 28px;
}

.checkout.woocommerce-checkout #payment .payment_methods li input[type="radio"] {
	margin: 0 15px 0 0 ;
}

.checkout.woocommerce-checkout #payment div.form-row.place-order {
	padding: 20px 0px 0;
	margin: 0;
}

.checkout.woocommerce-checkout .place-order .woocommerce-privacy-policy-text p {
	color: var(--secondary-color);
	font-family: 'Lexend', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
	text-transform: capitalize;
}

.checkout.woocommerce-checkout .place-order .woocommerce-privacy-policy-text p a {
	color: var(--primary-color);
	text-decoration: underline;
}

.checkout.woocommerce-checkout #payment #place_order {
	float: left;
	margin-top: 30px;
	width: 100%;
}

.woocommerce .woocommerce-order h2 {
	color: var(--secondary-color);
	font-family: 'Elsie', sans-serif;
	font-size: 40px;
	font-style: normal;
	font-weight: 400;
	line-height: 50px;
	padding: 0;
	margin: 0;
	margin: 20px 0;
}

.woocommerce-order h3 {
	font-size: 20px;
	font-weight: 400;
	line-height: 35px;
	font-family: 'Lexend', sans-serif;
}

.woocommerce-order p {
	margin-bottom: 0;
	color: var(--secondary-color);
	font-size: 16px;
	font-weight: 400;
	font-family: 'Lexend', sans-serif;
	line-height: 28px;
	margin-bottom: 15px;
}

.woocommerce ul.order_details {
	margin: 0;
	display: flex;
	gap: 20px;
	margin: 15px 0;
	justify-content: space-between;
	border: 1px solid var(--accent-color);
	padding: 20px;
	border-radius: 10px;
}

.woocommerce ul.order_details li {
	display: flex;
	flex-direction: column;
	padding: 0;
	margin: 0;
	text-align: left;
	word-wrap: break-word;
}

.woocommerce ul.order_details li {
	color: var(--primary-color);
	font-size: 16px;
	font-weight: 400;
	font-family: 'Lexend', sans-serif;
	line-height: 28px;
	border: 0;
}

.woocommerce ul.order_details li strong {
	font-size: 16px;
	line-height: 28px;
	color: var(--secondary-color);
}

.woocommerce ul.order_details::after, .woocommerce ul.order_details::before {
	content: unset;
}

.woocommerce .woocommerce-order-details {
	margin-top: 40px;
}

.woocommerce .woocommerce-order-details  table.shop_table,
.woocommerce .woocommerce-order-details  table.shop_table tbody,
.woocommerce .woocommerce-order-details  table.shop_table thead,
.woocommerce .woocommerce-order-details  table.shop_table tr,
.woocommerce .woocommerce-order-details  table.shop_table th,
.woocommerce .woocommerce-order-details  table.shop_table td,
.woocommerce .woocommerce-order-details  table.shop_table tfoot {
	border: 1px solid var(--accent-color);
	border-collapse: collapse;
	font-size: 18px;
	font-weight: 400;
	line-height: 30px;
	color: var(--secondary-color);
	padding-bottom: 10px;
	font-family: 'Lexend', sans-serif;
}

.woocommerce .woocommerce-order-details  table.shop_table p {
	font-size: 18px;
	font-weight: 400;
	line-height: 30px;
	color: var(--secondary-color);
	font-family: 'Lexend', sans-serif;
}

.woocommerce .woocommerce-order-details  table.shop_table th {
	font-weight: 600;
}

.woocommerce .woocommerce-customer-details .addresses::before,
.woocommerce .woocommerce-customer-details .addresses::after {
	content: unset;
}

.woocommerce .woocommerce-customer-details .addresses {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 20px;
}

.woocommerce .woocommerce-customer-details .addresses  .woocommerce-column {
	padding: 0;
	background: rgb(153 169 173 / 10%);
	padding: 20px;
	max-width: 570px;
	width: 100%;
	border: 1px solid var(--accent-color);
	border-radius: 10px;
}

.woocommerce .woocommerce-customer-details .addresses address, 
.woocommerce .woocommerce-customer-details .addresses address p {
	font-size: 18px;
	font-weight: 400;
	line-height: 36px;
	color: var(--secondary-color);
	padding: 0;
	font-family: 'Lexend', sans-serif;
	margin: 0;
}

.woocommerce .woocommerce-customer-details .addresses address p {
	padding-left: 1.5em;
}

.woocommerce-order .woocommerce-thankyou-order-received {
	width: 100%;
	text-align: center;
	font-size: 40px;
	line-height: 34px;
	padding: 40px;
	border: 1px solid var(--primary-color);
	margin-bottom: 40px;
	color: var(--primary-color);
	font-family: 'Elsie', sans-serif;
	border-radius: 10px;
}

/****************************5.MyAccount CSS/Lost Account CSS****************************/

body .woocommerce p {
	font-size: 18px;
	line-height: 24px;
	font-family: 'Lexend',sans-serif;
	color: var(--secondary-color);
}

body .woocommerce h2{
	font-size: 60px;
	line-height: 96px;
}

.woocommerce form.login{
	padding: 0;
	border:none;
}

.woocommerce form .form-row {
	display: flex;
	flex-direction: column;
}

.woocommerce .woocommerce-form-login .woocommerce-form-row {
	margin-bottom: 30px;
}

.woocommerce form .woocommerce-form-row label,
.woocommerce .woocommerce-form-login .woocommerce-form-row label,
.woocommerce .woocommerce-ResetPassword p{
	font-family: 'Lexend',sans-serif;
	font-size: 18px;
	line-height: 24px;
	color: var(--secondary-color);
	margin-bottom: 10px;
}

.woocommerce form  .form-row .input-text,
.woocommerce .woocommerce-form-row.form-row .input-text,
.woocommerce .woocommerce-address-fields .select2-selection__rendered{
	font-family: 'Lexend',sans-serif;
	font-size: 18px;
	line-height: 24px;
	color: var(--secondary-color);
	background: transparent;
	border: 1px solid var(--primary-color);
	border-radius: 0;
}

.woocommerce .woocommerce-address-fields .select2-selection {
	background-color: transparent;
}

.woocommerce form .form-row .input-text:focus{
	outline: none;
	border: 1px solid var(--primary-color);
}

.woocommerce .woocommerce-ResetPassword .woocommerce-Button{
	width: max-content;
}

.woocommerce .woocommerce-orders-table .woocommerce-button.button{
	padding: 10px 30px;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit,
.woocommerce .woocommerce-ResetPassword .woocommerce-Button,
.woocommerce .woocommerce-orders-table .woocommerce-button,
.woocommerce .woocommerce-address-fields button,
.woocommerce .woocommerce-EditAccountForm .woocommerce-Button,
.single-product .product .button,
.single-product.woocommerce #review_form #respond .form-submit input{
	font-family: 'Lexend',sans-serif;
	background: var(--primary-color);
	color: var(--text-color);
	border: 1px solid var(--primary-color);
	padding: 15px 30px;
	font-size: 18px;
	line-height: 20px;
	border-radius: 0;
	transition: all 0.3s linear;
	cursor: pointer;
	font-weight: 400;
	margin: 0;
}

.woocommerce .woocommerce-EditAccountForm .woocommerce-Button {
	margin-top: 20px;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit:hover,
.woocommerce .woocommerce-ResetPassword .woocommerce-Button:hover,
.woocommerce .woocommerce-orders-table .woocommerce-button:hover,
.woocommerce .woocommerce-address-fields button:hover,
.woocommerce .woocommerce-EditAccountForm .woocommerce-Button:hover,
.single-product.woocommerce #review_form #respond .form-submit input:hover{
	border: 1px solid var(--primary-color);
	background: transparent;
	color: var(--primary-color);
}

.woocommerce .woocommerce-ResetPassword.lost_reset_password {
	margin: auto;
	width: 100%;
	padding: 20px;
	border: 1px solid var(--primary-color);
}

.woocommerce .woocommerce-form-login .woocommerce-LostPassword, .woocommerce .lost_reset_password {
	font-family: 'Lexend',sans-serif;
	font-size: 16pX;
	line-height: 20px;
	color: var(--secondary-color);
	margin-left: auto;
	width: fit-content;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
	font-size: 18px;
	line-height: 20px;
	color: var(--secondary-color);
	font-family: 'Lexend',sans-serif;
	margin-bottom: 10px;
}

.woocommerce .woocommerce-ResetPassword .woocommerce-form-row--first {
	margin: 30px 0;
	padding: 0;
}

.woocommerce .woocommerce-form-login.login {
	padding: 20px;
	border: 1px solid var(--primary-color);
	border-radius: 0;
}

/* without login css myaccount */

.woocommerce .woocommerce-MyAccount-navigation ul li:first-child{
	border-top: 1px solid rgb(217 217 217 / 10%);
}

.woocommerce .woocommerce-MyAccount-navigation ul li{
	border-bottom: 1px solid rgb(217 217 217 / 10%);
	padding: 15px 0;
}

.woocommerce .woocommerce-MyAccount-navigation ul li a,
.woocommerce .woocommerce-orders-table tbody tr td{
	font-size: 18px;
	line-height: 20px;
	color: var(--secondary-color);
	font-family: 'Lexend',sans-serif;
}

.woocommerce .woocommerce-MyAccount-navigation ul li a:hover {
	color: var(--primary-color);
}

.woocommerce .woocommerce-MyAccount-navigation ul li.is-active a {
	color: var(--primary-color);
}

.woocommerce .woocommerce-MyAccount-content p{
	margin-bottom: 15px;
}

.woocommerce .woocommerce-MyAccount-content a {
	color: var(--primary-color);
	font-family: 'Lexend',sans-serif;
	font-size: 18px;
}

.woocommerce .woocommerce-MyAccount-content .woocommerce-info a{
	background-color: var(--primary-color);
	color: var(--text-color);
	border: 1px solid var(--primary-color);
	border-radius: 0;
	font-weight: 400;
}

.woocommerce .woocommerce-MyAccount-content .woocommerce-info a:hover{
	background-color: transparent;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.woocommerce .my_account_orders thead tr th span{
	font-size: 18px;
	line-height: 20px;
	color: var(--primary-color);
	font-family: 'Lexend',sans-serif;
}

body .woocommerce-Address-title h2,
body h2.woocommerce-column__title{
	font-size: 40px;
	line-height: 50px;
}

.woocommerce .woocommerce-Address address,
.woocommerce .woocommerce-MyAccount-content fieldset legend {
	font-size: 16px;
	font-family: 'Lexend',sans-serif;
	font-style: normal;
	color: var(--secondary-color);
	line-height: 30px;
}

.woocommerce #account_display_name_description em{
	font-style: normal;
	padding-top: 5px;
	display: block;
}

.woocommerce .woocommerce-MyAccount-content fieldset{
	padding: 20px;
}

.woocommerce .woocommerce-Addresses .woocommerce-Address {
	padding: 10px;
	border: 1px solid var(--primary-color);
	margin: 20px 0;
}

.woocommerce .woocommerce-Addresses .edit::before {
	content: "";
	display: inline-block;
	width: 32px;
	height: 32px;
	background-image: url(../images/myaccount/icon-edit.png); 
	background-size: contain;
	background-repeat: no-repeat;
}

.woocommerce-account .woocommerce .addresses .title .edit{
	font-size: 0;
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation{
	width: 25%;
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
	width: 73%;
}

.woocommerce-account .woocommerce::before,
.woocommerce-account .woocommerce::after{
	display: none;
}

.woocommerce-account .woocommerce .woocommerce-Address-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--primary-color);
	margin-bottom: 10px;
}

.woocommerce-account .woocommerce .addresses .title::after, 
.woocommerce-account .woocommerce .addresses .title::before,
.woocommerce-account .woocommerce .woocommerce-info::after,
.single-product .woocommerce-message::before, 
.single-product .woocommerce-message::after {
	display: none;
}


/***************************6.Single Product CSS***************************/

.single-container{
	max-width: 1170px;
	width: 100%;
	margin: 0 auto;
}

.single-product .product span.onsale {
	display: none;
}

.single-product  .product_title {
	font-size: 60px;
	line-height: 80px;
}

.single-product .product ins {
	font-size: 18px;
	line-height: 24px;
	font-weight: 400;
	color: var(--primary-color);
	font-family: 'Lexend',sans-serif;
}

.single-product .product p{
	font-size: 18px;
	line-height: 24px;
	font-weight: 400;
	font-family: 'Lexend',sans-serif;
	color: var(--accent-color);
}

.single-product .woocommerce-product-details__short-description{
	padding:  0;
	margin: 40px 0px;
}

.single-product .product_meta{
	font-family: 'Lexend',sans-serif;
}

.single-product .container.single-container {
	padding-top: 100px;
	padding-bottom: 100px;
}

.single-product .product .quantity .qty{
	padding: 13px;
	width: auto;
	outline: none;
}

.single-product .woocommerce .products ul, .woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.single-product .product .product-image img{
	width: 100%;
	height: auto;
	transform: scale(1) rotateZ(0deg);
	transition: all 0.3s linear;
}

.single-product .product .product-image img:hover{
	transform: scale(1.25) rotateZ(-5deg);
}

.single-product .product-info {
	padding: 20px 0 0 0;
}

.single-product .product .product-image {
	max-width: 100%;
	width: 100%;
	overflow: hidden;
	position: relative;
}

.single-product .product .product-image a {
	width: 100%;
	height: auto;
	display: block;
}

.single-product .woocommerce-tabs h2{
	font-size: 32px;
	line-height: 40px;
	font-weight: 400;
	margin-bottom: 10px;
}

.single-product .comment-form-rating{
	margin: 20px 0;
}

.single-product .comment-form-rating label{
	display: block;
	margin-bottom: 5px;
	font-size: 24px;
	line-height: normal;
	font-weight: 400;
	color: var(--secondary-color);
}

.single-product .related.products h2{
	margin-bottom: 60px;
	font-weight: 400;
	font-size: 60px;
	line-height: 70px;
	letter-spacing: 0;
	text-align: center;
}

.single-product .pswp__scroll-wrap .pswp__ui.pswp__ui--fit {
	height: 100%;
}

.single-product .pswp__scroll-wrap button {
	border: none;
	border-color:transparent;
	padding: 0;
	border-radius:0;
}

.single-product .pswp__scroll-wrap button:hover {
	border: none;
	border-color:transparent;
	padding: 0;
	border-radius:0;
}

.single-product.woocommerce div.product div.images .flex-control-thumbs{
	margin-top: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.single-product.woocommerce div.product div.images .flex-control-thumbs li img {
	padding-right: 10px;
	margin-bottom: 10px;
}

.single-product.woocommerce div.product div.images .flex-control-thumbs li  {
	max-width: 180px;
	width: 100%;
	height: auto;
	float:unset;
}

.single-product.woocommerce div.product div.images .flex-control-thumbs .slick-track{
	display: flex;
}


.single-product.woocommerce div.product .woocommerce-tabs ul.tabs {
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 20px;
	border: unset;
	margin-bottom: 40px;
}

.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li {
	padding: 0;
	margin: 0;
	border: unset;
	background: transparent;
	border-radius: 0;
}

.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li a{
	margin: 0;
	padding: 12px 20px;
	background: var(--primary-color);
	text-align: center;
	text-transform: capitalize;
	border: 1px solid transparent;
	color: var(--text-color);
	font-size: 30px;
	line-height: 40px;
	font-family: 'Elsie', sans-serif;
	font-weight: 400;
	transition: all 0.3s linear;
}

.single-product.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
	content:unset;
}

.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover{
	background: transparent;
	border: 1px solid var(--primary-color);
	color: var(--secondary-color);
}

.single-product.woocommerce div.product .woocommerce-tabs .panel h2,
.single-product.woocommerce div.product .woocommerce-tabs .panel h2 span {
	font-size: 30px;
	line-height: normal;
	margin-bottom: 40px;
}

.single-product.woocommerce div.product .woocommerce-tabs .panel h2 span {
	margin-bottom: 0;
	font-family: 'Elsie', sans-serif;
	color: var(--secondary-color);
}

.single-product.woocommerce div.product .woocommerce-tabs .panel h3 {
	font-size: 30px;
	line-height: normal;
	margin:40px 0px 20px;
}

.single-product.woocommerce div.product .woocommerce-tabs .panel h4 {
	font-size: 24px;
	line-height: normal;
	margin:30px 0px 20px;
}

.single-product.woocommerce div.product .woocommerce-tabs .panel p,
.single-product.woocommerce div.product .woocommerce-tabs .panel span {
	margin-bottom: 10px;
}

.single-product.woocommerce div.product .woocommerce-tabs .panel p,
.single-product.woocommerce div.product .woocommerce-tabs .panel span,
.single-product.woocommerce div.product .woocommerce-tabs .panel ul li,
.single-product.woocommerce div.product .woocommerce-tabs .panel ol li {
	font-size: 18px;
	line-height: 26px;
	font-weight: 400;
	font-family: 'Lexend',sans-serif;
	color: var(--accent-color);
}

.single-product.woocommerce div.product .woocommerce-tabs .panel ul,
.single-product.woocommerce div.product .woocommerce-tabs .panel ol {
	margin: 0;
	padding: 0;
	list-style: none;
	margin-left: 20px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.single-product.woocommerce div.product .woocommerce-tabs .panel ul li{
	list-style: disc;
}

.single-product.woocommerce div.product .woocommerce-tabs .panel ol li  {
	list-style: decimal;
}

.single-product.woocommerce .comment-form-rating {
	margin: 20px 0 15px;
}
.single-product p.stars a {
	color: #FFDE9F;
}

.single-product.woocommerce #review_form #respond textarea,
.single-product.woocommerce #review_form #respond input {
	box-sizing: border-box;
	outline: none;
	width: 100%;
	border: 1px solid var(--primary-color);
	color: var(--secondary-color);
	font-size: 18px;
	font-family: 'Lexend', sans-serif;
	line-height: 24px;
	padding: 20px;
	background-color: rgb(11 19 21 / 20%);
}

.single-product.woocommerce #review_form #respond textarea{
	height: 120px;
}

.single-product.woocommerce #review_form #respond input[type="checkbox"]{
	width: fit-content;
	padding: 8px;
}

.single-product.woocommerce #review_form #respond p {
	margin: 0 0 15px;
}

.single-product.woocommerce #review_form #respond form img {
	margin-bottom: 10px;
	margin: 10px 0px;
    max-width: 100%;
    height: 50px;
    width: 100%;
    object-fit: contain;
    object-position: left;
}

.single-product.woocommerce #review_form #respond .comment-form-captcha label,
.single-product.woocommerce #review_form #respond .comment-form-captcha {
	margin: 0;
}

.single-product.woocommerce #review_form #respond .comment-form-captcha {
	margin-top: 20px;
}

.single-product.woocommerce #review_form #respond label {
	font-size: 18px;
	font-family: 'Lexend', sans-serif;
	line-height: 24px;
	color: var(--secondary-color);
	margin-bottom: 10px;
	display: block;
}

.single-product.woocommerce #review_form #respond p.comment-form-cookies-consent {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
}

.single-product.woocommerce #review_form #respond p.comment-form-cookies-consent label{
	margin: 0;
}

.single-product.woocommerce #review_form #respond .form-submit  {
	margin: 0;
}

.single-product.woocommerce #review_form #respond .form-submit input{
	width: fit-content;
}

.single-product.woocommerce div.product .woocommerce-tabs .panel {
	margin: 0;
}

.single-product .woocommerce-Reviews #comments .commentlist li{
	margin: 0;
	padding: 0;
	list-style: none;
}

.single-product #reviews.woocommerce-Reviews #comments .commentlist li:not(:last-child) {
	border-bottom: 2px solid var(--accent-color);
	padding-bottom: 20px;
}

.single-product.woocommerce #reviews #comments ol.commentlist li img.avatar{
	width: 100px;
	height: 100px;
	border-radius: 100%;
	background: transparent; 
	border: unset;
	padding: 0;
	float: unset;
	position: unset;
}

.single-product.woocommerce #reviews #comments ol.commentlist li .comment-text {
	width: calc(100% - 75px);
	float: unset;
	border: unset;
	padding: 0;
	margin: 0;
}

.single-product.woocommerce #reviews #comments ol.commentlist li .comment-text .star-rating span {
	font-family: inherit;
	color: #FFDE9F;
}

.single-product.woocommerce #reviews #comments ol.commentlist li .comment_container {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 20px;
}

.single-product.woocommerce .comment_container .star-rating span::before {
	top: -4px;
}

.single-product.woocommerce .star-rating {
	float: unset;
	margin-bottom: 15px;
	height: 22px;
}

.single-product.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
	font-family: "Elsie",sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: normal;
	letter-spacing: 0;
	text-align: left;
	margin-bottom: 18px;
	color: var(--secondary-color);
	vertical-align: middle;
}

.single-product.woocommerce #reviews #comments ol.commentlist li .comment-text .description p {
	font-family:"Lexend",sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0%;
	margin: 0;
	vertical-align: middle;
}

.single-product.woocommerce div.product .woocommerce-product-rating .star-rating span::before{
	top: 0;
}

.single-product.woocommerce div.product .woocommerce-product-rating .star-rating {
	margin: 0;
	color: #FFDE9F;
}

.single-product.woocommerce div.product .woocommerce-product-rating {
	margin-bottom: 10px;
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.single-product.woocommerce div.product .woocommerce-product-rating  .woocommerce-review-link {
	font-family: "Lexend",sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0;
	color: #99A9AD;
}

.single-product.woocommerce div.product p.price {
	margin: 40px 0px 0px;
}

.single-product.woocommerce div.product p.price,
.single-product.woocommerce div.product p.price ins{
	font-family: "Elsie", sans-serif;
	font-weight: 900;
	font-size: 30px;
	line-height: normal;
	letter-spacing: 0;
	color: #FFDE9F;
}

.single-product.woocommerce div.product p.price del {
	opacity: 1;
	text-decoration: line-through;
}

.single-product.woocommerce section.related.products {
	margin-top: 100px;
}


.single-product.woocommerce section.related.products .product-info {
	padding: 0;
}

.single-product.woocommerce .main-custom-quantity {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
}

.single-product.woocommerce .main-custom-quantity p {
	font-family: "Lexend",sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0;
	color: #FFFFFF;
}

.single-product.woocommerce .main-custom-quantity .custom-quantity {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 0;
	border: 1px solid #99A9AD;
	height: 64px;
}

.single-product.woocommerce .main-custom-quantity .custom-quantity button.qty-btn {
	background-color: transparent;
	border: unset;
	font-size: 24px;
	color: #99A9AD;
	padding: 24px;
	line-height: 24px;
	border: 1px solid #99A9AD;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.single-product.woocommerce .main-custom-quantity .custom-quantity input.qty {
	font-family: "Lexend", sans-serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 24px;
	letter-spacing: 0;
	text-align: center;
	background: transparent;
	border: none;
	outline: none;
	color: #FFFFFF;
	padding: 24px;
	border: 1px solid #99A9AD;
	max-width: 80px;
	width: 100%;
	height: auto;
}

.single-product.woocommerce .main-custom-quantity .custom-quantity input.qty::-webkit-outer-spin-button,
.single-product.woocommerce .main-custom-quantity .custom-quantity input.qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.single-product.woocommerce .main-custom-quantity .custom-quantity input.qty{
	-moz-appearance: textfield;
}


.single-product.woocommerce form.cart.single-product-cart::before,
.single-product.woocommerce form.cart.single-product-cart::after{
	content: unset;
}

.single-product.woocommerce form.cart.single-product-cart{
	margin-bottom: 40px;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	gap: 60px;
}

.single-product.woocommerce .product_meta span {
	font-family: "Lexend",sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0;
	margin: 0;
	color: #99A9AD;
	display: block;
	margin-bottom: 5px;
}

.single-product.woocommerce .product_meta span > span ,
.single-product.woocommerce .product_meta span > a {
	color: #FFFFFF;
	display: unset;
	margin: 0;
}

