/* ========== GENERAL STYLES ==========*/

@font-face {
	font-family: "Poppins";
	src: url("../fonts/Poppins/Poppins-Regular.ttf") format("truetype");
}

:root {
	--font-primary: "Poppins", sans-serif;
	--font-small: 13px;
	--font-smaller: 11px;

	--percent100: 100%;
	--percent50: 50%;

	--fw3: 300;
	--fw5: 500;
	--fw6: 600;
	--fw7: 700;
	--fw8: 800;

	--primary-color: #1b97f5;
	--secondary-color: #bcc6cd;

	--white-color: #f0f0f0;
	--dark-color: #000000;
	--border-color: #484848;

	--background-color: #353535;
	--bestseller-color: #eeb700;

	--trans-background-color: background-color 0.3s, color 0.3s;
	--trans-background: background-color 0.3s;
	--trans-color: color 0.3s;
}

* {
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}

*,
::before,
::after {
	box-sizing: border-box;
}

body {
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--white-color);
	background-color: var(--background-color);
}

a {
	text-decoration: none;
	color: inherit;
	-webkit-tap-highlight-color: transparent;
}

ul {
	list-style: none;
}

img {
	max-width: var(--percent100);
	vertical-align: middle;
}

strong {
	font-weight: var(--fw8);
}

input::placeholder {
	font: inherit;
}

h1 {
	font-size: calc(1.3rem + 1vw);
	font-weight: var(--fw8);
	line-height: 1.3;
}

h2 {
	font-size: 2.5rem;
}

h3 {
	font-size: 1.2rem;
	font-weight: var(--fw7);
}

h4 {
	font-size: 1rem;
	font-weight: var(--fw6);
}

p {
	font-size: 0.875rem;
	margin: 1rem 0 1rem 0;
}

form :where(input, textarea, select) {
	line-height: 1;
	padding: 1rem;
	border: 1px solid var(--border-color);
	outline: 0;
	background-color: #292929;
	color: var(--white-color);
}

form label {
	font-weight: var(--fw5);
	margin-bottom: 0.5rem;
	text-transform: uppercase;
}

.container {
	max-width: 165rem;
	margin: 0 auto;
	padding: 0 0.938rem;
}

.column {
	margin-left: -0.938rem;
	margin-right: -0.938rem;
}

.column .row {
	padding: 0 0.938rem;
}

.flexwrap {
	display: flex;
	flex-wrap: wrap;
}

.flexcenter {
	display: flex;
	align-items: center;
	justify-content: center;
}

.flexitem {
	display: flex;
	align-items: center;
}

.flexcol {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.main-links a:hover,
.second-links a:hover,
.mini-links a:hover {
	color: var(--primary-color);
}

.icon-small,
.icon-large {
	display: flex;
	align-items: center;
	padding: 0 0.25rem;
	font-weight: normal;
}

.icon-small {
	font-size: 1.25rem;
	margin-left: auto;
}

.icon-large {
	font-size: 1.75rem;
	padding: 0 0.75rem 0 0;
}

.mobile-hide {
	display: none;
}

.object-cover img {
	position: absolute;
	object-fit: cover;
	height: var(--percent100);
	display: block;
}

.best-seller .media {
	flex-shrink: 0;
	overflow: hidden;
}

.primary-button,
.secondary-button,
.danger-button {
	font-family: "Poppins", sans-serif;
	display: flex;
	align-items: center;
	font-size: var(--font-small);
	border: 0;
	outline: 0;
	padding: 0.5rem 1rem;
	height: auto;
	width: fit-content;
	border-radius: 4px;
	transition: var(--trans-background-color);
}

.primary-button {
	background-color: var(--primary-color);
	color: var(--white-color);
	cursor: pointer;
}

.primary-button:hover {
	background-color: var(--background-color);
	color: var(--white-color);
	border: 1px solid var(--white-color);
}

.danger-button {
	background-color: var(--background-color);
	border: 1px solid #ff3333;
	outline: #ff3333;
	color: #ff3333;
	cursor: pointer;
}

.danger-button:hover {
	background-color: #ff3333;
	color: var(--white-color);
}

.secondary-button {
	background-color: transparent;
	color: var(--white-color);
	border: 1px solid var(--primary-color);
}

.secondary-button:hover {
	background-color: var(--primary-color);
}

button[disabled] {
	background-color: var(--border-color);
	color: #f0f0f0;
	cursor: auto !important;
	opacity: 0.6;
	transition: none !important;
	font-family: "Poppins", sans-serif;
	display: flex;
	align-items: center;
	font-size: var(--font-small);
	border: 0;
	outline: 0;
	padding: 0.5rem 1rem;
	height: auto;
	width: fit-content;
	border-radius: 4px;
}
.btn-submit {
	margin-bottom: 2rem;
}

.view-all {
	font-size: var(--font-small);
	display: flex;
	gap: 1rem;
	transition: var(--trans-color);
}

.mini-text {
	font-size: var(--font-smaller);
	color: var(--secondary-color);
}

/* ========== 01.HEADER ========== */

:where(.off-canvas, header) li > a {
	display: flex;
	position: relative;
	line-height: inherit;
	transition: var(--trans-color);
}

/* ========== 01.HEADER
                    a. Header Top
    ========== */
header {
	background-color: var(--dark-color);
}

.header-top .wrapper {
	font-size: var(--font-small);
	font-weight: var(--fw3);
	justify-content: space-between;
	line-height: 42px;
}

.header-top .wrapper ul {
	gap: 1rem;
}

.header-top li {
	position: relative;
}

.header-top ul ul {
	position: absolute;
	padding: 1rem;
	top: 2rem;
	left: -1rem;
	line-height: 2rem;
	background-color: var(--background-color);
	border: 1px solid var(--border-color);
	z-index: 1;
	display: none;
}

:where(.thetop-nav .header-top) .right ul ul li a {
	padding: 0.25rem 1rem;
}

:where(.thetop-nav .header-top) .right ul ul li.current a {
	background-color: var(--border-color);
	color: var(--primary-color);
}

.header-top li:hover ul {
	display: block;
}

/* ========== 01.HEADER
                    b. Header Nav
    ========== */

.nav-logo {
	height: 4rem;
}

.header-nav {
	padding: 0.5rem 0;
	margin-bottom: 1.5rem;
}

.trigger {
	font-size: 1.5rem;
	display: flex;
	padding: 0.25rem;
	margin-right: 0.5rem;
}

.mobile-wide {
	justify-content: space-between;
}

.rectangle {
	position: absolute;
	top: -15px;
	left: 0;
	width: 38px;
	height: 38px;
	background-color: var(--white-color);
	z-index: -1;
}

.rectangle::before {
	content: "";
	position: absolute;
	width: 28px;
	height: 28px;
	background-color: var(--primary-color);
	bottom: 5px;
	right: 5px;
	opacity: 0.4;
}

.header-nav nav > ul {
	gap: 2rem;
}

.header-nav .right .account-overlay {
	position: absolute;
	padding: 1rem;
	line-height: 2rem;
	font-size: 0.75rem;
	width: 400px;
	top: 100%;
	right: 0;
	background-color: var(--dark-color);
	z-index: 1000;
	box-shadow: rgb(255 255 255 / 30%) 0 10px 10px;
}

.header-nav .right form input {
	width: 100%;
	padding: 0.5rem;
}

.header-nav .right form button {
	width: 100%;
	margin-top: 1rem;
	justify-content: center;
}

.header-nav .right ul ul li a {
	margin-left: 0;
}

.fly-item {
	position: absolute;
	height: 16px;
	font-size: var(--font-smaller);
	padding: 3px;
	text-align: center;
	line-height: 10px;
	color: var(--white-color);
}

nav .fly-item,
.header-nav .mini-cart .price .fly-item,
.cart-bottom .fly-item {
	top: 50%;
	margin-top: -10px;
	width: 30px;
	border-radius: 3px;
	background-color: var(--primary-color);
}

.header-nav .mini-cart .price .fly-item,
.cart-bottom .fly-item {
	margin-left: 4rem;
}

.header-nav .right {
	position: relative;
	margin-left: auto;
}

.header-nav .right .icon-large {
	position: relative;
}

.header-nav .right .fly-item {
	top: 0;
	left: 20px;
	width: 16px;
	background-color: var(--primary-color);
	border-radius: var(--percent50);
}

nav .mega h4 {
	font-size: 0.8rem;
	text-transform: uppercase;
}

.mega .flexcol {
	flex: 1;
	min-width: 100px;
	padding-right: 2.5rem;
	margin-bottom: 1.5rem;
	z-index: 1;
}

/* ========== 01.HEADER
                    c. Header Main, Category
    ========== */

.header-main {
	background-color: var(--dark-color);
	padding: 3rem 0 1.5rem 0;
	margin-bottom: 2rem;
}

.categories {
	position: relative;
	z-index: 10;
}

.categories .categories-head {
	position: relative;
	width: 300px;
	padding: 0.75rem 1.5rem;
	background-color: var(--background-color);
	border-radius: 17px 17px 0 0;
	border: 1px solid var(--border-color);
	border-bottom: 0;
	color: var(--white-color);
	margin-bottom: -1.5rem;
}

.categories .categories-head .mini-text {
	font-style: italic;
}

.categories .categories-trigger {
	position: absolute;
	right: 0;
	top: 0;
	padding: 1.3rem;
	height: 60px;
	width: 60px;
}

.categories-menu > ul > li > a {
	font-size: var(--font-small);
	height: 46px;
	align-items: center;
}

.categories-menu > ul > li > a:hover {
	color: var(--primary-color);
}

.categories-menu .has-child:hover ul {
	display: block;
}

.categories-menu .has-child li a:hover {
	text-decoration: underline;
}

/* ========== 01.HEADER
                    d. Search Form
    ========== */

.header-main .right {
	flex: 1;
}

form {
	position: relative;
}

/* biome-ignore lint/style/noDescendingSpecificity: keep order */
form.search input {
	line-height: 2rem;
	padding: 0 3rem 0 3rem;
	outline: 0;
	width: var(--percent100);
	border-radius: 4px;
	border: 1px solid var(--border-color);
	font-weight: var(--fw3);
}

form.search :where(span, button) {
	position: absolute;
	top: 0;
	padding: 0.55rem 1.5rem;
	font-size: 1rem;
	color: var(--white-color);
	height: var(--percent100);
}

/* biome-ignore lint/style/noDescendingSpecificity: keep order */
form.search button {
	right: 0;
	border: 0;
	outline: 0;
	font-size: 0.875rem;
	border-radius: 0 4px 4px 0;
	font-family: "Poppins", sans-serif;
	cursor: pointer;
	transition: var(--trans-background);
}

/* ========== 01.HEADER
                    e. Responsive MENU - Off Canvas
    ========== */

.site-off {
	position: fixed;
	width: 320px;
	height: var(--percent100);
	background-color: var(--dark-color);
	overflow: auto;
	z-index: 1000;
	transform: translateX(-100%);
	visibility: hidden;
	transition:
		transform 0.4s,
		visibility 0.4s;
	will-change: transform, visibility;
}

.showmenu .site-off {
	transform: translateX(0);
	visibility: visible;
	transition:
		transform 0.4s 0s,
		visibility 0s 0s;
}

.off-canvas {
	width: var(--percent100);
	height: var(--percent100);
	touch-action: auto;
	padding: 1.5rem;
}

.off-canvas .canvas-head {
	justify-content: space-between;
	padding: 1.5rem;
	margin: -1.5rem -1.5rem 1.5rem;
	background-color: var(--background-color);
	border-bottom-right-radius: 160px 25px;
}

.off-canvas .canvas-head .logo {
	z-index: 10;
	position: relative;
}

.t-close {
	font-size: 1.25rem;
	width: 32px;
	height: 32px;
	border-radius: var(--percent50);
}

.off-canvas .categories-head {
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid var(--border-color);
}

.off-canvas .has-child > :where(ul, .mega) {
	font-size: var(--font-small);
	font-weight: var(--fw3);
	line-height: 28px;
	padding-left: 3rem;

	height: auto;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.off-canvas .thetop-nav ul,
.off-canvas nav > ul {
	flex-direction: column;
	align-items: flex-start;
	font-size: var(--font-small);
	line-height: 36px;
	padding-top: 1.25rem;
}

.off-canvas .expand > :where(ul, .mega) {
	max-height: 200px;
}

.off-canvas nav > ul {
	border-top: 1px solid var(--border-color);
}

.off-canvas nav .mega {
	padding: 0;
}

.off-canvas nav .mega .best-seller,
.socials {
	display: none;
}

.off-canvas .has-child {
	width: var(--percent100);
}

.off-canvas .thetop-nav > ul > :where(:nth-child(6), li:nth-child(7)) > a {
	display: none;
}

.off-canvas .thetop-nav > ul ul {
	display: flex;
	flex-direction: row;
}

.off-canvas .thetop-nav > ul ul li a {
	padding: 0 0.5rem 0 0;
	line-height: 16px;
}

/* ========== 02. Banner ========== */

.hero > div > .wrapper {
	width: 100%;
}

.banner {
	position: relative;
	width: 100%;
}

/*  Banner Tooltips */

.tooltip::before,
.tooltip::after {
	--scale: 0;
	--arrow-size: 1rem;
	position: absolute;
	top: 80%;
	transform: translateX(-50%) translateY(var(--translate-y, 0))
		scale(var(--scale));
	transition: 250ms transform;
	transform-origin: top center;
	border: 0.5px solid var(--white-color);
}

.tooltip::before {
	--translate-y: calc(15% + var(--arrow-size));
	content: attr(data-tooltip);
	color: var(--white-color);
	padding: 1.5rem;
	width: max-content;
	max-width: 100%;
	background: var(--dark-color);
	border-radius: 0.3rem;
	text-align: center;
}

.tooltip::after {
	content: "";
	border: var(--arrow-size) solid transparent;
	border-bottom-color: var(--dark-color);
	transform-origin: bottom center;
}

.tooltip:hover::before,
.tooltip:hover::after {
	--scale: 1;
}

.tooltip-1::after,
.tooltip-1::before {
	left: 22%;
}

.tooltip-2::after,
.tooltip-2::before {
	left: 48%;
}

.tooltip-3::after,
.tooltip-3::before {
	left: 72%;
}

/* ========== 03. Product
                    a. Global Product
    ========== */

.products :where(.image, .thumbnail) img {
	transition: transform 0.3s;
}

.products :where(image, .thumbnail):hover img {
	transform: scale(1.1);
}

.products .discount {
	top: auto;
	right: 0;
	left: auto;
	bottom: 0;
	background-color: transparent;
	z-index: 1;
}

.products .discount::before {
	background-color: var(--dark-color);
}

.products .discount span {
	position: relative;
	font-size: var(--font-smaller);
	font-weight: var(--fw5);
	color: var(--white-color);
}

.products .content {
	display: flex;
	flex-direction: column;
}

.products:where(.main.one) .content {
	gap: 1em;
	margin-top: 1.25rem;
}

.products h3 {
	font-size: 1em;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.products h3 a:hover {
	text-decoration: underline;
}

.products .price .current {
	font-size: calc(1rem + 1vw);
	color: var(--primary-color);
	margin-right: 0.25rem;
}

.products .price .normal {
	text-decoration: line-through;
}

.products .item {
	display: flex;
	position: relative;
}

.flexwrap .row {
	flex: 0 0 100%;
	width: 100%;
	margin-bottom: 2rem;
}

/* ========== 04. Product
                    c. MINI Product
    ========== */
.products.mini .item {
	margin-bottom: 2rem;
}

.products.mini .media {
	width: 130px;
	height: 160px;
	margin-right: 1.25rem;
}

.products.mini .content {
	margin: 0;
	gap: 0.75rem;
}

.products:where(.mini, .main) h3 {
	font-weight: 400;
}

/* ========== 04. Product
                    d. MAIN Product
    ========== */
.products.main .item {
	flex-direction: column;
	flex: 0 0 100%;
	padding: 0 0.938rem;
	padding-bottom: 2rem;
}

.products.main .footer {
	position: absolute;
	left: 0;
	right: 0;
	padding: 0 1rem 1rem;
	border-radius: 7px;
	z-index: 1;
	background: linear-gradient(
		0deg,
		var(--secondary-color) 0%,
		var(--white-color) 70%
	);
	opacity: 0;
	visibility: hidden;
	will-change: opacity;
	transition: all 0.2s ease-in-out;
}

.products.main .item:hover .footer {
	opacity: 1;
	visibility: visible;
}

.products.main .footer ul {
	list-style: disc;
	padding: 1.25rem 0 0 1.25rem;
	line-height: 1.8rem;
	border-top: 1px solid var(--border-color);
	margin-top: 145px;
}

.products.main .item:hover .content > *:not(.footer) {
	z-index: 3;
}

/* ========== 05. BANNER ========== */
.banners .item {
	position: relative;
	background-color: var(--white-color);
	border: 1px solid var(--border-color);
}

.banner .image {
	text-align: right;
}

.banner .get-gray {
	background-color: var(--border-color);
}

.banner :where(.text-content, .over-link) {
	position: absolute;
	top: 0;
	left: 0;
	width: var(--percent100);
	height: var(--percent100);
}

.banner .text-content {
	padding: 1.5rem 2.5rem;
}

.banner h3 {
	font-size: calc(1em + 0.5vw);
	font-weight: var(--fw3);
}

/* biome-ignore lint/style/noDescendingSpecificity: keep order */
.banner h3 span {
	font-size: 80%;
}

.banner .primary-button {
	z-index: 3;
}

.product-categories .item {
	display: flex;
	padding: 1.5rem;
	border: 1px solid var(--border-color);
}

.product-categories .image {
	max-width: 150px;
}

.mini-links ul {
	font-size: var(--font-small);
	margin-top: 1rem;
}

.product-categories .second-links {
	margin-top: 2rem;
}

.mini-links ul li a:hover {
	text-decoration: underline;
}

/* ========== 06. NEWSLETTER ========== */

.newsletter {
	padding: 2.5rem 0;
	color: var(--white-color);
	background-color: var(--background-color);
}

.newsletter h3 {
	font-size: 1rem;
}

.newsletter p {
	font-weight: var(--fw3);
	color: var(--white-color);
	margin: 0.5rem 0;
}

.newsletter p strong {
	color: var(--primary-color);
}

.newsletter form {
	max-width: 500px;
	width: var(--percent100);
}

/* ========== 06. FOOTER
========== */

footer {
	background-color: var(--dark-color);
}

/* ========== 06. FOOTER
                    a. Widgets
    ========== */

.widgets {
	padding: 2rem 0;
}

.widgets .flexwrap {
	justify-content: space-between;
}

/* Consent Manager Icon*/
.consent-manager {
	position: fixed;
	left: 1rem;
	bottom: 4rem;
	z-index: 97;
	border: 1px solid var(--primary-color);
	background-color: var(--dark-color);
	border-radius: 10rem;
	padding: 0.5rem;
	width: 2.5rem;
	height: 2.5rem;
	outline: 0;
	transition: all 0.2s;
	cursor: pointer;
}

.consent-manager:hover {
	background-color: #ccc;
}

/* ========== 06. FOOTER
                    b. Footer Info
    ========== */
.footer-info {
	padding: 3.5rem 0 5rem;
}

.footer-info .wrapper .flexcol {
	align-items: center;
	gap: 0;
}

.footer-info .logo a {
	margin: 0 0 1rem -0.75rem;
}

.footer-info .logo img {
	height: 4rem;
}

.footer-info ul li a {
	font-size: 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: var(--background-color);
	border-radius: var(--percent50);
	margin: 0.25rem;
	transition: var(--trans-background);
}

.footer-info ul li a:hover {
	background-color: var(--border-color);
}

footer .mini-text {
	margin-top: 2rem;
	text-align: center;
}

/* ========== 07. BOTTOM MENU ========== */
.menu-bottom {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	height: 60px;
	background-color: var(--dark-color);
	box-shadow: 0 -2px 10px rgb(255 255 255 / 10%);
	z-index: 900;
	padding: 0.5rem;
}

.menu-bottom nav li {
	flex: 1;
}

.menu-bottom nav li a {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0.5rem 0;
	color: var(--border-color);
	transition: var(--trans-color);
}

.menu-bottom nav li a:hover {
	color: var(--white-color);
}

.menu-bottom nav li a img {
	height: 25px;
}

/* biome-ignore lint/style/noDescendingSpecificity: keep order */
.menu-bottom nav li a span {
	font-size: var(--font-smaller);
}

.menu-bottom .fly-item {
	left: 50%;
	margin-right: -20px;
	background-color: var(--primary-color);
	border-radius: var(--percent50);
	width: 16px;
	height: 16px;
}

/* ========== 07. BOTTOM MENU
                    a. Search
    ========== */

.search-bottom {
	position: fixed;
	bottom: 60px;
	width: var(--percent100);
	padding: 2.4rem 0;
	background-color: var(--background-color);
	z-index: 1000;
	visibility: hidden;
	opacity: 0;
	will-change: visibility, opacity;
}

.showsearch .search-bottom {
	visibility: inherit;
	opacity: 1;
}

.search-bottom .t-close {
	position: absolute;
	top: -54px;
	right: 0;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	background-color: var(--background-color);
}

.search-bottom .t-close:hover {
	background-color: var(--primary-color);
}

.search-bottom .t-close img {
	padding: 10px;
}

/* ========== 08. OVERLAY ========== */
.overlay,
.overlay.hidden {
	position: fixed;
	width: var(--percent100);
	height: var(--percent100);
	top: 0;
	left: 0;
	z-index: 999;
	background-color: rgba(255, 255, 255, 0.8);
	visibility: hidden;
	opacity: 0;
}

.showmenu .overlay,
.overlay {
	visibility: visible;
	opacity: 1;
}

/* ========== 09. PAGE SINGLE ========== */

/* ========== 09. PAGE SINGLE
                    a. Breadcrumb
    ========== */

.breadcrumb {
	font-size: var(--font-small);
	margin-bottom: 2rem;
	padding: 0.5rem;
	border-top: 1px solid var(--white-color);
	border-bottom: 1px solid var(--white-color);
}

.breadcrumb li:not(:last-child)::after {
	content: "/";
	padding: 0 0.35rem;
}

.breadcrumb li:last-child {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	font-weight: var(--fw6);
	color: var(--primary-color);
}

.breadcrumb li a:hover {
	color: var(--primary-color);
}

/* ========== 09. PAGE SINGLE
                    b. Product details
    ========== */

.products.one .item {
	flex-direction: column;
}

.products.one .price .discount {
	font-size: 1rem;
	font-weight: var(--fw7);
	line-height: 1;
	position: absolute;
	top: 0;
	bottom: auto;
	padding: 1rem;
	z-index: 2;
	background-color: var(--primary-color);
	color: var(--white-color);
	border-radius: var(--percent50);
	margin: 7% 24%;
}

.products.one :where(.big-image, .small-image) {
	overflow: hidden;
}

.products.one .big-image {
	position: relative;
	margin-bottom: 1rem;
}

.products.one :where(.big-image) img {
	object-fit: cover;
	width: var(--percent100);
	height: auto;
	display: block;
	max-width: 400px;
}

.products.one .thumbnail-show {
	position: relative;
	width: 130px;
	height: 120px;
	overflow: hidden;
	margin: 0 2rem 2rem 0;
}

/* biome-ignore lint/style/noDescendingSpecificity: keep order */
.products .big-image {
	transition:
		var(--trans-background),
		transform 0.3s;
}

.products .big-image:hover {
	transform: scale(1.1);
}

/* ========== 09. PAGE SINGLE
                    c. Product description
    ========== */

.products.one .item h1 {
	margin: 2rem 0;
}

.products.one .shipment-popup {
	text-decoration: underline;
}

.products.one .shipment-popup:hover {
	color: var(--primary-color);
}

.products.one .add-review {
	color: var(--secondary-color);
}

.products.one .price {
	display: flex;
	gap: 1rem;
	align-items: center;
	flex-wrap: wrap;
}

.products.one .price .current {
	font-size: 2rem;
	color: var(--white-color);
	font-weight: var(--fw8);
}

.products .variant form {
	display: flex;
	margin-top: 0.5rem;
}

.products .variant form p {
	position: relative;
	margin: 0 0.5rem 0.5rem;
}

.products :where(.actions) .rectangle {
	display: block;
	position: static;
	top: 0;
	margin: 0;
	cursor: pointer;
	z-index: 1;
}

.estimated-delivery {
	color: var(--white-color);
	padding: 1rem 0 1rem 0;
	margin: 1rem 0 1rem 0;
	border-top: 1px solid var(--white-color);
	border-bottom: 1px solid var(--white-color);
}

.estimated-delivery u {
	cursor: pointer;
}

.estimated-delivery u:hover {
	color: var(--primary-color);
}

.estimated-delivery .estimated-delivery-info {
	visibility: hidden;
	width: fit-content;
	background-color: var(--dark-color);
	color: var(--white-color);
	text-align: center;
	border-radius: 4px;
	padding: 5px 0;
	position: absolute;
	z-index: 1;
	margin-top: 15px;
	margin-left: -25%;
}

.estimated-delivery:hover .estimated-delivery-info {
	visibility: visible;
}

.estimated-delivery-info a {
	cursor: pointer;
	text-decoration: underline;
}

.products .actions {
	display: flex;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.products .qty-control {
	width: fit-content;
	padding: 0.3rem;
	border: 1px solid var(--secondary-color);
	border-radius: 4px;
	margin: 0 1rem 2rem 0;
}

.minus,
.plus {
	background-color: transparent;
	color: var(--white-color);
	transition: var(--trans-background-color);
}

.minus:hover,
.plus:hover {
	background-color: var(--primary-color);
}

.products .actions :where(input, button) {
	font-size: 1.25rem;
	outline: 0;
	border: 1px solid var(--border-color);
}

/* biome-ignore lint/style/noDescendingSpecificity: keep order */
.products .actions input {
	width: 50px;
	height: 38px;
	text-align: center;
}

.products .qty-control button::before {
	background-color: transparent;
}

.products .actions .button-cart {
	flex: 1;
	min-width: 180px;
}

.products .actions .button-cart button {
	cursor: pointer;
	font-size: 14px;
}

.wish-share a {
	display: flex;
	align-items: center;
	text-transform: uppercase;
	font-weight: var(--fw7);
	margin: 1rem 2rem 1rem 0;
	transition: var(--trans-color);
}

.collapse li {
	font-size: 0.8rem;
}

.collapse li > h2 {
	position: relative;
	font-weight: var(--fw7);
	padding: 1rem 0;
	border-bottom: 1px solid var(--white-color);
}

.collapse .content {
	margin: 0 0 8rem;
}

.collapse .content li span:first-child {
	min-width: 100px;
	display: inline-flex;
	font-weight: var(--fw7);
	text-transform: uppercase;
}

.content ul,
.content ol {
	margin-left: 2.5rem;
}

.content li {
	list-style: disc;
	font-size: 0.875rem;
	line-height: initial;
}

/* ========== 11. PAGE CATEGORY ========== */

.single-category .holder {
	display: flex;
	flex-direction: column;
}

.single-category .sidebar,
.single-category .section {
	flex: 1 0 100%;
}

.page-title {
	margin-bottom: 3rem;
}

.cat-description p {
	font-weight: var(--fw3);
	font-size: 0.9rem;
}

.cat-navigation {
	font-size: 0.85rem;
	margin: 2rem 0;
	justify-content: flex-start;
	gap: 1rem;
}

.cat-navigation > div {
	position: relative;
}

.cat-navigation ul {
	display: none;
	min-width: var(--percent100);
	width: max-content;
	position: absolute;
	left: 0;
	z-index: 10;
}

.cat-navigation .label,
.cat-navigation ul li {
	display: flex;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	transition: var(--trans-color);
}

.cat-navigation .label {
	border: 1px solid var(--white-color);
	border-radius: 2px;
	background-color: transparent;
	color: var(--white-color);
}

.cat-navigation .label:hover {
	background-color: var(--white-color);
	color: var(--dark-color);
}

.item-sort .label,
.cat-navigation ul {
	color: var(--white-color);
	background-color: var(--dark-color);
	cursor: pointer;
	border: 1px solid var(--border-color);
	border-radius: 4px;
}

.item-sort .label:hover,
.cat-navigation ul li:hover {
	background-color: var(--white-color);
	color: var(--dark-color);
}

.item-sort:hover ul {
	display: block;
}

.load-more {
	margin: 2rem 0 4rem;
}

/* ========== 11. PAGE CATEGORY ========== */
input[type="range"] {
	-webkit-appearance: none;
	width: var(--percent100);
}

input[type="range"]:focus {
	outline: 0;
}

input[type="range"]::-webkit-slider-runnable-track {
	width: var(--percent100);
	height: 5px;
	cursor: pointer;
	background-color: var(--border-color);
	box-shadow: none;
	border: 0;
}

input[type="range"]::-webkit-slider-thumb {
	z-index: 2;
	position: relative;
	height: 18px;
	width: 14px;
	background-color: var(--primary-color);
	-webkit-appearance: none;
	margin-top: -7px;
}

/* ========== 11. PAGE CATEGORY
                    a. Products block
    ========== */

.section .items-order-top,
.section .items-order-bottom {
	display: flex;
	justify-content: end;
	padding: 0.5rem 0;
	font-size: 13px;
}

.section .items-order-top {
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 2rem;
}

.section .items-order-bottom {
	border-bottom: 1px solid var(--border-color);
	border-top: 1px solid var(--border-color);
	margin: 2rem 0;
}

.category-item {
	transition: var(--trans-color);
}

.category-item:hover {
	box-shadow: 0 0 1.5rem rgba(255, 255, 255, 0.2);
}

.category-item .main-links a {
	font-size: 18px;
	text-decoration: underline;
}

/* ========== 12. CART OVERLAY ========== */

.mini-cart {
	position: absolute;
	width: 400px;
	top: 100%;
	right: 0;
	background-color: var(--dark-color);
	z-index: 1000;
	box-shadow: rgb(255 255 255 / 30%) 0 10px 10px;
}

:is(.mini-cart .products, .products.cart) .thumbnail img {
	transform: none;
}

.mini-cart ul :where(li, .price) {
	position: relative;
}

.mini-cart .content {
	width: var(--percent100);
	height: var(--percent100);
	touch-action: auto;
	padding: 1.5rem;
}

.mini-cart .cart-head {
	font-size: 0.7rem;
	font-weight: var(--fw5);
	color: var(--secondary-color);
	padding-bottom: 0.5rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid var(--border-color);
}

.mini-cart .cart-body {
	padding: 0 1.5rem;
	margin: 0 -1.5rem;
	max-height: 450px;
	overflow: auto;
}

.mini-cart .products.mini {
	margin-left: 0;
}

.mini-cart .thumbnail {
	position: relative;
	width: 50px;
	height: 50px;
	flex-shrink: 0;
	margin-right: 1rem;
}

.mini-cart .item-content p {
	font-size: var(--font-small);
	font-weight: var(--fw5);
	margin: initial;
	line-height: 1.2;
}

.mini-cart .item-remove {
	margin-left: 1rem;
	flex: 1;
	justify-content: flex-end;
}

.mini-cart .item-remove img {
	width: 15px;
	height: 15px;
}

.mini-cart .subtotal,
.mini-cart .subtotal-net,
.mini-cart .subtotal-vat {
	display: flex;
	justify-content: space-between;
}

.mini-cart .subtotal-net p,
.mini-cart .subtotal-vat p {
	margin: 0.2rem 0;
}

.mini-cart .subtotal-net p,
.mini-cart .subtotal-vat p,
.shipping-costs p {
	font-size: 12px;
}

.mini-cart .subtotal {
	padding-top: 1rem;
	border-top: 1px solid var(--border-color);
}

.mini-cart .subtotal p:last-child {
	font-size: 14px;
}

.mini-cart .actions {
	display: flex;
	justify-content: space-around;
	gap: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--border-color);
}

.mini-cart .actions .secondary-button:hover {
	color: var(--white-color);
}

.mini-cart .mini-text {
	padding-top: 1rem;
}

/* Bottom-menu Cart */
.cart-bottom.show {
	visibility: visible;
	opacity: 1;
	top: 0;
	bottom: 0;
	max-width: 400px;
	width: 90%;
	overflow: auto;
}

.cart-bottom {
	position: fixed;
}

/* ========== 13. PAGE CART ========== */
.products.cart {
	display: block;
}

.products.cart :where(.content, .qty-control) {
	margin: 0;
	padding: 0;
}

.products.cart .qty-control,
.order-summary .qty-control {
	border: 1px solid var(--white-color);
}

.products.cart .qty-control :where(button, input) {
	width: 32px;
	height: 32px;
	padding: 0.25rem;
	text-align: center;
	outline: 0;
	border: 0;
	background-color: transparent;
}

/* biome-ignore lint/style/noDescendingSpecificity: keep order */
.order-summary .qty-control :where(button, input) {
	width: 32px;
	height: 32px;
	padding: 0.25rem;
	text-align: center;
	outline: 0;
	border: 0;
	background-color: transparent;
}

.products.cart .qty-control input {
	background-color: var(--white-color);
	color: var(--dark-color);
}

/* biome-ignore lint/style/noDescendingSpecificity: keep order */
.order-summary .qty-control input {
	background-color: var(--white-color);
	color: var(--dark-color);
}

.products.cart .qty-control button {
	cursor: pointer;
}
/* biome-ignore lint/style/noDescendingSpecificity: keep order */
.order-summary .qty-control button {
	cursor: pointer;
}

.products.cart .qty-control button:hover {
	background-color: var(--primary-color);
}

/* biome-ignore lint/style/noDescendingSpecificity: keep order */
.order-summary .qty-control button:hover {
	background-color: var(--primary-color);
}

.products.cart .item-remove,
.order-summary .item-remove {
	padding: 1rem 0;
	/* border: 1px solid var(--white-color); */
}

.products.cart .item-remove:hover,
.order-summary .item-remove :hover {
	text-decoration: underline;
	color: var(--primary-color);
}

.products.cart .item-remove img .order-summary .item-remove img {
	width: 20px;
	height: 20px;
}

.cart-summary .coupon {
	position: relative;
}

/* biome-ignore lint/style/noDescendingSpecificity: keep order */
.cart-summary .coupon input {
	font-style: italic;
	outline: 0;
	width: var(--percent100);
	padding: 0 0.5rem;
	line-height: 30px;
	background-color: #292929;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	color: var(--white-color);
}

/* biome-ignore lint/style/noDescendingSpecificity: keep order */
.cart-summary .coupon button {
	position: absolute;
	top: 0;
	right: 0;
	border: 0;
	outline: 0;
	padding: 0 1rem;
	line-height: 32px;
	background-color: var(--primary-color);
	color: var(--white-color);
	border-radius: 0 4px 4px 0;
	cursor: pointer;
}

.cart-summary .shipping-rate .has-child > a {
	font-size: 1rem;
	margin: 2rem 0;
	border: 0;
}

.cart-summary .content form {
	display: flex;
	flex-direction: column;
	margin-bottom: 1rem;
}

.styled :where(input, select, textarea) {
	padding: 0.75rem;
	outline: 0;
	background-color: var(--white-color);
	border-width: 0 0 3px 0;
	border-style: solid;
	border-color: var(--border-color);
}

.products .cart-summary .variant form label {
	position: relative;
	border: 0;
	background-color: var(--white-color);
	transform: scale(0.5) translateX(-25px);
}

.cart-summary .variant p span {
	position: absolute;
	top: 0;
	left: 20px;
	line-height: 3;
}

.cart-summary .variant .input:checked + label::before {
	opacity: 1;
}

.cart-summary .cart-totals > a {
	width: var(--percent100);
	display: block;
	text-align: center;
	margin-top: 2rem;
	font-size: 1rem;
	line-height: 1.5;
}

.page-cart .cart-table,
.order-summary {
	margin: 2rem 0;
}

.page-cart .product-list,
.order-summary .product-list {
	position: relative;
}

.has-bg::before,
.has-bg::after {
	content: "";
	position: absolute;
	height: 100%;
	z-index: -1;
}

.has-bg::before {
	top: auto;
	left: 0;
	width: 50%;
}

.has-bg::after {
	top: 0;
	right: 100%;
	width: 100%;
}

.page-cart .product-list li,
.order-summary .product-list li {
	display: grid;
	margin: 0;
}

.page-cart .product-list li .grouping,
.order-summary .product-list li .grouping {
	display: flex;
	--grid-col: 75px;
	padding: 30px 0;
	align-items: center;
	justify-content: space-around;
	border-bottom: 1px solid var(--border-color);
}

.page-cart .product-list li .grouping .product-details {
	padding: 0 2rem 0 0;
}
.page-cart .product-list li .grouping .product-details strong > a,
.order-summary .product-list li .grouping .product-details strong > a {
	display: flex;
	max-width: min-content;
}

.page-cart .product-list .grouping:last-child,
.order-summary .product-list .grouping:last-child {
	justify-content: space-between;
	--gutter: 0;
}

.cart-table .product-list .table-title {
	font-size: var(--font-primary);
	font-weight: var(--fw6);
	text-transform: uppercase;
	border-bottom: 1px solid var(--border-color);
}

.cart-table .product-list .thumbnail {
	position: relative;
	width: 120px;
	height: 120px;
	margin: 0;
}

.cart-table .product-list .item-remove {
	padding: 1rem 0;
	margin-left: auto;
	margin-right: auto;
}

.cart-table .product-list .item-remove:hover {
	text-decoration: underline;
	color: var(--primary-color);
}

.cart-table .product-list .item-remove img {
	width: 20px;
	height: 20px;
}

.cart-table .product-list .auto-item {
	padding: 2rem 0;
}

.cart-table .product-list .qty-control {
	position: relative;
	max-width: 100px;
	margin: 0 auto;
}

.cart-table .product-list .table-title {
	display: none;
}

.cart-table .product-list .price {
	display: none;
}

.cart-summary .product-list h3 {
	margin-bottom: 2rem;
	font-size: 1.3rem;
}

#empty-cart-message {
	text-align: center;
	color: var(--primary-color);
	font-size: 1.5rem;
	margin-top: 5rem;
}

#empty-cart-message-mini {
	color: var(--primary-color);
}

.page-cart .product-list .cart-totals li {
	grid-template-columns: none;
}

.page-cart .product-list .cart-totals li .grouping {
	border: none;
	padding: 0;
	font-size: 14px;
}

.page-cart .product-list .cart-totals li .grand-total {
	margin-top: 1rem;
	padding-top: 1rem;
	font-size: 1rem;
	border-top: 1px solid var(--white-color);
}

.page-cart .product-list .cart-total li .grand-total .title:last-child {
	font-weight: var(--fw6);
}

.page-cart .product-list .cart-totals li .mini-text {
	padding-top: 1rem;
}

.page-cart .product-list .cart-totals li .mini-text a {
	text-decoration: underline;
}

.page-cart .others-bought h1 {
	text-align: center;
	margin: 2rem 0;
	padding: 1rem 0;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}

.page-cart .others-bought {
	margin-bottom: 3rem;
}

/* ========== 14. PAGE CHECKOUT ========== */
.form-box {
	display: flex;
	flex-direction: column;
}

.form-box form {
	width: 100%;
}

.checkout .login h4 {
	margin-bottom: 2rem;
}

.checkout .login .form-group-login {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1rem;
}

.checkout .login .login-button {
	width: 50%;
	justify-content: center;
}

.checkout .login .login-button-checkout {
	width: 100%;
}

.checkout .login a {
	font-size: 12px;
}

.checkout .new-customer-form {
	display: block;
	gap: 2rem;
}

.checkout .form-step h4,
.checkout .registration-form .form-step h4 {
	margin: 2rem 0 1rem 0;
	text-transform: uppercase;
	text-decoration: underline;
	color: var(--primary-color);
}

.checkout .form-group,
.account .form-group,
.contact .form-group {
	display: flex;
	flex-direction: column;
}

.checkout .form-group > div,
.account .form-group > div,
.contact .form-group > div {
	display: flex;
	flex-direction: column;
	margin-bottom: 0.5rem;
}

.checkout .form-group > div > label > span,
.account .form-group > div > label > span,
.contact .form-group > div > label > span,
.checkout .form-one .checkbox label span,
.checkout .form-two .checkbox label span {
	color: #b72c39;
}

.checkout form > div p,
.checkout form > a {
	color: var(--secondary-color);
}

.form-box form label {
	text-transform: none;
}

.checkout form :where(input, select) {
	height: 40px;
	padding: 0 1rem;
	border-radius: 4px;
	background-color: #292929;
	color: var(--white-color);
}

.account form :where(input, select) {
	height: 40px;
	padding: 0 1rem;
	border-radius: 4px;
	background-color: #292929;
	color: var(--white-color);
}

.contact form :where(input, select) {
	height: 40px;
	padding: 0 1rem;
	border-radius: 4px;
	background-color: #292929;
	color: var(--white-color);
}

/* biome-ignore lint/style/noDescendingSpecificity: keep order */
.form-two :where(input, select) {
	height: 40px;
	padding: 0 1rem;
	border-radius: 4px;
	background-color: #292929;
	color: var(--white-color);
}

.checkout form input[type="checkbox"] {
	height: 10px;
}

.checkout form :where(select) {
	width: 100%;
	color: var(--white-color);
}

.checkout form label,
.customer-options label,
.account form label,
.contact form label {
	font-size: var(--font-small);
	margin-bottom: 0;
}

.customer-options {
	margin: 2rem 0;
}

.checkout form .checkbox input[type="radio"],
.contact form .checkbox input {
	height: auto;
}

.checkout form .checkbox > p {
	margin-top: 0;
}

.checkout form a {
	text-decoration: underline;
}

.checkout .different-shipping-address {
	display: none;
	margin-top: 2rem;
}

.checkout .different-shipping-address > h4 {
	margin-bottom: 1rem;
}

.checkout .form-two label,
.customer-options label {
	line-height: 2;
	padding: 1rem 0;
}

.checkout .form-two .grouping-wrapper {
	display: flex;
	--grid-col: 75px;
	padding: 30px 0;
	align-items: center;
	border-bottom: 1px solid var(--border-color);
}
.checkout .form-two .cart-table .product-list .thumbnail {
	width: 70px;
	height: 70px;
}

.checkout .form-two p,
.checkout .form-two label {
	font-size: 12px;
	line-height: 1;
}
.checkout .form-two .checkbox,
.checkout .form-two label {
	margin: 1rem 0 1rem 0;
}
.account .orders-container {
	display: flex;
	flex-wrap: wrap;
	flex: 0 0 50%;
	gap: 2rem;
	width: 100%;
	margin: auto;
}

.account .order-info .card {
	position: relative;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--white-color);
	padding: 2rem;
	width: 100%;
}

.account .order-info .card .card-body {
	display: flex;
	flex-direction: row;
	gap: 2rem;
}

.account .order-info .card p {
	color: var(--white-color);
}

.account .order-info .card div {
	width: 100%;
}

/* Button */
.checkout .btn-group {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 3rem;
	margin-top: 2rem;
}

.checkout .btn-group [class*="btn-"] {
	padding: 1rem 2.5rem;
	cursor: pointer;
	-webkit-transition:
		background-color 0.3s,
		border-color 0.3s ease-out;
	transition:
		background-color 0.3s,
		border-color 0.3s ease-out;
	width: var(--percent100);
	display: block;
	text-align: center;
	margin-top: 2rem;
	font-size: 1rem;
	line-height: 1.5;
}

.checkout .form-two {
	background-color: var(--background-color);
	border-radius: 4px;
	padding: 1rem;
	border: 1px solid var(--border-color);
	box-shadow: rgb(0 0 0 / 30%) 0 10px 50px;
	font-size: 12px;
	margin: 2rem 0;
}

.checkout .order-summary {
	margin: 0;
}

.checkout .order-summary .product-list .grouping {
	border: none;
	gap: 2rem;
	padding: 10px 0;
}

.checkout .order-summary .product-list li .row {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.checkout .order-summary .qty-control input {
	border-radius: 0;
}

.account .container-checkout-items-total {
	display: flex;
	justify-content: center;
}

.checkout .checkout-items-total {
	width: 100%;
}

.checkout .checkout-items-total .row,
.account .container-checkout-items-total .row {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.account .container-checkout-items-total .row {
	padding: 0.5rem 0;
}

.checkout .checkout-items-total .total-sum,
.account .container-checkout-items-total .total-sum {
	padding-top: 1rem;
	margin-bottom: 2rem;
}

.checkout .checkout-items-total .total-sum {
	font-size: 1rem;
}

/* biome-ignore lint/style/noDescendingSpecificity: keep order */
.container-checkout-items-total {
	font-size: 14px;
}

/* ========== 15. COOKIE CONSENT MANAGER MODAL ========== */

.consent-manager-modal {
	background-color: var(--dark-color);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 90%;
	height: 80%;
	padding: 2rem 1rem;
	margin: auto;
	z-index: 1000;
	border: 1px solid var(--white-color);
	border-radius: 4px;
	transition: 200ms ease-in-out;
}

.consent-manager-modal.hidden {
	display: none;
}

.consent-manager-modal .content {
	height: 100%;
	overflow-y: auto;
	padding-right: 0.5em;
}

.consent-manager-modal .consent-icon {
	position: absolute;
	top: -40px;
	right: 40%;
	height: 70px;
	width: 70px;
	border-radius: 50%;
	background-color: var(--dark-color);
	padding: 0.5rem;
	border: 1px solid var(--primary-color);
}

.consent-manager-modal .consent-icon img {
	width: 60px;
	height: 60px;
	padding: 0.5rem;
}

.consent-manager-modal p {
	margin: 0.5rem 0;
	font-size: 10px;
}

.consent-manager-modal .content a {
	text-decoration: underline;
	font-size: 10px;
}

/* biome-ignore lint/style/noDescendingSpecificity: keep order */
.consent-manager-modal span {
	font-size: 10px;
}

.consent-manager-modal .modalclose {
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
	background-color: transparent;
	border: 0;
	outline: 0;
	margin-right: 0.5rem;
}

.consent-manager-modal .modalclose img {
	height: 20px;
}

.consent-manager-modal .consent .checkbox {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid var(--white-color);
}

.consent-manager-modal .consent .checkbox a {
	margin-left: auto;
}

.consent-manager-modal .collapse-icon {
	display: inline-block;
	width: 1em;
	height: 1em;
	margin-left: 0.25em;
	background-color: var(--primary-color);
	border-radius: 50%;
	text-align: center;
}

.consent-manager-modal .collapse-content {
	display: none;
}

/* biome-ignore lint/style/noDescendingSpecificity: keep order */
.collapse-content {
	background-color: var(--white-color);
	color: var(--dark-color);
	padding: 0.5rem;
}

.consent-manager-modal .content .apply-settings {
	display: flex;
	justify-content: flex-end;
	margin: 1rem 0;
}

/* Radio Buttons Style */
.consent-manager-modal .switch {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 25px;
}

/* biome-ignore lint/style/noDescendingSpecificity: keep order */
.consent-manager-modal .switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.consent-manager-modal .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.consent-manager-modal .slider:before {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 8px;
	bottom: 3px;
	background-color: var(--dark-color);
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.consent-manager-modal input:checked + .slider {
	background-color: var(--primary-color);
}

.consent-manager-modal input:focus + .slider {
	box-shadow: 0 0 1px var(--primary-color);
}

.consent-manager-modal input:checked + .slider:before {
	-webkit-transform: translateX(18px);
	-ms-transform: translateX(18px);
	transform: translateX(18px);
}

.consent-manager-modal .slider.round {
	border-radius: 34px;
}

.consent-manager-modal .slider.round:before {
	border-radius: 50%;
}

.backtotop a {
	position: fixed;
	bottom: 6rem;
	right: 2rem;
	display: none;
	text-align: center;
	gap: 0;
	font-size: var(--font-small);
	padding-block-end: 0.5rem 1rem;
	border-radius: 3px;
	z-index: 999;
	background-color: var(--dark-color);
	box-shadow: 0 0.25rem 0.5rem rgba(255, 255, 255, 0.2);
	transition: 0.2s ease-out;
	cursor: pointer;
	width: 50px;
}

.backtotop a:hover img {
	transform: translateY(-4px);
}

.backtotop-button.show {
	display: inline-flex;
}

/* ========== 16. PAGE ACCOUNT ========== */
.account .my-details .welcome {
	display: flex;
	justify-content: flex-start;
}

.account .tab {
	margin-bottom: 2rem;
}

.account nav {
	position: relative;
}

.account nav::before {
	content: "";
	position: absolute;
	left: 0;
	top: 58px;
	width: 100%;
	background-color: var(--secondary-color);
}

.account nav ul {
	display: flex;
	gap: 2rem;
	overflow: auto;
}

.account nav ul li a {
	position: relative;
	display: block;
	font-size: 16px;
	padding: 20px 0;
	white-space: nowrap;
	color: #c7c1c1;
}

.account .tab {
	display: none;
}

.account .tab.active {
	display: block;
}

.account .text-block h3 {
	margin: 2rem 0;
	color: var(--primary-color);
	font-weight: bold;
}

.account nav ul :is(li.active a, li a:hover) {
	color: var(--primary-color);
}

.account nav ul li a::before {
	content: "";
	position: absolute;
	height: 2px;
	width: 0;
	left: 0;
	bottom: 12px;
	background-color: var(--primary-color);
	transition: width 0.3s;
}

.account nav ul li.active a::before {
	width: 100%;
}

.account .invoice-summary .invoice {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0;
}

.account .my-details h4 {
	margin: 2rem 0 1rem 0;
	text-transform: uppercase;
	text-decoration: underline;
}

.account form label,
.contact form label {
	text-transform: none;
}

.account .btn-group {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 2rem;
	margin: 1rem 0;
}

/* biome-ignore lint/style/noDescendingSpecificity: keep order */
.account .form-details button {
	margin: 2rem 0;
}

/* biome-ignore lint/style/noDescendingSpecificity: keep order */
.contact .form-details button {
	margin: 2rem 0;
}

/* ========== 18. CONTACT ========== */

.contact .contact-container {
	display: grid;
	gap: 1rem;
}

.contact a:hover {
	color: var(--primary-color);
}

.contact .privacy {
	margin-top: 2rem;
}

/* ========== 17. RESPONSIVE ========== */

@media screen and (max-width: 481px) {
	.breadcrumb {
		font-size: 10px;
		padding: 0.5rem 0;
	}
}

@media screen and (min-width: 481px) {
	.products.main .item,
	.widgets .row {
		flex: 0 0 50%;
		/* gap: 2rem; */
	}

	/* Product Details */
	.products.one .big-image {
		margin-bottom: 2rem;
		margin-left: 5rem;
	}
}

@media screen and (min-width: 768px) {
	.products .price .current {
		font-size: 1.25rem;
	}
	/* biome-ignore lint/style/noDescendingSpecificity: keep order */
	.products.mini,
	.banner .row {
		flex: 0 0 50%;
	}

	.products.main .item {
		flex: 0 0 33.3333%;
	}

	.widgets .row {
		flex: 0 0 33.3333%;
	}

	.products.one .row {
		flex: 0 0 50%;
		width: 50%;
	}

	.products.one .is-sticky {
		position: sticky;
		top: 2rem;
	}

	/* biome-ignore lint/style/noDescendingSpecificity: keep order */
	.is-sticky {
		position: sticky;
		top: 2rem;
	}

	.page-cart .product-list li,
	.order-summary .product-list li {
		grid-template-columns: 1fr 2fr;
		font-size: 14px;
	}

	.checkout .order-summary .product-list li {
		grid-template-columns: 4fr 0fr;
	}

	.cart-table .product-list .table-title,
	.order-summary .product-list .table-title {
		display: grid;
	}

	.cart-table .product-list .price {
		display: grid;
	}

	/* Checkout page */

	.checkout .form-box form {
		padding-bottom: 3rem;
	}

	.checkout .form-group,
	.account .form-group,
	.contact .form-group {
		flex-direction: row;
		gap: 2rem;
	}

	.checkout .form-group > div,
	.account .form-group > div,
	.contact .form-group > div,
	#login-message {
		width: 50%;
	}

	.checkout .form-group.form-group-login > div,
	.checkout-login-message {
		width: 100%;
	}

	.order-summary .product-list li .grouping .product-details strong > a {
		display: flex;
	}

	.account .container-checkout-items-total {
		justify-content: flex-end;
	}

	/* Consent Manager Modal */
	.consent-manager-modal {
		width: 60%;
	}

	.consent-manager-modal .consent-icon {
		right: 45%;
	}
	/* biome-ignore lint/style/noDescendingSpecificity: keep order */
	.consent-manager-modal span {
		font-size: 14px;
	}

	.consent-manager-modal p {
		font-size: 12px;
	}

	.account nav ul {
		justify-content: center;
	}

	.account .invoice-summary .invoice {
		gap: 5rem;
	}
}

@media screen and (min-width: 992px) {
	.container {
		padding: 0 2rem;
	}

	.desktop-hide {
		display: none;
	}

	.mobile-hide {
		display: block;
	}

	.header-nav {
		padding: 0;
		margin: 0;
		border-bottom: 0;
	}

	.header-nav .right li > a {
		margin-left: 1rem;
	}

	.socials {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.socials a {
		font-size: 1.25rem;
		width: 25px;
		height: 25px;
		background-color: var(--background-color);
		border-radius: var(--percent50);
		transition: var(--trans-background);
	}

	.socials a:hover {
		background-color: var(--border-color);
	}

	.socials a img {
		padding: 1px;
	}

	/* Mega Menu */
	/* biome-ignore lint/style/noDescendingSpecificity: keep order */
	nav .mega {
		position: absolute;
		width: var(--percent100);
		height: auto;
		top: 7rem;
		left: 0;
		right: 0;
		padding: 2.5rem;
		line-height: 2rem;
		border-top: 1px solid var(--white-color);
		background-color: var(--dark-color);
		box-shadow: rgb(255 255 255 / 20%) 0 30px 20px -30px;
		z-index: 100;
	}

	nav .mega .wrapper {
		display: flex;
	}

	nav .mega ul {
		font-size: var(--font-small);
	}

	nav .mega .view-all {
		margin-top: 1rem;
	}
	/* biome-ignore lint/style/noDescendingSpecificity: keep order */
	nav .mega .best-seller {
		flex: 2;
		padding: 0;
		align-items: center;
		position: relative;
		max-width: 350px;
	}

	nav .mega .best-seller .row {
		width: var(--percent50);
	}

	nav .mega .best-seller .text-content {
		line-height: initial;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0.5rem;
		margin-top: 0.5rem;
		position: absolute;
		bottom: -0.2rem;
		width: var(--percent100);
	}

	nav .mega .best-seller .text-content h4 {
		font-weight: var(--fw8);
		text-align: center;
		color: var(--white-color);
		margin-bottom: 6rem;
		background-color: var(--bestseller-color);
		padding: 0.5rem;
		border-radius: 4px;
	}

	.header-main .right {
		max-width: 600px;
		margin-left: auto;
	}

	/* Categories-menu */
	.categories-menu {
		position: absolute;
		top: var(--percent100);
		width: 300px;
		background-color: var(--background-color);
		border: 1px solid var(--border-color);
		box-shadow: rgb(0 0 0 / 30%) 0 10px 50px;
		border-top: 0;
		border-radius: 0 0 17px 17px;
	}

	.categories-menu > ul {
		margin-top: 1rem;
	}

	.categories-menu > ul > li > a {
		font-weight: var(--fw5);
		padding: 0.5rem 1.5rem;
		/* border-bottom: 1px solid var(--border-color); */
	}

	.categories-menu > ul > li > a:hover {
		color: var(--primary-color);
	}

	.categories-menu .has-child > ul {
		position: absolute;
		top: 0;
		left: var(--percent100);
		width: var(--percent100);
		min-height: var(--percent100);
		padding: 1.5rem;
		font-size: var(--font-small);
		line-height: 2.5rem;
		border: 1px solid var(--border-color);
		border-top: 0;
		display: none;
		background-position: right bottom;
		background-repeat: no-repeat;
		background-size: auto;
	}

	/* biome-ignore lint/style/noDescendingSpecificity: keep order */
	.categories-menu .mega {
		position: absolute;
		top: 0;
		left: var(--percent100);
		width: var(--percent100);
		min-height: var(--percent100);
		padding: 1.5rem;
		font-size: var(--font-small);
		line-height: 2.5rem;
		border: 1px solid var(--border-color);
		border-top: 0;
		display: none;
		background-position: right bottom;
		background-repeat: no-repeat;
		background-size: auto;
	}

	/*  showing the first sub menu*/
	.categories-menu .has-child:nth-child(1) > ul {
		display: block;
	}

	.categories-menu .has-child > :where(ul, .mega)::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: linear-gradient(
			90deg,
			rgba(255, 255, 255, 1) 0%,
			rgba(255, 255, 255, 0)
		);
	}
	/* biome-ignore lint/style/noDescendingSpecificity: keep order */
	.categories-menu .mega {
		width: auto;
		min-width: var(--percent100);
		display: flex;
	}

	.categories-menu .has-child:hover .mega {
		display: flex;
	}

	.hero > div > .wrapper,
	.hero.single-checkout.register > div > .wrapper {
		padding-left: calc(300px + 2rem);
		margin-left: auto;
	}

	.hero.single-checkout > div > .wrapper {
		padding-left: 0px;
	}

	/* products */
	.products.main .item,
	.widgets .row {
		flex: 0 0 25%;
	}

	/* footer */
	.newsletter .box {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	/* Category Page */
	.single-category .holder {
		flex-direction: row;
	}

	.single-category .sidebar {
		flex: 1 0 25%;
	}

	.single-category .section {
		flex: 1 0 75%;
	}

	.products .item .media .image {
		min-width: 250px;
	}

	.single-category .products.main .item {
		display: flex;
		/* flex: 0 0 33.3333%; */
	}

	/* Page Cart */
	.products.cart .form-cart {
		width: 66%;
	}

	.products.cart .cart-summary {
		padding-left: 2.5rem;
		margin-top: 0;
	}

	.grid-checkout {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}

	.checkout .form-two {
		margin: 2rem 0 2rem 2rem;
		padding: 2.5rem;
	}

	.order-summary .product-list li .grouping .product-details {
		padding: 0 2rem 0 0;
	}

	.cart-table .product-list .thumbnail {
		width: 100px;
		height: 100px;
	}
}

@media screen and (min-width: 1300px) {
	.container {
		padding: 0 12rem;
	}

	.products.cart {
		display: grid;
		grid-template-columns: 2fr 1fr;
		gap: 3rem;
	}
}

/* ERPNext Overrides: */
li[data-list="ordered"] {
	margin-left: 3rem;
}

.collapse .content li span.ql-ui[contenteditable="false"]:first-child {
	min-width: 0px;
}

.ql-editor a {
	text-decoration: underline;
	transition: color 0.2s ease-in-out;
}

.ql-editor a:hover {
	color: var(--primary-color);
}

/* ERPNext Specific */

.qty-control.maintenance-item input.quantity-input {
	width: 100px;
	text-align: center;
}

.not-found {
	margin: 5rem 0 5rem;
}

@media screen and (min-width: 769px) {
	.not-found {
		margin: 5rem 0 14rem;
	}
}

/* Frontend Messages */

.info {
	min-height: 45vh;
}

.alert {
	padding: 15px;
	margin: 2rem 0;
	border-radius: 5px;
	font-size: 16px;
}

.alert-success {
	background-color: #d4edda; /* Light green background */
	color: #155724; /* Dark green text */
	border: 1px solid #c3e6cb; /* Light green border */
}

.alert-danger {
	background-color: #f8d7da; /* Light red background */
	color: #721c24; /* Dark red text */
	border: 1px solid #f5c6cb; /* Light red border */
}

.alert-info {
	background-color: #d1ecf1; /* Light blue background */
	color: #0c5460; /* Dark blue text */
	border: 1px solid #bee5eb; /* Light blue border */
}

/* Dialog modal for error and success messages */
.modal {
	display: none; /* Initially hidden */
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);

	/* Centering the modal content */
	align-items: center;
	justify-content: center;
}

.modal-content {
	background-color: #292929;
	margin: auto;
	padding: 20px;
	border: 1px solid var(--border-color);
	border-radius: 15px;
	width: 80%;
}

.modal-buttons {
	display: flex;
	justify-content: flex-end;
}
.modal-buttons .secondary-button {
	margin-left: 2rem;
}

@media screen and (min-width: 768px) {
	.modal-content {
		width: 40%;
	}
}

.modalTitle {
	color: var(--primary-color);
	font-size: 1rem;
}

.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: var(--white-color);
	text-decoration: none;
	cursor: pointer;
}

/* Spinner */
.loading-spinner {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.5);
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
}

.spinner {
	border: 8px solid #f3f3f3;
	border-top: 8px solid #3498db;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Drop downs: 1. Back To Homepage Mega menu, 2. Account icon left, 3. Mini Cart Top */
/* Hide dropdown content by default and set transition  */

.dropdown-content {
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.3s ease,
		visibility 0.3s ease;
}

/* Show dropdown when hovering over parent element */
.has-child:hover .dropdown-content,
.account-navbar:hover .dropdown-content,
.iscart:hover .dropdown-content {
	opacity: 1;
	visibility: visible;
}

.header-nav .right .account-overlay.logged-in {
	width: 200px;
	font-size: 14px;
}

/*  404 Page */
.not-found-page {
	text-align: center;
	justify-content: center;
	margin: 5rem 0 5rem;
}
.not-found-page .title {
	font-size: 8rem;
}

.not-found-page p {
	text-transform: uppercase;
	margin-bottom: 2rem;
}
/* biome-ignore lint/style/noDescendingSpecificity: keep order */
.not-found-page button {
	margin: auto;
}

/* Stripe Elements Override */
