:root {
	--black-writing: #212121;
	--primary-100: #0C7B93;
	--primary-color: #2F87C7;
	--secondary-color: #2F3E97;
	--text-color: #333333;
	--text-color-2: #696969;
	--icon-color: #474748;
	--muted-color: #B9B7B7;
	--muted-color-2: #FCF9F9;
	--dark-blue: #1D192B;
	--Labels-Secondary: #3C3C4399;
}

* {
	padding: 0;
	margin: 0;
}

html[dir="rtl"] .form-control {
	direction: rtl;
}

a {
	text-decoration: none;
}

input:focus {

	outline: 0;
}

button {
	outline: 0;
	border: 0;
	background-color: transparent;
}

ul,
li {
	list-style: none;
}

.fw-medium {
	font-weight: 500;
}

/* Buttons */
.btn {
	padding: 12px 20px;
	transition: all .3s ease-out;
}

.btn:hover {
	filter: brightness(.8);
}

.btn-primary {
	background-color: var(--primary-color);
	border-color: var(--primary-color);

	&:hover {
		border-color: var(--primary-color);
		background-color: var(--primary-color);
	}
}

/* Colors */
.text-primary {
	color: var(--primary-color) !important;
}

.text-secondary {
	color: var(--secondary-color) !important;
}

.text-color-1 {
	color: var(--text-color) !important;
}

.text-color-2 {
	color: var(--text-color-2) !important;
}

.text-icon-color {
	color: var(--icon-color) !important;
}

.text-c-label-2 {
	color: var(--Labels-Secondary);
}

/* Background */
.bg-primary {
	background-color: var(--primary-color) !important;
}

.bg-muted-2 {
	background-color: var(--muted-color-2) !important;
}

body {
	font-family: "Tajawal", sans-serif;
}

/* Components */
.primary-pagination .swiper-pagination-bullet {
	width: 45px;
	height: 8px;
	background-color: #D9D4D4;
	border-radius: 0;
}

.primary-pagination .swiper-pagination-bullet .swiper-pagination-bullet-active {
	background-color: #A89F9F;
}

.bg-overlay {
	position: relative;
}

.bg-overlay::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-image: url("../images/overlay-img-sections.png");
	background-position: center;
	background-repeat: repeat-x;
}

.bg-overlay .container {
	position: relative;
	z-index: 5;
}

.search-form {
	background-color: var(--primary-color);
	max-width: 560px;
	border-radius: 15px;
	margin-left: auto;
	margin-right: auto;
}

.search-form input {
	height: 60px;
}

.search-form button {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
}

.cart-icon {
	background-color: #2F87C71A;
	padding: 5px;
	border-radius: 42px;
	position: relative;
}

.circle-icon {
	position: relative;
	border-radius: 50%;
	background-color: #2F87C71A;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	aspect-ratio: 1/1;
	color: var(--primary-color);
}

.count-num {
	position: absolute;
	right: -15%;
	top: -10%;
	background-color: #FFFFFF;
	box-shadow: 0px 0px 4px 0px #0000002B;
	border-radius: 50%;
	font-size: 10px;
	color: #3A6175;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1/1;
	width: 18px;
	height: 18px;
}

.cart-icon .count-num {
	right: -140%;
	top: -15%;
}

.dropdown-profile .dropdown-toggle {
	box-shadow: 0px 2px 12px 0px #00000014;
	border-radius: 16px;
	background-color: var(--primary-color);
	color: #FFFFFF;
}

.dropdown-profile .dropdown-toggle img {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	object-fit: cover;
}

.hidden-def-icon::after {
	content: none;
}

/* Start Sections Header */
.sections-menu {
	background-color: #F3F6F8;
	border-bottom: 1px solid #E8E8E8;
}

.sections-menu .dropdown-toggle {
	height: 50px;
	border-top-right-radius: 8px;
	border-top-left-radius: 8px;
}

@media (min-width: 968px) {
	.sections-menu {
		background-color: #F3F6F8;
		border-bottom: 1px solid #E8E8E8;
		height: 62px;
	}
}

@media (max-width: 991px) {
	.sections-menu .blog-link {
		flex: 1 1 0;
		text-align: start;
	}
}

@media (max-width: 300px) {
	.sections-menu .blog-link {
		text-align: center;
	}
}

/* End Sections Header */
/* Start User UI Links */
.user-lab-item {
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 2px 2px 0px #00000040;
	border: 1px solid #DFDFDF;
	flex-direction: column;
	gap: 15px;
	border-radius: 8px;
	height: 100%;
	padding: 10px;
}

.user-lab-item .count-num {
	top: unset;
	bottom: -8%;
	right: 0;
}

.user-lab-item .title {
	color: #746C6C;
	font-weight: 700;
}

.user-lab-item img {
	object-fit: contain;
	width: 100%;
}

.user-lab-item.img img {
	max-width: 350px;
	width: 100%;
	max-height: 220px;
}

.user-lab-item.icon img {
	max-width: 80px;
	max-height: 80px;
}

@media (min-width: 991px) {
	.user-lab-item {
		min-height: 220px;
	}
}

/* End User UI Links */
/* Start Category Swiper */
.category-swiper {
	background-color: #CCECD6;
}

.category-swiper .swiper-slide img {
	width: 195px;
	height: 195px;
	object-fit: contain;
}


/* End Category Swiper */
/* Start Products */
.product-slide {
	position: relative;
	text-align: center;
}

.product-slide .slide-actions {
	background-color: #FFFFFF;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	border: 1px solid #B9B7B7;
	border-radius: 7px;
	bottom: 30%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	padding: 5px 10px;
	opacity: 0;
}

.product-slide .swiper-pagination {
	opacity: 0;
}

.product-slide:hover .slide-actions,
.product-slide:hover .swiper-pagination {
	opacity: 1;
}

/* End Products */
/* Start News */
.blog-card-item {
	max-width: 350px;
	margin: 0px auto;
}

.blog-card-item .image {
	height: 230px;
	width: 100%;
	text-align: center;
	margin: 0px auto;
}

.blog-card-item .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 12px;
}

.blog-card-item .info {
	margin-top: 15px;
}

.blog-card-item .info .title {
	color: var(--dark-blue);
	font-weight: 400;
	line-height: 40px;
	font-size: clamp(17px, 22px, 4vw);
}

.blog-card-item .info .text {
	color: var(--Labels-Secondary);
	font-size: clamp(17px, 20px, 4vw);
	line-height: 36px;
}

.blog-card-item .info .actions {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.blog-card-item .actions button {
	background-color: transparent;
	color: var(--labels-color);
}

.bg-overlay.blog {
	background-color: #00000008;
}

.bg-overlay.blog::after {
	background-image: url('../images/overlay-bg-sectipon.png');
	background-repeat: no-repeat;
}

/* End News */
/* Start Footer */
footer {
	background-color: #DD993326;
}
footer .logo{
	height: 190px;
	object-fit: contain;
	max-width: 250px;
}
footer .bottom-footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}
/* End Footer */

/* Category Tree Dropdown */
.dropdown-menu-wide {
    min-width: 250px;
    max-height: 400px;
    overflow-y: auto;
}

.category-tree {
    list-style: none;
    padding-left: 0;
}

.category-children {
    list-style: none;
    padding-left: 1rem;
}

.category-item {
    padding: 0.25rem 0;
}

.category-item a {
    text-decoration: none;
    display: block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.category-item a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.nav-link {
	font-size: 14px !important;
}
:root {
	--black-writing: #212121;
	--primary-100: #0C7B93;
	--primary-color: #2F87C7;
	--secondary-color: #2F3E97;
	--text-color: #333333;
	--text-color-2: #696969;
	--text-color-3: #363535;
	--text-color-4: #746C6C;
	--icon-color: #474748;
	--muted-color: #B9B7B7;
	--muted-color-2: #FCF9F9;
	--muted-color-3: #FCFCFC;
	--muted-color-4: #FFF9F9;
	--muted-color-5: #FFF8F8A8;
	--muted-color-6: #FAFAFA;
	--dark-blue: #1D192B;
	--dark-blue-2: #071437;
	--green-color: #155802;
	--Labels-Secondary: #3C3C4399;
	--Schemes: #49454F;

}

* {
	padding: 0;
	margin: 0;
}

html[dir="rtl"] .form-control {
	direction: rtl;
}

a {
	text-decoration: none;
}

input:focus {

	outline: 0;
}

button {
	outline: 0;
	border: 0;
	background-color: transparent;
}

p,
ul,
li {
	list-style: none;
	padding: 0;
	margin: 0;
}

.fw-medium {
	font-weight: 500;
}

.main-wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100dvh;
}

.main-wrapper main#main-content {
	flex: 1 1 auto;
}

.form-select {
	cursor: pointer;
}

.appearance-none::-webkit-outer-spin-button,
.appearance-none::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Buttons */
.btn {
	padding: 12px 20px;
	transition: all .3s ease-out;
}

.btn:not(.out-filter):hover {
	filter: brightness(.8);
}

.btn-primary {
	background-color: var(--primary-color);
	border-color: var(--primary-color);

	&:hover {
		border-color: var(--primary-color);
		background-color: var(--primary-color);
	}
}

.btn-outline-primary {
	border-color: var(--primary-color);
	color: var(--primary-color);

	&:hover {
		border-color: var(--primary-color);
		background-color: var(--primary-color);
	}
}

/* Colors */
.text-primary {
	color: var(--primary-color) !important;
}

.text-secondary {
	color: var(--secondary-color) !important;
}

.text-color-1 {
	color: var(--text-color) !important;
}

.text-color-2 {
	color: var(--text-color-2) !important;
}

.text-color-3 {
	color: var(--text-color-3) !important;
}

.text-color-4 {
	color: var(--text-color-4) !important;
}

.text-writing-color {
	color: var(--black-writing) !important;
}

.text-schemes-color {
	color: var(--Schemes) !important;
}

.text-icon-color {
	color: var(--icon-color) !important;
}

.text-dark-blue-2 {
	color: var(--dark-blue-2) !important;
}

.text-c-label-2 {
	color: var(--Labels-Secondary);
}

.text-green-color {
	color: var(--green-color);
}

/* Width Image */
.w-img-70 {
	width: 70px;
	height: 70px;
	object-fit: contain;
}
.iti{
	width: 100%;
}
/* Background */
.bg-primary {
	background-color: var(--primary-color) !important;
}
.bg-primary-40 {
	background-color: #2F87C70A !important;
}

.bg-muted-2 {
	background-color: var(--muted-color-2) !important;
}

.bg-muted-3 {
	background-color: var(--muted-color-3) !important;
}

.bg-muted-4 {
	background-color: var(--muted-color-4) !important;
}

.bg-muted-5 {
	background-color: var(--muted-color-5) !important;
}

.bg-muted-6 {
	background-color: var(--muted-color-6) !important;
}

.bg-schemes-color {
	background-color: var(--Schemes) !important;
}

.bg-icon-color {
	background-color: var(--icon-color) !important;
}

body {
	font-family: "Tajawal", sans-serif;
}

/* Components */
.primary-tabs .nav-link {
	color: var(--text-color-4);
	border: 0;
}

.primary-tabs .nav-link.active {
	color: var(--primary-color);
	font-weight: 700;
	border: 0;
}

.primary-pagination .swiper-pagination-bullet {
	width: 45px;
	height: 8px;
	background-color: #000000;
	border-radius: 0;
}

.primary-pagination .swiper-pagination-bullet .swiper-pagination-bullet-active {
	background-color: #A89F9F;
}

.bg-overlay {
	position: relative;
}

.bg-overlay::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-image: url("../images/overlay-img-sections.png");
	background-position: center;
	background-repeat: repeat-x;
}

.bg-overlay .container {
	position: relative;
	z-index: 5;
}

.search-form {
	background-color: var(--primary-color);
	max-width: 560px;
	border-radius: 15px;
	margin-left: auto;
	margin-right: auto;
}

.search-form input {
	height: 60px;
}

.search-form button {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
}

.cart-icon {
	background-color: #2F87C71A;
	padding: 5px;
	border-radius: 42px;
	position: relative;
}

.circle-icon {
	position: relative;
	border-radius: 50%;
	background-color: #2F87C71A;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	aspect-ratio: 1/1;
	color: var(--primary-color);
}

.count-num {
	position: absolute;
	right: -15%;
	top: -10%;
	background-color: #FFFFFF;
	box-shadow: 0px 0px 4px 0px #0000002B;
	border-radius: 50%;
	font-size: 10px;
	color: #3A6175;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1/1;
	width: 18px;
	height: 18px;
}

.cart-icon .count-num {
	right: -140%;
	top: -15%;
}

.dropdown-profile .dropdown-toggle {
	box-shadow: 0px 2px 12px 0px #00000014;
	border-radius: 16px;
	background-color: var(--primary-color);
	color: #FFFFFF;
}

.dropdown-profile .dropdown-toggle img {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	object-fit: cover;
}

.hidden-def-icon::after {
	content: none;
}

/* Cart Table Layout */
@media (max-width: 991px) {
	.table.table-cart thead {
		display: none;
	}

	.table.table-cart tbody tr {
		display: block;
		background-color: var(--muted-color-2);
		border-radius: 20px;
		margin-bottom: 15px;
	}

	.table.table-cart tbody tr td {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 10px 20px;
	}

	.table.table-cart tbody tr td:not(:last-child) {
		border-bottom: 1px solid var(--light-color);
	}

	.table.table-cart tbody tr td,
	.table.table-cart tbody tr td .head-text {
		font-weight: 500;
		font-size: 16px;
	}

	.table.table-cart tr td[data-title]:before {
		content: attr(data-title);
		font-size: inherit;
		font-weight: 600;
	}
}

/* Fixed Header */

.sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	-webkit-animation: sticky 1s;
	animation: sticky 1s;
	-webkit-box-shadow: 2px 4px 8px rgba(33, 40, 50, 0.15);
	box-shadow: 2px 4px 8px rgba(33, 40, 50, 0.15);
	background-color: #fff;
	padding: 10px;
}

@-webkit-keyframes sticky {
	from {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}

	to {
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
	}
}

@keyframes sticky {
	from {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}

	to {
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
	}
}

/* Fixed Header */

/* Payment Slider */
.payment-slider {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	padding: 40px;
}

.payment-slider .slider-bar {
	display: flex;
	align-items: center;
	gap: 5px;
	justify-content: center;
	margin-bottom: 15px;
}

.payment-slider .slider-bar .points {
	display: flex;
	align-items: center;
	gap: 2px;
	flex-direction: row-reverse;
}

.payment-slider .slider-bar .points .point {
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: #E3D8D8;

}

.payment-slider .slider-bar .points .point.current-slide {
	background-color: var(--primary-color);
}

.payment-slider .slider {
	flex: 1 1 auto;
	height: 14px;
	background-color: #E3D8D8;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
}

.payment-slider .slider .active-bar {
	position: absolute;
	top: 0;
	left: 0;
	width: 10%;
	height: 100%;
	background-color: var(--primary-color);
	border-radius: 20px;
}

.payment-slider .enter-email,
.payment-slider .verification-code {
	max-width: 300px;
	margin: 5px auto;
	text-align: center;
}

.payment-slider .form-step .title {
	color: var(--dark-blue);
	font-weight: 500;
	margin: 20px 0px 10px;
}

.payment-slider .form-step input,
.payment-slider .form-step textarea {
	border: 1px solid #DEDBDB;
	border-radius: 10px;
	padding: 10px;
	width: 100%;
}

.payment-slider .form-step input::placeholder,
.payment-slider .form-step textarea::placeholder {
	color: #827F7F;
	font-weight: 400;
	font-size: 14px;
}

.payment-slider .enter-email input {
	display: block;
	margin: 5px auto 15px;
	background-color: #FAFAFA;
	border: 1px solid #D0CBCB;
	height: 50px;
}

.payment-slider .enter-email .image img,
.payment-slider .verification-code .image img {
	margin-top: 10px;
	width: 250px;
	height: 250px;
	object-fit: contain;
}



.payment-slider .data-form label {
	margin-bottom: 10px;
}

.payment-slider .data-form input {
	font-weight: 400;
	width: 100%;
	font-size: 14px;
}

.payment-slider .complete_payment .image {
	margin: 15px auto 0px;
	text-align: center;
}

.payment-slider .complete_payment .image img {
	max-width: 350px;
	width: 100%;
	height: 150px;
	border-radius: 10px 10px 0px 0px;
	object-fit: cover;
}


.payment-slider .complete_payment .price h6 {
	font-size: 14px;
	font-weight: 600;
}

@media (max-width: 767px) {
	.payment-slider {
		padding: 10px;
	}

	.payment-slider .enter-number .image img,
	.payment-slider .verification-code .image img {
		width: 200px;
		height: 200px;
	}
}

/* Breadcrumb */
.breadcrumb-blur {
	background-color: #DEDEDE82;
	border-radius: 12px;
	display: inline-flex;
	padding: 12px;
}

/* Start Sections Header */
.sections-menu {
	background-color: #F3F6F8;
	border-bottom: 1px solid #E8E8E8;
}

.sections-menu .dropdown-toggle {
	height: 50px;
	border-top-right-radius: 8px;
	border-top-left-radius: 8px;
}

@media (min-width: 968px) {
	.sections-menu {
		background-color: #F3F6F8;
		border-bottom: 1px solid #E8E8E8;
		height: 62px;
	}
}

@media (max-width: 991px) {
	.sections-menu .blog-link {
		flex: 1 1 0;
		text-align: start;
	}
}

@media (max-width: 300px) {
	.sections-menu .blog-link {
		text-align: center;
	}
}

/* End Sections Header */
/* Start User UI Links */
.user-lab-item {
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 2px 2px 0px #00000040;
	border: 1px solid #DFDFDF;
	flex-direction: column;
	gap: 15px;
	border-radius: 8px;
	height: 100%;
	padding: 10px;
}

.user-lab-item .count-num {
	top: unset;
	bottom: -8%;
	right: 0;
}

.user-lab-item .title {
	color: #746C6C;
	font-weight: 700;
}

.user-lab-item img {
	object-fit: contain;
	width: 100%;
}

.user-lab-item.img img {
	max-width: 350px;
	width: 100%;
	max-height: 220px;
}

.user-lab-item.icon img {
	max-width: 80px;
	max-height: 80px;
}

@media (min-width: 991px) {
	.user-lab-item {
		min-height: 220px;
	}
}

/* End User UI Links */
/* Start Category Swiper */
.category-swiper {
	background-color: #CCECD6;
}

.category-swiper .swiper-slide img {
	width: 195px;
	height: 195px;
	object-fit: contain;
}


/* End Category Swiper */
/* Start Products */
.product-slide {
	position: relative;
	text-align: center;
	overflow: hidden;
}

.product-slide .slide-actions {
	background-color: #FFFFFF;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	border: 1px solid #B9B7B7;
	border-radius: 7px;
	bottom: 30%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	padding: 5px 10px;
	opacity: 0;
}

.product-slide .swiper-pagination {
	opacity: 0;
}

.product-slide:hover .slide-actions,
.product-slide:hover .swiper-pagination {
	opacity: 1;
}

/* End Products */
/* Start News */
.blog-card-item {
	max-width: 350px;
	margin: 0px auto;
}

.blog-card-item .image {
	height: 230px;
	width: 100%;
	text-align: center;
	margin: 0px auto;
}

.blog-card-item .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 12px;
}

.blog-card-item .info {
	margin-top: 15px;
}

.blog-card-item .info .title {
	color: var(--dark-blue);
	font-weight: 400;
	line-height: 40px;
	font-size: clamp(17px, 22px, 4vw);
}

.blog-card-item .info .text {
	color: var(--Labels-Secondary);
	font-size: clamp(17px, 20px, 4vw);
	line-height: 36px;
}

.blog-card-item .info .actions {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.blog-card-item .actions button {
	background-color: transparent;
	color: var(--labels-color);
}

.bg-overlay.blog {
	background-color: #00000008;
}

.bg-overlay.blog::after {
	background-image: url('../images/overlay-bg-sectipon.png');
	background-repeat: no-repeat;
}

/* End News */
/* Start Footer */
footer {
	background-color: #DD993326;
}

footer .logo {
	height: 190px;
	object-fit: contain;
	max-width: 250px;
}

footer .bottom-footer .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
}

/* End Footer */
/* Start Search Filter Style */
.search-filter {
	display: flex;
	align-items: center;
	overflow: hidden;
	border: 1px solid var(--Labels-Secondary);
}

.search-filter input {
	flex: 1 1 auto;
	outline: none;
	border: none;
	background-color: transparent;
	padding: 14px;
}

.search-filter button {
	padding: 14px 18px;
}

/* End Search Filter Style */
/* Start Category Item Style */
.item-cate {
	border: 1px solid var(--Labels-Secondary);
	background-color: var(--white-color);
	color: var(--Labels-Secondary);
	padding: 4px 16px;
	margin-bottom: 15px;
	width: 100%;
	display: block;
	border-radius: 8px;
}

.item-cate img {
	width: 60px;
	height: 50px;
	object-fit: contain;
}

.item-cate:hover,
.item-cate.active {
	border: 1px solid var(--primary-color);
	background-color: #68b5fd1a;
	color: var(--Labels-Secondary);
}

/* End Category Item Style */
/* Start Product Details */
.product-item {
	margin: 0px auto;
	text-align: center;
}

.product-item img {
	width: 100%;
	height: 200px;
	max-width: 270px;
	object-fit: cover;
	border-radius: 5px;
}

.product-item .title-product {
	color: var(--hovered-color);
	font-size: clamp(18px, 23px, 4vw);
	font-weight: 300;
	margin-top: 15px;
}

.most-products {
	background-color: #F2F4F8;
	border-radius: 12px;
	padding: 20px;
}

.in-store {
	background-color: #F9F4F4;
	color: #155802;
	padding: 16px 14px;
	font-weight: 500;
}

.product-scroll-div {
	height: 100%;
	max-height: 1100px;
	overflow-y: scroll;
}

.product-scroll-div .product-item {
	margin-bottom: 40px;
}

.product-scroll-div::-webkit-scrollbar {
	background-color: #213E8D33;
}

.product-scroll-div::-webkit-scrollbar-thumb {
	background-color: #7D7D7F80;
}

.swiper-product-view {
	width: 100%;
	height: 400px;
}

.swiper-product-view .swiper-slide {
	text-align: center;
}

.thumbs-slider .swiper-slide img,
.swiper-product-view .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.thumbs-slider .swiper-slide {
	border: 1px solid #213E8D33;
	height: 90px;
	max-width: 120px;
	cursor: pointer;
}

.product-features li {
	list-style: decimal;
	margin-bottom: 10px;
}

.product-count {
	height: 50px;
	width: 40px;
	color: var(--icon-color);
	border: none;
	border-top: 1px solid #8D8787;
	border-bottom: 1px solid #8D8787;
	border-radius: 4px;
	text-align: center;
}

.increment,
.decrement {
	border-radius: 4px;
	border-color: #8D8787;
	width: 30px;
	height: 50px;
	padding: 0;
}

.side-prod-img {
	width: 100%;
	max-width: 355px;
	height: 260px;
	object-fit: contain;
	margin: 0px auto;
	text-align: center;
}

.product-specifications table {
	display: flex;
	max-width: 500px;
}

.product-specifications table>* {
	width: 100%;
	display: flex;

}

.product-specifications table tr {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 50%;
}

.product-specifications table tr td {
	background-color: #78788014;
	padding: 8px 12px;
	border-left: 1px solid #757575A6;
	border-top: 1px solid #757575A6;
	font-size: clamp(14px, 17px, 4vw);
	height: 100%;
	min-height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.product-specifications table tr:first-child td {
	border-right: 1px solid #757575A6;
	color: var(--text-color-3);
	font-weight: 500;
	background-color: var(--white-color);
	text-align: start;
	align-items: flex-start;

}

.product-specifications table tbody tr td {
	color: var(--text-color-3);
	background-color: #F0FAF9;
}

.product-specifications table tr td:last-child {
	border-bottom: 1px solid #757575A6;
}

.product-details-page .nav-tabs {
	display: flex;
	box-shadow: 0px 4px 4px 0px #00000010;
	border: 1px solid #F6F0F0;
	width: fit-content;
}

.product-details-page .nav-link {
	color: var(--black-writing);
	border: none;
	font-weight: 500;
	padding: 10px 30px;
}

.product-details-page .nav-link.active {
	text-decoration: underline;
	color: var(--secondary-color);
}

.product-cate-img {
	width: 69px;
	height: 60px;
	object-fit: contain;
}

.product-category-2 .card {
	border-color: #C4BBBB;
}

.product-category-2 img {
	height: 165px;
	text-align: center;
	object-fit: contain;
}

.rating-card {
	border: none;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	margin-bottom: 20px;
	transition: transform 0.3s ease;
}

.rating-card:hover {
	transform: translateY(-5px);
}

.rating-header {
	background-color: var(--muted-color-3);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	padding: 15px 20px;
	border-radius: 12px 12px 0 0 !important;
}

.rating-body {
	padding: 20px;
}

.rating-stars {
	color: #FFC107;
	font-size: 18px;
	margin-bottom: 10px;
}

.rating-meta {
	font-size: 14px;
	color: var(--text-color-2);
}

.rating-content {
	margin-top: 15px;
	color: var(--text-color-3);
	line-height: 1.7;
}

.rating-img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
}

.overall-rating {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: white;
	border-radius: 12px;
	padding: 25px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(47, 135, 199, 0.2);
}

.rating-number {
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
}

.rating-count {
	font-size: 14px;
	opacity: 0.9;
}

.progress-bar {
	background-color: var(--primary-color);
}

.rating-distribution .progress {
	height: 8px;
	background-color: var(--muted-color-2);
	border-radius: 10px;
	margin-bottom: 12px;
}

.rating-distribution-label {
	font-size: 14px;
	color: var(--text-color-2);
	min-width: 100px;
}

.ask-form {
	background-color: white;
	border-radius: 12px;
	padding: 25px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
	background-color: white;
	border: none;
	border-radius: 12px !important;
	padding: 20px;
	font-size: 18px;
	font-weight: 600;
	color: var(--dark-blue-2);
	transition: all 0.3s;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	margin-bottom: 10px;
	justify-content: space-between;
}

.accordion-button:not(.collapsed) {
	background-color: white;
	color: var(--primary-color);
	box-shadow: 0 5px 15px rgba(47, 135, 199, 0.15);
}

.accordion-button:focus {
	box-shadow: 0 5px 15px rgba(47, 135, 199, 0.15);
}

.accordion-button::after {
	content: none;
}

.accordion-button .faq-icon{
	width: 21px;
	height: 21px;
	transition: all .3s linear;

}
.accordion-button:not(.collapsed) .faq-icon {
	rotate: 180deg;
}


.accordion-body {
	padding: 20px 25px 25px 70px;
	background-color: var(--muted-color-6);
	border-radius: 0 0 12px 12px;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	color: var(--text-color-3);
	line-height: 1.8;
	font-size: 17px;
}
/* End Product Details */
/* Start News */
.news-hero {
	position: relative;
	background-color: #00000033;
}

.news-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/blog-hero-img.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 60%;
	z-index: -1;
}

.news-hero .title {
	position: relative;
	z-index: 5;
	top: 80px;

}

.news-hero .swiper-slide {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	height: 575px;
}

.news-hero .swiper-slide .bg-slide-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-hero .swiper-slide::after {
	content: "";
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-color: #00000085;
	z-index: 1;
}

.news-hero .swiper-slide .text {
	position: absolute;
	top: 15%;
	z-index: 5;
	padding: 20px;
	background-color: #79797C33;
	backdrop-filter: blur(4px);
	max-width: 550px;
	text-align: start;
	color: var(--white-color);
	margin: 0px 10px;
	border-radius: 20px;
}

.news-hero .swiper-slide .text .article-title {
	margin-bottom: 15px;
	font-size: clamp(25px, 34px, 4vw);
	font-weight: 500;
}

.news-hero .swiper-slide .text .description {
	font-size: clamp(17px, 20px, 4vw);
	line-height: 32px;
}

.news-hero .swiper-pagination {
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 10px;
}

.news-hero .swiper-pagination .swiper-pagination-bullet {
	width: 19px;
	height: 19px;
	border-radius: 50%;
	background-color: #FFFFFF;
	opacity: 1;
}

.news-hero .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--primary-color);
}

/* End News */
/* Start News Details */
.news-details-hero {
	position: relative;
}

.news-details-hero::before,
.news-details-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	width: 100%;
	height: 65%;
	z-index: -1;
}

.news-details-hero::before {
	background-image: url(../images/blog-hero-img.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 40%;
}

.news-details-hero::after {
	background-color: #00000033;
}

@media (max-width: 768px) {
	.news-details-hero::after {
		height: 45%;
	}
}

.news-details-hero .content {
	position: relative;
	z-index: 3;
}

.news-details-hero .content .article-title {
	color: var(--schemes-secondary);
	font-weight: 500;
	font-size: clamp(20px, 28px, 4vw);
	padding-top: 15px;
}

.news-details-hero .content .image {
	text-align: center;
	margin-top: 25px;
}

.news-details-hero .content .image img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	border-radius: 40px;
}

.news-details-hero .content .lecturer-info {
	position: absolute;
	top: 35%;
	left: 0%;
	z-index: 5;
	text-align: center;
}

.news-details-hero .content .lecturer-info .lecturer-img {
	width: 375px;
	height: 375px;
	background-image: url(../images/bg-sticker.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	display: flex;
	align-items: center;
	justify-content: center;
}

.news-details-hero .content .lecturer-info .lecturer-img img {
	width: 100%;
	max-width: 280px;
	height: 180px;
	object-fit: contain;
	object-position: center;
}

.news-details-hero .actions {
	margin-top: 95px;
	position: relative;
	z-index: 3;
	background-color: #7D54A31A;
}

.news-details-hero .actions button {
	background-color: transparent;
	color: var(--text-color-3);
	text-align: center;
	font-size: clamp(18px, 24px, 4vw);
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 0px auto;
}

@media (max-width: 768px) {
	.news-details-hero .content .article-title {
		text-align: center;
	}

	.news-details-hero .content .lecturer-info {
		position: unset;
	}

	.news-details-hero .content .lecturer-info .lecturer-img {
		margin: 0px auto;
	}
}

@media (max-width: 420px) {
	.news-details-hero .content .lecturer-info .lecturer-img {
		width: 230px;
		height: 230px;
	}
}

.article .article-content {
	border: 1px solid #C8BAF1;
	padding: 20px;
	border-radius: 16px;
}

.article .article-content .text {
	margin-bottom: 25px;
}

.article .article-content .text p {
	color: var(--schemes-variant);
	text-align: justify;
	line-height: 36px;
	font-size: clamp(17px, 21px, 4vw);
}

.article .actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 15px;
	margin-top: 20px;
}

.article .actions button {
	background-color: #2F87C71A;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
}

.comments .accordion-button::after {
	position: absolute;
	top: 16px;
	left: 20px;
	background-image: url('../images/arrow-icon.svg');
}

.comments .accordion-button:not(.collapsed)::after {
	transform: rotate(-180deg);
}

.comments .accordion-item {
	background-color: #00AB9405;
	border: 1px solid #F1F1F1;
	box-shadow: 0px 1px 12px 0px #0000000A;
	border-radius: 8px;
}

.comments .accordion-button {
	background-color: #00AB9405;
	border: none !important;
	color: var(--labels-color);
	font-weight: 500;
	flex-direction: column;
	align-items: start;
	font-size: 20px;
	border-radius: 8px !important;

}

.comments .accordion-button:focus {
	box-shadow: none;
}

.comments .accordion-button .user-img {
	width: 40px;
	height: 40px;
	object-fit: cover;
	border-radius: 50%;
}

.comments .accordion-button .user-name {
	color: var(--text-color-3);
	font-weight: 500;
	font-size: 18px;
}

.comments .accordion-body {
	border-top: 1px solid #00AB9433;
	color: #0A1D4B;
	margin: 20px;
}

.similar-articles {
	background-color: #00AB940A;
}

/* End News Details */
/* Start Cart */
.hero-section-cart {
	background-color: #F3F6F8;
	height: 155px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-section-cart.bg-overlay::after {
	background-image: url("../images/bg-overlay-hero-section.png");
}

.bread-tabs {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.bread-tabs li {
	color: #666666;
	font-weight: 500;
	font-size: clamp(18px, 22px, 4vw);
	padding: 5px;
	position: relative;
}

.bread-tabs li.current {
	font-weight: 700;
	text-decoration: underline;
}

.bread-tabs li:not(:last-child)::after {
	content: url("../images/arrow-left.svg");
	padding: 5px 10px;
	color: #666666;
}

/* Empty Cart Style ----- */
.empty-cart-content {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 15px;
	text-align: center;
}

.empty-cart-content img {
	width: 180px;
	height: 185px;
	object-fit: contain;
}

.empty-cart-content .title {
	color: #666666;

}

.empty-cart-content .text {
	color: #696969;
	font-weight: 400;
	font-size: clamp(16px, 19px, 4vw);
	max-width: 450px;
	margin: 0px auto;
}

@media (max-width: 390px) {
	.bread-tabs {
		flex-direction: column;
		gap: 20px;
	}

	.bread-tabs li {
		padding-left: 0;
		padding-right: 0;
	}

	.bread-tabs li:not(:last-child)::after {
		position: absolute;
		bottom: -35%;
		left: 50%;
		transform: translateX(-50%);
		rotate: -90deg;
		padding: 0;
	}
}

.product-td img {
	width: 80px;
	height: 100px;
	object-fit: contain;
}

table tbody tr.product-tr td>div {
	min-height: 100px;
}

.total-cart-card {
	background-color: #FFFBFB;
	border: 1px solid #A79D9D;
	border-radius: 8px;
	padding: 24px 16px;
}

.total-cart-card .title {
	color: #746C6C;
	font-weight: 700;
	font-size: clamp(16px, 19px, 4vw);
	margin-bottom: 10px;
}

.total-cart-card .border-bottom {
	border-bottom: 1px solid #E5DBDB;
}

.form-label-required {
	position: relative;
}

.form-label-required::after {
	content: "*";
	color: rgb(241, 16, 16);
	padding: 0px 5px;
}

.checkout-page .iti,
.login-page .iti {
	display: block;
}

.phone-valide.form-control.is-invalid,
.was-validated .phone-valide.form-control:invalid {
	background-position: left calc(2.575em + .1875rem) center !important;
}

.checkout-page .needs-validation .form-select,
.checkout-page .needs-validation input {
	border-color: #DBDFE9 !important;
	border-radius: 10px !important;
	padding-top: 12px;
	padding-bottom: 12px;
}

.checkout-page .payment-method-img {
	max-width: 250px;
	max-height: 50px;
	object-fit: contain;
}

/* Start Form ------------- */
/* End Cart */
/* Start Login Page */
.login-page {
	min-height: 100dvh;
}

.image-login {
	background-color: #FBF9F9;
	margin: 0px auto;
	text-align: center;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	min-height: 100dvh;
}


.image-login img {
	width: 100%;
	height: 100%;
	max-width: 420px;
	max-height: 450px;
	object-fit: contain;
}

#login-page .logo img {
	width: 210px;
	height: 190px;
	object-fit: contain;
}

.back-home {
	color: #1E1E1E;
	font-weight: 700;
}

.login-form label {
	font-weight: 400;
	color: var(--muted-color);
}

#login-page a.sign-link {
	position: relative;
	font-weight: 600;
	color: var(--primary-color);
}

#login-page a.sign-link::after {
	content: "";
	position: absolute;
	width: 75%;
	height: 1px;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	background-color: var(--muted-color-second);
}

.login-page .nav-pills .nav-link {
	color: #6F6B6B;
}

.login-page .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
	color: var(--primary-color);
	background-color: transparent;
}

/* Password Eye Icon Styles */
.icon-password {
	position: absolute;
	top: 72%;
	transform: translateY(-50%);
	cursor: pointer;
	z-index: 10;
	color: #6c757d;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s ease;
}

/* LTR (English) - Eye icon on the right */
[dir="ltr"] .icon-password {
	right: 15px;
}

/* RTL (Arabic) - Eye icon on the left */
[dir="rtl"] .icon-password {
	left: 15px;
}

.icon-password:hover {
	color: var(--primary-color);
}

.icon-password svg {
	width: 15px;
	height: 15px;
}

/* Adjust padding for password input with eye icon */
/* LTR - Padding on the right */
[dir="ltr"] .position-relative .form-control:has(+ .icon-password),
[dir="ltr"] .position-relative input[type="password"] {
	padding-right: 45px !important;
}

/* RTL - Padding on the left */
[dir="rtl"] .position-relative .form-control:has(+ .icon-password),
[dir="rtl"] .position-relative input[type="password"] {
	padding-left: 45px !important;
}

/* Phone number flag spacing fix */
/* LTR - Flag spacing and positioning */
[dir="ltr"] .iti__selected-flag {
	padding: 0 12px 0 8px !important; /* Add more space between flag and arrow */
}

[dir="ltr"] .iti__arrow {
	margin-left: 10px !important; /* More space from flag to arrow */
}

/* RTL - Flag spacing and positioning */
[dir="rtl"] .iti__selected-flag {
	padding: 0 8px 0 12px !important; /* Add more space between flag and arrow */
}

[dir="rtl"] .iti__arrow {
	margin-right: 10px !important; /* More space from flag to arrow */
	margin-left: 0 !important;
}

/* Adjust input padding for flag container */
[dir="ltr"] .iti input[type=tel] {
	padding-right: 50px !important; /* More space for flag + arrow */
}

[dir="rtl"] .iti input[type=tel] {
	padding-left: 50px !important; /* More space for flag + arrow */
	padding-right: 12px !important;
}

/* End Login Page */
/* Start Reset Password  */
.reset-password {
	height: 210px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.reset-password.bg-overlay {
	background-image: url("../images/change-password-img.webp");
}

/* End Reset Password  */
/* Start Countact Us */
.hero-section {
	height: 300px;
}

.hero-section.bg-overlay::after {
	background-image: url("../images/contact-us.webp");
	background-position: center;
	background-size: cover;
}

.contact-us .contact-form textarea {
	height: 140px;
}

.contact-us .info {
	max-width: 500px;
	background-color: #6F88CA33;
	padding: 50px 20px;
	box-shadow: 0px 1px 6px 0px #1929470F;
	border-radius: 15px;
	margin: 0px auto;
	min-height: 480px;
}

.contact-us .info .description {
	color: #212F3E;
	font-weight: 500;
	font-size: 17px;
	line-height: 29px;
	margin-bottom: 15px;
}

.contact-us .info .social-media {
	display: flex;
	align-items: center;
	gap: 25px;
	padding: 0;
}

.contact-us .info .social-media a {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--primary-color);
	width: 45px;
	height: 45px;
	border-radius: 50%;
}

/* End Countact Us */
/* Start Privcy Page */
.privcy-page .description {
	line-height: 34px;
	font-size: clamp(18px, 20px, 4vw);
}

.privcy-page .image {
	height: 410px;
	max-width: 440px;
	border-radius: 50px;
}

/* End Privcy Page */
/* Start My Statics */
.cart-popup {
	height: 280px;
	overflow-y: auto;
}

/* End My Statics */
/* Start Order */
.order-image {
	position: relative;
	background-color: #D9D9D945;
	width: 100px;
	height: 100px;
	aspect-ratio: 1/1;
	padding: 15px;
}

.order-image .num {
	position: absolute;
	right: 3%;
	bottom: 5%;
	font-size: 20px;
	color: black;
}

.order-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.rating-stars {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 1rem 0;
}

.star-icon {
	cursor: pointer;
	transition: 0.3s;
	fill: none;
	stroke: #746C6C;
}

.star-icon.active {
	fill: var(--primary-color);
	stroke: var(--primary-color);
}

.rating-box textarea {
	background-color: #E1F0EE;
}

.line {
	position: absolute;
	height: 100%;
	width: 2px;
	background-color: #2F3E9780;
	right: -1%;
	bottom: 0;
	z-index: 1;
}

.line::after,
.line::before {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #2F3E9780;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.line::before {
	top: -10px;
}

.line::after {
	bottom: -10px;
}

/* End Order */
/* Start Profile */
.img-placeholder {
	width: 160px;
	height: 200px;
	border: 1px solid #C4CADA;
	position: relative;
	cursor: pointer;
	text-align: center;
}

.img-placeholder span {
	background-color: #F5EEEE;
	border-radius: 50%;
	position: absolute;
	top: -5%;
	left: -5%;
	width: 30px;
	height: 30px;
	aspect-ratio: 1/1;
}

.img-placeholder img {
	width: 150px;
	height: 190px;
	object-fit: contain;
}

.img-placeholder input[type="file"] {
	display: none;
}

.custome-phone .iti ,
.profile-page .iti {
	width: 100%;
}

.custome-phone .iti__selected-flag ,
.profile-page .iti__selected-flag {
	justify-content: end;
}

.custome-phone .iti__country-list ,
.profile-page .iti__country-list {
	background-color: white;
	position: relative;
}

.profile-page .nav-tabs .nav-link {
	color: var(--text-color-3);
}

.profile-page .nav-tabs .nav-link.active {
	color: var(--primary-color);
	text-decoration: underline;
	background-color: transparent;
}
.fa, .fa-brands, .fa-regular, .fa-solid, .fab, .far, .fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 2 !important;
    text-rendering: auto;
}
/* End Profile */

/* Form Validation Styles */
.form-control.is-valid {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #dc3545;
}

.invalid-feedback.d-block {
  display: block !important;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #28a745;
}

.valid-feedback.d-block {
  display: block !important;
}

.was-validated .form-control:valid {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .form-control:invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
