:root {
	--dj-bg: #090b0c;
	--dj-bg-2: #101412;
	--dj-surface: #141817;
	--dj-panel: #1b201f;
	--dj-panel-strong: #242a28;
	--dj-panel-warm: #211d17;
	--dj-text: #f6f2e8;
	--dj-muted: #a9b1aa;
	--dj-soft: #747e78;
	--dj-line: rgba(246, 242, 232, 0.13);
	--dj-line-strong: rgba(246, 242, 232, 0.22);
	--dj-accent: #5ee6b5;
	--dj-accent-dark: #153b31;
	--dj-blue: #7bb9ff;
	--dj-warm: #f3b95f;
	--dj-pink: #e8709a;
	--dj-danger: #ff6f7d;
	--dj-radius: 8px;
	--dj-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
	--dj-font: "Avenir Next", Avenir, "Segoe UI", system-ui, sans-serif;
	--dj-display: "Arial Narrow", "Avenir Next Condensed", "Segoe UI", system-ui, sans-serif;
}

html body .dj-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid rgba(246, 242, 232, 0.12);
	background: rgba(9, 11, 12, 0.94);
	backdrop-filter: blur(16px);
}

html body .dj-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 68px;
	padding: 10px 0;
}

html body .dj-brand,
html body .dj-site-nav a {
	text-decoration: none !important;
}

html body .dj-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

html body .dj-brand-copy strong {
	display: block;
	color: var(--dj-text) !important;
	font-size: 20px;
	line-height: 1;
}

html body .dj-brand-copy small {
	display: block;
	margin-top: 3px;
	color: var(--dj-muted);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

html body .dj-site-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

html body .dj-site-nav a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	border: 1px solid rgba(246, 242, 232, 0.13);
	border-radius: 6px;
	padding: 9px 12px;
	background: rgba(255, 255, 255, 0.045);
	color: var(--dj-text);
	font-size: 14px;
	font-weight: 850;
	line-height: 1;
	white-space: nowrap;
}

html body .dj-site-nav a:hover {
	border-color: rgba(94, 230, 181, 0.45);
	background: rgba(94, 230, 181, 0.1);
	color: var(--dj-accent) !important;
}

html body .dj-cart-link {
	border-color: rgba(94, 230, 181, 0.45) !important;
	background: rgba(94, 230, 181, 0.14) !important;
	color: #fff !important;
}

html body .dj-cart-link span {
	background: var(--dj-accent);
	color: #fff;
}

* {
	box-sizing: border-box;
}

html {
	background: var(--dj-bg);
}

body {
	margin: 0;
	background:
		linear-gradient(115deg, rgba(94, 230, 181, 0.06), transparent 34%),
		linear-gradient(245deg, rgba(243, 185, 95, 0.05), transparent 32%),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 72px),
		var(--dj-bg);
	color: var(--dj-text);
	font-family: var(--dj-font);
	letter-spacing: 0;
}

body::before {
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	content: "";
	background-image:
		radial-gradient(circle at 18% 16%, rgba(94, 230, 181, 0.12), transparent 24%),
		linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px);
	background-size: auto, 100% 5px;
	opacity: 0.8;
}

a {
	color: inherit;
	text-decoration-color: rgba(94, 230, 181, 0.45);
	text-underline-offset: 3px;
}

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

.dj-shell {
	width: min(1200px, calc(100% - 32px));
	margin: 0 auto;
}

.dj-main {
	min-height: calc(100vh - 88px);
	padding: 28px 0 64px;
}

.dj-site-footer {
	border-top: 1px solid var(--dj-line);
	background: rgba(9, 11, 12, 0.88);
}

.dj-footer-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	gap: 18px;
	align-items: center;
	padding: 22px 0;
}

.dj-footer-brand {
	display: grid;
	gap: 4px;
}

.dj-footer-brand strong {
	color: var(--dj-text);
	font-size: 18px;
	line-height: 1;
}

.dj-footer-brand span,
.dj-footer-credit,
.dj-footer-social a {
	color: var(--dj-muted) !important;
	font-size: 13px;
	font-weight: 850;
	text-decoration: none;
}

.dj-footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.dj-footer-social a {
	border: 1px solid var(--dj-line);
	border-radius: 6px;
	padding: 8px 10px;
	background: rgba(255, 255, 255, 0.04);
}

.dj-footer-social a:hover,
.dj-footer-credit:hover {
	color: var(--dj-accent) !important;
}

.dj-site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	border-bottom: 1px solid var(--dj-line);
	background: rgba(9, 11, 12, 0.86);
	backdrop-filter: blur(18px);
}

.dj-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 76px;
}

.dj-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--dj-text);
	text-decoration: none;
}

.dj-brand-mark {
	display: grid;
	grid-template-columns: repeat(3, 8px);
	gap: 4px;
	align-items: end;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(94, 230, 181, 0.28);
	border-radius: 8px;
	padding: 9px;
	background: linear-gradient(145deg, rgba(94, 230, 181, 0.18), rgba(243, 185, 95, 0.08));
}

.dj-brand-mark span {
	display: block;
	border-radius: 2px;
	background: var(--dj-accent);
}

.dj-brand-mark span:nth-child(1) { height: 13px; }
.dj-brand-mark span:nth-child(2) { height: 24px; background: var(--dj-warm); }
.dj-brand-mark span:nth-child(3) { height: 18px; background: var(--dj-blue); }

.dj-brand-copy {
	display: grid;
	gap: 1px;
}

.dj-brand-copy strong {
	font-family: var(--dj-display);
	font-size: 20px;
	line-height: 1;
	text-transform: uppercase;
}

.dj-brand-copy small {
	color: var(--dj-muted);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.dj-site-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 6px;
}

.dj-site-nav a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	border: 1px solid transparent;
	border-radius: 6px;
	padding: 9px 12px;
	color: var(--dj-muted);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
}

.dj-site-nav a:hover,
.dj-site-nav a:focus-visible {
	border-color: var(--dj-line);
	background: rgba(255, 255, 255, 0.05);
	color: var(--dj-text);
	outline: none;
}

.dj-cart-link {
	gap: 8px;
	background: rgba(94, 230, 181, 0.11);
	color: #fff !important;
}

.dj-cart-link span {
	display: inline-grid;
	place-items: center;
	min-width: 22px;
	height: 22px;
	border-radius: 999px;
	background: var(--dj-accent);
	color: #fff;
	font-size: 12px;
}

.dj-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
	gap: 24px;
	align-items: stretch;
	min-height: 500px;
	padding: 34px 0 24px;
	overflow: hidden;
}

.dj-hero::before {
	position: absolute;
	inset: 34px 0 24px;
	z-index: -2;
	border: 1px solid var(--dj-line);
	border-radius: 8px;
	content: "";
	background:
		linear-gradient(90deg, rgba(9, 11, 12, 0.94), rgba(9, 11, 12, 0.72)),
		linear-gradient(135deg, rgba(94, 230, 181, 0.16), transparent 38%),
		linear-gradient(315deg, rgba(232, 112, 154, 0.1), transparent 34%),
		var(--dj-bg-2);
	box-shadow: var(--dj-shadow);
}

.dj-hero::after {
	position: absolute;
	right: 34px;
	bottom: 54px;
	left: 52%;
	z-index: -1;
	height: 128px;
	content: "";
	background:
		repeating-linear-gradient(90deg, rgba(94, 230, 181, 0.55) 0 4px, transparent 4px 18px),
		linear-gradient(180deg, transparent, rgba(243, 185, 95, 0.16));
	clip-path: polygon(0 55%, 4% 20%, 8% 70%, 12% 34%, 16% 78%, 20% 26%, 24% 60%, 28% 18%, 32% 82%, 36% 42%, 40% 66%, 44% 22%, 48% 88%, 52% 36%, 56% 70%, 60% 26%, 64% 76%, 68% 44%, 72% 62%, 76% 18%, 80% 84%, 84% 30%, 88% 72%, 92% 42%, 96% 64%, 100% 28%, 100% 100%, 0 100%);
	opacity: 0.55;
}

.dj-hero-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 720px;
	padding: 44px 0 44px 30px;
}

.dj-kicker,
.dj-badge {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	border: 1px solid rgba(94, 230, 181, 0.34);
	border-radius: 4px;
	padding: 6px 9px;
	background: rgba(94, 230, 181, 0.1);
	color: var(--dj-accent);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.dj-hero h1,
.dj-store-head h1 {
	max-width: 780px;
	margin: 18px 0 14px;
	font-family: var(--dj-display);
	font-size: 70px;
	font-weight: 900;
	line-height: 0.95;
	letter-spacing: 0;
	text-transform: uppercase;
}

.dj-hero p,
.dj-store-head p {
	max-width: 650px;
	margin: 0;
	color: var(--dj-muted);
	font-size: 18px;
	line-height: 1.65;
}

.dj-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.dj-button,
.button,
button,
input[type="submit"],
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	border: 0;
	border-radius: 6px;
	padding: 11px 15px;
	background: linear-gradient(180deg, rgba(94, 230, 181, 0.22), rgba(94, 230, 181, 0.12));
	color: var(--dj-accent) !important;
	border: 1px solid rgba(94, 230, 181, 0.45);
	font-weight: 900;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 10px 28px rgba(94, 230, 181, 0.18);
}

.dj-button:hover,
.button:hover,
button:hover,
input[type="submit"]:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	filter: brightness(1.04);
}

.dj-button-secondary {
	border: 1px solid var(--dj-line-strong);
	background: rgba(255, 255, 255, 0.055);
	color: var(--dj-text) !important;
	box-shadow: none;
}

.dj-hero-actions .dj-button:first-child,
.woocommerce a.checkout-button,
.woocommerce button#place_order {
	background: var(--dj-accent);
	color: #fff !important;
	border-color: transparent;
}

.dj-deck {
	display: grid;
	align-content: end;
	gap: 14px;
	padding: 0 30px 52px 0;
}

.dj-deck-panel,
.dj-product-media,
.dj-product-summary,
.woocommerce-MyAccount-content,
.dj-auth-card {
	border: 1px solid var(--dj-line);
	border-radius: var(--dj-radius);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 70%),
		var(--dj-panel);
	box-shadow: var(--dj-shadow);
}

.dj-deck-panel {
	padding: 18px;
}

.dj-track-row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 12px;
	align-items: center;
	padding: 13px 0;
	border-bottom: 1px solid var(--dj-line);
}

.dj-track-row:last-child {
	border-bottom: 0;
}

.dj-track-title {
	font-weight: 900;
}

.dj-track-meta {
	color: var(--dj-muted);
	font-size: 13px;
}

.dj-wave {
	display: grid;
	grid-template-columns: repeat(24, 1fr);
	gap: 4px;
	align-items: center;
	height: 76px;
	margin-bottom: 10px;
}

.dj-wave span {
	display: block;
	border-radius: 2px;
	background: linear-gradient(180deg, var(--dj-blue), var(--dj-accent));
}

.dj-wave span:nth-child(3n) { height: 58px; }
.dj-wave span:nth-child(3n+1) { height: 34px; }
.dj-wave span:nth-child(3n+2) { height: 46px; }

.dj-section {
	padding: 34px 0;
}

.dj-section-head,
.dj-store-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 22px;
}

.dj-product-search {
	width: min(420px, 100%);
}

.dj-product-search label {
	display: block;
	margin-bottom: 8px;
	color: var(--dj-muted);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.dj-product-search div {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
}

.dj-shop-tools {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	border: 1px solid var(--dj-line);
	border-radius: 8px;
	padding: 10px 12px;
	background: rgba(255, 255, 255, 0.045);
	margin-bottom: 18px;
	color: var(--dj-muted);
}

.dj-shop-tools .woocommerce-result-count {
	margin: 0;
	font-size: 14px;
	font-weight: 800;
}

.dj-shop-tools .woocommerce-ordering {
	margin: 0;
}

.dj-shop-tools .orderby {
	min-height: 42px;
	border: 1px solid var(--dj-line-strong);
	border-radius: 6px;
	padding: 0 38px 0 12px;
	background-color: var(--dj-panel-strong);
	color: var(--dj-text);
	font-weight: 800;
}

.dj-section-head h2 {
	margin: 10px 0 0;
	font-family: var(--dj-display);
	font-size: 38px;
	line-height: 1.05;
	text-transform: uppercase;
}

.dj-product-grid,
.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product,
.dj-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	float: none;
	width: auto;
	min-height: 100%;
	border: 1px solid var(--dj-line);
	border-radius: var(--dj-radius);
	padding: 14px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
		var(--dj-panel);
	color: var(--dj-text);
	overflow: hidden;
}

.woocommerce ul.products li.product::before,
.dj-product-card::before {
	display: block;
	width: 48px;
	height: 4px;
	margin-bottom: 12px;
	border-radius: 99px;
	background: linear-gradient(90deg, var(--dj-accent), var(--dj-warm), var(--dj-pink));
	content: "";
}

.woocommerce ul.products li.product:hover {
	border-color: rgba(94, 230, 181, 0.42);
	transform: translateY(-2px);
	transition: transform 160ms ease, border-color 160ms ease;
}

.woocommerce ul.products li.product a img,
.woocommerce div.product div.images img {
	aspect-ratio: 1 / 1;
	width: 100%;
	object-fit: cover;
	border: 1px solid var(--dj-line);
	border-radius: 6px;
	background:
		linear-gradient(135deg, rgba(94, 230, 181, 0.2), transparent 42%),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 3px, transparent 3px 16px),
		var(--dj-panel-strong);
}

.woocommerce-loop-product__title,
.woocommerce div.product .product_title {
	color: var(--dj-text);
	font-family: var(--dj-display);
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	min-height: 2.4em;
	padding: 10px 0 0;
	font-size: 19px;
	line-height: 1.2;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--dj-warm);
	font-weight: 900;
}

.woocommerce ul.products li.product .price {
	display: block;
	margin: 8px 0 12px;
	font-size: 17px;
}

.woocommerce ul.products li.product .button {
	width: 100%;
	margin-top: auto;
}

.woocommerce .star-rating,
.woocommerce .star-rating span,
.woocommerce p.stars a {
	color: var(--dj-warm);
}

.dj-rating-stars {
	position: relative;
	display: inline-block;
	width: max-content;
	color: rgba(243, 185, 95, 0.28);
	font-size: 18px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1;
	overflow: hidden;
	white-space: nowrap;
}

.dj-rating-stars__base,
.dj-rating-stars__fill {
	display: block;
	border: 0;
	background: transparent;
}

.dj-rating-stars__fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	max-width: 100%;
	color: var(--dj-warm);
	overflow: hidden;
	text-shadow: 0 0 18px rgba(243, 185, 95, 0.18);
}

.dj-rating-stars--metric {
	margin-top: 4px;
	font-size: 15px;
}

.dj-rating-stars--summary {
	font-size: 21px;
}

.dj-rating-stars--review {
	margin-bottom: 5px;
	font-size: 16px;
}

.dj-rating-stars--loop {
	font-size: 15px;
}

.dj-loop-rating {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin: 8px 0 10px;
	color: var(--dj-muted);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.25;
}

.dj-loop-rating strong {
	color: var(--dj-text);
	font-weight: 900;
}

.dj-loop-rating--empty {
	opacity: 0.74;
}

.woocommerce span.onsale {
	top: 12px;
	left: 12px;
	z-index: 4;
	min-width: auto;
	min-height: auto;
	border: 1px solid rgba(243, 185, 95, 0.6);
	border-radius: 6px;
	padding: 8px 10px;
	background: var(--dj-warm);
	color: #1b1306;
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.dj-store-head {
	padding: 34px 0 18px;
}

.dj-product-page {
	display: grid;
	grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
	gap: 22px;
	align-items: start;
	padding: 28px 0 18px;
}

.dj-product-media,
.dj-product-summary {
	position: relative;
	padding: 16px;
	overflow: hidden;
}

.dj-product-media::after,
.dj-product-summary::after {
	position: absolute;
	right: 16px;
	bottom: 16px;
	left: 16px;
	height: 54px;
	content: "";
	pointer-events: none;
	background:
		repeating-linear-gradient(90deg, rgba(94, 230, 181, 0.38) 0 3px, transparent 3px 14px),
		linear-gradient(180deg, transparent, rgba(243, 185, 95, 0.1));
	clip-path: polygon(0 58%, 4% 28%, 8% 72%, 12% 36%, 16% 80%, 20% 20%, 24% 62%, 28% 34%, 32% 78%, 36% 46%, 40% 68%, 44% 22%, 48% 84%, 52% 40%, 56% 70%, 60% 30%, 64% 76%, 68% 48%, 72% 64%, 76% 24%, 80% 82%, 84% 34%, 88% 72%, 92% 44%, 96% 66%, 100% 32%, 100% 100%, 0 100%);
	opacity: 0.18;
}

.dj-product-summary::after {
	opacity: 0.1;
}

.dj-product-media-label {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 3;
	border: 1px solid rgba(94, 230, 181, 0.4);
	border-radius: 4px;
	padding: 7px 9px;
	background: rgba(9, 11, 12, 0.78);
	color: var(--dj-accent);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	backdrop-filter: blur(10px);
}

.dj-product-media .woocommerce-product-gallery,
.dj-product-summary .summary {
	position: relative;
	z-index: 1;
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
}

.dj-product-media .woocommerce-product-gallery {
	opacity: 1 !important;
}

.dj-product-media .woocommerce-product-gallery__wrapper {
	margin: 0;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image {
	margin: 0;
}

.woocommerce div.product .product_title {
	margin: 12px 0 8px;
	font-size: clamp(34px, 5vw, 62px);
	line-height: 0.98;
}

.woocommerce div.product .woocommerce-product-rating {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 9px;
	margin: 0 0 12px;
}

.woocommerce div.product .woocommerce-review-link {
	color: var(--dj-muted);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.woocommerce div.product .woocommerce-review-link:hover {
	color: var(--dj-accent);
}

.woocommerce-product-details__short-description {
	margin: 14px 0;
	color: var(--dj-muted);
	font-size: 16px;
	line-height: 1.65;
}

.woocommerce-product-details__short-description p {
	margin: 0 0 10px;
}

.dj-product-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	margin: 14px 0;
}

.dj-product-metrics > span {
	display: grid;
	gap: 2px;
	min-width: 0;
	border: 1px solid var(--dj-line);
	border-radius: 6px;
	padding: 10px;
	background: rgba(255, 255, 255, 0.035);
	color: var(--dj-muted);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

.dj-product-metrics > span > strong {
	color: var(--dj-text);
	font-size: 18px;
	line-height: 1;
}

.dj-product-metrics .dj-rating-stars {
	display: block;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	margin: 10px 0 12px;
	font-size: 30px;
	line-height: 1;
}

.dj-product-summary form.cart {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-top: 18px;
}

.dj-product-summary .quantity input.qty {
	width: 74px;
	text-align: center;
}

.woocommerce div.product form.cart .button {
	min-height: 48px;
	padding-inline: 18px;
	background: var(--dj-accent);
	color: #fff !important;
}

.dj-product-meta,
.woocommerce div.product .product_meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
	border-top: 1px solid var(--dj-line);
	padding-top: 14px;
	color: var(--dj-muted);
	font-size: 13px;
}

.dj-product-meta span,
.woocommerce div.product .product_meta > span {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 5px;
	align-items: center;
	border: 1px solid var(--dj-line);
	border-radius: 999px;
	padding: 7px 10px;
	background: rgba(255, 255, 255, 0.035);
}

.dj-product-meta a,
.woocommerce div.product .product_meta a {
	color: var(--dj-accent);
	font-weight: 800;
	text-decoration: none;
}

.dj-product-content {
	display: grid;
	gap: 18px;
	padding: 14px 0 46px;
}

.dj-product-description,
.dj-product-reviews,
.woocommerce .related.products {
	border: 1px solid var(--dj-line);
	border-radius: var(--dj-radius);
	padding: 18px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 72%),
		rgba(20, 24, 23, 0.88);
	box-shadow: 0 18px 58px rgba(0, 0, 0, 0.24);
}

.dj-section-title {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 16px;
	border-bottom: 1px solid var(--dj-line);
	padding-bottom: 14px;
}

.dj-section-title h2,
.woocommerce-Reviews-title,
.comment-reply-title,
.woocommerce .related.products h2 {
	margin: 0;
	color: var(--dj-text);
	font-family: var(--dj-display);
	font-size: 30px;
	font-weight: 900;
	line-height: 1.05;
	text-transform: uppercase;
}

.dj-product-description-body {
	color: var(--dj-muted);
	font-size: 16px;
	line-height: 1.7;
}

.dj-product-description-body > *:first-child {
	margin-top: 0;
}

.dj-product-description-body > *:last-child {
	margin-bottom: 0;
}

.dj-direct-reviews {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.44fr);
	gap: 16px;
	color: var(--dj-text);
}

.dj-review-list-wrap,
.dj-review-form-wrap {
	min-width: 0;
}

.woocommerce-Reviews-title {
	margin-bottom: 14px;
	font-size: 24px;
}

.woocommerce #reviews #comments ol.commentlist,
.woocommerce-Reviews .commentlist {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.woocommerce #reviews #comments ol.commentlist li,
.woocommerce-Reviews .commentlist li {
	margin: 0;
	border: 1px solid var(--dj-line);
	border-radius: 8px;
	padding: 14px;
	background: rgba(255, 255, 255, 0.035);
}

.woocommerce #reviews #comments ol.commentlist li .comment_container {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
	position: static;
	float: none;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(94, 230, 181, 0.3);
	border-radius: 6px;
	padding: 0;
	background:
		linear-gradient(135deg, rgba(94, 230, 181, 0.24), rgba(243, 185, 95, 0.14)),
		var(--dj-panel-strong);
	object-fit: cover;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
	min-width: 0;
	margin: 0;
	border: 0;
	border-radius: 0;
	padding: 0;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
	margin: 5px 0 8px;
	color: var(--dj-muted);
	font-size: 13px;
}

.woocommerce-review__author {
	color: var(--dj-text);
	font-size: 15px;
	font-weight: 900;
}

.woocommerce-review__dash {
	color: var(--dj-soft);
}

.woocommerce-review__published-date {
	color: var(--dj-muted);
}

.woocommerce #reviews #comments ol.commentlist li .description,
.woocommerce #reviews #comments ol.commentlist li .comment-text .description {
	color: var(--dj-muted);
	font-size: 15px;
	line-height: 1.6;
}

.woocommerce #reviews #comments ol.commentlist li .description p:last-child {
	margin-bottom: 0;
}

.woocommerce #reviews #comments ol.commentlist li .description p {
	margin: 0;
}

.woocommerce-noreviews,
.woocommerce-verification-required,
.must-log-in {
	border: 1px solid rgba(123, 185, 255, 0.24);
	border-radius: 8px;
	margin: 0;
	padding: 14px;
	background: rgba(123, 185, 255, 0.08);
	color: var(--dj-text);
	line-height: 1.55;
}

.must-log-in a {
	color: var(--dj-accent);
	font-weight: 900;
}

.comment-respond {
	border: 1px solid var(--dj-line);
	border-radius: 8px;
	padding: 16px;
	background: rgba(0, 0, 0, 0.14);
	color: var(--dj-text);
}

.comment-respond form {
	display: grid;
	gap: 12px;
	margin: 12px 0 0;
}

.comment-respond p {
	margin: 0;
}

.comment-respond .comment-notes,
.comment-respond .comment-form-cookies-consent {
	color: var(--dj-muted);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
}

.comment-respond .comment-form-cookies-consent {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 8px;
	align-items: start;
}

.comment-respond .comment-form-cookies-consent label {
	margin: 0;
	color: var(--dj-muted);
	font-size: 12px;
	line-height: 1.35;
	text-transform: none;
}

.comment-respond label {
	display: block;
	margin-bottom: 7px;
	color: var(--dj-text);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.comment-form-rating select {
	max-width: 100%;
}

.woocommerce #review_form #respond textarea {
	min-height: 130px;
}

.woocommerce #review_form #respond .form-submit input {
	width: 100%;
	background: var(--dj-accent);
	color: #fff !important;
}

html body.woocommerce-account .dj-page {
	width: 100%;
	min-width: 0;
}

html body.woocommerce-account .dj-page-content > .woocommerce {
	display: grid !important;
	grid-template-columns: 180px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
	width: 100%;
	min-width: 0;
}

html body.woocommerce-account .dj-page-content > .woocommerce::before,
html body.woocommerce-account .dj-page-content > .woocommerce::after {
	display: none !important;
	content: none !important;
}

.dj-page-head {
	margin: 26px 0 18px;
}

.dj-page-head h1 {
	margin: 0;
	font-family: var(--dj-display);
	font-size: 42px;
	text-transform: uppercase;
}

.dj-page-content {
	min-width: 0;
}

.woocommerce-MyAccount-navigation {
	position: sticky;
	top: 98px;
	float: none !important;
	width: auto !important;
	max-width: 180px;
	min-width: 0;
}

.woocommerce-MyAccount-navigation ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 12px;
	border: 1px solid var(--dj-line);
	border-radius: var(--dj-radius);
	background: rgba(20, 24, 23, 0.86);
	list-style: none;
}

.woocommerce-MyAccount-navigation a {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 44px;
	border: 1px solid transparent;
	border-radius: 6px;
	padding: 10px 12px;
	color: var(--dj-muted) !important;
	font-weight: 900;
	line-height: 1.2;
	text-decoration: none;
}

.woocommerce-MyAccount-navigation a:hover,
.woocommerce-MyAccount-navigation .is-active a {
	border-color: rgba(94, 230, 181, 0.42);
	background: rgba(94, 230, 181, 0.1);
	color: var(--dj-accent) !important;
}

.woocommerce-MyAccount-content {
	float: none !important;
	width: auto !important;
	max-width: none !important;
	min-width: 0;
	padding: 22px;
	overflow: hidden;
}

.woocommerce-account .woocommerce-MyAccount-content {
	min-height: 0;
}

.woocommerce-account .dj-account-dashboard {
	display: grid;
	gap: 18px;
}

.dj-account-hero h2,
.dj-auth-intro h1,
.dj-auth-card h2 {
	margin: 14px 0 10px;
	font-family: var(--dj-display);
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.dj-account-hero h2 {
	font-size: 44px;
}

.dj-account-hero p,
.dj-account-action small,
.dj-auth-intro p,
.dj-auth-card p {
	color: var(--dj-muted);
	line-height: 1.6;
}

.woocommerce-MyAccount-content > h2:first-child {
	margin: 0 0 14px;
	font-family: var(--dj-display);
	font-size: 28px;
	font-weight: 900;
	line-height: 1.05;
	text-transform: uppercase;
}

html body.woocommerce-account .woocommerce-MyAccount-content h2,
html body.woocommerce-account .woocommerce-MyAccount-content h3,
html body.woocommerce-account .woocommerce-MyAccount-content legend {
	margin: 0 0 14px;
	color: var(--dj-text);
	font-family: var(--dj-display);
	font-weight: 900;
	line-height: 1.08;
	text-transform: uppercase;
}

html body.woocommerce-account .woocommerce-MyAccount-content p {
	color: var(--dj-muted);
	line-height: 1.6;
}

html body.woocommerce-account .woocommerce-MyAccount-content form,
html body.woocommerce-account .woocommerce-orders-table,
html body.woocommerce-account .woocommerce-customer-details,
html body.woocommerce-account .woocommerce-order-details {
	border: 1px solid var(--dj-line);
	border-radius: 8px;
	padding: 16px;
	background: rgba(255, 255, 255, 0.035);
}

html body.woocommerce-account .woocommerce-MyAccount-content .form-row {
	float: none !important;
	width: 100% !important;
	margin: 0 0 12px;
	padding: 0;
}

html body.woocommerce-account .woocommerce-MyAccount-content fieldset {
	display: grid;
	gap: 12px;
	border: 1px solid var(--dj-line);
	border-radius: 8px;
	margin: 18px 0 0;
	padding: 16px;
	background: rgba(0, 0, 0, 0.12);
}

html body.woocommerce-account .woocommerce-Addresses {
	display: grid;
	grid-template-columns: repeat(2, minmax(260px, 1fr));
	gap: 16px;
	margin-top: 16px;
}

html body.woocommerce-account .woocommerce-Addresses::before,
html body.woocommerce-account .woocommerce-Addresses::after {
	display: none !important;
	content: none !important;
}

html body.woocommerce-account .woocommerce-Address {
	float: none !important;
	display: grid;
	align-content: start;
	width: auto !important;
	min-width: 0;
	min-height: 220px;
	border: 1px solid rgba(246, 242, 232, 0.13);
	border-radius: 8px;
	padding: 16px;
	background:
		linear-gradient(180deg, rgba(94, 230, 181, 0.055), transparent 74%),
		#151a19;
	box-shadow: none;
}

html body.woocommerce-account .woocommerce-Address-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	border-bottom: 1px solid var(--dj-line);
	margin-bottom: 14px;
	padding-bottom: 12px;
}

html body.woocommerce-account .woocommerce-Address-title::before,
html body.woocommerce-account .woocommerce-Address-title::after {
	display: none !important;
	content: none !important;
}

html body.woocommerce-account .woocommerce-Address-title h2 {
	float: none !important;
	margin: 0 !important;
	font-size: 23px;
	line-height: 1;
}

html body.woocommerce-account .woocommerce-Address-title a {
	float: none !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	border: 1px solid rgba(94, 230, 181, 0.42);
	border-radius: 6px;
	padding: 8px 11px;
	background: rgba(94, 230, 181, 0.11);
	color: var(--dj-accent) !important;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.1;
	text-decoration: none;
	white-space: nowrap;
}

html body.woocommerce-account address {
	border: 1px solid var(--dj-line);
	border-radius: 8px;
	width: 100%;
	margin: 0;
	padding: 14px;
	background: rgba(0, 0, 0, 0.12);
	color: var(--dj-muted);
	font-style: normal;
	line-height: 1.6;
}

html body.woocommerce-account .woocommerce-orders-table {
	border-collapse: separate;
}

html body.woocommerce-account .woocommerce-orders-table__cell-order-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.dj-dialog-open {
	overflow: hidden;
}

.dj-logout-dialog[hidden] {
	display: none;
}

.dj-logout-dialog {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: grid;
	place-items: center;
	padding: 20px;
}

.dj-logout-dialog__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(3, 5, 5, 0.72);
	backdrop-filter: blur(10px);
}

.dj-logout-dialog__panel {
	position: relative;
	z-index: 1;
	width: min(100%, 420px);
	border: 1px solid rgba(94, 230, 181, 0.32);
	border-radius: 8px;
	padding: 22px;
	background:
		linear-gradient(180deg, rgba(94, 230, 181, 0.08), transparent 68%),
		#171d1b;
	box-shadow: 0 24px 90px rgba(0, 0, 0, 0.56);
}

.dj-logout-dialog__panel h2 {
	margin: 0 0 10px;
	font-family: var(--dj-display);
	font-size: 30px;
	font-weight: 900;
	line-height: 1.05;
	text-transform: uppercase;
}

.dj-logout-dialog__panel p {
	margin: 0;
	color: var(--dj-muted);
	line-height: 1.55;
}

.dj-logout-dialog__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 20px;
}

.dj-empty-downloads {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	width: 100%;
	min-width: 0;
	border: 1px solid var(--dj-line);
	border-radius: 8px;
	padding: 16px;
	background: rgba(255, 255, 255, 0.035);
}

.dj-empty-downloads p {
	margin: 0;
	color: var(--dj-muted);
	line-height: 1.5;
}

.dj-empty-downloads .dj-button {
	flex: 0 0 auto;
}

.dj-download-list {
	display: grid;
	gap: 10px;
	width: 100%;
	min-width: 0;
}

.dj-download-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
	align-items: center;
	width: 100%;
	min-width: 0;
	border: 1px solid var(--dj-line);
	border-radius: 8px;
	padding: 15px;
	background: rgba(255, 255, 255, 0.035);
}

.dj-download-card span {
	display: inline-block;
	margin-bottom: 7px;
	color: var(--dj-warm);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

.dj-download-card h3 {
	margin: 0;
	color: var(--dj-text);
	font-size: 18px;
	line-height: 1.2;
	word-break: break-word;
}

.dj-download-card p {
	margin: 6px 0 0;
	color: var(--dj-muted);
	line-height: 1.45;
	word-break: break-word;
}

.dj-account-actions {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 20px;
}

.dj-account-action {
	display: grid;
	gap: 8px;
	min-height: 152px;
	border: 1px solid var(--dj-line);
	border-radius: 8px;
	padding: 16px;
	background: rgba(255, 255, 255, 0.04);
	text-decoration: none;
}

.dj-account-action:hover {
	border-color: rgba(94, 230, 181, 0.45);
}

.dj-account-action span {
	color: var(--dj-warm);
	font-size: 12px;
	font-weight: 900;
}

.dj-account-action strong {
	font-size: 18px;
}

.dj-auth-shell {
	display: grid;
	grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
	gap: 22px;
	align-items: stretch;
}

.dj-auth-intro {
	position: relative;
	min-height: 520px;
	border: 1px solid var(--dj-line);
	border-radius: var(--dj-radius);
	padding: 28px;
	background:
		linear-gradient(180deg, rgba(94, 230, 181, 0.14), transparent 48%),
		var(--dj-panel-warm);
	overflow: hidden;
}

.dj-auth-intro h1 {
	font-size: 54px;
}

.dj-auth-meters {
	position: absolute;
	right: 26px;
	bottom: 26px;
	left: 26px;
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 8px;
	align-items: end;
	height: 130px;
}

.dj-auth-meters span {
	border-radius: 4px 4px 0 0;
	background: linear-gradient(180deg, var(--dj-accent), rgba(94, 230, 181, 0.12));
}

.dj-auth-meters span:nth-child(1) { height: 42%; }
.dj-auth-meters span:nth-child(2) { height: 76%; background: linear-gradient(180deg, var(--dj-warm), rgba(243, 185, 95, 0.12)); }
.dj-auth-meters span:nth-child(3) { height: 55%; }
.dj-auth-meters span:nth-child(4) { height: 92%; background: linear-gradient(180deg, var(--dj-blue), rgba(123, 185, 255, 0.12)); }
.dj-auth-meters span:nth-child(5) { height: 64%; }
.dj-auth-meters span:nth-child(6) { height: 84%; background: linear-gradient(180deg, var(--dj-pink), rgba(232, 112, 154, 0.12)); }
.dj-auth-meters span:nth-child(7) { height: 48%; }
.dj-auth-meters span:nth-child(8) { height: 70%; }

.dj-auth-switch {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.dj-auth-switch a,
.dj-register-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	border: 1px solid rgba(94, 230, 181, 0.38);
	border-radius: 6px;
	padding: 8px 12px;
	background: rgba(94, 230, 181, 0.1);
	color: var(--dj-accent) !important;
	font-weight: 900;
	text-decoration: none;
}

.dj-auth-forms {
	display: grid;
	gap: 16px;
}

.dj-auth-card {
	padding: 22px;
}

.dj-auth-card h2 {
	font-size: 30px;
}

.dj-auth-card--register {
	border-color: rgba(94, 230, 181, 0.34);
	background:
		linear-gradient(135deg, rgba(94, 230, 181, 0.08), transparent 42%),
		var(--dj-panel);
}

.dj-auth-submit {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

input,
textarea,
select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.select2-container--default .select2-selection--single {
	width: 100%;
	max-width: 100%;
	min-height: 44px;
	border: 1px solid var(--dj-line-strong);
	border-radius: 6px;
	padding: 11px 12px;
	background: #0d100f;
	color: var(--dj-text);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

input[type="checkbox"],
input[type="radio"] {
	width: auto;
	min-height: auto;
	accent-color: var(--dj-accent);
}

label,
.woocommerce form .form-row label {
	color: var(--dj-text);
	font-weight: 800;
}

input:focus,
textarea:focus,
select:focus {
	border-color: rgba(94, 230, 181, 0.72);
	outline: 2px solid rgba(94, 230, 181, 0.16);
	outline-offset: 0;
}

table,
.woocommerce table.shop_table {
	width: 100%;
	border: 1px solid var(--dj-line);
	border-collapse: separate;
	border-radius: var(--dj-radius);
	color: var(--dj-text);
	overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td,
table th,
table td {
	border-color: var(--dj-line);
	padding: 12px;
}

.woocommerce table.shop_table th,
table th {
	background: rgba(255, 255, 255, 0.045);
	color: var(--dj-muted);
	font-size: 12px;
	text-align: left;
	text-transform: uppercase;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
	border-top: 0;
	border-left: 4px solid var(--dj-accent);
	border-radius: 8px;
	background: var(--dj-panel);
	color: var(--dj-text);
}

.woocommerce-error {
	border-left-color: var(--dj-danger);
}

.woocommerce-info {
	border-left-color: var(--dj-blue);
}

html body .woocommerce-notices-wrapper {
	position: relative;
	z-index: 60;
}

html body .woocommerce-notices-wrapper .woocommerce-error,
html body .woocommerce-notices-wrapper .woocommerce-info,
html body .woocommerce-notices-wrapper .woocommerce-message {
	width: min(560px, calc(100vw - 32px));
	margin: 16px auto 18px;
	padding: 16px 18px 16px 52px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

html body.woocommerce-account:not(.logged-in) .woocommerce-notices-wrapper .woocommerce-error,
html body.woocommerce-account:not(.logged-in) .woocommerce-notices-wrapper .woocommerce-info,
html body.woocommerce-account:not(.logged-in) .woocommerce-notices-wrapper .woocommerce-message {
	position: fixed;
	top: 82px;
	left: 50%;
	z-index: 1000;
	transform: translateX(-50%);
	margin: 0;
	background:
		linear-gradient(135deg, rgba(239, 68, 68, 0.16), transparent 46%),
		var(--dj-panel-strong);
}

html body .woocommerce-notices-wrapper .woocommerce-error::before,
html body .woocommerce-notices-wrapper .woocommerce-info::before,
html body .woocommerce-notices-wrapper .woocommerce-message::before {
	top: 17px;
	left: 18px;
	color: inherit;
}

.woocommerce-cart-form,
.cart_totals,
.woocommerce-checkout #customer_details,
.woocommerce-checkout-review-order,
.woocommerce-checkout-payment,
.woocommerce-order,
.woocommerce-form-coupon,
.woocommerce-form-login {
	border: 1px solid var(--dj-line);
	border-radius: var(--dj-radius);
	padding: 18px;
	background: var(--dj-panel);
}

.woocommerce-checkout #customer_details {
	display: grid;
	gap: 18px;
}

.woocommerce-checkout form.checkout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 420px;
	gap: 22px;
	align-items: start;
}

html body.woocommerce-checkout .dj-main,
html body.woocommerce-cart .dj-main {
	padding-top: 18px;
}

html body.woocommerce-checkout form.checkout {
	display: grid !important;
	grid-template-areas:
		"customer order-title"
		"customer order-review";
	grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.62fr);
	gap: 18px 22px;
	align-items: start;
}

html body.woocommerce-checkout .col2-set,
html body.woocommerce-checkout .col2-set .col-1,
html body.woocommerce-checkout .col2-set .col-2 {
	float: none;
	width: 100%;
}

html body.woocommerce-checkout #customer_details {
	grid-area: customer;
}

html body.woocommerce-checkout #order_review_heading {
	grid-area: order-title;
}

html body.woocommerce-checkout #order_review {
	grid-area: order-review;
}

html body.woocommerce-checkout #customer_details,
html body.woocommerce-checkout .woocommerce-checkout-review-order,
html body.woocommerce-checkout .woocommerce-checkout-payment {
	border: 1px solid rgba(246, 242, 232, 0.13);
	border-radius: 8px;
	padding: 16px;
	background: #171d1b;
	box-shadow: none;
}

html body.woocommerce-checkout .woocommerce-checkout-review-order {
	display: block !important;
	min-height: 120px;
	background:
		linear-gradient(180deg, rgba(94, 230, 181, 0.055), transparent 72%),
		#151a19;
}

html body.woocommerce-checkout h3 {
	margin: 0 0 14px;
	font-size: 24px;
}

html body.woocommerce-checkout .form-row {
	float: none !important;
	clear: none !important;
	width: 100% !important;
	margin: 0 0 12px;
	padding: 0;
}

html body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 16px;
}

html body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-wide,
html body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_country_field,
html body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_address_1_field,
html body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_address_2_field,
html body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_city_field,
html body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_state_field,
html body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_phone_field,
html body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_email_field {
	grid-column: 1 / -1;
}

html body.woocommerce-checkout label {
	margin-bottom: 5px;
	color: #e9eee8;
	font-size: 14px;
}

html body.woocommerce-checkout input.input-text,
html body.woocommerce-checkout textarea,
html body.woocommerce-checkout select,
html body.woocommerce-checkout .select2-container--default .select2-selection--single,
html body.woocommerce-checkout .select2-container .select2-selection--single {
	height: 42px;
	min-height: 42px;
	border: 1px solid rgba(246, 242, 232, 0.2) !important;
	border-radius: 6px !important;
	background: #0c100f !important;
	color: var(--dj-text) !important;
	font-size: 15px;
}

html body.woocommerce-checkout select {
	display: flex;
	align-items: center;
	padding: 0 42px 0 12px;
	line-height: 1.2;
	appearance: auto;
}

html body.woocommerce-checkout .select2-container {
	width: 100% !important;
	max-width: 100%;
}

html body.woocommerce-checkout .select2-container--default .select2-selection--single,
html body.woocommerce-checkout .select2-container .select2-selection--single {
	display: flex !important;
	align-items: center;
	padding: 0 42px 0 12px !important;
}

html body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
	display: block;
	width: 100%;
	padding: 0 !important;
	color: var(--dj-text);
	line-height: 1.2 !important;
}

html body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 0 !important;
	right: 8px !important;
	height: 100% !important;
}

html body.woocommerce-checkout table.shop_table {
	display: table !important;
	width: 100%;
	margin: 0 0 14px;
	background: #121716;
}

html body.woocommerce-checkout table.shop_table th,
html body.woocommerce-checkout table.shop_table td {
	padding: 11px 12px;
}

html body.woocommerce-checkout table.shop_table .product-name,
html body.woocommerce-checkout table.shop_table .product-total {
	color: var(--dj-text);
	font-size: 14px;
}

html body.woocommerce-checkout table.shop_table tfoot th,
html body.woocommerce-checkout table.shop_table tfoot td {
	background: rgba(255, 255, 255, 0.035);
	font-weight: 900;
}

.dj-checkout-summary {
	display: grid;
	gap: 14px;
}

.dj-checkout-products {
	display: grid;
	gap: 10px;
}

.dj-checkout-product {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	border: 1px solid var(--dj-line);
	border-radius: 8px;
	padding: 12px;
	background: rgba(255, 255, 255, 0.035);
}

.dj-checkout-product-media {
	width: 72px;
	aspect-ratio: 1;
	border: 1px solid rgba(246, 242, 232, 0.14);
	border-radius: 7px;
	background:
		linear-gradient(135deg, rgba(94, 230, 181, 0.16), transparent 46%),
		#0c100f;
	overflow: hidden;
}

.dj-checkout-product-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dj-checkout-product-main {
	min-width: 0;
}

.dj-checkout-product-kicker {
	display: block;
	margin-bottom: 5px;
	color: var(--dj-warm);
	font-size: 11px;
	font-weight: 900;
	line-height: 1.1;
	text-transform: uppercase;
}

.dj-checkout-product h3 {
	margin: 0;
	color: var(--dj-text);
	font-size: 16px;
	line-height: 1.2;
	text-transform: none;
	word-break: break-word;
}

.dj-checkout-product-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 8px;
	color: var(--dj-muted);
	font-size: 12px;
	font-weight: 850;
}

.dj-checkout-product-meta span {
	border: 1px solid var(--dj-line);
	border-radius: 999px;
	padding: 4px 7px;
	background: rgba(255, 255, 255, 0.035);
}

.dj-checkout-product-price {
	color: var(--dj-warm);
	font-size: 16px;
	font-weight: 900;
	white-space: nowrap;
}

.dj-checkout-totals {
	border: 1px solid var(--dj-line);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.03);
	overflow: hidden;
}

.dj-checkout-total-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	padding: 12px;
	border-bottom: 1px solid var(--dj-line);
	color: var(--dj-muted);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.dj-checkout-total-row:last-child {
	border-bottom: 0;
}

.dj-checkout-total-row strong {
	color: var(--dj-text);
	font-size: 16px;
}

.dj-checkout-total-row-final {
	background: rgba(94, 230, 181, 0.08);
	color: var(--dj-text);
}

.dj-checkout-total-row-final strong {
	color: var(--dj-accent);
	font-size: 20px;
}

html body.woocommerce-checkout .woocommerce-checkout-payment {
	margin-top: 14px;
	padding: 14px;
	background: #141918 !important;
}

html body.woocommerce-checkout .woocommerce-checkout-payment .place-order {
	display: grid;
	gap: 12px;
}

html body.woocommerce-checkout .woocommerce-checkout-payment:not(:has(input[name="payment_method"])) #place_order {
	display: none !important;
}

html body.woocommerce-checkout .woocommerce-checkout-payment .payment_box {
	background: rgba(94, 230, 181, 0.09) !important;
	color: var(--dj-text) !important;
}

html body.woocommerce-checkout .woocommerce-info {
	margin: 0 0 14px;
	background: #151a19;
	color: var(--dj-text);
}

html body.woocommerce-checkout .woocommerce-checkout-payment .woocommerce-info {
	border: 1px solid rgba(37, 211, 102, 0.42);
	border-left: 4px solid #25d366;
	border-radius: 8px;
	margin: 0;
	padding: 0 !important;
	background:
		linear-gradient(135deg, rgba(37, 211, 102, 0.14), transparent 52%),
		#111716;
	font-size: 15px;
	line-height: 1.55;
	box-shadow: 0 18px 48px rgba(37, 211, 102, 0.12);
}

html body.woocommerce-checkout .woocommerce-checkout-payment .woocommerce-info::before,
html body.woocommerce-checkout .woocommerce-checkout-payment .woocommerce-info:before {
	display: none !important;
	content: none !important;
}

html body.woocommerce-checkout .woocommerce-privacy-policy-text {
	border-top: 1px solid var(--dj-line);
	margin-top: 14px;
	padding-top: 14px;
	color: var(--dj-muted);
	font-size: 14px;
	line-height: 1.6;
}

html body.woocommerce-checkout .woocommerce-privacy-policy-text p {
	margin: 0;
}

html body.woocommerce-checkout .woocommerce-privacy-policy-text a {
	color: var(--dj-accent);
}

.woocommerce-checkout #order_review_heading {
	margin: 0;
}

.woocommerce-checkout-review-order {
	position: sticky;
	top: 98px;
}

.woocommerce-checkout-payment {
	margin-top: 16px;
}

.woocommerce-checkout-payment ul.payment_methods {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
}

.woocommerce-checkout-payment .payment_box,
.woocommerce-checkout-payment .woocommerce-info {
	border: 1px solid rgba(123, 185, 255, 0.24);
	border-radius: 8px;
	padding: 14px;
	background: rgba(123, 185, 255, 0.08);
	color: var(--dj-text);
}

.dj-manual-payment-callout {
	display: grid;
	gap: 8px;
	padding: 16px;
	color: var(--dj-text);
}

.dj-manual-payment-callout strong {
	color: #75f0a0;
	font-family: var(--dj-display);
	font-size: 24px;
	font-weight: 900;
	line-height: 1.05;
	text-transform: uppercase;
}

.dj-manual-payment-callout p {
	max-width: 560px;
	margin: 0;
	color: var(--dj-muted);
	line-height: 1.55;
}

.dj-whatsapp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 48px;
	margin-top: 6px;
	border-radius: 6px;
	padding: 12px 18px;
	background: #25d366;
	color: #fff !important;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.15;
	text-decoration: none;
	text-shadow: none;
	box-shadow: 0 14px 34px rgba(37, 211, 102, 0.26);
}

.dj-whatsapp-button:hover {
	color: #fff !important;
	filter: brightness(1.04);
}

.woocommerce-checkout h3,
.cart_totals h2,
.woocommerce-order h2 {
	font-family: var(--dj-display);
	font-weight: 900;
	text-transform: uppercase;
}

@media (max-width: 920px) {
	.dj-hero,
	.dj-product-page,
	.dj-auth-shell,
	.woocommerce-checkout form.checkout,
	html body.woocommerce-account .dj-page-content > .woocommerce {
		grid-template-columns: 1fr !important;
	}

	html body.woocommerce-checkout form.checkout {
		grid-template-areas:
			"customer"
			"order-title"
			"order-review";
	}

	html body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
		grid-template-columns: 1fr;
	}

	.woocommerce-MyAccount-navigation {
		position: static;
		max-width: none;
	}

	html body.woocommerce-account:not(.logged-in) .woocommerce-notices-wrapper .woocommerce-error,
	html body.woocommerce-account:not(.logged-in) .woocommerce-notices-wrapper .woocommerce-info,
	html body.woocommerce-account:not(.logged-in) .woocommerce-notices-wrapper .woocommerce-message {
		top: 74px;
		width: calc(100vw - 24px);
		padding-right: 14px;
	}

	.dj-direct-reviews {
		grid-template-columns: 1fr;
	}

	.woocommerce-checkout-review-order {
		position: static;
	}

	.woocommerce-MyAccount-navigation ul {
		display: flex;
		overflow-x: auto;
		padding: 10px;
	}

	.woocommerce-MyAccount-navigation li {
		flex: 0 0 auto;
	}

	.dj-account-actions {
		grid-template-columns: 1fr;
	}

	html body.woocommerce-account .woocommerce-Addresses {
		grid-template-columns: 1fr;
	}

	.dj-download-card,
	.dj-empty-downloads {
		grid-template-columns: 1fr;
		align-items: stretch;
	}

	.dj-empty-downloads {
		display: grid;
	}

	.dj-download-card .dj-button,
	.dj-empty-downloads .dj-button {
		width: 100%;
	}

	.dj-checkout-product {
		grid-template-columns: 64px minmax(0, 1fr);
	}

	.dj-checkout-product-price {
		grid-column: 2;
	}

	.dj-hero h1,
	.dj-store-head h1 {
		font-size: 52px;
	}
}

@media (max-width: 700px) {
	.dj-shell {
		width: min(100% - 24px, 1200px);
	}

	.dj-header-inner {
		align-items: flex-start;
		flex-direction: column;
		min-height: auto;
		padding: 12px 0;
	}

	.dj-site-nav {
		width: 100%;
		justify-content: flex-start;
		overflow-x: auto;
		padding-bottom: 2px;
	}

	.dj-site-nav a {
		min-height: 46px;
	}

	.dj-footer-inner {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.dj-footer-social {
		justify-content: flex-start;
	}

	.dj-main {
		padding-top: 18px;
	}

	.dj-hero {
		min-height: auto;
		padding-top: 16px;
	}

	.dj-hero::before {
		inset: 16px 0;
	}

	.dj-hero-copy {
		padding: 34px 18px 18px;
	}

	.dj-deck {
		padding: 0 18px 34px;
	}

	.dj-section-head,
	.dj-store-head {
		align-items: start;
		flex-direction: column;
	}

	.dj-hero h1,
	.dj-store-head h1,
	.dj-auth-intro h1 {
		font-size: 40px;
	}

	.dj-auth-intro {
		min-height: 420px;
	}

	.woocommerce ul.products {
		grid-template-columns: 1fr;
	}

	.dj-product-metrics {
		grid-template-columns: 1fr;
	}

	.dj-section-title {
		align-items: start;
		flex-direction: column;
	}

	.woocommerce #reviews #comments ol.commentlist li .comment_container {
		grid-template-columns: 40px minmax(0, 1fr);
	}

	.woocommerce #reviews #comments ol.commentlist li img.avatar {
		width: 40px;
		height: 40px;
	}

	.woocommerce-MyAccount-content,
	.dj-auth-card,
	.dj-product-description,
	.dj-product-reviews,
	.woocommerce .related.products,
	.woocommerce-cart-form,
	.cart_totals,
	.woocommerce-checkout #customer_details,
	.woocommerce-checkout-review-order {
		padding: 14px;
	}
}
