/* Nirmol
-------------------------------------------------- */
.product-item-wrapper .row.nirmol {
	font-size: 10px;
	margin-top: 9px;
	white-space: nowrap;
}
.product-item-wrapper .row.nirmol span.needed-info {
	margin-right: 2px;
}
.row.nirmol {
	font-size: 12px;
	color: var(--gray-600);
}
.single-product .row.nirmol {
	margin-bottom: 24px;
}
.single-product .product-meta-row {
	margin-bottom: 6px;
}

@media (max-width: 640px) {
	.product-item-wrapper .row.nirmol {
		font-size: 9px;
	}
}

/* Gift Card
-------------------------------------------------- */
.single-product form.cart.gift-cards_form {
	margin-bottom: 12px;
	max-width: 480px;
}
.single-product form.cart.gift-cards_form .quantity {
	display: none !important;
}
.bs #ui-datepicker-div.ywgc-date-picker .ui-datepicker-buttonpane.ui-widget-content {
	margin-top: -2px !important;
}
.ywgc_enter_code {
	margin: 16px 0 4px 0;
}

/* Product Add ons
-------------------------------------------------- */
.wc-pao-addons-container {
	display: flex;
	flex-direction: column;
}
.wc-pao-addon label.wc-pao-addon-name {
	font-weight: 500;
}
.wc-pao-addon .wc-pao-addon-wrap {
	margin-top: 2px;
	padding: 0;
	margin-bottom: 12px;
}
.wc-pao-addon .wc-pao-addon-wrap select {
	min-width: 100%;
}

/* Wishlist 
-------------------------------------------------- */
.yith-add-to-wishlist-button-block a.yith-wcwl-add-to-wishlist-button,
.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--single.yith-wcwl-add-to-wishlist-button--anchor {
	font-size: 13px;
	color: var(--gray-500);
	gap: 4px;
}
.yith-add-to-wishlist-button-block a.yith-wcwl-add-to-wishlist-button:hover {
	color: var(--gray-700);
}
.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor svg.yith-wcwl-icon-svg,
.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor img {
	width: 16px;
}
.yith-add-to-wishlist-button-block.yith-add-to-wishlist-button-block--single {
	margin: 0;
}

/* Cookie Notice
-------------------------------------------------- */
div.bs-cooike-notice {
	position: fixed;
	background: white;
	width: 100vw;
	bottom: 0;
	z-index: 10000;
	padding: 13px;
	display: flex;
	justify-content: center;
	box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.1);
}

div.bs-cooike-notice .cooike-container {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	line-height: 22px;
}
div.bs-cooike-notice a {
	color: black;
	text-decoration: underline;
}
div.bs-cooike-notice a.approved {
	display: inline-block;
	background: black;
	color: white;
	padding: 9px 12px;
	border-radius: 6px;
	margin-right: 10px;
	cursor: pointer;
	text-decoration: none;
}
div.bs-cooike-notice a.approved:hover {
	text-decoration: none;
}
@media only screen and (max-width: 1024px) {
	div.bs-cooike-notice .cooike-container {
		flex-direction: column;
		gap: 10px;
	}
	div.bs-cooike-notice a.approved {
		padding: 5px;
		width: 200px;
	}
}

/* Linked Products
-------------------------------------------------- */
.bs-linked-products-wrapper {
	margin: 20px 0;
}

.bs-linked-products-wrapper h3 {
	font-size: 16px;
	margin-bottom: 10px;
}

.bs-linked-products-wrapper .linked-products {
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
}

.bs-linked-products-wrapper .linked-product {
	width: 80px;
	height: 80px;
}
.bs-linked-products-wrapper .linked-product a {
	border: 1px solid var(--gray-200);
	display: block;
	border-radius: 4px;
	overflow: hidden;
	position: relative;
	transition: all 0.3s ease;
}
.bs-linked-products-wrapper .linked-product a:hover,
.bs-linked-products-wrapper .linked-product.current a {
	border-color: black;
}

.bs-linked-products-wrapper .linked-product a:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.55);
	opacity: 0;
	transition: all 0.3s ease;
}
.bs-linked-products-wrapper .linked-product.current a:after,
.bs-linked-products-wrapper .linked-product a:hover:after {
	opacity: 1;
}

.bs-linked-products-wrapper .linked-product img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.product-item-wrapper .bs-linked-products-wrapper {
	flex: 1;
	display: flex;
	justify-content: center;
	margin: 0;
}
.product-item-wrapper .bs-linked-products-wrapper h3 {
	display: none;
}
.product-item-wrapper .bs-linked-products-wrapper .linked-product {
	width: 50px;
	height: 50px;
}
.product-item-wrapper .bs-linked-products-wrapper .linked-product a:hover,
.product-item-wrapper .bs-linked-products-wrapper .linked-product.current a {
	border-color: var(--gray-200);
}

/* Yith Frequently Bought Together
-------------------------------------------------- */
.yith-wfbt-section {
	margin-top: 20px;
}
.yith-wfbt-section h2 {
	font-size: 20px;
}
.yith-wfbt-form {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.yith-wfbt-section .yith-wfbt-images {
	display: flex;
	margin: 0;
	align-items: center;
}
.image-td {
	position: relative;
	height: 140px;
	flex-basis: 140px;
	border: 1px solid;
	border-radius: 4px;
	overflow: hidden;
}
.image-td img {
	position: absolute;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	top: 0;
	left: 0;
}
.yith-wfbt-section .yith-wfbt-images .image_plus {
	width: 12px;
	position: relative;
}
.yith-wfbt-section .yith-wfbt-images .image_plus:before {
	width: 30px;
	height: 30px;
	content: "+";
	background: black;
	display: block;
	position: absolute;
	top: 0;
	right: -8px;
	z-index: 1;
	color: white;
	font-size: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
}
.rtl .yith-wfbt-section .yith-wfbt-item input[type="checkbox"] {
	left: auto;
	right: 0;
	width: 20px;
	accent-color: black;
	height: 20px;
}
.rtl .yith-wfbt-section .yith-wfbt-item label {
	padding-right: 30px;
	padding-left: 0px;
	display: flex;
	align-items: center;
	min-height: 30px;
}
.yith-wfbt-section .yith-wfbt-items {
	margin-bottom: 0;
}
.yith-wfbt-section .yith-wfbt-item {
	margin-bottom: 10px;
	font-weight: 600;
}
.yith-wfbt-submit-block {
	font-size: 18px;
	padding-top: 16px;
}
.yith-wfbt-item span.price {
	display: inline;
}
.bs button.button.yith-wfbt-submit-button.button {
	border: 1px solid black;
	background: transparent;
	color: black;
}
.bs button.button.yith-wfbt-submit-button.button:hover {
	background: black;
	color: white;
}

/* Archive Categories Menu
-------------------------------------------------- */
.categories-menu-row {
	border-bottom: 1px solid #dfdfdf;
	display: flex;
	position: relative;
	margin-bottom: 12px;
	left: auto;
	right: calc(-50vw + 50%);
	width: 100vw;
	position: relative;
	min-width: 100%;
}
div.categories-menu-row:after {
	display: block;
	position: absolute;
	content: "";
	width: 10%;
	height: 34px;
	left: 0;
	top: 0;
	background-image: linear-gradient(90deg, #ffffff 16%, rgba(255, 255, 255, 0) 100%);
}
.categories-menu-row .wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	overflow: hidden;
}
.categories-menu-row nav {
	overflow-y: scroll;
	margin-left: calc(-1 * ((100vw - 100%) / 2));
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE and Edge */
}
.categories-menu-row nav::-webkit-scrollbar {
	display: none;
}
.categories-menu-row ul {
	list-style: none;
	padding: 0;
	white-space: nowrap;
}

.categories-menu-row li {
	display: inline-block;
	margin-left: 30px;
}
.categories-menu-row li:last-child {
	margin-left: 140px;
}
.categories-menu-row li a {
	display: block;
	padding: 4px 6px 8px;
	font-weight: 400;
	font-size: 17px;
	line-height: 22px;
	color: var(--gray-600);
}
.categories-menu-row li a svg {
	width: 10px;
	height: 10px;
}
.categories-menu-row li a:hover {
	color: #000;
}
.categories-menu-row li.current-item {
	border-bottom: 2px solid var(--gray-600);
}

@media (max-width: 1024px) {
	.categories-menu-row {
		left: auto;
		right: calc(-50vw + 50%);
		width: 100vw;
		margin-bottom: 20px;
	}
	.categories-menu-row .wrap {
		padding: var(--container-padding);
	}
	.bs .bs-archive-header-wrapper .categories-menu-row + .catalog-header-row {
		border-top: 0;
	}
}

@media (max-width: 768px) {
	.categories-menu-row .wrap {
		padding-right: var(--wrap-spacing);
		padding-left: var(--wrap-spacing);
	}
	.bs .bs-archive-header-wrapper h1 {
		font-size: 28px;
		margin-bottom: 4px;
	}
	.categories-menu-row li {
		margin-left: 24px;
	}
	.categories-menu-row li a {
		font-size: 16px;
	}
}

/* Bottom Action Line
-------------------------------------------------- */
@media only screen and (min-width: 998px) {
	#bottom-action-line {
		display: none;
		bottom: -100;
	}
}
@media only screen and (max-width: 998px) {
	.joinchat,
	.joinchat__button {
		display: none !important;
	}
}

body.woocommerce-checkout #bottom-action-line {
	display: none;
	bottom: -100;
}

#bottom-action-line {
	background: white;
	width: 100%;
	height: 49px;
	position: fixed;
	bottom: 0;
	z-index: 10;
	box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.19);

	-webkit-transition: bottom 0.4s;
	-moz-transition: bottom 0.4s;
	transition: bottom 0.4s;
}
#bottom-action-line.hide-line {
	bottom: -50px;
}
#bottom-action-line .items {
	display: flex;
}
#bottom-action-line .item {
	flex-grow: 1;
	text-align: center;
	margin-top: 9px;
	line-height: 31px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 9px;
}
#bottom-action-line .item + .item {
	border-right: 1px solid #e8e8e8;
}
#bottom-action-line .item .icon {
	width: 29px;
	height: 29px;
	background-color: black;
	border-radius: 50%;
	display: flex;
	margin-left: 2px;
	justify-content: center;
}
#bottom-action-line .item.whatsapp .icon {
	background-color: #32d950;
}
#bottom-action-line .item.waze .icon {
	background-color: #34ccff;
}

#bottom-action-line .item.call .icon img {
	position: relative;
	top: 7px;
	height: 13px;
}
#bottom-action-line .item.waze .icon img {
	position: relative;
	top: 5px;
	height: 17px;
}

#bottom-action-line .item .text {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
}

/* Product Recommendations
-------------------------------------------------- */
.cart-container .woocommerce-cart-form {
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.wc-prl-recommendations {
	flex-shrink: 0;
	width: 100%;
}
