.NumberBox {
	display: flex;
	justify-content: space-between;
	column-gap: 50px;
	align-items: center;
}

.NumberBoxItem {
	display: flex;
	column-gap: 7px;
	align-items: center;
	padding: 5px 10px;
	border: 1px solid rgba(192, 192, 192, 0.387);
	border-radius: 9px;
}
input.input-number {
	width: 48px;
	border: none;
	text-align: center;
}

span.input-number-increment,
span.input-number-decrement {
	padding: 3px;
	line-height: 0;
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	border-radius: 4px;
	font-size: calc(var(--fs-sm) + 0.5rem);
	background-color: var(--cl-primary);
	cursor: pointer;
}

.color-grid {
	display: flex;
	margin: 0;
	padding: 0;
}
.color-option {
	height: 25px;
	width: 25px;
	list-style: none;
    box-shadow: 3px 3px 22px 2px #80808066;
	margin: 7px;
	transition: 0.2s;
	cursor: pointer;
}
.color-option:hover {
	box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2);
}
.color-option.is-selected {
	transform: scale(1.1);
	box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2);
}
/* zoom */
.zoomable {
	position: relative;
	overflow: hidden;
	border-radius: 13px;
}
.zoomable__img {
	transform-origin: var(--zoom-pos-x, 0%) var(--zoom-pos-y, 0%);
	transition: transform 0.15s linear;
}
.zoomable--zoomed .zoomable__img {
	cursor: zoom-in;
	transform: scale(var(--zoom, 2));
}

#single {
	position: relative;
	max-width: 1300px;
}
#single .product-container {
	max-width: var(--main-max-width);
	width: 100%;
	/* padding-inline: var(-main-padding); */
	margin-inline: auto;
	display: flex;
	margin-bottom: 8rem;
}

#single .product-container > .product-image-container {
	max-width: 650px;
	width: 100%;
	display: flex;
	flex-direction: row-reverse;
	margin-bottom: 3rem;
	position: relative;
    gap: 1rem;
}

#single
	.product-container
	> .product-image-container
	> .product-image-wrapper {
	width: 100%;
}
#single
	.product-container
	> .product-image-container
	> .product-image-wrapper
	img {
	width: 75%;
	height: auto;
    display: block;
    margin: auto;
}

#single
	.product-container
	> .product-image-container
	> .product-slides
	> .product-slide.active {
	filter: brightness(97%);
	border-radius: 50%;
}

#single
	.product-container
	> .product-image-container
	> .product-slides {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
@media (max-width: 868px) {
	#single .product-container > .product-image-container {
		flex-direction: column;
	}
	#single
		.product-container
		> .product-image-container
		> .product-slides {
		flex-direction: row;
	}
}
#single
	.product-container
	> .product-image-container
	> .product-slides
	> .product-slide:hover:not(.active) {
	filter: brightness(99%);
	cursor: pointer;
}
#single
	.product-container
	> .product-image-container
	> .product-slides
	img {
	width: 100%;
	max-width: 100px;
	height: auto;
}

.product-card > .card-title-container > .price {
	padding-inline: 1rem !important;
	direction: ltr;
}

@media (max-width: 868px) {
	.product-card > .card-title-container > .price {
		font-size: var(--fs-sm);
	}
	.product-card > .card-title-container .title {
		padding-inline: 0.7rem;
	}
}
#single .product-container > .product-info-container {
	display: flex;
	flex-direction: column;
	margin-left: auto;
	direction: rtl;
	max-width: 500px;
}

#single
	.product-container
	> .product-info-container
	.title-container {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	font-size: var(--fs-lg) !important;
	margin-bottom: 2rem;
}
#single
	.product-container
	> .product-info-container
	.title-container
	> .title-en {
	color: var(--cl-primary);
	text-transform: uppercase;
}
#single
	.product-container
	> .product-info-container
	.title-container
	> .title-fa {
	font-weight: 500;
}

#single
	.product-container
	> .product-info-container
	.short-description {
	font-weight: 300;
	font-size: calc(var(--fs-sm) + 0.2rem);
	margin-bottom: 1rem;
}
#single
	.product-container
	> .product-info-container
	> .info-items {
	display: flex;
	flex-direction: column;
	margin-top: 2rem;
	gap: 2rem;
}
#single
	.product-container
	> .product-info-container
	> .info-items
	> .info-item {
	position: relative;
}

#single
	.product-container
	> .product-info-container
	> .info-items
	> .info-item
	> .key {
	font-weight: 600;
	font-size: calc(calc(var(--fs-sm) + 0.5rem) + 0.1rem);
}
#single
	.product-container
	> .product-info-container
	> .info-items
	> .info-item.features
	> .value
	> .features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding-block: 0.6rem;
	list-style: none;
}
#single
	.product-container
	> .product-info-container
	> .info-items
	> .info-item.features
	> .value
	> .features
	> .feature {
	display: flex;
	gap: 0.7rem;
	align-items: center;
	font-weight: 300;
	font-size: calc(var(--fs-sm) + 0.5rem);
}
#single
	.product-container
	> .product-info-container
	> .info-items
	> .info-item.features
	> .value
	> .features
	> .feature
	img {
	max-width: 50px;
}
@media (max-width: 868px) {
	#single
		.product-container
		> .product-info-container
		> .info-items
		> .info-item.features
		> .value
		> .features
		> .feature
		img {
		max-width: 35px;
	}
}

#single
	.product-container
	> .product-info-container
	> .info-items
	> .info-item-inline {
	display: flex;
	gap: 1rem;
	align-items: center;
}

#single
	.product-container
	> .product-info-container
	> .info-items
	> .info-item.price
	.value {
	display: flex;
	gap: 1rem;
	align-items: center;
	font-size: calc(var(--fs-md) + 0.8rem);
}

.iconeShare {
	position: absolute;
	right: -3rem;
	top: 0;
	flex-direction: column;
	display: flex;
	z-index: 99;
	gap: 0.2rem;
}
@media (max-width: 868px) {
	.iconeShare {
		position: absolute;
		right: 1rem;
		top: 0;
		flex-direction: column;
		display: flex;
		z-index: 99;
		gap: 0.2rem;
	}
}

#single
	.product-container
	> .product-info-container
	> .actions-container {
	display: flex;
	gap: 1rem;
	direction: rtl;
	margin-top: 5rem;
}
#single
	.product-container
	> .product-info-container
	> .actions-container
	a {
	background-color: rgb(220, 220, 220);
	color: black;
	padding: 0.8rem 1.5rem;
	border-radius: 4px;
	font-size: var(--fs-md);
	width: 100%;
	text-align: center;
}
#single
	.product-container
	> .product-info-container
	> .actions-container
	a.add-to-cart {
	background-color: #174294;

	color: white;
}
[hover-tooltip] {
	position: relative;
	cursor: default;
}
[hover-tooltip]:hover::before {
	content: attr(hover-tooltip);
	font-size: 12px;
	text-align: center;
	position: absolute;
	display: block;
	left: 50%;
	min-width: 150px;
	max-width: 200px;
	bottom: calc(100% + 10px);
	transform: translate(-50%);
	animation: fade-in 300ms ease;
	background: #272727;
	border-radius: 4px;
	padding: 6px;
	color: #ffffff;
	z-index: 9;
}
[hover-tooltip]:hover::after {
	content: "";
	position: absolute;
	display: block;
	left: 50%;
	width: 0;
	height: 0;
	bottom: calc(100% + 6px);
	margin-left: -3px;
	border: 1px solid black;
	border-color: #272727 transparent transparent transparent;
	border-width: 4px 6px 0;
	animation: fade-in 300ms ease;
}
[hover-tooltip][tooltip-position="bottom"]:hover::before {
	bottom: auto;
	top: calc(100% + 10px);
}
[hover-tooltip][tooltip-position="bottom"]:hover::after {
	bottom: auto;
	top: calc(100% + 6px);
	border-color: transparent transparent #272727;
	border-width: 0 6px 4px;
}

@media (max-width: 868px) {
    [hover-tooltip]:hover::after {
        display: none
    }
    [hover-tooltip]:hover::before {
        display: none
    }

}

@keyframes fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.iconeShare svg {
	cursor: pointer;
}
.tile {
	width: 80%;
	margin: 0px auto;
}
#tile-1 .tab-pane {
	padding: 15px;
	font-size: 14px;
}
#tile-1 .nav-tabs {
	position: relative;
	border: none !important;
	background-color: #fff;
	border-radius: 6px;
	direction: rtl;
}
#tile-1 .nav-tabs li {
	margin: 0px !important;
}
#tile-1 .nav-tabs li a {
	position: relative;
	margin-right: 0px !important;
	padding: min(1rem, 1.5vw) min(2rem, 4vw) !important;
	font-size: 16px;
	border: none !important;
	font-weight: 500;
	color: #333;
}
.product-card {
	/* padding-inline: 1rem; */
}
#tile-1 .nav-tabs a:hover {
	background-color: #fff !important;
	border: none;
}
#tile-1 .slider {
	display: inline-block;
	width: 30px;
	height: 2px;
	border-radius: 3px;
	background: linear-gradient(
		94deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(46, 106, 170, 1) 19%,
		rgba(59, 115, 175, 1) 86%,
		rgba(255, 255, 255, 0) 100%
	);
	position: absolute;
	z-index: 1200;
	bottom: 0;
	transition: all 0.4s linear;
}
#tile-1 .nav-tabs .active {
	background-color: transparent !important;
	border: none !important;
}
.active {
	opacity: 1;
}
.detailBox {
	padding: 20px;
}
.detailItemBox {
	margin-bottom: 40px;
}
.detailItem-title {
	color: #4d4d4d;
	margin-bottom: 20px;
	font-size: 18px;
	position: relative;
}

.detailItem-titles {
	width: 30%;
}
.detailItem-field * {
	display: block;
	background: #fafafa;
	padding: 14px 18px 12px;
	font-size: 14px;
	position: relative;
	float: right;
	margin-bottom: 7px;
	border-radius: 6px;
}
.detailItem-field::after {
	display: block;
	clear: both;
	content: "";
}
.detailItem-field ul {
	display: flex;
	background: #fafafa;
	flex-direction: column;
	margin-bottom: 7px;
	padding: 0;
}
.detailItem-field ul li {
	margin-bottom: 0;
	padding: 0;
}
.detailItem-field ul li p {
	margin-bottom: 0;
	padding: 3px;
}
.detailItem-value {
	width: 69%;
	float: left;
}
.descComment {
	direction: rtl;
}
.commentBoxItem {
	display: flex;
	width: 100%;
	flex-direction: column;
	justify-content: flex-start;
	row-gap: 20px;
}
.commentItem {
	display: flex;
	justify-content: flex-start;
	flex-direction: row-reverse;
	align-items: center;
	column-gap: 10px;
	background-color: #fafafa;
	padding: 24px;
	border-radius: 12px;
}
.commentImg {
	width: 10%;
	border-radius: 100px;
}
.detailComment {
	width: 97%;
}
.nameAndDate {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	width: 100%;
}
.nameAndDate p {
	font-size: 19px;
	font-weight: bold;
}
.nameAndDate span {
	color: #3943b7;
}
.sendCommentBox {
	display: flex;
	width: 70%;
	margin-left: auto;
	margin-top: 30px;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	row-gap: 13px;
}
.commentTextAria {
	width: 100%;
	border-radius: 13px;
	border: none;
	background-color: #fafafa;
	text-align: right;
    padding:20px;
}
.commentTextAria::placeholder {
	color: black;
}
.btnSendComment {
	padding: 14px 36px;
	color: white;
	background-color: #3943b7;
	border-radius: 8px;
	border: none;
	font-size: 15px;
	font-weight: 700;
}

/* card title container */


.titleSwiper {
	margin-bottom: 39px;
	font-size: 24px;
}
.swiperSimilarProduct {
    overflow: hidden;
    margin-top: 10rem;
}
@media (max-width: 800px) {
	.GeneralInformation {
		flex-wrap: wrap;
	}
	.titleSwiper {
		font-size: 16px;
	}
	.detailSummary {
		width: 100%;
		order: 1;
	}
	.slider {
		width: 100%;
	}
	.IndexPhoto {
		width: 100% !important;
		margin-right: 0 !important;
	}
	.NumberBox {
		flex-wrap: wrap;
		row-gap: 14px;
	}
	button.addToCartBtn {
		width: 100%;
	}
	.titleSingle {
		font-size: 24px !important;
	}
	.priceBox {
		font-size: 17px;
	}
	#tile-1 .nav-tabs {
		display: flex;
	}
	.sendCommentBox {
		width: 100%;
	}
	.btnSendComment {
		width: 100%;
	}
	.tile {
		width: 100%;
		margin: 0px auto;
	}
    .swiperSimilarProduct {
        overflow: hidden;
        margin-top: 1rem;
    }
}

@media (max-width: 868px) {
	#single .product-container {
		flex-direction: column;
		display: rtl;
		margin-inline: auto;
		align-items: center;
	}
	#single .product-slides {
		margin-inline: auto;
		margin-bottom: 3rem;
	}
	#single .product-info-container {
		margin-left: auto;
	}
}


.titleSwiper {
	margin-bottom: 39px;
	font-size: 24px;
}

.detailItem-field {
	display: flex;
	flex-direction: row-reverse;
	gap: 0.5rem;
}

.tab-pane h2{
    font-size: var(--fs-lg)
}
