@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@600;700;800&family=Exo+2:wght@600;700;800&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	--sc-bg: #0f1115;
	--sc-text: #e8ebf2;
	--sc-muted: #b8bfcc;
	--sc-surface: #171b23;
	--sc-surface-soft: #1d2430;
	--sc-elevated: #242d3c;
	--sc-border: #2f384a;
	--sc-link: #f5f7fb;
	--sc-overlay: rgba(15, 17, 21, 0.55);
	--sc-danger: #e75a6f;
	--sc-neon: #33e6ff;
	--sc-neon-secondary: #8cf7ff;
	--sc-neon-ring: rgba(51, 230, 255, 0.45);
	--sc-neon-bg: rgba(6, 26, 38, 0.45);
	--sc-logo-glow: rgba(51, 230, 255, 0.42);
	--sc-logo-glow-soft: rgba(51, 230, 255, 0.22);
	color-scheme: dark;
}

html[data-theme='light'] {
	--sc-bg: #f4f6fa;
	--sc-text: #1c2430;
	--sc-muted: #5d6778;
	--sc-surface: #ffffff;
	--sc-surface-soft: #eef2f8;
	--sc-elevated: #e3eaf6;
	--sc-border: #d8e0ec;
	--sc-link: #111827;
	--sc-overlay: rgba(255, 255, 255, 0.8);
	--sc-danger: #dc3545;
	--sc-neon: #0ea5c6;
	--sc-neon-secondary: #16c3df;
	--sc-neon-ring: rgba(14, 165, 198, 0.35);
	--sc-neon-bg: rgba(14, 165, 198, 0.12);
	--sc-logo-glow: rgba(14, 165, 198, 0.34);
	--sc-logo-glow-soft: rgba(14, 165, 198, 0.18);
	color-scheme: light;
}

html{
	margin:0px;
	padding: 0px;
	overflow-x: hidden;
}
body{
	margin:0px;
	padding: 0px;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	color: var(--sc-text);
	background: var(--sc-bg);
	overflow-x: hidden;
}

img{
	max-width: 100%;
	height: auto;
}

a{
	text-decoration: none !important;
	color: var(--sc-link);
}

p,
small,
label,
.text-muted {
	color: var(--sc-muted);
}


.breadcrumb a,
.btn-link{
	color: var(--sc-link) !important;
}

.breadcrumb,
.card,
.dropdown-menu,
.modal-content,
.list-group-item,
.table,
.form-control,
.form-select,
.input-group-text,
.search-panel,
.cart-panel {
	background-color: var(--sc-surface);
	color: var(--sc-text);
	border-color: var(--sc-border);
}

.table,
.table td,
.table th,
.table > :not(caption) > * > * {
	color: var(--sc-text);
	border-color: var(--sc-border);
}

.form-control,
.form-select,
.input-group-text {
	background-color: var(--sc-surface-soft);
	color: var(--sc-text);
}

.form-control:focus,
.form-select:focus {
	background-color: var(--sc-surface-soft);
	color: var(--sc-text);
	border-color: var(--sc-neon);
	box-shadow: 0 0 0 0.22rem var(--sc-neon-ring);
}

.dropdown-item {
	color: var(--sc-text);
}

.dropdown-item:hover,
.dropdown-item:focus {
	background-color: var(--sc-surface-soft);
	color: var(--sc-text);
}

#content,
#content .row:not(.no-surface-bg),
#column-left,
#column-right,
.alert,
.pagination,
.page-header,
.well,
.product-thumb,
.swiper-viewport,
.tab-content,
.page-search-panel,
.listing-inerface,
.refine-search,
.account-list .list-group-item {
	background: transparent;
	color: var(--sc-text);
	border-color: var(--sc-border);
}

.btn-primary,
#content .btn-primary{
	background-color: var(--primary-bg) !important;
	color: var(--primary-color) !important;
	border-color: var(--primary-bg) !important;
	box-shadow: 0 0 0 1px var(--sc-neon-ring), 0 0 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary:active:focus,
.btn-primary:focus-visible {
	background-color: var(--primary-bg) !important;
	color: var(--primary-color) !important;
	border-color: var(--primary-bg) !important;
	box-shadow: 0 0 0 1px var(--sc-neon-ring), 0 0 16px var(--sc-neon-ring);
	opacity: 0.9;
}

#content a:hover,
#content a:focus {
	color: var(--sc-neon);
}

.card,
.product-thumb,
.module-products .product-thumb {
	transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover,
.product-thumb:hover,
.module-products .product-thumb:hover {
	border-color: var(--sc-neon-ring);
	box-shadow: 0 0 0 1px var(--sc-neon-ring), 0 10px 26px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
	background-color: var(--secondary-bg) !important;
	color: var(--secondary-color) !important;
	border-color: var(--secondary-bg) !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active,
.btn-secondary:active:focus,
.btn-secondary:focus-visible {
	background-color: var(--secondary-bg) !important;
	color: var(--secondary-color) !important;
	border-color: var(--secondary-bg) !important;
	opacity: 0.9;
}

.list-group-item.active {
    z-index: 2;
    color: var(--primary-color);
    background-color: var(--primary-bg);
    border-color: var(--primary-bg);
}

.list-group-item:hover{
	background-color: var(--secondary-bg) !important;
	color: var(--secondary-color) !important;
	border-color: var(--secondary-bg) !important;
}

.category-label-text {
	unicode-bidi: plaintext;
}

.category-count-text {
	direction: ltr;
	unicode-bidi: isolate;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
	display: inline-block;
}

.category-refine-col {
	flex: 0 0 auto;
	width: auto;
	max-width: 100%;
}

.category-refine-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
}

.category-refine-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
	max-width: 100%;
}

.category-mixed-item {
	display: flex;
	align-items: center;
	gap: 6px;
}

.category-mixed-item .menu-label,
.category-mixed-item .category-label-text {
	flex: 1 1 auto;
	min-width: 0;
	unicode-bidi: plaintext;
}

.category-mixed-item .menu-count,
.category-mixed-item .category-count-text {
	flex: 0 0 auto;
	margin-inline-start: auto;
	direction: ltr;
	unicode-bidi: isolate;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}

#column-left .list-group .category-mixed-item {
	min-width: 0;
	width: 100%;
	max-width: none;
}

#column-left .list-group .category-mixed-item .menu-label,
#column-left .list-group .category-mixed-item .category-label-text {
	white-space: nowrap;
	overflow: visible;
	text-overflow: clip;
	flex: 0 0 auto;
}

#column-left .list-group.mb-3 {
	display: block;
	width: max-content;
	max-width: none;
}

#column-left .list-group.mb-3 .category-mixed-item {
	border: 1px solid var(--sc-border);
	background: var(--sc-surface);
}

#column-left .list-group.mb-3 .category-mixed-item:hover {
	border-color: var(--sc-border);
}

#column-left .list-group.mb-3 .category-mixed-item.active {
	background:
		linear-gradient(var(--sc-elevated), var(--sc-elevated)) padding-box,
		linear-gradient(120deg, #34d399, #38bdf8, #f59e0b, #f472b6, #34d399) border-box;
	background-size: 100% 100%, 300% 300%;
	background-position: 0 0, 0% 50%;
	animation: category-frame-flow 7s linear infinite;
	border-color: transparent !important;
	color: var(--sc-text);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 14px rgba(56, 189, 248, 0.28);
}

#column-left .list-group.mb-3 .category-mixed-item.active .menu-label,
#column-left .list-group.mb-3 .category-mixed-item.active .menu-count {
	color: var(--sc-text);
}

@keyframes category-frame-flow {
	0% {
		background-position: 0 0, 0% 50%;
	}
	100% {
		background-position: 0 0, 200% 50%;
	}
}

@media (prefers-reduced-motion: reduce) {
	#column-left .list-group.mb-3 .category-mixed-item.active {
		animation: none;
	}
}

@media (max-width: 767.98px) {
	.category-refine-link {
		white-space: normal;
	}
}

label.input-group-addon{
	padding-right: 15px;
}

.alert{
	position: relative;
}

.close{
	position: absolute;
	right:15px;
	top:50%;
	transform: translateY(-50%);
	background: none;
	border:none;
	font-size: 24px;
}

button:focus:not(:focus-visible) {
    outline: 0;
}

.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: var(--primary-bg);
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--primary-bg);
    box-shadow: inset 0 calc(-1 * var(--primary-bg)) 0 var(--primary-bg);
}

h1{
	font-size: 26px;
}

h2{
	font-size: 22px;
}

h3{
	font-size: 20px;
}

h4,
h5,
h6{
	font-size: 18px;
}


/*#########################*/
/*#### HEADER */
/*#########################*/
header .header-top{
	background: var(--header-bg-solid);
	color:var(--header-color);
	position: relative;
	z-index: 3200;
}

html[data-theme='light'] header .header-top,
html[data-theme='light'] header .header-container,
html[data-theme='light'] #menu.fixed,
html[data-theme='light'] footer {
	background: var(--sc-surface) !important;
	color: var(--sc-text) !important;
}

html[data-theme='light'] header a,
html[data-theme='light'] header .btn-header,
html[data-theme='light'] header .header-top .btn.btn-outline-secondary,
html[data-theme='light'] footer,
html[data-theme='light'] footer a,
html[data-theme='light'] footer h5,
html[data-theme='light'] footer ul li a {
	color: var(--sc-text) !important;
}

html[data-theme='light'] header .header-interface {
	background: var(--sc-elevated);
	color: var(--sc-text);
}

html[data-theme='light'] #menu {
	border-top-color: var(--sc-border);
}

html[data-theme='light'] #menu a.nav-link,
html[data-theme='light'] #menu .header-menu-title,
html[data-theme='light'] #menu button.navbar-toggler,
html[data-theme='light'] #menu button.navbar-toggler .navbar-toggler-icon {
	color: var(--primary-bg) !important;
}

html[data-theme='light'] #menu .dropdown-menu a.nav-link {
	color: var(--sc-text) !important;
}

header .header-top .btn.btn-outline-secondary{
	color:var(--header-color);
	border:none;
	font-weight: 400;
}

header .header-top .btn.btn-outline-secondary:hover{
	background: var(--sc-elevated);
	color:var(--header-color);
}

header .header-container{
	background: var(--header-bg);
	color:var(--header-color);
	padding-top: 15px;
	padding-bottom: 15px;
}

header a{
	color:var(--header-color);;
}

header .header-contact-icon{
	margin-right: 15px;
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(13, 20, 32, 0.38);
	border: 1px solid rgba(140, 247, 255, 0.28);
}

header .header-contact-icon img {
	width: 20px;
	height: 20px;
	object-fit: contain;
	filter: drop-shadow(0 0 3px rgba(140, 247, 255, 0.25));
}

html[data-theme='light'] header .header-contact-icon {
	background: rgba(14, 45, 69, 0.12);
	border-color: rgba(14, 45, 69, 0.3);
}

html[data-theme='light'] header .header-contact-icon img {
	filter: brightness(0) saturate(100%) invert(16%) sepia(41%) saturate(1123%) hue-rotate(164deg) brightness(95%) contrast(98%);
}

header .header-contact-mobile{
	display:none;
}

header a.header-contact,
header a.header-contact:hover,
header a.header-contact:focus-visible {
	text-decoration: none;
	color: var(--header-color);
}

header .header-interface{
	border-radius: 7px;
	background: var(--sc-elevated);
	color: var(--header-color);
	position: relative;
	z-index: 3000;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 15px;
	padding-right: 15px;
	min-height: 52px;
	border: 1px solid var(--sc-neon-ring);
	box-shadow: 0 0 14px var(--sc-neon-ring), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

header .header-interface-list{
	list-style: none;
	padding: 0px;
	margin:0px;
	width: 100%;
	justify-content: center;
	gap: 12px;
}

header .header-interface-list > li {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

header .header-logo{
	max-width: 340px;
	margin-right: 15px;
}

header .header-logo .header-logo-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--header-color);
}

header .header-logo .header-logo-mark {
	position: relative;
	width: 54px;
	height: 54px;
	flex: 0 0 54px;
	border-radius: 0;
	overflow: visible;
	background: transparent;
	border: 0;
	box-shadow: none;
	transition: transform 0.28s ease;
}

header .header-logo .header-logo-mark::after {
	content: "";
	position: absolute;
	inset: -7px;
	border-radius: 50%;
	border: 1px solid rgba(140, 247, 255, 0.4);
	box-shadow: 0 0 0 1px rgba(51, 230, 255, 0.2), 0 0 10px rgba(51, 230, 255, 0.22);
	opacity: 0.32;
	pointer-events: none;
	transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
	z-index: 0;
	animation: headerLogoRingPulse 2.2s ease-in-out infinite;
}

header .header-logo img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	filter: drop-shadow(0 0 2px var(--sc-logo-glow-soft)) drop-shadow(0 0 6px var(--sc-logo-glow));
	transition: transform 0.28s ease, filter 0.28s ease;
}

@keyframes headerLogoRingPulse {
	0%,
	100% {
		opacity: 0.28;
		transform: scale(0.98) rotate(0deg);
		box-shadow: 0 0 0 1px rgba(51, 230, 255, 0.18), 0 0 8px rgba(51, 230, 255, 0.18);
	}
	50% {
		opacity: 0.52;
		transform: scale(1.05) rotate(180deg);
		box-shadow: 0 0 0 1px rgba(51, 230, 255, 0.3), 0 0 14px rgba(51, 230, 255, 0.34);
	}
}

@keyframes headerLogoSpin {
	0% {
		transform: rotate(0deg) scale(1.02);
	}
	35% {
		transform: rotate(360deg) scale(1.02);
	}
	50% {
		transform: rotate(360deg) scale(1.02);
	}
	85% {
		transform: rotate(0deg) scale(1.02);
	}
	100% {
		transform: rotate(0deg) scale(1.02);
	}
}

header .header-logo .header-logo-name {
	font-family: "Montserrat", sans-serif;
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.08;
	white-space: normal;
	overflow: visible;
	color: var(--header-color);
	text-shadow: 0 0 2px rgba(140, 247, 255, 0.38), 0 0 8px rgba(51, 230, 255, 0.24);
	animation: headerBrandGlow 2.8s ease-in-out infinite;
}

@keyframes headerBrandGlow {
	0%,
	100% {
		text-shadow: 0 0 2px rgba(140, 247, 255, 0.35), 0 0 7px rgba(51, 230, 255, 0.22);
	}
	50% {
		text-shadow: 0 0 3px rgba(140, 247, 255, 0.55), 0 0 11px rgba(51, 230, 255, 0.4);
	}
}

html[dir="ltr"] header .header-logo .header-logo-name {
	text-transform: uppercase;
}

header .header-logo .header-logo-name .brand-main {
	display: block;
	font-size: 33px;
	font-weight: 800;
	letter-spacing: 0.3px;
}

header .header-logo .header-logo-name .brand-sub {
	display: block;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.7px;
	opacity: 0.92;
}

html[dir="rtl"] header .header-logo .header-logo-name {
	font-family: "Cairo", "Montserrat", sans-serif;
	align-items: flex-start;
	line-height: 1.08;
}

html[dir="rtl"] header .header-logo .header-logo-name .brand-main {
	letter-spacing: 0;
}

html[dir="rtl"] header .header-logo .header-logo-name .brand-sub {
	letter-spacing: 0;
}

@keyframes headerBrandShift {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 200% 50%;
	}
}

header .header-logo .header-logo-fallback {
	width: 100%;
	height: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 700;
	color: var(--header-color);
}

header .header-logo .header-logo-link:hover .header-logo-mark,
header .header-logo .header-logo-link:focus-visible .header-logo-mark {
	transform: translateY(-2px) scale(1.06);
}

header .header-logo .header-logo-link:hover .header-logo-mark::after,
header .header-logo .header-logo-link:focus-visible .header-logo-mark::after {
	opacity: 0.58;
	box-shadow: 0 0 0 1px rgba(51, 230, 255, 0.34), 0 0 18px rgba(51, 230, 255, 0.42);
}

header .header-logo .header-logo-link:hover img,
header .header-logo .header-logo-link:focus-visible img {
	filter: drop-shadow(0 0 3px var(--sc-logo-glow-soft)) drop-shadow(0 0 8px var(--sc-logo-glow));
	animation: headerLogoSpin 2.6s ease-in-out infinite;
}

header .header-logo .header-logo-link:hover .header-logo-name,
header .header-logo .header-logo-link:focus-visible .header-logo-name {
	color: #dffbff;
	text-shadow: 0 0 3px rgba(140, 247, 255, 0.58), 0 0 13px rgba(51, 230, 255, 0.46);
}

html[data-theme='light'] header .header-logo img {
	filter: drop-shadow(0 0 1px rgba(10, 24, 42, 0.55)) drop-shadow(0 0 6px rgba(14, 165, 198, 0.28));
}

html[data-theme='light'] header .header-logo .header-logo-mark::after {
	border-color: rgba(12, 91, 122, 0.45);
	box-shadow: 0 0 0 1px rgba(12, 91, 122, 0.26), 0 0 10px rgba(14, 165, 198, 0.28);
	opacity: 0.4;
}

html[data-theme='light'] header .header-logo .header-logo-name {
	color: #0e2d45;
	text-shadow: 0 0 1px rgba(255, 255, 255, 0.72), 0 0 8px rgba(14, 165, 198, 0.22);
}

html[data-theme='light'] header .header-logo .header-logo-link:hover img,
html[data-theme='light'] header .header-logo .header-logo-link:focus-visible img {
	filter: drop-shadow(0 0 2px rgba(10, 24, 42, 0.65)) drop-shadow(0 0 8px rgba(14, 165, 198, 0.34));
}

html[data-theme='light'] header .header-logo .header-logo-link:hover .header-logo-name,
html[data-theme='light'] header .header-logo .header-logo-link:focus-visible .header-logo-name {
	color: #124b6a;
	text-shadow: 0 0 2px rgba(255, 255, 255, 0.8), 0 0 11px rgba(14, 165, 198, 0.3);
}

@media (max-width: 767.98px) {
	header .header-logo .header-logo-name .brand-main {
		font-size: 26px;
	}

	header .header-logo .header-logo-name .brand-sub {
		font-size: 14px;
	}

	header .header-logo .header-logo-mark {
		width: 48px;
		height: 48px;
		flex-basis: 48px;
	}
}

header .btn-header{
	border:none;
	background: none;
	padding: 5px;
	position: relative;
	color:var(--header-color);
	font-size: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.22s ease, color 0.22s ease;
}

header .btn-header i {
	transition: transform 0.22s ease, text-shadow 0.22s ease;
}

header .btn-header:hover,
header .btn-header:focus-visible {
	color: var(--sc-neon) !important;
	transform: translateY(-1px);
}

header .btn-header:hover i,
header .btn-header:focus-visible i {
	transform: scale(1.08);
	text-shadow: 0 0 10px var(--sc-neon-secondary);
	animation: headerNeonGlow 1.1s ease-in-out infinite alternate;
}

header .theme-toggle-btn {
	width: auto;
	height: auto;
	border-radius: 0;
	background: none;
	border: none;
	transition: background-color 0.2s ease;
}

header .theme-toggle-btn:hover {
	background: none;
}

header .header-interface .dropdown-menu {
	margin-top: 10px;
	background: var(--sc-surface);
	border: 1px solid var(--sc-neon-ring);
	box-shadow: 0 0 0 1px var(--sc-neon-ring), 0 14px 30px rgba(0, 0, 0, 0.25);
	border-radius: 12px;
	z-index: 3100;
}

header .header-interface .dropdown-item {
	text-align: center;
	font-size: 0.92rem;
	font-weight: 600;
	border-radius: 8px;
	padding-top: 8px;
	padding-bottom: 8px;
}

header .header-interface .dropdown-item:hover,
header .header-interface .dropdown-item:focus {
	background: var(--sc-neon-bg);
	color: var(--sc-neon);
}

header .cart-count-badge {
	border: 1px solid var(--sc-neon-ring);
	box-shadow: 0 0 10px var(--sc-neon-ring);
}

@keyframes headerNeonGlow {
	0% {
		text-shadow: 0 0 6px var(--sc-neon-secondary);
	}
	100% {
		text-shadow: 0 0 14px var(--sc-neon-secondary);
	}
}

header .header-interface-list > li:not(:first-child) {
	margin-left: 0;
}

header .header-contact-mobile a{
	color:var(--sc-text);
}

.header-top-controls form{
	margin: 0;
}

.header-top-controls .dropdown-toggle{
	white-space: nowrap;
}

.header-top-controls .dropdown {
	position: relative;
}

.header-top-controls .dropdown-menu {
	z-index: 3250;
}

#menu.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background-color: var(--header-bg);
    box-shadow: 0 0 25px 0 rgba(0,0,0,0.3);
    transition: transform 0.3s ease, opacity 0.3s ease;
	margin-top: 0px;
	padding-left: 15px;
	padding-right: 15px;
}

#menu.fixed  .navbar-nav{
	margin: 0 auto;
}

.header-top,
.header-main-content {
    transition: all 0.3s ease;
}

header.compact .header-top,
header.compact .header-main-content {
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-page-title{
	padding-top: 100px;
	padding-bottom: 100px;
}

.header-page-title h1{
	font-size: 42px;
	color:var(--title-color);
	text-align: center;
}

.header-page-title .subtitle{
	font-size: 24px;
	color:var(--title-color);
	text-align: center;
}

@media screen and (max-width: 1050px) {
	.header-contact{
		display:none !important;
	}

	.header-contact-mobile{
		display: block !important;
	}

	.header-contact-mobile .header-contact-content{
		padding: 15px;
	}
}

@media screen and (max-width: 767px) {
	header .header-interface{
		margin-top: 25px;
	}
}

/*#########################*/
/*#### HEADER SEARCH */
/*#########################*/
.search-panel {
  position: fixed;
  top: 0;
  top: -100%;
  width: 100%;
	background: var(--sc-surface);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
	z-index: 5000;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  padding-bottom: 100px;
}

.search-panel.open {
  top: 0;
}

.search-panel button.btn-close{
	position: absolute;
  	top: 15px;
  	right: 15px;
}

html[data-theme='dark'] .search-panel .btn-close,
html[data-theme='dark'] .cart-panel .btn-close {
	filter: invert(1) grayscale(100%) brightness(220%);
	opacity: 0.9;
}

html[data-theme='dark'] .search-panel .btn-close:hover,
html[data-theme='dark'] .cart-panel .btn-close:hover {
	opacity: 1;
}

.search-panel button.btn-search{
	background: var(--primary-bg);
	color: var(--primary-color);
	border-color: var(--primary-bg);
}

.search-panel button.btn-search:hover{
	background: var(--secondary-bg);
	color: var(--secondary-color);
	border-color: var(--secondary-bg);
}

.search-panel-header h5{
	margin-top: 100px;
	text-align: center;
}

.search-panel-content{
	max-width: 500px;
	margin: 0px auto;
	padding-top: 25px;
	padding-left: 15px;
	padding-right: 15px;
}

.search-result-box {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 300px;
  overflow-y: auto;
	background: var(--sc-surface);
	border: 1px solid var(--sc-border);
  border-top: none;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: none;
}

.search-result-box a {
  display: block;
  padding: 10px 15px;
	color: var(--sc-text);
  text-decoration: none;
	border-bottom: 1px solid var(--sc-border);
}

.search-result-box a:hover {
	background-color: var(--sc-surface-soft);
}

.search-result-box::-webkit-scrollbar {
  width: 6px;
}
.search-result-box::-webkit-scrollbar-track {
  background: transparent;
}
.search-result-box::-webkit-scrollbar-thumb {
	background-color: var(--sc-border);
  border-radius: 3px;
}

/*#########################*/
/*#### HEADER CART */
/*#########################*/
.cart-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
	background: var(--sc-surface);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
	z-index: 4900;
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.cart-panel.open {
  right: 0;
}

.cart-panel-header {
  padding: 1rem;
	border-bottom: 1px solid var(--sc-border);
  display: flex;
  justify-content: flex-end;
}

.cart-panel-content {
  padding: 1rem;
  overflow-y: auto;
  flex-grow: 1;
}

.cart-panel .table,
.cart-panel .table td,
.cart-panel .table th,
.cart-panel .table > :not(caption) > * > * {
	background: transparent !important;
	color: var(--sc-text);
	border-color: var(--sc-border);
}

.cart-panel .table a {
	color: var(--sc-link);
}

.btn-remove{
	background: none;
	border:none;
	padding: 0px;
}

.row-cart{
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--sc-border);
}

.quantity-group {
    max-width: 100px;
    margin-top: 10px;
}
.quantity-group .form-control {
    text-align: center;
    padding: 0 0.4rem;
    height: 26px;
    line-height: 1;
    font-size: 0.8rem;
}

.quantity-group .btn {
    padding: 0 0.4rem;
    height: 26px;
    font-size: 0.8rem;
    line-height: 1;
}
.cart-loader {
    display: none;
    text-align: center;
    padding: 1rem;
	position: absolute;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	background: var(--sc-overlay);
	z-index: 2;
}

.cart-count-badge-container{
	position: relative;
}

.cart-loader i{
	position: absolute;
	left:50%;
	top:50%;
	transform: translate(-50%, -50%);
	font-size: 42px;
}

.cart-count-badge {
    position: absolute;
    top: -5px;
    right: -10px;
	background-color: var(--sc-danger);
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    line-height: 1;
    display: inline-block;
    min-width: 18px;
    text-align: center;
}

@media screen and (max-width: 400px) {
	.cart-panel {
	  position: fixed;
	  top: 0;
	  right: -100%;
	  width: 100%;
	  height: 100%;
	  background: var(--sc-surface);
	  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
	  z-index: 4900;
	  transition: right 0.3s ease-in-out;
	  display: flex;
	  flex-direction: column;
	}
}

/*#########################*/
/*#### HEADER MENU */
/*#########################*/
#menu{
	margin-top: 14px;
	padding-top: 10px;
	border-top: 1px solid var(--header-bg-solid);
	position: relative;
	z-index: 1045;
	overflow: visible;
}
#menu .navbar-nav {
	gap: 6px;
}

#menu .navbar-collapse,
#menu .navbar-nav,
#menu .nav-item.dropdown {
	position: relative;
	overflow: visible !important;
}

#menu .navbar-nav > .nav-item > .nav-link,
#menu .navbar-nav > .nav-item > .dropdown-item.nav-link {
	color: var(--secondary-bg);
	background: transparent;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	padding: 8px 12px;
	border-radius: 8px;
	transition: all 0.2s ease-in-out;
	text-transform: none;
	white-space: normal;
	text-align: center !important;
}

#menu .dropdown-menu {
	background: var(--sc-surface);
	border: 1px solid var(--sc-border);
	border-radius: 12px;
	padding: 8px;
	min-width: 300px;
	width: fit-content;
	max-width: min(92vw, 560px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
	z-index: 2000;
}

html[data-theme='dark'] #menu {
	background: rgba(8, 12, 18, 0.75);
	border-radius: 12px;
	padding-left: 10px;
	padding-right: 10px;
	backdrop-filter: blur(4px);
}

html[data-theme='dark'] #menu .dropdown-menu {
	background: rgba(10, 14, 22, 0.94);
	border-color: rgba(68, 95, 128, 0.7);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
}

html[data-theme='dark'] #menu .navbar-collapse {
	background: transparent;
	box-shadow: none;
	border-color: rgba(68, 95, 128, 0.4);
}

#menu .dropdown-inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 8px;
}

#menu .dropdown-menu .list-unstyled {
	margin: 0;
	padding: 0;
}

#menu .dropdown-menu a.nav-link,
#menu .dropdown-menu .dropdown-item {
	font-size: 13px;
	line-height: 1.45;
	color: var(--sc-text);
	font-weight: 500;
	padding: 8px 10px;
	border-radius: 8px;
	white-space: nowrap;
	text-align: center !important;
	unicode-bidi: isolate;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

#menu .menu-label {
	unicode-bidi: plaintext;
}

#menu .menu-count {
	direction: ltr;
	unicode-bidi: isolate;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
	display: inline-block;
}

#menu .dropdown-menu .list-unstyled > li {
	text-align: center;
}

#menu .navbar-nav > .nav-item > .nav-link:hover,
#menu .navbar-nav > .nav-item > .dropdown-item.nav-link:hover {
	background: var(--secondary-bg);
	color: var(--secondary-color);
}

#menu .dropdown-menu a.nav-link:hover,
#menu .dropdown-menu .dropdown-item:hover {
	background: var(--sc-surface-soft);
	color: var(--sc-text);
}

#menu .dropdown-divider {
	border-top-color: var(--sc-border);
}

#menu .header-menu-title{
	color: var(--secondary-bg);
	font-weight: 700;
	font-size: 16px;
}

#menu button.navbar-toggler,
#menu button.navbar-toggler .navbar-toggler-icon{
	color:var(--secondary-bg) !important;
}

#menu .menu-more > .nav-link {
	min-width: 40px;
	text-align: center;
}

@media (max-width: 991.98px) {
	#menu .navbar-collapse {
		background: transparent;
		border: 1px solid var(--sc-border);
		border-radius: 12px;
		padding: 10px;
		margin-top: 10px;
		box-shadow: none;
	}

	#menu .navbar-nav > .nav-item > .nav-link,
	#menu .navbar-nav > .nav-item > .dropdown-item.nav-link {
		font-size: 13px;
		padding: 9px 10px;
	}

	#menu .dropdown-menu {
		position: static;
		float: none;
		box-shadow: none;
		margin-top: 6px;
		width: 100%;
		min-width: 100%;
		max-width: 100%;
	}

	#menu .dropdown-menu a.nav-link,
	#menu .dropdown-menu .dropdown-item {
		white-space: normal;
	}
}

/*#########################*/
/*#### HEADER SHIPPING */
/*#########################*/
.header-shipping-info{
	font-size: 14px;
	font-weight: 700;
}

.header-shipping-info i{
	font-size: 26px;
	margin-right: 15px;
}

@media screen and (max-width: 767px) {
	.header-shipping-info{
		display:none !important;
	}
}

/*#########################*/
/*#### CONSTRUCTION */
/*#########################*/
#content{
	/*background: var(--sc-surface);*/
	background: transparent;
}

/*#########################*/
/*#### PRODUCT MODULES */
/*#########################*/
.module-products{
	margin-bottom: 50px;
}
.module-products h3{
	text-align: center;
	padding-top: 50px;
	padding-bottom: 30px;
	font-size: 2.2rem;
}
.btn-listing{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	appearance: none;
	background: var(--primary-bg);
	color:var(--primary-color);
	transition: all 0.3s ease-in-out;
	border:1px solid var(--primary-bg);
	width: 36px;
	height: 36px;
	line-height: 1;
	border-radius: 50%;
	padding: 0px;
}

.btn-listing i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	font-size: 14px;
}

.btn-listing:hover{
	background: var(--secondary-bg);
	color:var(--secondary-color);
	border-color: var(--secondary-bg);
}

.module-products .product-thumb{
	text-align: center;
}

.module-products .product-thumb h4{
	font-size: calc(1rem + .3vw) !important;
	text-align: center;
}

.price{
	font-size: 16px;
	font-weight: 700;
}

.price-new{
	color:var(--sc-danger);
}

.price-old{
	color:var(--sc-muted);
	text-decoration: line-through;
	font-weight: 400;
}

.price-tax{
	font-weight: 400;

}

.product-thumb{
	transition: all 0.3s ease-in-out;
	padding: 15px;
	margin-bottom: 15px;
	position: relative;
	border: 1.5px solid var(--sc-border);
	border-radius: 14px;
	overflow: visible;
	background: var(--sc-surface);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 0 0 1px rgba(56, 189, 248, 0.14), 0 0 10px rgba(56, 189, 248, 0.08);
}

.product-thumb:hover{
	box-shadow: 0 12px 28px rgba(0,0,0,0.28);
	transform: translateY(-2px);
}

.product-thumb .image {
	margin-bottom: 12px;
}

.product-thumb .image a {
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 10px;
	background: var(--sc-surface-soft);
}

.product-thumb .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.35s ease;
}

.product-thumb:hover .image img {
	transform: scale(1.04);
}

.product-thumb::before {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: 15px;
	padding: 1px;
	background: linear-gradient(120deg, #34d399, #38bdf8, #f59e0b, #f472b6, #34d399);
	background-size: 300% 300%;
	opacity: 0;
	pointer-events: none;
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	animation: product-frame-flow 5.5s linear infinite;
	transition: opacity 0.25s ease;
}

.product-thumb::after {
	content: "";
	position: absolute;
	inset: -2px;
	border-radius: 16px;
	background: radial-gradient(circle at 20% 15%, rgba(52, 211, 153, 0.22), transparent 45%), radial-gradient(circle at 85% 80%, rgba(56, 189, 248, 0.28), transparent 50%);
	filter: blur(10px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
	z-index: -1;
}

.product-thumb:hover::before,
.product-thumb:focus-within::before {
	opacity: 1;
}

.product-thumb:hover::after,
.product-thumb:focus-within::after {
	opacity: 1;
}

@keyframes product-frame-flow {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 200% 50%;
	}
}

.swiper-viewport {
    margin: 0 0 60px;
	background: var(--sc-surface);
    z-index: 1;
	border: 4px solid var(--sc-surface);
    border-radius: 4px;
    box-shadow:none;
    width: 100%;
    position: relative;
    overflow: visible;
}

.carousel.swiper-viewport{
	margin-bottom: 50px;
}

.swiper-container{
	padding-top: 15px;
	padding-left: 40px;
	padding-right: 40px;
}

.product-carousel .owl-stage{
	padding-top: 15px;
}

.product-carousel,
.carousel-module .owl-carousel.owl-theme{
	position: relative;
	padding-left: 50px;
	padding-right: 50px;
}

.module-products .product-carousel .owl-stage-outer {
	padding-left: 20px;
	padding-right: 20px;
	margin-left: -20px;
	margin-right: -20px;
}

.product-carousel .owl-stage-outer,
.carousel-module .owl-carousel.owl-theme .owl-stage-outer {
	padding-left: 15px;
	padding-right: 15px;
}

.banner.owl-carousel .owl-stage-outer {
	padding-left: 0;
	padding-right: 0;
}

#content .owl-carousel .owl-next,
#content .owl-carousel .owl-prev{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: var(--primary-bg);
	color:var(--primary-color);
	transition: all 0.3s ease-in-out;
	border:1px solid var(--primary-bg);
	padding: 0px;
	width:50px;
	height: 50px;
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	border-radius: 50%;
}

#content .owl-carousel .owl-next:hover,
#content .owl-carousel .owl-prev:hover{
	background: var(--secondary-bg);
	color:var(--secondary-color);
	border-color: var(--secondary-bg);
}

#content .owl-carousel .owl-next{
	right: 0px;
}

#content .owl-carousel .owl-prev{
	left: 0px;
}

/*#########################*/
/*#### BREADCRUMBS */
/*#########################*/
ul.breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 15px 0 15px 0;
    font-size: 0.95rem;
	background-color: var(--sc-surface-soft);
    border-radius: 7px;
    padding: 0.75rem 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

ul.breadcrumb li {
    display: flex;
    align-items: center;
}

ul.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 0.6rem;
	color: var(--sc-muted);
    font-weight: bold;
}

ul.breadcrumb li a {
	color: var(--primary-bg);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

ul.breadcrumb li a:hover {
	color: var(--secondary-bg);
    text-decoration: underline;
}

ul.breadcrumb li:last-child a {
	color: var(--sc-muted);
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}

/*#########################*/
/*#### CONTENTS */
/*#########################*/
#product-category {
	margin-top: 12px;
}

#product-info {
	margin-top: 12px;
}

#product-info #content > .row.mb-3 {
	background: var(--sc-surface-soft);
	border: 1px solid var(--sc-border);
	border-radius: 12px;
	padding: 30px 26px 22px 32px;
	margin-bottom: 18px;
	align-items: flex-start;
}

html[dir="rtl"] #product-info #content > .row.mb-3 {
	padding: 30px 32px 22px 26px;
}

#product-info #product > .mb-3,
#product-info #product > .mb-3 > .row.g-2,
#product-info #product > .mb-3 > .row.g-2 > .col-auto,
#product-info #product > .mb-3 .input-group {
	background: transparent !important;
}

#product-category #content > h1 {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 16px;
	line-height: 1.3;
}

#product-category #content > .row:first-of-type {
	background: var(--sc-surface-soft);
	border: 1px solid var(--sc-border);
	border-radius: 12px;
	padding: 14px;
	margin-bottom: 16px;
	align-items: center;
}

#product-category #content > .row:first-of-type .img-thumbnail {
	border: 1px solid var(--sc-border);
	border-radius: 12px;
	padding: 6px;
	background: var(--sc-surface);
	max-height: 220px;
	width: 100%;
	object-fit: contain;
}

#product-category #content h3 {
	font-size: 1.2rem;
	margin: 8px 0 12px;
	font-weight: 700;
}

#product-category #content ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#product-category #content ul li {
	margin: 0 0 8px;
}

#product-category #content ul li a {
	display: block;
	padding: 8px 12px;
	border-radius: 8px;
	background: var(--sc-surface-soft);
	border: 1px solid var(--sc-border);
	color: var(--sc-text);
	transition: all 0.2s ease;
}

#product-category #content ul li a:hover {
	background: var(--primary-bg);
	border-color: var(--primary-bg);
	color: var(--primary-color);
}

#account-login,
#account-account {
	margin-top: 10px;
}

#account-wishlist {
	margin-top: 10px;
}

#account-address {
	margin-top: 10px;
}

#account-login #content h1,
#account-account #content h1,
#account-login #content h2,
#account-account #content h2 {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--sc-text);
	margin-bottom: 12px;
}

#account-login #content p,
#account-account #content p,
#account-login #content label,
#account-account #content label,
#account-login #content a,
#account-account #content a {
	font-size: 0.98rem;
	line-height: 1.6;
}

#account-login #content .border.rounded.p-3,
#account-account #content .card {
	background: var(--sc-surface);
	border: 1px solid var(--sc-border) !important;
	border-radius: 12px !important;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

#account-login #content .col-form-label {
	font-weight: 600;
	color: var(--sc-text);
	margin-bottom: 4px;
}

#account-login #content .form-control {
	height: 46px;
	border-radius: 10px;
	font-size: 0.95rem;
}

#account-login #content .btn,
#account-account #content .btn {
	min-width: 120px;
	padding: 10px 16px;
	border-radius: 10px;
	font-weight: 600;
}

#account-login #column-left .list-group-item,
#account-account #column-left .list-group-item {
	background: var(--sc-surface);
	color: var(--sc-text);
	border-color: var(--sc-border);
	padding: 12px 14px;
	font-size: 0.95rem;
	font-weight: 500;
}

#account-login #column-left .list-group-item:hover,
#account-account #column-left .list-group-item:hover {
	background: var(--sc-surface-soft) !important;
	color: var(--sc-text) !important;
}

#account-account .account-col a {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--sc-text);
	position: relative;
	padding-top: 8px;
}

#account-account .card-body .row {
	--bs-gutter-y: 18px;
}

#account-account .account-col a img {
	width: 74px;
	height: 74px;
	object-fit: contain;
	filter: none;
	position: relative;
	z-index: 2;
	transition: transform 0.22s ease;
}

#account-account .account-col a::before {
	content: "";
	position: absolute;
	top: 2px;
	left: 50%;
	width: 82px;
	height: 82px;
	border-radius: 50%;
	transform: translateX(-50%);
	border: 1px solid rgba(51, 230, 255, 0.45);
	box-shadow: 0 0 8px rgba(51, 230, 255, 0.2);
	background: transparent;
	transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

#account-account .account-col a:hover img,
#account-account .account-col a:focus-visible img {
	transform: translateY(-2px) scale(1.03);
}

#account-account .account-col a:hover::before,
#account-account .account-col a:focus-visible::before {
	border-color: rgba(51, 230, 255, 0.75);
	box-shadow: 0 0 14px rgba(51, 230, 255, 0.45);
	transform: translateX(-50%) scale(1.04);
}

html[data-theme='light'] #account-account .account-col a::before {
	border-color: rgba(14, 165, 198, 0.45);
	box-shadow: 0 0 8px rgba(14, 165, 198, 0.22);
}

html[data-theme='light'] #account-account .account-col a:hover::before,
html[data-theme='light'] #account-account .account-col a:focus-visible::before {
	border-color: rgba(14, 165, 198, 0.75);
	box-shadow: 0 0 14px rgba(14, 165, 198, 0.38);
}

#account-account .card-header {
	background: var(--sc-surface-soft);
	border-bottom: 1px solid var(--sc-border);
	font-size: 1rem;
	font-weight: 700;
	color: var(--sc-text);
}

#account-wishlist .table-responsive,
#account-wishlist .table,
#account-wishlist .table > :not(caption) > * > * {
	background: transparent !important;
}

#account-wishlist .table,
#account-wishlist .table td,
#account-wishlist .table th {
	color: var(--sc-text);
	border-color: var(--sc-border);
}

#account-wishlist .table a {
	color: var(--sc-link);
}

#account-wishlist .table thead th {
	font-weight: 700;
}

#account-address .table-responsive,
#account-address .table,
#account-address .table > :not(caption) > * > * {
	background: transparent !important;
}

#account-address .table,
#account-address .table td,
#account-address .table th {
	color: var(--sc-text);
	border-color: var(--sc-border);
}

#account-address .table a {
	color: var(--sc-link);
}

#account-account .table-responsive,
#account-edit .table-responsive,
#account-password .table-responsive,
#account-payment-method .table-responsive,
#account-address .table-responsive,
#account-wishlist .table-responsive,
#account-order .table-responsive,
#account-download .table-responsive,
#account-transaction .table-responsive,
#account-newsletter .table-responsive,
#account-logout .table-responsive,
#account-account .table,
#account-edit .table,
#account-password .table,
#account-payment-method .table,
#account-address .table,
#account-wishlist .table,
#account-order .table,
#account-download .table,
#account-transaction .table,
#account-newsletter .table,
#account-logout .table,
#account-account .table > :not(caption) > * > *,
#account-edit .table > :not(caption) > * > *,
#account-password .table > :not(caption) > * > *,
#account-payment-method .table > :not(caption) > * > *,
#account-address .table > :not(caption) > * > *,
#account-wishlist .table > :not(caption) > * > *,
#account-order .table > :not(caption) > * > *,
#account-download .table > :not(caption) > * > *,
#account-transaction .table > :not(caption) > * > *,
#account-newsletter .table > :not(caption) > * > *,
#account-logout .table > :not(caption) > * > * {
	background: transparent !important;
}

#account-account .table,
#account-edit .table,
#account-password .table,
#account-payment-method .table,
#account-address .table,
#account-wishlist .table,
#account-order .table,
#account-download .table,
#account-transaction .table,
#account-newsletter .table,
#account-logout .table,
#account-account .table td,
#account-edit .table td,
#account-password .table td,
#account-payment-method .table td,
#account-address .table td,
#account-wishlist .table td,
#account-order .table td,
#account-download .table td,
#account-transaction .table td,
#account-newsletter .table td,
#account-logout .table td,
#account-account .table th,
#account-edit .table th,
#account-password .table th,
#account-payment-method .table th,
#account-address .table th,
#account-wishlist .table th,
#account-order .table th,
#account-download .table th,
#account-transaction .table th,
#account-newsletter .table th,
#account-logout .table th {
	color: var(--sc-text);
	border-color: var(--sc-border);
}

#account-account .table td,
#account-edit .table td,
#account-password .table td,
#account-payment-method .table td,
#account-address .table td,
#account-wishlist .table td,
#account-order .table td,
#account-download .table td,
#account-transaction .table td,
#account-newsletter .table td,
#account-logout .table td,
#account-account .table th,
#account-edit .table th,
#account-password .table th,
#account-payment-method .table th,
#account-address .table th,
#account-wishlist .table th,
#account-order .table th,
#account-download .table th,
#account-transaction .table th,
#account-newsletter .table th,
#account-logout .table th {
	text-align: center !important;
	vertical-align: middle !important;
}

#account-account .table a,
#account-edit .table a,
#account-password .table a,
#account-payment-method .table a,
#account-address .table a,
#account-wishlist .table a,
#account-order .table a,
#account-download .table a,
#account-transaction .table a,
#account-newsletter .table a,
#account-logout .table a {
	color: var(--sc-link);
}

#checkout-cart #output-cart,
#checkout-cart #output-cart .table,
#checkout-cart #output-cart .table td,
#checkout-cart #output-cart .table th,
#checkout-cart #output-cart .table > :not(caption) > * > * {
	background: transparent !important;
	color: var(--sc-text);
	border-color: var(--sc-border);
}

#checkout-cart #output-cart .table {
	--bs-table-bg: transparent;
	--bs-table-accent-bg: transparent;
	--bs-table-striped-bg: transparent;
	--bs-table-striped-color: var(--sc-text);
	--bs-table-active-bg: transparent;
	--bs-table-active-color: var(--sc-text);
	--bs-table-hover-bg: transparent;
	--bs-table-hover-color: var(--sc-text);
}

#checkout-cart #output-cart .table a {
	color: var(--sc-link);
}

#checkout-checkout #checkout-confirm .table,
#checkout-checkout #checkout-confirm .table td,
#checkout-checkout #checkout-confirm .table th,
#checkout-checkout #checkout-confirm .table > :not(caption) > * > * {
	background: transparent !important;
	color: var(--sc-text);
	border-color: var(--sc-border);
}

#checkout-checkout #checkout-confirm .table {
	--bs-table-bg: transparent;
	--bs-table-accent-bg: transparent;
	--bs-table-striped-bg: transparent;
	--bs-table-striped-color: var(--sc-text);
	--bs-table-active-bg: transparent;
	--bs-table-active-color: var(--sc-text);
	--bs-table-hover-bg: transparent;
	--bs-table-hover-color: var(--sc-text);
}

#checkout-checkout #checkout-confirm .table a {
	color: var(--sc-link);
}

#modal-payment .form-check label {
	color: var(--sc-text);
}

#modal-payment .payment-method-note {
	display: block;
	color: var(--sc-neon-secondary) !important;
	background: linear-gradient(135deg, var(--sc-neon-bg), rgba(6, 26, 38, 0.08));
	border: 1px solid var(--sc-neon-ring);
	border-inline-start: 4px solid var(--sc-neon);
	box-shadow: 0 0 0 1px rgba(51, 230, 255, 0.16), 0 0 16px rgba(51, 230, 255, 0.14);
	padding: 10px 12px;
	border-radius: 10px;
	font-weight: 600;
	margin-top: 4px;
	margin-bottom: 16px;
	white-space: pre-line;
	animation: checkout-note-glow 2.4s ease-in-out infinite alternate;
}

#modal-shipping .form-check label {
	color: var(--sc-text);
}

#modal-shipping .shipping-method-description {
	display: block;
	color: var(--sc-neon-secondary) !important;
	background: linear-gradient(135deg, var(--sc-neon-bg), rgba(6, 26, 38, 0.08));
	border: 1px solid var(--sc-neon-ring);
	border-inline-start: 4px solid var(--sc-neon);
	box-shadow: 0 0 0 1px rgba(51, 230, 255, 0.16), 0 0 16px rgba(51, 230, 255, 0.14);
	padding: 10px 12px;
	border-radius: 10px;
	font-weight: 600;
	margin-top: 4px;
	margin-bottom: 16px;
	white-space: pre-line;
	animation: checkout-note-glow 2.4s ease-in-out infinite alternate;
}

#checkout-checkout .checkout-payment-description {
	display: block;
	margin-top: 8px;
	line-height: 1.45;
	color: var(--sc-neon-secondary) !important;
	background: linear-gradient(135deg, var(--sc-neon-bg), rgba(6, 26, 38, 0.08));
	border: 1px solid var(--sc-neon-ring);
	border-inline-start: 4px solid var(--sc-neon);
	box-shadow: 0 0 0 1px rgba(51, 230, 255, 0.16), 0 0 16px rgba(51, 230, 255, 0.14);
	padding: 10px 12px;
	border-radius: 10px;
	font-weight: 600;
	white-space: pre-line;
	animation: checkout-note-glow 2.4s ease-in-out infinite alternate;
}

#checkout-checkout .checkout-shipping-description {
	display: block;
	margin-top: 8px;
	line-height: 1.45;
	color: var(--sc-neon-secondary) !important;
	background: linear-gradient(135deg, var(--sc-neon-bg), rgba(6, 26, 38, 0.08));
	border: 1px solid var(--sc-neon-ring);
	border-inline-start: 4px solid var(--sc-neon);
	box-shadow: 0 0 0 1px rgba(51, 230, 255, 0.16), 0 0 16px rgba(51, 230, 255, 0.14);
	padding: 10px 12px;
	border-radius: 10px;
	font-weight: 600;
	white-space: pre-line;
	animation: checkout-note-glow 2.4s ease-in-out infinite alternate;
}

@keyframes checkout-note-glow {
	from {
		box-shadow: 0 0 0 1px rgba(51, 230, 255, 0.14), 0 0 10px rgba(51, 230, 255, 0.12);
	}
	to {
		box-shadow: 0 0 0 1px rgba(51, 230, 255, 0.26), 0 0 20px rgba(51, 230, 255, 0.24);
	}
}

#checkout-cart #accordion .accordion-item {
	background: var(--sc-surface);
	border: 1px solid var(--sc-border);
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 10px;
}

#checkout-cart #accordion .accordion-header,
#checkout-cart #accordion .accordion-button,
#checkout-cart #accordion .accordion-body {
	background: transparent;
	color: var(--sc-text);
	border-color: var(--sc-border);
}

#checkout-cart #accordion .accordion-button {
	box-shadow: none;
}

#checkout-cart #accordion .accordion-button:not(.collapsed) {
	background: var(--sc-surface-soft);
	color: var(--sc-text);
}

#checkout-cart #accordion .accordion-button:focus {
	border-color: var(--sc-neon);
	box-shadow: 0 0 0 0.2rem var(--sc-neon-ring);
}

#checkout-cart #accordion .accordion-button::after {
	filter: var(--bs-accordion-btn-icon-filter, none);
}

html[data-theme='dark'] #checkout-cart #accordion .accordion-button::after {
	filter: invert(1) grayscale(100%);
}

@media (max-width: 767.98px) {
	#product-category #content > .row:first-of-type {
		padding: 10px;
	}

	#product-category #content > .row:first-of-type > div[class*='col-'] {
		width: 100%;
		max-width: 100%;
		flex: 0 0 100%;
	}

	#product-category #content > .row:first-of-type .img-thumbnail {
		max-height: 180px;
		margin-bottom: 10px;
	}

	#account-login #content h1,
	#account-account #content h1,
	#account-login #content h2,
	#account-account #content h2 {
		font-size: 1.3rem;
	}
}

.listing-inerface{
	border-top: 2px solid var(--sc-border);
	border-bottom: 2px solid var(--sc-border);
	padding: 15px 0 15px 0;
	margin-bottom: 15px;
	margin-top: 15px;
}

.refine-search{
	border-top: 2px solid var(--sc-border);
	padding-top: 15px;
	margin-top: 15px;
}

.refine-search ul{
	list-style: none;
	margin: 0px;
	padding: 0px;
}

.refine-search ul li{
	display: block;
	margin: 0px;
	padding: 0px;
}

.refine-search ul li a{
	display: block;
	background-color: var(--primary-bg) !important;
	color: var(--primary-color) !important;
	 transition: all 0.3s ease-in-out;
	 padding: 5px 7px 5px 7px;
	 margin-top: 5px;
	 border-radius:7px;
}

.refine-search ul li a:hover{
	background-color: var(--secondary-bg) !important;
	color: var(--secondary-color) !important;
}

.pagination-interface{
	margin: 15px 0;
}

.page-search-panel{
	background: var(--sc-surface-soft);
	padding: 15px;
	border-radius: 15px;
	margin-bottom: 25px;
}

.page-header{
	margin-top: 25px;
}

.nav-tabs .nav-link {
  border-radius: 0.5rem 0.5rem 0 0;
  margin-right: 0.25rem;
  padding: 0.5rem 1rem;
	background-color: var(--sc-surface-soft);
	border: 1px solid var(--sc-border);
	color: var(--sc-text);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-tabs .nav-link:hover {
	background-color: var(--sc-elevated);
	color: var(--sc-text);
}

.nav-tabs .nav-link.active {
  background-color: var(--primary-bg) !important;
  color: var(--primary-color) !important;
	border-color: var(--sc-border) var(--sc-border) var(--sc-surface);
}

html[data-theme='dark'] .nav-tabs .nav-link {
	background-color: rgba(18, 24, 34, 0.9);
	border-color: rgba(68, 95, 128, 0.55);
	color: var(--sc-muted);
}

html[data-theme='dark'] .nav-tabs .nav-link:hover {
	background-color: rgba(24, 34, 48, 0.95);
	color: var(--sc-text);
	border-color: rgba(88, 124, 166, 0.65);
}

html[data-theme='dark'] .nav-tabs .nav-link.active {
	background: linear-gradient(180deg, rgba(20, 35, 52, 0.98), rgba(12, 23, 35, 0.98)) !important;
	color: #dffbff !important;
	border-color: rgba(86, 208, 233, 0.75) rgba(86, 208, 233, 0.75) rgba(12, 23, 35, 0.98);
	box-shadow: inset 0 0 0 1px rgba(140, 247, 255, 0.26), 0 -2px 12px rgba(51, 230, 255, 0.22);
	text-shadow: 0 0 10px rgba(140, 247, 255, 0.35);
}

.tab-content {
	border: 1px solid var(--sc-border);
  border-top: none;
  padding: 1rem;
  border-radius: 0 0 0.5rem 0.5rem;
	background-color: var(--sc-surface);
}

.tempus-dominus-widget {
  border-radius: 0.5rem;
  z-index: 9999 !important;
}

.related-products{
	margin-top: 25px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.listing-inerface .input-group {
		flex-wrap: nowrap;
	}

	.listing-inerface .input-group > .input-group-text,
	.listing-inerface .input-group > .form-select {
		flex: 0 0 auto;
		width: auto;
	}
}

@media (max-width: 767.98px) {
	#product-info #content > .row.mb-3 {
		padding: 14px;
	}

  #button-cart {
    margin-top: 0.5rem;
  }

  .listing-inerface  .input-group {
		margin-bottom: 0.75rem; /* lub ile chcesz */
	}
}
/*#########################*/
/*#### PODUCT GALLERY */
/*#########################*/
#product-gallery {
  max-width: 100%;
}

#product-gallery .position-relative {
	position: relative;
	isolation: isolate;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 0.5rem;
	background: var(--sc-surface-soft);
}

#product-gallery .position-relative::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 0.5rem;
	padding: 1.5px;
	background: linear-gradient(120deg, #34d399, #38bdf8, #f59e0b, #f472b6, #34d399);
	background-size: 300% 300%;
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	animation: product-frame-flow 5.5s linear infinite;
	pointer-events: none;
	z-index: 2;
}

#product-gallery .position-relative::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 0.5rem;
	box-shadow: 0 0 16px rgba(56, 189, 248, 0.2);
	pointer-events: none;
	z-index: 1;
}

#product-gallery #main-image-link {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 0;
}

#product-gallery .owl-nav{
  display: block !important;
}

#main-image {
	border-radius: 0.5rem;
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: cover;
	object-position: center;
	display: block;
}
.gallery-thumb {
  cursor: pointer;
  transition: border-color 0.3s;
}
.gallery-thumb:hover {
  border-color: var(--primary-color);
}
.owl-carousel .item {
  padding: 0 4px;
}

.thumbnail-container{
	padding-left: 60px;
	padding-right: 60px;
	position: relative;
	margin-bottom: 25px;
}

#content .thumbnail-container .owl-carousel .owl-prev{
	left: -60px;
}

#content .thumbnail-container .owl-carousel .owl-next{
	right: -60px;
}

/*#########################*/
/*#### RELATED PRODUCTS */
/*#########################*/
.related-products h3{
	text-align: center;
	padding-top: 50px;
	padding-bottom: 30px;
	font-size: 2.2rem;
}

/*#########################*/
/*#### BLOG */
/*#########################*/
.module-blog h3{
	text-align: center;
	padding-top: 50px;
	padding-bottom: 30px;
	font-size: 2.2rem;
}

.module-blog h4{
	text-align: center;
	margin-bottom: 15px;
	margin-top: 20px;
}

.module-blog .description p{
	text-align: justify;
}


/*#########################*/
/*#### FOOTER */
/*#########################*/
footer{
	background: var(--header-bg-solid);
	color:var(--header-color);
	padding-top: 20px;
	padding-bottom: 20px;
	margin-top: 25px;
	text-align: center;
}

footer .row,
footer h5,
footer .list-unstyled,
footer .list-unstyled li,
footer .list-unstyled a{
	text-align: start;
}

footer > a[target="_blank"]{
	display: inline-block;
	margin-top: 8px;
}

footer ul li a{
	display: block;
}
footer ul li a,
footer a{
	padding: 4px 7px 4px 7px;
	margin-left: 3px;
	margin-bottom: 3px;
	border-radius: 7px;
}

footer a[target="_blank"] {
	opacity:0.8;
}

footer ul li a,
footer a,
footer h5{
	color:var(--header-color);
	transition: all 0.3s ease-in-out;
}

footer ul li a:hover,
footer a:hover{
	background: var(--secondary-bg);
	color:var(--secondary-color);
}

html[data-theme='light'] footer ul li a:hover,
html[data-theme='light'] footer a:hover {
	background: var(--sc-elevated);
	color: var(--sc-text);
}

.footer-credit{
	margin-top: 20px;
	padding-top: 15px;
	border-top: 1px solid var(--sc-border);
	text-align: center;
	font-size: 15px;
	font-weight: 500;
}

.footer-credit a{
	font-weight: 700;
	letter-spacing: 0.4px;
}

/*#########################*/
/*#### RTL SUPPORT */
/*#########################*/
html[dir="rtl"] body {
	direction: rtl;
}

html[dir="rtl"] header .header-contact-icon,
html[dir="rtl"] .header-shipping-info i,
html[dir="rtl"] .input-group-text i,
html[dir="rtl"] header .fa,
html[dir="rtl"] header .fas,
html[dir="rtl"] header .far,
html[dir="rtl"] header .fab {
	margin-right: 0;
	margin-left: 15px;
}

html[dir="rtl"] .btn-listing i {
	margin-left: 0;
	margin-right: 0;
}

html[dir="rtl"] header .header-logo {
	margin-right: 0;
	margin-left: 15px;
}

html[dir="rtl"] header .header-interface-list > li:not(:first-child) {
	margin-left: 0;
	margin-right: 0;
}

html[dir="rtl"] .search-panel button.btn-close {
	right: auto;
	left: 15px;
}

html[dir="rtl"] .cart-panel {
	right: auto;
	left: -400px;
	transition: left 0.3s ease-in-out;
}

html[dir="rtl"] .cart-panel.open {
	right: auto;
	left: 0;
}

@media screen and (max-width: 400px) {
	html[dir="rtl"] .cart-panel {
		right: auto;
		left: -100%;
		transition: left 0.3s ease-in-out;
	}
}

html[dir="rtl"] .cart-count-badge {
	right: auto;
	left: -10px;
}

html[dir="rtl"] #content .thumbnail-container .owl-carousel .owl-prev {
	left: auto;
	right: -60px;
}

html[dir="rtl"] #content .thumbnail-container .owl-carousel .owl-next {
	right: auto;
	left: -60px;
}

html[dir="rtl"] footer ul li a,
html[dir="rtl"] footer a {
	margin-left: 0;
	margin-right: 3px;
}
