/* ==========================================================================
   Maxi Dark Neon Theme
   Custom customer portal redesign
   ========================================================================== */

/* Fonts & Variables ------------------------------------------------------- */
@font-face {
	font-family: "Manrope";
	font-style: normal;
	font-weight: 300 800;
	font-display: swap;
	src: url("../fonts/manrope/Manrope-Variable.woff2") format("woff2");
}

:root {
	--color-bg: #040a1e;
	--color-bg-alt: #08122f;
	--color-primary: #16e4ce;
	--color-secondary: #38b293;
	--color-tertiary: #1d4d7a;
	--color-text: #f6fbff;
	--color-text-muted: rgba(246, 251, 255, 0.65);
	--color-border: rgba(22, 228, 206, 0.18);
	--color-border-strong: rgba(22, 228, 206, 0.35);
	--gradient-primary: linear-gradient(135deg, rgba(22, 228, 206, 0.9), rgba(56, 178, 147, 0.85));
	--gradient-accent: radial-gradient(circle at top right, rgba(56, 178, 147, 0.85), rgba(22, 228, 206, 0.35) 45%, transparent 65%);
	--glass-surface: rgba(9, 17, 44, 0.72);
	--glass-surface-solid: rgba(9, 17, 44, 0.9);
	--glass-elevated: rgba(14, 27, 61, 0.82);
	--shadow-soft: 0 25px 70px -25px rgba(8, 12, 40, 0.7);
	--shadow-strong: 0 30px 120px -20px rgba(0, 0, 0, 0.85);
	--radius-lg: 26px;
	--radius-md: 18px;
	--radius-sm: 12px;
	--radius-pill: 50px;
	--transition-base: 180ms ease;
}

/* Base styles ------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background: radial-gradient(circle at 10% 20%, rgba(22, 228, 206, 0.16) 0%, transparent 30%), radial-gradient(circle at 80% 0%, rgba(56, 178, 147, 0.18) 0%, transparent 38%), radial-gradient(circle at 50% 80%, rgba(22, 228, 206, 0.14) 0%, transparent 42%), var(--color-bg);
	color: var(--color-text);
	min-height: 100vh;
	line-height: 1.55;
	overflow-x: hidden;
}

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--transition-base), opacity var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}

a:hover,
a:focus-visible {
	color: #7dfdef;
}

p {
	color: var(--color-text);
	margin-bottom: 1rem;
}

::selection {
	background: rgba(22, 228, 206, 0.35);
	color: var(--color-text);
}

/* Layout ------------------------------------------------------------------ */
.app-shell {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	width: min(1880px, 100%);
	margin: 0 auto;
	padding: clamp(6px, 1.5vw, 18px) clamp(16px, 2.4vw, 30px);
	gap: clamp(12px, 2.2vw, 28px);
}

@media (max-width: 992px) {
	.app-shell {
		padding: 16px 18px;
	}
}

@media (max-width: 768px) {
	.app-shell {
		padding: 12px 16px;
	}
}

.theme-dark .page-main {
	margin: 0 auto;
	width: 100%;
	max-width: min(1740px, 100%);
	padding: clamp(8px, 2.2vw, 34px);
	border-radius: var(--radius-lg);
	background: linear-gradient(145deg, rgba(9, 17, 44, 0.9) 12%, rgba(5, 10, 33, 0.95) 88%);
	backdrop-filter: blur(26px);
	box-shadow: var(--shadow-soft);
	border: 1px solid var(--color-border);
	position: relative;
	z-index: 0;
	display: flex;
	flex-direction: column;
	min-height: calc(100vh - clamp(140px, 16vh, 240px));
}

.theme-dark .page-main > .container-fluid,
.theme-dark .page-main > .container {
	padding-left: clamp(24px, 4vw, 50px);
	padding-right: clamp(24px, 4vw, 50px);
	padding-top: clamp(4px, 1.4vw, 14px);
	padding-bottom: clamp(16px, 3vw, 34px);
	max-width: min(1680px, 100%);
	margin: 0 auto;
}

.app-shell > *:not(.dynamic-background):not(.shell-header) {
	position: relative;
	z-index: 2;
}

.hw-page > h2 {
	display: inline-flex;
	align-items: center;
	gap: clamp(10px, 1.6vw, 18px);
	margin-top: 0;
	margin-bottom: clamp(14px, 2vw, 26px);
	font-size: clamp(1.65rem, 3vw, 2.1rem);
}

.hw-page > h2 small {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 12px;
	font-size: clamp(0.78rem, 1.6vw, 0.9rem);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: var(--radius-pill);
	background: rgba(22, 228, 206, 0.12);
	border: 1px solid rgba(22, 228, 206, 0.25);
	color: var(--color-primary);
	box-shadow: 0 12px 32px -20px rgba(22, 228, 206, 0.55);
}

.hw-dashboard-welcome {
	margin-top: clamp(26px, 4vw, 56px);
	margin-bottom: clamp(16px, 3vw, 42px);
	padding: clamp(28px, 4vw, 62px) clamp(24px, 3.6vw, 52px);
	border-radius: var(--radius-lg);
	border: 1px solid rgba(22, 228, 206, 0.14);
	background: linear-gradient(135deg, rgba(14, 27, 61, 0.9) 0%, rgba(6, 14, 38, 0.92) 100%);
	box-shadow: 0 40px 110px -45px rgba(0, 0, 0, 0.75);
	display: grid;
	gap: clamp(18px, 3vw, 32px);
}

.hw-dashboard-welcome__headline h3 {
	margin: 0 0 10px;
	font-size: clamp(1.6rem, 3.4vw, 2.4rem);
	font-weight: 700;
	color: var(--color-text);
}

.hw-dashboard-welcome__headline p {
	margin: 0;
	color: rgba(246, 251, 255, 0.8);
	max-width: 70ch;
}

.hw-dashboard-welcome__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: clamp(16px, 2.8vw, 28px);
}

.hw-dashboard-welcome__point {
	background: rgba(22, 228, 206, 0.05);
	border-radius: var(--radius-md);
	border: 1px solid rgba(22, 228, 206, 0.12);
	padding: clamp(18px, 2.4vw, 26px);
	box-shadow: inset 0 0 0 1px rgba(22, 228, 206, 0.08);
}

.hw-dashboard-welcome__point h4 {
	margin: 0 0 8px;
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	color: var(--color-text);
}

.hw-dashboard-welcome__point p {
	margin: 0;
	color: rgba(246, 251, 255, 0.68);
}

.hw-dashboard-welcome__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hw-domain-page {
	display: flex;
	flex-direction: column;
	gap: clamp(32px, 5vw, 64px);
}

.hw-domain-hero {
	display: grid;
	gap: clamp(20px, 3vw, 36px);
	padding: clamp(30px, 5vw, 64px);
	border-radius: var(--radius-lg);
	border: 1px solid rgba(22, 228, 206, 0.16);
	background: linear-gradient(140deg, rgba(9, 18, 52, 0.92), rgba(6, 13, 36, 0.94));
	box-shadow: 0 38px 110px -40px rgba(0, 0, 0, 0.72);
	position: relative;
	overflow: hidden;
}

.hw-domain-hero::after {
	content: "";
	position: absolute;
	inset: -30% 40% auto -20%;
	height: clamp(220px, 30vw, 340px);
	background: radial-gradient(circle, rgba(22, 228, 206, 0.22) 0%, rgba(22, 228, 206, 0) 70%);
	filter: blur(120px);
	opacity: 0.6;
	pointer-events: none;
}

.hw-domain-hero__intro {
	display: grid;
	gap: clamp(8px, 1.6vw, 14px);
	max-width: 70ch;
	position: relative;
	z-index: 1;
}

.hw-domain-hero__title {
	margin: 0;
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	color: var(--color-text);
}

.hw-domain-hero__subtitle {
	margin: 0;
	color: rgba(246, 251, 255, 0.75);
	font-size: clamp(1rem, 2vw, 1.2rem);
	line-height: 1.6;
}

.hw-domain-hero__search {
	position: relative;
	z-index: 1;
}

.hw-domain-hero__search .card.domain-name {
	border-radius: var(--radius-pill);
	background: linear-gradient(145deg, rgba(246, 251, 255, 0.96), rgba(226, 240, 255, 0.9));
	border: 1px solid rgba(22, 228, 206, 0.24);
	box-shadow: 0 36px 110px -45px rgba(22, 228, 206, 0.55);
	backdrop-filter: blur(14px);
}

.hw-domain-hero__search .input-group {
	align-items: stretch;
	gap: 2px;
}

.hw-domain-hero__search .form-control {
	border-radius: 999px;
	border: none;
	color: #040a1e;
	background: transparent;
	font-size: 1rem;
	padding: 0.85rem 1.5rem;
	box-shadow: none;
}

.hw-domain-hero__search .form-control::placeholder {
	color: rgba(4, 10, 30, 0.45);
}

.hw-domain-hero__search .btn {
	min-width: clamp(120px, 12vw, 160px);
	border-radius: 999px;
	box-shadow: none;
}

.hw-domain-search-card {
	border: 1px solid rgba(22, 228, 206, 0.28);
	background: linear-gradient(140deg, rgba(11, 22, 54, 0.92), rgba(6, 14, 38, 0.94));
	box-shadow: 0 36px 110px -45px rgba(8, 18, 45, 0.8);
	backdrop-filter: blur(18px);
	border-radius: var(--radius-pill);
	overflow: hidden;
}

.hw-domain-search-card__inner {
	padding: clamp(16px, 2.6vw, 24px) clamp(18px, 3vw, 32px);
	background: rgba(22, 228, 206, 0.06);
	border-radius: inherit;
}

.hw-domain-search-card__group {
	gap: clamp(8px, 1vw, 12px);
	background: rgba(7, 16, 40, 0.9);
	border-radius: inherit;
	padding: clamp(8px, 1.6vw, 12px);
	border: 1px solid rgba(22, 228, 206, 0.18);
	box-shadow: inset 0 0 0 1px rgba(22, 228, 206, 0.08);
}

.hw-domain-search-card__group .form-control {
	color: var(--color-text);
	background: transparent;
}

.hw-domain-search-card__group .form-control:focus {
	background: rgba(14, 28, 60, 0.75);
}

.hw-domain-search-card__group .btn {
	min-width: clamp(120px, 12vw, 160px);
}

@media (max-width: 576px) {
	.hw-domain-search-card__inner {
		padding: clamp(14px, 4vw, 18px);
	}

	.hw-domain-search-card__group {
		flex-direction: column;
		padding: clamp(6px, 4vw, 10px);
	}

	.hw-domain-search-card__group .btn {
		width: 100%;
		min-width: auto;
	}
}

.hw-domain-hero__benefits {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: clamp(12px, 2vw, 20px);
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
	z-index: 1;
}

.hw-domain-hero__benefits li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	border-radius: var(--radius-pill);
	background: rgba(22, 228, 206, 0.12);
	border: 1px solid rgba(22, 228, 206, 0.24);
	color: var(--color-text);
	font-size: 0.95rem;
	box-shadow: inset 0 0 0 1px rgba(22, 228, 206, 0.08);
}

.hw-domain-hero__benefits i {
	font-size: 1.2rem;
	color: var(--color-primary);
}

.hw-domain-spotlight {
	display: grid;
	gap: clamp(18px, 2.6vw, 32px);
}

.hw-domain-spotlight__header {
	display: grid;
	gap: 10px;
	text-align: left;
}

.hw-domain-spotlight__header h2 {
	margin: 0;
	font-size: clamp(1.6rem, 3.4vw, 2.4rem);
	font-weight: 700;
	color: var(--color-text);
}

.hw-domain-spotlight__header p {
	margin: 0;
	color: rgba(246, 251, 255, 0.72);
	max-width: 60ch;
}

.hw-domain-spotlight .row {
	row-gap: clamp(16px, 2.2vw, 24px);
}

.hw-domain-spotlight .col-lg-2 {
	flex: 0 0 auto;
	width: 100%;
	max-width: min(200px, 100%);
}

.hw-domain-spotlight .rounded {
	border-radius: var(--radius-md) !important;
	padding: clamp(16px, 2vw, 20px) !important;
	background: linear-gradient(145deg, rgba(246, 251, 255, 0.95), rgba(235, 245, 255, 0.88));
	border: 1px solid rgba(22, 228, 206, 0.2);
	box-shadow: 0 25px 75px -40px rgba(22, 228, 206, 0.65);
}

.hw-domain-spotlight h6 {
	display: grid;
	gap: 6px;
	font-size: 1rem;
	font-weight: 700;
	color: #061226;
	margin: 0;
}

.hw-domain-spotlight h6 span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 10px;
	font-size: 0.8rem;
	border-radius: 999px;
	background: rgba(22, 228, 206, 0.16);
	border: 1px solid rgba(22, 228, 206, 0.24);
	color: #0b534a;
}

@media (max-width: 992px) {
	.hw-domain-hero {
		padding: clamp(22px, 5vw, 40px);
	}

	.hw-domain-hero__benefits {
		grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	}

	.hw-domain-spotlight .col-lg-2 {
		max-width: calc(50% - clamp(12px, 2vw, 20px));
	}
}

@media (max-width: 576px) {
	.hw-domain-hero {
		padding: 22px;
	}

	.hw-domain-hero__search .form-control {
		padding: 0.75rem 1.1rem;
		font-size: 0.95rem;
	}

	.hw-domain-hero__search .btn {
		min-width: 100%;
	}

	.hw-domain-hero__benefits {
		grid-template-columns: 1fr;
	}

	.hw-domain-hero__benefits li {
		padding: 12px 16px;
	}

	.hw-domain-spotlight .col-lg-2 {
		max-width: 100%;
	}
}

.hw-dashboard-visual {
	margin-top: clamp(32px, 5vw, 72px);
	padding: clamp(28px, 4vw, 60px);
	border-radius: var(--radius-lg);
	border: 1px solid rgba(22, 228, 206, 0.18);
	background: radial-gradient(120% 120% at 10% 10%, rgba(22, 228, 206, 0.18) 0%, rgba(4, 10, 30, 0) 55%), radial-gradient(120% 150% at 90% 20%, rgba(56, 178, 147, 0.22) 0%, rgba(4, 10, 30, 0) 68%), rgba(7, 15, 38, 0.92);
	box-shadow: 0 45px 120px -50px rgba(0, 0, 0, 0.85);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: clamp(24px, 3vw, 48px);
	position: relative;
	overflow: hidden;
}

.hw-dashboard-visual::before,
.hw-dashboard-visual::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.5;
	pointer-events: none;
}

.hw-dashboard-visual::before {
	width: clamp(200px, 28vw, 340px);
	height: clamp(200px, 28vw, 340px);
	background: rgba(22, 228, 206, 0.35);
	top: -15%;
	left: -12%;
}

.hw-dashboard-visual::after {
	width: clamp(260px, 34vw, 420px);
	height: clamp(260px, 34vw, 420px);
	background: rgba(56, 178, 147, 0.28);
	bottom: -22%;
	right: -18%;
	animation: hwOrbFloat 16s ease-in-out infinite;
}

.hw-dashboard-visual__content {
	position: relative;
	z-index: 1;
	display: grid;
	gap: clamp(12px, 2vw, 20px);
	align-content: center;
}

.hw-dashboard-visual__content h3 {
	margin: 0;
	font-size: clamp(1.45rem, 3vw, 2.3rem);
	font-weight: 700;
	color: var(--color-text);
}

.hw-dashboard-visual__content p {
	margin: 0;
	max-width: 36ch;
	color: rgba(246, 251, 255, 0.72);
}

.hw-dashboard-visual__signals {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hw-dashboard-visual__signals span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	border-radius: var(--radius-pill);
	background: rgba(22, 228, 206, 0.12);
	border: 1px solid rgba(22, 228, 206, 0.22);
	font-size: 0.85rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--color-text);
	box-shadow: inset 0 0 0 1px rgba(22, 228, 206, 0.08);
}

.hw-dashboard-visual__signals i {
	font-size: 1rem;
	color: var(--color-primary);
}

.hw-dashboard-visual__scene {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	gap: clamp(16px, 3vw, 28px);
}

.hw-server-stack {
	position: relative;
	width: clamp(160px, 18vw, 220px);
	padding: clamp(16px, 2vw, 24px);
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(12, 25, 55, 0.96) 0%, rgba(4, 10, 30, 0.92) 100%);
	border: 1px solid rgba(22, 228, 206, 0.18);
	box-shadow: 0 30px 80px -35px rgba(0, 0, 0, 0.85);
	display: grid;
	gap: clamp(10px, 1.8vw, 16px);
	animation: hwServerFloat 9s ease-in-out infinite;
}

.hw-server-stack:nth-child(2) {
	background: linear-gradient(180deg, rgba(17, 32, 68, 0.98) 0%, rgba(6, 15, 40, 0.92) 100%);
	animation-delay: -2.8s;
}

.hw-server-stack:nth-child(3) {
	animation-delay: -5.4s;
}

.hw-server-stack--center {
	width: clamp(180px, 21vw, 240px);
	padding: clamp(18px, 2.4vw, 28px);
	animation-duration: 10s;
}

.hw-server-stack--right {
	animation-duration: 8s;
}

.hw-server-stack::before {
	content: "";
	position: absolute;
	inset: 12px;
	border-radius: 18px;
	border: 1px solid rgba(22, 228, 206, 0.12);
	background: linear-gradient(135deg, rgba(22, 228, 206, 0.12), rgba(22, 228, 206, 0));
	opacity: 0.7;
	pointer-events: none;
}

.hw-server-stack__rack {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 14px;
	border-radius: 16px;
	background: rgba(5, 16, 42, 0.88);
	border: 1px solid rgba(22, 228, 206, 0.18);
	box-shadow: inset 0 0 0 1px rgba(22, 228, 206, 0.05);
}

.hw-server-stack__label {
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(246, 251, 255, 0.62);
}

.hw-server-stack__lights {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.hw-server-stack__lights span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(22, 228, 206, 0.6);
	box-shadow: 0 0 10px rgba(22, 228, 206, 0.8);
	animation: hwServerBlink 3.6s ease-in-out infinite;
}

.hw-server-stack__lights span:nth-child(2) {
	background: rgba(255, 196, 87, 0.7);
	box-shadow: 0 0 10px rgba(255, 196, 87, 0.75);
	animation-delay: -1.2s;
}

.hw-server-stack__lights span:nth-child(3) {
	background: rgba(244, 86, 116, 0.65);
	box-shadow: 0 0 12px rgba(244, 86, 116, 0.75);
	animation-delay: -2.1s;
}

.hw-server-stack__load {
	display: grid;
	gap: 6px;
}

.hw-server-stack__load--vertical {
	display: flex;
	flex-direction: column;
}

.hw-server-stack__load-bar {
	display: block;
	height: 6px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(22, 228, 206, 0.7) 0%, rgba(22, 228, 206, 0) 100%);
	box-shadow: 0 0 12px rgba(22, 228, 206, 0.35);
	animation: hwLoadPulse 4.8s ease-in-out infinite;
}

.hw-server-stack__load-bar:nth-child(2) {
	animation-delay: -1.6s;
}

.hw-server-stack__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 6px;
}

.hw-server-stack__grid span {
	width: 100%;
	padding-bottom: 60%;
	border-radius: 6px;
	background: rgba(22, 228, 206, 0.08);
	border: 1px solid rgba(22, 228, 206, 0.12);
	animation: hwGridPulse 5s linear infinite;
}

.hw-server-stack__grid span:nth-child(2) {
	animation-delay: -1s;
}

.hw-server-stack__grid span:nth-child(3) {
	animation-delay: -1.8s;
}

.hw-server-stack__grid span:nth-child(4) {
	animation-delay: -2.6s;
}

@media (max-width: 992px) {
	.hw-dashboard-visual {
		grid-template-columns: 1fr;
	}
	.hw-dashboard-visual__scene {
		justify-content: center;
	}
	.hw-server-stack,
	.hw-server-stack--center,
	.hw-server-stack--right {
		width: min(70%, 260px);
	}
}

@media (max-width: 576px) {
	.hw-dashboard-visual__signals {
		gap: 8px;
	}
	.hw-dashboard-visual__signals span {
		width: 100%;
		justify-content: center;
	}
	.hw-dashboard-visual__scene {
		flex-direction: column;
		align-items: center;
	}
	.hw-server-stack,
	.hw-server-stack--center,
	.hw-server-stack--right {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hw-dashboard-visual::after,
	.hw-server-stack,
	.hw-server-stack__lights span,
	.hw-server-stack__load-bar,
	.hw-server-stack__grid span {
		animation: none !important;
	}
}

@keyframes hwServerFloat {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes hwServerBlink {
	0%, 60%, 100% {
		opacity: 0.6;
		box-shadow: 0 0 10px rgba(22, 228, 206, 0.7);
	}
	30% {
		opacity: 1;
		box-shadow: 0 0 18px rgba(22, 228, 206, 0.9);
	}
}

@keyframes hwLoadPulse {
	0%, 100% {
		transform: scaleX(0.85);
		opacity: 0.7;
	}
	40% {
		transform: scaleX(1);
		opacity: 1;
	}
	70% {
		transform: scaleX(0.6);
		opacity: 0.5;
	}
}

@keyframes hwGridPulse {
	0%, 100% {
		opacity: 0.4;
	}
	30% {
		opacity: 0.95;
	}
	60% {
		opacity: 0.55;
	}
}

@keyframes hwOrbFloat {
	0%, 100% {
		transform: translate3d(0, 0, 0) scale(1);
		opacity: 0.45;
	}
	50% {
		transform: translate3d(-8%, -6%, 0) scale(1.05);
		opacity: 0.6;
	}
}

/* Dynamic background ------------------------------------------------------ */
.dynamic-background {
	position: fixed;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.dynamic-background__layer {
	position: absolute;
	width: 140%;
	height: 140%;
	top: -20%;
	left: -20%;
	background: radial-gradient(circle, rgba(56, 178, 147, 0.12) 0%, transparent 70%);
	filter: blur(120px);
	animation: backgroundFloat 22s ease-in-out infinite;
	mix-blend-mode: screen;
}

.dynamic-background__layer--two {
	background: radial-gradient(circle, rgba(22, 228, 206, 0.16) 0%, transparent 65%);
	animation-duration: 28s;
	animation-direction: reverse;
}

.dynamic-background__glow {
	position: absolute;
	width: 70vw;
	height: 70vw;
	background: radial-gradient(circle, rgba(22, 228, 206, 0.22) 0%, transparent 70%);
	top: 10%;
	right: -20%;
	filter: blur(90px);
	opacity: 0.6;
	transform: rotate(15deg);
}

@keyframes backgroundFloat {
	0%,
	100% {
		transform: translate3d(0, 0, 0) rotate(0deg);
	}
	50% {
		transform: translate3d(5%, -4%, 0) rotate(8deg);
	}
}

/* Glass utilities --------------------------------------------------------- */
.glass-panel {
	background: var(--glass-surface);
	backdrop-filter: blur(24px);
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-soft);
}

.glass-panel--tight {
	border-radius: var(--radius-md);
}

.glass-card {
	background: var(--glass-elevated);
	backdrop-filter: blur(18px);
	border-radius: var(--radius-md);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-soft);
	padding: clamp(20px, 2vw, 28px);
	position: relative;
	overflow: hidden;
}

.glass-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(140deg, rgba(22, 228, 206, 0.08), rgba(56, 178, 147, 0));
	opacity: 0;
	transition: opacity var(--transition-base);
	pointer-events: none;
}

.glass-card:hover::after {
	opacity: 1;
}

/* Header / Navigation ----------------------------------------------------- */
.shell-header {
	position: sticky;
	top: 0;
	z-index: 1200;
	backdrop-filter: blur(20px);
}

.shell-header__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(14px, 2.4vw, 28px);
	padding: clamp(18px, 2.4vw, 30px) clamp(22px, 3vw, 36px);
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-border);
	background: linear-gradient(160deg, rgba(9, 18, 45, 0.94), rgba(5, 10, 33, 0.96));
	box-shadow: var(--shadow-soft);
	position: relative;
	z-index: 1300;
	overflow: visible;
}

.shell-header__container::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(22, 228, 206, 0.08), transparent 65%);
	border-radius: inherit;
	pointer-events: none;
}

.shell-header__brand {
	display: flex;
	align-items: center;
	gap: 16px;
	position: relative;
	z-index: 1;
}

.shell-header__brand .logo {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: clamp(1.3rem, 2.6vw, 1.65rem);
	font-weight: 700;
	color: var(--color-text);
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.shell-header__brand .logo::after {
	content: "";
	display: block;
	width: clamp(36px, 4vw, 48px);
	height: clamp(36px, 4vw, 48px);
	border-radius: 18px;
	background: var(--gradient-primary);
	opacity: 0.18;
}

.shell-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(20px, 3vw, 40px);
	width: 100%;
	position: relative;
	z-index: 1400;
}

.shell-nav__links {
	display: flex;
	align-items: center;
	gap: clamp(10px, 2vw, 18px);
}

.shell-nav__links > li {
	list-style: none;
}

.shell-nav__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	font-size: 0.98rem;
	padding: 10px 14px;
	border-radius: var(--radius-pill);
	color: var(--color-text-muted);
	border: 1px solid transparent;
}

.shell-nav__link:hover,
.shell-nav__link:focus-visible,
.shell-nav__link.is-active {
	color: var(--color-text);
	border-color: rgba(22, 228, 206, 0.3);
	background: rgba(22, 228, 206, 0.08);
	box-shadow: 0 15px 35px -20px rgba(22, 228, 206, 0.6);
	transform: translateY(-2px);
}

.shell-nav__item--dropdown {
	position: relative;
}

.shell-nav__dropdown-toggle::after {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	margin-left: 6px;
	transition: transform var(--transition-base);
}

.shell-nav__dropdown-menu {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	min-width: 240px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	background: var(--glass-elevated);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: 0 34px 88px -26px rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(22px);
	opacity: 0;
	pointer-events: none;
	transform: translateY(10px);
	transition: opacity var(--transition-base), transform var(--transition-base);
	z-index: 1500;
}

.shell-nav__item--dropdown:hover .shell-nav__dropdown-menu,
.shell-nav__item--dropdown:focus-within .shell-nav__dropdown-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.shell-nav__dropdown-menu a {
	padding: 12px 14px;
	border-radius: var(--radius-sm);
	color: var(--color-text-muted);
	font-weight: 500;
	border: 1px solid transparent;
}

.shell-nav__dropdown-menu a:hover {
	background: rgba(22, 228, 206, 0.08);
	color: var(--color-text);
	border-color: rgba(22, 228, 206, 0.24);
}

.shell-nav__dropdown-toggle {
	background: transparent;
	border-color: transparent;
	box-shadow: none;
	color: var(--color-text-muted);
}

.shell-nav__item--dropdown:hover > .shell-nav__dropdown-toggle,
.shell-nav__item--dropdown:focus-within > .shell-nav__dropdown-toggle {
	color: var(--color-text);
	border-color: rgba(22, 228, 206, 0.3);
	background: rgba(22, 228, 206, 0.08);
	box-shadow: 0 15px 35px -20px rgba(22, 228, 206, 0.6);
}

.shell-nav__item--dropdown > .shell-nav__dropdown-toggle.shell-nav__link.is-active {
	color: var(--color-text-muted);
	border-color: transparent;
	background: transparent;
	box-shadow: none;
}

.shell-header .dropdown-menu {
	z-index: 1500;
}

.shell-nav__actions {
	display: flex;
	align-items: center;
	gap: clamp(12px, 2.2vw, 18px);
}

.shell-nav__auth {
	display: flex;
	align-items: center;
	gap: 12px;
}

.shell-header__toggler {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	border: 1px solid rgba(22, 228, 206, 0.22);
	background: rgba(22, 228, 206, 0.08);
	color: var(--color-text);
	position: relative;
	z-index: 2;
}

.shell-header__toggler span,
.shell-header__toggler span::before,
.shell-header__toggler span::after {
	position: absolute;
	width: 18px;
	height: 2px;
	background: currentColor;
	transition: transform var(--transition-base), opacity var(--transition-base);
}

.shell-header__toggler span::before,
.shell-header__toggler span::after {
	content: "";
}

.shell-header__toggler span::before {
	transform: translateY(-6px);
}

.shell-header__toggler span::after {
	transform: translateY(6px);
}

.shell-header__toggler.is-active span {
	background: transparent;
}

.shell-header__toggler.is-active span::before {
	transform: rotate(45deg);
}

.shell-header__toggler.is-active span::after {
	transform: rotate(-45deg);
}

/* Mobile nav */
@media (max-width: 1200px) {
	.shell-nav {
		position: fixed;
		top: 24px;
		left: 24px;
		right: 24px;
		border-radius: var(--radius-lg);
		padding: 20px;
		flex-direction: column;
		align-items: stretch;
		gap: 18px;
		background: rgba(6, 12, 36, 0.95);
		border: 1px solid var(--color-border);
		box-shadow: var(--shadow-strong);
		transform: translateY(-30px);
		opacity: 0;
		pointer-events: none;
		transition: opacity var(--transition-base), transform var(--transition-base);
	}

	.shell-nav[data-navigation-open="true"] {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.shell-nav__links {
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
	}

	.shell-nav__link {
		justify-content: space-between;
		font-size: 1.05rem;
		padding: 14px 18px;
	}

	.shell-nav__dropdown-menu {
		position: relative;
		box-shadow: none;
		background: rgba(9, 17, 44, 0.9);
		margin-top: 4px;
	}

	.shell-header__toggler {
		display: inline-flex;
	}

	.shell-nav__actions {
		padding-top: 12px;
		border-top: 1px solid rgba(22, 228, 206, 0.2);
		justify-content: space-between;
	}
}

/* Buttons ----------------------------------------------------------------- */
.btn {
	font-weight: 600;
	border-radius: var(--radius-pill);
	padding: 12px 20px;
	font-size: 0.95rem;
	letter-spacing: 0.01em;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base), border-color var(--transition-base), color var(--transition-base);
	border: 1px solid transparent;
}

.btn:hover,
.btn:focus-visible {
	transform: translateY(-1px);
}

.btn-primary {
	background: var(--gradient-primary);
	box-shadow: 0 18px 35px -22px rgba(22, 228, 206, 0.85);
	color: var(--color-bg);
	border-color: transparent;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:active {
	box-shadow: 0 24px 45px -20px rgba(22, 228, 206, 0.85);
	color: var(--color-bg);
}

.btn-outline-primary {
	background: transparent;
	border-color: rgba(22, 228, 206, 0.5);
	color: var(--color-text);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:focus-visible,
.btn-outline-primary:active {
	background: rgba(22, 228, 206, 0.12);
	border-color: rgba(22, 228, 206, 0.7);
	color: #ffffff !important;
}

.btn-glass {
	background: rgba(22, 228, 206, 0.1);
	border: 1px solid rgba(22, 228, 206, 0.2);
	color: var(--color-text);
	backdrop-filter: blur(14px);
}

.btn-glass:hover {
	background: rgba(22, 228, 206, 0.16);
	border-color: rgba(22, 228, 206, 0.28);
}

.payment-method-selection label,
.payment-method-selection .custom-control,
.payment-method-selection .custom-control-label,
.payment-method-selection .ml-auto {
	color: var(--color-text);
}

.payment-method-selection label p,
.payment-method-selection .custom-control-label p,
.payment-method-selection .ml-auto p {
	color: var(--color-text-muted);
}

.payment-method-selection .custom-control-label::before,
.payment-method-selection .custom-control-label::after {
	background: rgba(9, 18, 45, 0.88);
	border: 1px solid var(--color-border);
	box-shadow: 0 4px 14px -6px rgba(8, 12, 40, 0.6);
}

.payment-method-selection .custom-control-input:checked ~ .custom-control-label::before {
	background: rgba(22, 228, 206, 0.25);
	border-color: rgba(22, 228, 206, 0.6);
	box-shadow: 0 0 0 3px rgba(22, 228, 206, 0.18);
}

.payment-method-selection .badge {
	background: rgba(22, 228, 206, 0.16);
	border-color: rgba(22, 228, 206, 0.26);
	color: var(--color-primary);
}

.hw-rescale-summary {
	color: var(--color-text);
}

/* Hero -------------------------------------------------------------------- */
.hero {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	align-items: center;
	gap: clamp(28px, 8vw, 56px);
	margin-bottom: clamp(30px, 6vw, 64px);
	position: relative;
}

.hero::after {
	content: "";
	position: absolute;
	inset: -18%;
	background: var(--gradient-accent);
	filter: blur(120px);
	opacity: 0.6;
	z-index: 0;
}

.hero__content,
.hero__visual {
	position: relative;
	z-index: 1;
}

.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 8px 16px;
	border-radius: var(--radius-pill);
	background: rgba(22, 228, 206, 0.14);
	border: 1px solid rgba(22, 228, 206, 0.26);
	color: var(--color-primary);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.72rem;
	margin-bottom: 14px;
}

.hero__title {
	font-size: clamp(2.45rem, 5vw, 3.6rem);
	font-weight: 800;
	line-height: 1.05;
	margin-bottom: clamp(16px, 3vw, 22px);
	color: var(--color-text);
	text-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
}

.hero__subtitle {
	font-size: clamp(1rem, 2.2vw, 1.18rem);
	max-width: 42ch;
}

.hero__cta {
	margin-top: 26px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

.hero__visual {
	position: relative;
	display: grid;
	place-items: center;
}

.hero__orb {
	width: clamp(280px, 45vw, 420px);
	height: clamp(280px, 45vw, 420px);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(22, 228, 206, 0.28) 0%, rgba(4, 10, 30, 0) 68%);
	border: 1px solid rgba(22, 228, 206, 0.35);
	backdrop-filter: blur(16px);
	position: relative;
	box-shadow: inset 0 0 80px rgba(22, 228, 206, 0.25);
	display: grid;
	place-items: center;
}

.hero__orb::after {
	content: "";
	position: absolute;
	inset: 22%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(56, 178, 147, 0.16) 0%, transparent 70%);
	filter: blur(14px);
}

.hero__ring {
	position: absolute;
	width: clamp(200px, 36vw, 320px);
	height: clamp(200px, 36vw, 320px);
	border-radius: 50%;
	border: 1px solid rgba(22, 228, 206, 0.35);
	animation: spinSlow 18s linear infinite;
	opacity: 0.5;
}

.hero__ring:nth-child(2) {
	animation-direction: reverse;
	width: clamp(260px, 40vw, 360px);
	height: clamp(260px, 40vw, 360px);
	opacity: 0.35;
}

.hero__stats {
	margin-top: 24px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 18px;
}

.hero__stat {
	padding: 18px;
	border-radius: var(--radius-md);
	border: 1px solid rgba(22, 228, 206, 0.2);
	background: rgba(22, 228, 206, 0.05);
	text-align: left;
}

.hero__stat-value {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--color-text);
}

.hero__stat-label {
	font-size: 0.85rem;
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

@keyframes spinSlow {
	to {
		transform: rotate(360deg);
	}
}

/* Category & product listings --------------------------------------------- */
.category-stack {
	display: flex;
	flex-direction: column;
	gap: clamp(30px, 5vw, 44px);
}

.category-section {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.category-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 14px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(22, 228, 206, 0.18);
}

.category-header__title {
	font-size: clamp(1.6rem, 3vw, 1.95rem);
	font-weight: 700;
	color: var(--color-text);
}

.category-header__description {
	max-width: 72ch;
	font-size: 0.98rem;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
	gap: clamp(16px, 3vw, 28px);
}

/* Product card ------------------------------------------------------------ */
.product-card {
	position: relative;
	display: grid;
	gap: 16px;
	padding: clamp(20px, 2.2vw, 26px);
	background: linear-gradient(155deg, rgba(9, 17, 44, 0.95), rgba(7, 13, 34, 0.92));
	border-radius: var(--radius-md);
	border: 1px solid rgba(22, 228, 206, 0.18);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
	min-height: 100%;
}

.product-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(145deg, rgba(22, 228, 206, 0.12), rgba(56, 178, 147, 0.02));
	opacity: 0;
	transition: opacity var(--transition-base);
}

.product-card:hover::after {
	opacity: 1;
}

.product-card__header,
.product-card__footer {
	position: relative;
	z-index: 1;
}

.product-card__title {
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 4px;
}

.product-card__body {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 18px;
	color: var(--color-text-muted);
	font-size: 0.95rem;
}

.product-card__media {
	display: block;
	border-radius: var(--radius-sm);
	overflow: hidden;
	border: 1px solid rgba(22, 228, 206, 0.24);
}

.product-card__media img {
	width: 100%;
	object-fit: cover;
	mix-blend-mode: screen;
	opacity: 0.9;
}

.product-card__price-tag {
	display: grid;
	gap: 4px;
	text-align: center;
}

.price-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: var(--radius-pill);
	padding: 6px 12px;
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-text);
	background: rgba(22, 228, 206, 0.12);
	border: 1px solid rgba(22, 228, 206, 0.25);
}

.price-value {
	font-size: 1.45rem;
	font-weight: 700;
	color: var(--color-primary);
}

.price-compare {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: line-through;
	margin-left: 8px;
}

/* Badges ------------------------------------------------------------------ */
.badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 12px;
	font-size: 0.75rem;
	border-radius: var(--radius-pill);
	border: 1px solid transparent;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.badge-primary {
	background: rgba(22, 228, 206, 0.16);
	border-color: rgba(22, 228, 206, 0.26);
	color: var(--color-primary);
}

.badge-danger {
	background: rgba(242, 94, 94, 0.18);
	border-color: rgba(242, 94, 94, 0.2);
	color: #ff9f9f;
}

/* Alerts ------------------------------------------------------------------ */
.alert {
	position: relative;
	border-radius: var(--radius-md);
	padding: 16px 18px;
	display: flex;
	align-items: flex-start;
	gap: 16px;
	border: 1px solid rgba(22, 228, 206, 0.18);
	background: linear-gradient(140deg, rgba(9, 17, 45, 0.92), rgba(9, 20, 51, 0.88));
	box-shadow: var(--shadow-soft);
	color: var(--color-text);
}

.alert > i {
	font-size: 1.8rem;
	color: rgba(22, 228, 206, 0.8);
	opacity: 1;
	position: relative;
	top: 2px;
}

.alert-content {
	color: inherit;
}

.alert.alert-danger {
	border-color: rgba(255, 107, 107, 0.32);
	background: linear-gradient(145deg, rgba(60, 10, 26, 0.95), rgba(45, 4, 20, 0.92));
	color: #ffd9d9;
	box-shadow: 0 20px 60px -32px rgba(255, 83, 120, 0.8);
}

.alert.alert-success {
	border-color: rgba(56, 178, 147, 0.28);
	background: linear-gradient(145deg, rgba(9, 33, 45, 0.92), rgba(11, 44, 39, 0.88));
	color: #c5ffee;
}

/* Cards / Tables / Forms -------------------------------------------------- */
.card {
	background: var(--glass-surface-solid);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-soft);
	color: var(--color-text);
	overflow: hidden;
}

.card-header,
.card-footer {
	background: rgba(22, 228, 206, 0.06);
	border-color: rgba(22, 228, 206, 0.18);
	color: var(--color-text);
	font-weight: 600;
	padding: 18px 24px;
}

.card-body {
	padding: clamp(20px, 2.5vw, 28px);
	color: var(--color-text-muted);
}

.table {
	width: 100%;
	border-collapse: collapse;
	color: inherit;
}

.table th,
.table td {
	padding: 18px 22px;
	border-bottom: 1px solid rgba(22, 228, 206, 0.14);
	color: var(--color-text);
}

.table tbody tr:hover {
	background: rgba(22, 228, 206, 0.06);
	color: var(--color-text);
}

.form-control,
.form-select,
textarea {
	background: rgba(9, 18, 45, 0.88);
	border: 1px solid rgba(22, 228, 206, 0.22);
	color: var(--color-text);
	padding: 12px 14px;
	border-radius: var(--radius-sm);
}

.form-control:focus,
.form-select:focus {
	border-color: rgba(22, 228, 206, 0.45);
	box-shadow: 0 0 0 3px rgba(22, 228, 206, 0.18);
	background: rgba(9, 20, 48, 0.95);
}

/* Footer ------------------------------------------------------------------ */
.theme-dark .footer {
	background: linear-gradient(165deg, rgba(6, 12, 36, 0.95), rgba(5, 10, 30, 0.92));
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-border);
	padding: clamp(20px, 3vw, 30px) clamp(20px, 4vw, 38px);
	margin-top: clamp(16px, 2.4vw, 26px);
	box-shadow: var(--shadow-soft);
	color: var(--color-text-muted);
}

.theme-dark .footer .container {
	width: 100%;
	max-width: none;
	padding-left: clamp(22px, 3vw, 36px);
	padding-right: clamp(22px, 3vw, 36px);
}

.theme-dark .footer .row {
	margin: 0;
	row-gap: clamp(12px, 2vw, 24px);
	align-items: center;
	justify-content: space-between;
}

.theme-dark .footer-line {
	border-top: 1px solid rgba(22, 228, 206, 0.18);
}

.theme-dark .footer a {
	color: var(--color-text-muted);
}

.theme-dark .footer a:hover {
	color: var(--color-primary);
}

/* Sidebar & Widgets ------------------------------------------------------- */
.sidebar .widget {
	background: rgba(9, 18, 45, 0.9);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 18px 22px;
	box-shadow: var(--shadow-soft);
}

.sidebar .widget .widget-title {
	color: var(--color-text);
	font-weight: 600;
	margin-bottom: 18px;
}

/* Dashboard & stats ------------------------------------------------------- */
.dashboard-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	margin-bottom: 28px;
}

.stat-card {
	position: relative;
	padding: 20px 22px;
	border-radius: var(--radius-md);
	background: linear-gradient(150deg, rgba(9, 18, 45, 0.9), rgba(6, 12, 36, 0.92));
	border: 1px solid rgba(22, 228, 206, 0.18);
	overflow: hidden;
}

.stat-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(145deg, rgba(22, 228, 206, 0.12), transparent);
	opacity: 0;
	transition: opacity var(--transition-base);
}

.stat-card:hover::after {
	opacity: 1;
}

.stat-card__label {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-text-muted);
	margin-bottom: 10px;
}

.stat-card__value {
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--color-text);
}

/* Knowledge list & accordion ---------------------------------------------- */
.accordion .accordion-item {
	border-radius: var(--radius-md);
	border: 1px solid var(--color-border);
	background: rgba(9, 18, 45, 0.92);
	overflow: hidden;
}

.accordion-button {
	background: transparent;
	color: var(--color-text);
	font-weight: 600;
}

.accordion-button::after {
	filter: invert(1);
}

/* Tables with badges ------------------------------------------------------ */
.badge-pill {
	border-radius: var(--radius-pill);
}

/* Pagination --------------------------------------------------------------- */
.pagination {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: rgba(9, 18, 45, 0.82);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-pill);
	padding: 8px 12px;
}

.page-link {
	color: var(--color-text);
	padding: 10px 14px;
	border-radius: var(--radius-pill);
	border: 1px solid transparent;
	background: transparent;
}

.page-link:hover,
.page-item.active .page-link {
	background: rgba(22, 228, 206, 0.12);
	border-color: rgba(22, 228, 206, 0.28);
}

/* Alerts for forms -------------------------------------------------------- */
.invalid-feedback {
	color: #ff8b8b;
}

/* Back to top ------------------------------------------------------------- */
#back-to-top {
	background: rgba(22, 228, 206, 0.18);
	border: 1px solid rgba(22, 228, 206, 0.32);
	color: var(--color-text);
	width: 48px;
	height: 48px;
	border-radius: 14px;
	display: grid;
	place-items: center;
}

/* Tooltips & misc --------------------------------------------------------- */
.tooltip-inner {
	background: rgba(9, 20, 48, 0.92);
	border-radius: var(--radius-sm);
	padding: 8px 12px;
	border: 1px solid rgba(22, 228, 206, 0.32);
}

.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
	border-top-color: rgba(9, 20, 48, 0.92);
}

/* Tables inside responsive wrappers -------------------------------------- */
.table-responsive {
	border-radius: var(--radius-md);
	border: 1px solid var(--color-border);
	background: rgba(9, 18, 45, 0.9);
	box-shadow: var(--shadow-soft);
	padding: 2px;
}

/* Placeholder ------------------------------------------------------------- */
::placeholder {
	color: rgba(246, 251, 255, 0.4) !important;
}

/* Feather icons override */
.feather {
	stroke: currentColor;
}

/* Nav highlight for current route ---------------------------------------- */
.shell-nav__link.is-active::before {
	content: "";
	position: absolute;
	inset: 4px;
	border-radius: inherit;
	background: radial-gradient(circle, rgba(22, 228, 206, 0.22), transparent 70%);
	filter: blur(12px);
	opacity: 0.9;
	z-index: -1;
}

/* Media queries ----------------------------------------------------------- */
@media (max-width: 768px) {
	.theme-dark .page-main {
		padding: 18px;
	}

	.hero__eyebrow {
		font-size: 0.7rem;
	}

	.category-header {
		align-items: flex-start;
	}
}

/* Animations -------------------------------------------------------------- */
.fade-up {
	opacity: 0;
	transform: translateY(24px);
	animation: fadeUp 500ms ease forwards;
}

/* Animations -------------------------------------------------------------- */
.text-muted {
color:#c2bfbf !important;
}

.btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.hw-radio-mega .form-check, .hw-radio-mega .hw-button {
  width: 100%;
  padding: 12px 20px;
  margin-bottom: 0 !important;
  cursor: pointer;
  border: 1px solid rgba(22, 228, 206, 0.22);
  background: rgba(9, 20, 48, 0.92) !important;
  color: var(--color-text);
  border-bottom: none;
  transition: border-color var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
}

.hw-radio-mega .form-check:first-of-type,
.hw-radio-mega .hw-button:first-of-type {
  border-top-left-radius: var(--radius-sm);
  border-top-right-radius: var(--radius-sm);
}

.hw-radio-mega .form-check:last-of-type,
.hw-radio-mega .hw-button:last-of-type {
  border-bottom: 1px solid rgba(22, 228, 206, 0.22);
  border-bottom-left-radius: var(--radius-sm);
  border-bottom-right-radius: var(--radius-sm);
}

.hw-radio-mega .form-check:hover,
.hw-radio-mega .form-check:focus-within,
.hw-radio-mega .hw-button:hover,
.hw-radio-mega .hw-button:focus-within {
  background: rgba(22, 228, 206, 0.1) !important;
  border-color: rgba(22, 228, 206, 0.4);
  box-shadow: 0 12px 30px -20px rgba(22, 228, 206, 0.6);
}

.hw-radio-mega .custom-control-label,
.hw-radio-mega .custom-control-label small,
.hw-radio-mega .custom-control-label span {
  color: var(--color-text);
}

.hw-checkout-summary-wrapper .card-body:nth-child(even) {
  background-color: #081c35 !important;
}

.hw-promotion-wrapper.is--open, .hw-promotion-wrapper-active.is--open {
  background-color: #081c3581 !important;
  border-color: var(--bs-border-color-translucent);
  border-radius: 5px;
}

/* Checkout & promotion styling adjustments */
.hw-checkout-summary-wrapper {
  background: rgba(9, 18, 45, 0.94);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(14px);
  color: var(--color-text);
}

.hw-checkout-summary-wrapper .card-body {
  background: transparent;
  color: var(--color-text);
  border: none;
}

.hw-checkout-summary-wrapper .card-body + .card-body {
  border-top: 1px solid rgba(22, 228, 206, 0.14);
}

.hw-checkout-summary-total {
  background: rgba(22, 228, 206, 0.06);
  border-radius: var(--radius-md);
}

.hw-item-content strong,
.hw-item-content span,
.hw-item-content small,
.hw-item-price,
.hw-item-price small,
.hw-item-price strong {
  color: var(--color-text);
}

.hw-item-price strong {
  color: var(--color-primary);
}

.theme-dark .modal-content {
  background: rgba(9, 18, 45, 0.96);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  color: var(--color-text);
}

.theme-dark .modal-header,
.theme-dark .modal-footer {
  background: rgba(22, 228, 206, 0.06);
  border-color: rgba(22, 228, 206, 0.18);
  color: var(--color-text);
}

.theme-dark .modal-body {
  background: rgba(9, 20, 48, 0.92);
  color: var(--color-text);
}

.hw-promotion-wrapper,
.hw-promotion-wrapper-active {
  background: rgba(9, 20, 48, 0.9);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  padding: 16px;
}

.hw-promotion-wrapper .input-group,
.hw-promotion-wrapper-active .input-group {
  background: transparent;
}

.hw-promotion-wrapper .form-control {
  background: rgba(8, 18, 45, 0.95);
  border: 1px solid rgba(22, 228, 206, 0.26);
  color: var(--color-text);
}

.hw-promotion-wrapper .btn {
  background: rgba(22, 228, 206, 0.14);
  border-color: rgba(22, 228, 206, 0.32);
  color: var(--color-text);
}

.hw-promotion-wrapper .btn:hover {
  background: rgba(22, 228, 206, 0.22);
  border-color: rgba(22, 228, 206, 0.4);
}

@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.shell-nav__dropdown-item {
    list-style: none !important;
} 