/* ============================================
 * GLOBAL TYPOGRAPHY & COLORS
 * ============================================ */
:root {
	--nt-bg: #0d0d0d;
	--nt-surface: #151514;
	--nt-surface-2: #1b1b1a;
	--nt-text: #f4f2ea;
	--nt-muted: #a09c8f;
	--nt-gold: #d6b74a;
	--nt-gold-hover: #e6cd72;
	--nt-border: rgba(255, 255, 255, 0.08);
}

/* Suppress the theme's default header/footer; custom gold header/footer below takes over. */
#site-header, #site-footer, .site-header, .site-footer {
	display: none !important;
}

body.woocommerce-page,
body.woocommerce {
	background: var(--nt-bg);
	color: var(--nt-text);
	font-family: "Barlow", sans-serif;
}

/* ============================================
 * SITE HEADER
 * ============================================ */
#nt-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	background: rgba(13, 13, 13, 0.72);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--nt-border);
	transition: background 0.3s ease, box-shadow 0.3s ease;
}
#nt-header.scrolled {
	background: rgba(13, 13, 13, 0.92);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.nt-header-inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 14px 28px;
	display: flex;
	align-items: center;
	gap: 28px;
}
.nt-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}
.nt-brand-mark {
	width: 34px;
	height: 34px;
	object-fit: cover;
	border-radius: 8px;
}
.nt-brand-text {
	font-family: "Bebas Neue", sans-serif;
	font-size: 26px;
	letter-spacing: 1.5px;
	color: var(--nt-text);
	line-height: 1;
}
.nt-brand-text small {
	display: block;
	font-size: 9px;
	letter-spacing: 4px;
	color: var(--nt-muted);
	margin-top: 2px;
}
.nt-brand-text, .nt-brand-text small {
	transition: color 0.3s ease;
}
.nt-brand:hover .nt-brand-text { color: var(--nt-gold); }

.nt-nav-list {
	display: flex;
	align-items: center;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.nt-nav-list li { margin: 0; }
.nt-nav-list a {
	display: block;
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: rgba(244, 242, 234, 0.85);
	text-decoration: none;
	border-radius: 999px;
	transition: color 0.3s ease;
}
.nt-nav-list a:hover,
.nt-nav-list .current-menu-item > a {
	color: var(--nt-gold);
}

.nt-actions {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 14px;
}
.nt-cart {
	position: relative;
	color: var(--nt-text);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition: color 0.3s ease;
}
.nt-cart:hover { color: var(--nt-gold); }
.nt-cart-count {
	position: absolute;
	top: -6px;
	right: -9px;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--nt-gold);
	color: #14120a;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
}
.nt-cta {
	padding: 11px 22px;
	border-radius: 999px;
	background: var(--nt-gold);
	color: #14120a;
	font-family: "Bebas Neue", sans-serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-decoration: none;
	transition: background-color 0.3s ease;
}
.nt-cta:hover { background: var(--nt-gold-hover); }

.nt-burger {
	display: none;
	width: 40px;
	height: 40px;
	border: 0;
	background: transparent;
	cursor: pointer;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
}
.nt-burger span {
	display: block;
	width: 22px;
	height: 2px;
	border-radius: 2px;
	background: var(--nt-text);
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.nt-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nt-burger.open span:nth-child(2) { opacity: 0; }
.nt-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
	.nt-burger { display: flex; }
	.nt-cta { display: none; }
	.nt-nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: 260px;
		background: #101010;
		border-left: 1px solid var(--nt-border);
		padding: 84px 20px 24px;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		z-index: 998;
	}
	.nt-nav.open { transform: translateX(0); }
	.nt-nav-list { flex-direction: column; align-items: flex-start; }
	.nt-nav-list a { padding: 12px 6px; font-size: 15px; }
}

/* ============================================
 * SITE FOOTER
 * ============================================ */
#nt-footer {
	background: #101010;
	border-top: 1px solid var(--nt-border);
	padding: 56px 28px 0;
}
#nt-footer .nt-brand-text { font-size: 30px; }
.nt-footer-inner {
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.4fr;
	gap: 40px;
	padding-bottom: 44px;
}
.nt-footer-tag {
	color: var(--nt-muted);
	font-size: 14px;
	line-height: 1.7;
	max-width: 260px;
	margin: 16px 0 0;
}
.nt-col-title {
	margin: 0 0 16px;
	font-family: "Bebas Neue", sans-serif;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 2px;
	color: var(--nt-text);
}
.nt-footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}
.nt-footer-links li { margin-bottom: 10px; }
.nt-footer-links a {
	font-size: 14px;
	color: var(--nt-muted);
	text-decoration: none;
	transition: color 0.3s ease;
}
.nt-footer-links a:hover { color: var(--nt-gold); }
.nt-footer-bottom {
	border-top: 1px solid var(--nt-border);
	max-width: 1240px;
	margin: 0 auto;
	padding: 18px 0;
}
.nt-footer-bottom p {
	margin: 0;
	color: var(--nt-muted);
	font-size: 13px;
	letter-spacing: 0.5px;
}
@media (max-width: 900px) {
	.nt-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
	.nt-footer-inner { grid-template-columns: 1fr; }
}

/* ============================================
 * WOOCOMMERCE DARK SHOP
 * ============================================ */
/* Fixed header offset for pages without an Elementor hero */
body:not(.elementor-page) { padding-top: 76px; }
body.woocommerce { padding-top: 76px; }
.woocommerce a { color: var(--nt-gold); }

ul.products li.product {
	position: relative;
	background: var(--nt-surface);
	border: 1px solid var(--nt-border);
	border-radius: 14px;
	padding: 0 0 18px;
	overflow: hidden;
	transition: transform 0.3s ease, border-color 0.3s ease;
}
ul.products li.product:hover {
	transform: translateY(-4px);
	border-color: rgba(214, 183, 74, 0.4);
}
ul.products li.product a img {
	border-radius: 14px 14px 0 0;
	margin: 0 0 12px;
}
ul.products li.product .woocommerce-loop-product__title {
	font-family: "Bebas Neue", sans-serif;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--nt-text);
	padding: 0 16px;
}
ul.products li.product .price {
	color: var(--nt-gold) !important;
	font-family: "Barlow", sans-serif;
	font-weight: 600;
	font-size: 16px !important;
	padding: 0 16px;
}
ul.products li.product .button {
	margin: 12px 16px 0;
	background: var(--nt-gold) !important;
	color: #14120a !important;
	border-radius: 999px;
	font-weight: 600;
	transition: background-color 0.3s ease;
}
ul.products li.product .button:hover {
	background: var(--nt-gold-hover) !important;
}
ul.products li.product .onsale {
	background: #14120a;
	color: var(--nt-gold);
	border: 1px solid var(--nt-gold);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 12px;
	line-height: 1;
	margin: 0;
	top: 14px;
	right: 14px;
    left: auto;
	min-width: 0;
}

/* Single product */
.woocommerce div.product .product_title {
	font-family: "Bebas Neue", sans-serif;
	font-size: 42px;
	font-weight: 400;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--nt-text);
	margin-bottom: 8px;
}
.woocommerce div.product p.price {
	color: var(--nt-gold) !important;
	font-family: "Barlow", sans-serif;
	font-size: 24px;
	font-weight: 600;
}
.woocommerce div.product .summary .button.single_add_to_cart_button {
	background: var(--nt-gold) !important;
	color: #14120a !important;
	border-radius: 999px;
	font-weight: 600;
}
.woocommerce div.product .single_add_to_cart_button:hover {
	background: var(--nt-gold-hover) !important;
}
.woocommerce div.product form.cart .qty,
.woocommerce form.cart .quantity input.qty {
	background: #0d0d0d;
	color: var(--nt-text);
	border: 1px solid var(--nt-border);
	border-radius: 8px;
	padding: 8px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	color: var(--nt-text);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	background: var(--nt-surface-2);
	border-bottom-color: var(--nt-gold);
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce-single-tabs,
.woocommerce div.product .product_meta,
.woocommerce div.product .woocommerce-product-details__short-description {
	color: var(--nt-muted);
}

/* Cart */
.woocommerce table.shop_table {
	background: var(--nt-surface);
	border: 1px solid var(--nt-border);
	border-radius: 14px;
	overflow: hidden;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	border-color: var(--nt-border);
}
.woocommerce table.shop_table th {
	color: var(--nt-text);
	font-family: "Bebas Neue", sans-serif;
	font-size: 16px;
	letter-spacing: 1px;
}
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	background: var(--nt-gold);
	color: #14120a;
	border-radius: 999px;
	font-weight: 600;
	transition: background-color 0.3s ease;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	background: var(--nt-gold-hover);
	color: #14120a;
}
.woocommerce .cart_totals h2,
.woocommerce .wc-proceed-to-checkout h2 {
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--nt-text);
}

/* Checkout & forms */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	background: #0d0d0d;
	color: var(--nt-text);
	border: 1px solid var(--nt-border);
	border-radius: 8px;
	padding: 11px 14px;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
	border-color: var(--nt-gold);
	outline: none;
}
.woocommerce form .form-row label {
	color: var(--nt-text);
	font-weight: 500;
}
#add_payment_method #payment,
.woocommerce-checkout #payment,
.woocommerce-checkout #payment div.payment_box,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
	background: var(--nt-surface);
	border: 1px solid var(--nt-border);
	border-radius: 12px;
	color: var(--nt-text);
}

/* My account */
.woocommerce-account .woocommerce-MyAccount-navigation ul {
	background: var(--nt-surface);
	border: 1px solid var(--nt-border);
	border-radius: 12px;
	padding: 8px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
	color: var(--nt-text);
	display: block;
	padding: 10px 14px;
	border-radius: 8px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
	background: var(--nt-gold);
	color: #14120a;
}

/* Notification / stock */
.woocommerce .stock,
.woocommerce div.product .stock {
	color: var(--nt-muted);
}

/* Custom badges on product cards */
.custom-badges {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 10;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.custom-badge {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 999px;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.custom-badge.low-stock   { background: #d6b74a; color: #14120a; }
.custom-badge.out-of-stock{ background: #dc3545; }
.custom-badge.sale        { background: #007bff; }
.custom-badge.new         { background: #28a745; }

/* Low stock notice on single product */
.low-stock-notice {
	margin: 12px 0 0;
	color: #d6b74a;
	font-weight: 600;
}

/* Back-in-stock form */
#back-in-stock-form {
	margin-top: 20px;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	background: #151514;
}

#back-in-stock-form .bis-heading {
	margin: 0 0 6px;
	font-family: "Bebas Neue", sans-serif;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #f4f2ea;
}

#back-in-stock-form .bis-intro {
	margin: 0 0 14px;
	font-size: 14px;
	line-height: 1.6;
	color: #a09c8f;
}

#back-in-stock-form input[type="text"],
#back-in-stock-form input[type="email"],
#back-in-stock-form input[type="number"] {
	width: 100%;
	margin-bottom: 10px;
	padding: 11px 14px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 8px;
	background: #0d0d0d;
	color: #f4f2ea;
	font-family: inherit;
	font-size: 14px;
	outline: none;
}

#back-in-stock-form input:focus {
	border-color: #d6b74a;
}

#back-in-stock-form .bis-submit {
	width: 100%;
	padding: 13px;
	border: 0;
	border-radius: 999px;
	background: #d6b74a;
	color: #14120a;
	font-family: "Bebas Neue", sans-serif;
	font-size: 17px;
	letter-spacing: 2px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

#back-in-stock-form .bis-submit:hover {
	background: #e6cd72;
}

#bis-message {
	margin: 12px 0 0;
	font-weight: 600;
	min-height: 1em;
}

#bis-message.ok  { color: #7cc86f; }
#bis-message.err { color: #e06c6c; }