/*
 Theme Name:   Blocksy Child
 Description:  MasterPC — Gaming & IT Store. Dark cyberpunk design with neon accents.
 Author:       MasterPC
 Template:     blocksy
 Version:      2.1.0
*/

/* ============================================
   1. CSS VARIABLES — DARK GAMING PALETTE
   ============================================ */
	/* ============================================
	   1. DARK THEME (CYBERPUNK)
	   ============================================ */
	:root[data-theme="dark"] {
		--bg-dark: #0b0c10;
		--bg-card: #13141b;
		--bg-elevated: #1a1b25;
		--bg-hover: #1f2130;
		--neon-cyan: #00e5ff;
		--neon-cyan-dim: rgba(0, 229, 255, 0.15);
		--neon-cyan-glow: 0 0 15px rgba(0, 229, 255, 0.3);
		--neon-purple: #a855f7;
		--neon-purple-dim: rgba(168, 85, 247, 0.15);
		--neon-green: #22c55e;
		--neon-orange: #f59e0b;
		--text-white: #f0f0f5;
		--text-light: #b0b3c0;
		--text-muted: #5c5f73;
		--border: #252636;
		--border-hover: #353650;
		--theme-palette-color-1: #f0f0f5 !important;
		--theme-palette-color-2: #b0b3c0 !important;
		--theme-palette-color-3: #00e5ff !important;
		--theme-palette-color-4: #a855f7 !important;
		--theme-palette-color-5: #13141b !important;
		--theme-palette-color-6: #0b0c10 !important;
		--theme-palette-color-7: #252636 !important;
		--theme-palette-color-8: #1a1b25 !important;
	}

	/* ============================================
	   1. LIGHT THEME (AORUS ORANGE)
	   ============================================ */
	:root[data-theme="aorus"] {
		--bg-dark: #f5f6f8;
		--bg-card: #ffffff;
		--bg-elevated: #f1f3f5;
		--bg-hover: #e5e7eb;
		--neon-cyan: #ff6b00; /* Orange */
		--neon-cyan-dim: rgba(255, 107, 0, 0.15);
		--neon-cyan-glow: 0 4px 15px rgba(255, 107, 0, 0.25);
		--neon-purple: #1f2937;
		--neon-purple-dim: rgba(31, 41, 55, 0.1);
		--neon-green: #10b981;
		--neon-orange: #ff6b00;
		--text-white: #111827;
		--text-light: #374151;
		--text-muted: #6b7280;
		--border: #e5e7eb;
		--border-hover: #d1d5db;
		--theme-palette-color-1: #111827 !important;
		--theme-palette-color-2: #374151 !important;
		--theme-palette-color-3: #ff6b00 !important;
		--theme-palette-color-4: #1f2937 !important;
		--theme-palette-color-5: #ffffff !important;
		--theme-palette-color-6: #f5f6f8 !important;
		--theme-palette-color-7: #e5e7eb !important;
		--theme-palette-color-8: #f1f3f5 !important;
	}

	/* ============================================
	   1. TECH THEME (PLAYSTATION BLUE)
	   ============================================ */
	:root[data-theme="tech"] {
		--bg-dark: #ffffff;
		--bg-card: #f8fafc;
		--bg-elevated: #f1f5f9;
		--bg-hover: #e2e8f0;
		--neon-cyan: #0070d1; /* PS Blue */
		--neon-cyan-dim: rgba(0, 112, 209, 0.15);
		--neon-cyan-glow: 0 4px 15px rgba(0, 112, 209, 0.3);
		--neon-purple: #0f172a;
		--neon-purple-dim: rgba(15, 23, 42, 0.1);
		--neon-green: #10b981;
		--neon-orange: #f59e0b;
		--text-white: #0f172a;
		--text-light: #334155;
		--text-muted: #64748b;
		--border: #e2e8f0;
		--border-hover: #cbd5e1;
		--theme-palette-color-1: #0f172a !important;
		--theme-palette-color-2: #334155 !important;
		--theme-palette-color-3: #0070d1 !important;
		--theme-palette-color-4: #0f172a !important;
		--theme-palette-color-5: #f8fafc !important;
		--theme-palette-color-6: #ffffff !important;
		--theme-palette-color-7: #e2e8f0 !important;
		--theme-palette-color-8: #f1f5f9 !important;
	}

	/* Shared Variables */
	:root {
		--radius-sm: 4px;
		--radius-md: 8px;
		--radius-lg: 12px;
		--font-main: 'Outfit', system-ui, -apple-system, sans-serif;
		--font-heading: 'Rajdhani', 'Outfit', system-ui, sans-serif;
	}


/* ============================================
   2. GLOBAL RESET & BASE
   ============================================ */
body,
body.woocommerce,
body.page,
body.archive,
body.single-product {
	background-color: var(--bg-dark) !important;
	color: var(--text-light) !important;
	font-family: var(--font-main) !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.site-main,
.content-area,
.ct-container,
[data-content],
.entry-content,
main {
	background-color: transparent !important;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading) !important;
	font-weight: 700 !important;
	color: var(--text-white) !important;
	letter-spacing: 0.02em;
}

a {
	color: var(--text-light);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--neon-cyan);
}

::selection {
	background: var(--neon-cyan-dim);
	color: var(--neon-cyan);
}


/* ============================================
   3. HEADER
   ============================================ */
[data-row="top"] {
	background-color: #06060a !important;
	color: var(--text-muted) !important;
	font-size: 0.82rem !important;
	padding: 3px 0 !important;
	border-bottom: 1px solid var(--border) !important;
}

[data-row="top"] a {
	color: var(--text-muted) !important;
}

[data-row="top"] a:hover {
	color: var(--neon-cyan) !important;
}

[data-row="middle"] {
	background-color: var(--bg-card) !important;
	border-bottom: 2px solid var(--neon-cyan) !important;
	padding: 10px 0 !important;
	box-shadow: 0 2px 20px rgba(0, 229, 255, 0.05) !important;
}

/* Logo */
.site-branding,
.site-branding a,
.site-title a {
	color: var(--text-white) !important;
	font-family: var(--font-heading) !important;
	font-weight: 800 !important;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Header search (Blocksy Pro compatible) */
.ct-search-form {
	border-radius: var(--radius-sm) !important;
	background: var(--bg-dark) !important;
	transition: all 0.2s ease;
	border: 1px solid var(--border) !important;
}

.ct-search-form:focus-within {
	border-color: var(--neon-cyan) !important;
	box-shadow: 0 0 10px var(--neon-cyan-dim) !important;
}

.ct-search-form input[type="search"],
.ct-search-form .ct-search-input {
	color: var(--text-white) !important;
}

.ct-search-form input::placeholder {
	color: var(--text-muted) !important;
}

.ct-search-form button[type="submit"] {
	background: var(--neon-cyan) !important;
	color: #ffffff !important;
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0 !important;
	transition: all 0.2s ease;
}

.ct-search-form button[type="submit"]:hover {
	background: #ff8533 !important;
	box-shadow: var(--neon-cyan-glow) !important;
}

/* Cart */
.ct-cart-count,
[data-id="cart"] .ct-count {
	background: var(--neon-cyan) !important;
	color: #ffffff !important;
	font-weight: 800 !important;
	font-size: 0.7rem !important;
}

/* Navigation */
[data-row="bottom"] {
	background: var(--bg-card) !important;
	border-bottom: 1px solid var(--border) !important;
}

.ct-header-account,
[data-row] a,
.ct-menu > li > a {
	color: var(--text-light) !important;
}

.ct-menu > li > a:hover,
.ct-menu > li.current-menu-item > a {
	color: var(--neon-cyan) !important;
}


/* ============================================
   4. MEGA-MENU CATEGORIES (Sidebar)
   ============================================ */
.mpc-categories-wrapper {
	position: relative;
	width: 100%;
	flex-shrink: 0;
}

.mpc-categories-toggle {
	display: flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, var(--neon-cyan), #d95b00) !important;
	color: #ffffff !important;
	padding: 12px 18px;
	border-radius: var(--radius-md) var(--radius-md) 0 0;
	font-weight: 800;
	font-size: 0.95rem;
	font-family: var(--font-heading) !important;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	cursor: pointer;
	border: none;
	width: 100%;
	text-align: left;
}

.mpc-categories-toggle svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.mpc-categories-list {
	list-style: none;
	margin: 0;
	padding: 0;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-top: none;
	border-radius: 0 0 var(--radius-md) var(--radius-md);
	overflow: visible;
}

.mpc-categories-list > li {
	position: relative;
}

.mpc-categories-list > li > a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 18px;
	color: var(--text-light) !important;
	font-size: 0.92rem;
	font-weight: 500;
	border-bottom: 1px solid var(--border);
	transition: all 0.15s ease;
}

.mpc-categories-list > li > a .cat-icon {
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0;
}

.mpc-categories-list > li > a .cat-arrow {
	margin-left: auto;
	font-size: 0.65rem;
	color: var(--text-muted);
	transition: all 0.15s ease;
}

.mpc-categories-list > li:last-child > a {
	border-bottom: none;
}

.mpc-categories-list > li:hover > a {
	background: var(--bg-hover);
	color: var(--neon-cyan) !important;
	padding-left: 22px;
}

.mpc-categories-list > li:hover > a .cat-arrow {
	color: var(--neon-cyan);
	transform: translateX(2px);
}

/* Subcategories dropdown */
.mpc-subcategories {
	display: none;
	position: absolute;
	left: 100%;
	top: 0;
	min-width: 250px;
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
	padding: 6px 0;
	z-index: 1000;
	list-style: none;
	margin: 0;
}

.mpc-categories-list > li:hover > .mpc-subcategories {
	display: block;
}

.mpc-subcategories li {
	position: relative;
}

.mpc-subcategories li a {
	display: flex;
	align-items: center;
	padding: 9px 18px;
	color: var(--text-light) !important;
	font-size: 0.88rem;
	transition: all 0.15s ease;
}

.mpc-subcategories li a:hover {
	background: var(--bg-hover);
	color: var(--neon-cyan) !important;
	padding-left: 22px;
}

/* Sub-subcategories */
.mpc-subcategories .mpc-subcategories {
	left: 100%;
	top: 0;
}

.mpc-subcategories li:hover > .mpc-subcategories {
	display: block;
}


/* ============================================
   5. HOMEPAGE LAYOUT
   ============================================ */
.mpc-homepage-layout {
	display: flex;
	gap: 24px;
	padding: 20px 0;
	max-width: 1320px;
	margin: 0 auto;
}

.mpc-homepage-sidebar {
	width: 280px;
	flex-shrink: 0;
}

.mpc-homepage-content {
	flex: 1;
	min-width: 0;
	transition: opacity 0.3s ease;
}

.mpc-homepage-content.mpc-is-loading {
	opacity: 0.4;
	pointer-events: none;
}

@media (max-width: 991px) {
	.mpc-homepage-layout {
		flex-direction: column;
	}
	.mpc-homepage-sidebar {
		width: 100%;
	}
}


/* ============================================
   6. PROMO CAROUSEL
   ============================================ */
.mpc-promo-carousel {
	position: relative;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	margin-bottom: 24px;
	overflow: hidden;
	min-height: 220px;
	display: flex;
	flex-direction: column;
	background: var(--bg-card);
}

.mpc-carousel-slides {
	position: relative;
	flex: 1;
	min-height: 200px;
}

.mpc-carousel-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 45px 35px;
	color: var(--text-white);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1;
}

.mpc-carousel-slide.active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

.mpc-slide-glow {
	position: absolute;
	top: -50%;
	right: -10%;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.mpc-slide-content {
	position: relative;
	z-index: 5;
	max-width: 600px;
}

.mpc-slide-content h2 {
	color: var(--text-white) !important;
	font-size: 2.2rem !important;
	margin: 0 0 10px 0 !important;
	font-weight: 800 !important;
	text-transform: uppercase;
	text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.mpc-slide-content p {
	color: var(--text-light) !important;
	font-size: 1.05rem;
	margin: 0 0 20px 0 !important;
}

.mpc-slide-content .mpc-btn {
	display: inline-block;
	background: var(--neon-cyan) !important;
	color: var(--bg-dark) !important;
	padding: 10px 28px;
	border-radius: var(--radius-sm);
	font-weight: 800;
	font-family: var(--font-heading) !important;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: all 0.25s ease;
	border: none;
	cursor: pointer;
	width: fit-content;
}

.mpc-slide-content .mpc-btn:hover {
	box-shadow: var(--neon-cyan-glow), 0 4px 20px rgba(0, 229, 255, 0.2);
	transform: translateY(-2px);
}

/* Carousel Navigation */
.mpc-carousel-nav {
	position: absolute;
	bottom: 15px;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 10px;
	z-index: 10;
}

.mpc-carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: all 0.3s ease;
}

.mpc-carousel-dot:hover {
	background: rgba(255, 255, 255, 0.5);
}

.mpc-carousel-dot.active {
	background: var(--neon-cyan);
	box-shadow: 0 0 8px var(--neon-cyan-dim);
	transform: scale(1.2);
}


/* ============================================
   7. SECTION TITLES
   ============================================ */
.mpc-section-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--border);
}

.mpc-section-title h2 {
	font-size: 1.2rem !important;
	margin: 0 !important;
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--text-white) !important;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.mpc-section-title h2::before {
	content: '';
	width: 4px;
	height: 20px;
	background: var(--neon-cyan);
	border-radius: 2px;
	display: inline-block;
	flex-shrink: 0;
	box-shadow: 0 0 8px var(--neon-cyan-dim);
}

.mpc-section-title a {
	color: var(--neon-cyan) !important;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.mpc-section-title a:hover {
	text-shadow: 0 0 10px var(--neon-cyan-dim);
}


/* ============================================
   8. PRODUCT CARDS
   ============================================ */
.woocommerce ul.products li.product,
ul.products li.product,
.ct-woo-card-inner {
	background: var(--bg-card) !important;
	border: 1px solid var(--border) !important;
	border-radius: var(--radius-md) !important;
	padding: 15px !important;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
	position: relative;
	box-shadow: none !important;
}

.woocommerce ul.products li.product:hover,
ul.products li.product:hover {
	border-color: var(--neon-cyan) !important;
	box-shadow: 0 0 20px var(--neon-cyan-dim), var(--neon-cyan-glow) !important;
	transform: translateY(-4px);
}

/* Product Image */
ul.products li.product img,
.ct-woo-card-inner img {
	border-radius: var(--radius-sm) !important;
	background: var(--bg-elevated);
	transition: transform 0.3s ease;
}

ul.products li.product:hover img {
	transform: scale(1.03);
}

/* Product Title */
.woocommerce-loop-product__title,
ul.products li.product h2,
ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--font-main) !important;
	font-size: 0.9rem !important;
	font-weight: 500 !important;
	color: var(--text-white) !important;
	line-height: 1.4 !important;
	margin-top: 10px !important;
	margin-bottom: 6px !important;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: 2.6em;
}

/* Category label under title */
.ct-woo-card-inner .ct-woo-card-extra,
ul.products li.product .ct-woo-card-extra {
	color: var(--text-muted) !important;
	font-size: 0.78rem !important;
}

/* Price */
.woocommerce ul.products li.product .price,
ul.products li.product .price,
.price .amount {
	color: var(--neon-cyan) !important;
	font-family: var(--font-heading) !important;
	font-weight: 700 !important;
	font-size: 1.2rem !important;
}

.price del,
.price del .amount {
	color: var(--text-muted) !important;
	font-size: 0.85rem !important;
	font-weight: 400 !important;
}

.price ins {
	text-decoration: none !important;
	color: var(--neon-cyan) !important;
}

/* Sale Badge */
.onsale {
	background: var(--neon-cyan) !important;
	color: #ffffff !important;
	font-weight: 700 !important;
	font-size: 0.75rem !important;
	border-radius: var(--radius-sm) !important;
	padding: 4px 10px !important;
	text-transform: uppercase;
	position: absolute !important;
	top: 10px !important;
	left: 10px !important;
	z-index: 5;
	box-shadow: 0 2px 8px var(--neon-cyan-dim);
	letter-spacing: 0.5px;
}

/* Add to Cart Button */
.woocommerce ul.products li.product .button,
ul.products li.product .button,
ul.products li.product a.add_to_cart_button {
	background: transparent !important;
	color: var(--neon-cyan) !important;
	border: 1px solid var(--neon-cyan) !important;
	border-radius: var(--radius-sm) !important;
	font-weight: 600 !important;
	font-size: 0.85rem !important;
	padding: 8px 14px !important;
	width: 100% !important;
	text-align: center !important;
	display: block !important;
	margin-top: 10px !important;
	transition: all 0.25s ease !important;
	text-transform: uppercase !important;
	letter-spacing: 0.03em !important;
	font-family: var(--font-heading) !important;
}

.woocommerce ul.products li.product .button:hover,
ul.products li.product .button:hover,
ul.products li.product a.add_to_cart_button:hover {
	background: var(--neon-cyan) !important;
	color: var(--bg-dark) !important;
	box-shadow: var(--neon-cyan-glow) !important;
}


/* ============================================
   9. GENERAL BUTTONS
   ============================================ */
.woocommerce .button,
button.button,
input.button,
.checkout-button,
.single_add_to_cart_button,
button.button.alt,
input.button.alt {
	font-family: var(--font-heading) !important;
	font-weight: 700 !important;
	border-radius: var(--radius-sm) !important;
	background: var(--neon-cyan) !important;
	color: var(--bg-dark) !important;
	border: none !important;
	transition: all 0.25s ease !important;
	text-transform: uppercase !important;
	letter-spacing: 0.03em !important;
}

.woocommerce .button:hover,
button.button:hover,
.checkout-button:hover,
.single_add_to_cart_button:hover,
button.button.alt:hover {
	box-shadow: var(--neon-cyan-glow) !important;
	transform: translateY(-1px);
}


/* ============================================
   10. SIDEBAR & FILTERS
   ============================================ */
.ct-sidebar,
#secondary {
	background: var(--bg-card) !important;
	border: 1px solid var(--border) !important;
	border-radius: var(--radius-md) !important;
	padding: 20px !important;
}

.widget-title {
	font-size: 0.95rem !important;
	font-weight: 700 !important;
	color: var(--text-white) !important;
	border-bottom: 2px solid var(--neon-cyan) !important;
	padding-bottom: 8px !important;
	margin-bottom: 15px !important;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.widget_price_filter .ui-slider {
	background: var(--border) !important;
}

.widget_price_filter .ui-slider .ui-slider-range {
	background: var(--neon-cyan) !important;
	box-shadow: 0 0 6px var(--neon-cyan-dim);
}

.widget_price_filter .ui-slider .ui-slider-handle {
	background: var(--bg-dark) !important;
	border: 2px solid var(--neon-cyan) !important;
	border-radius: 50% !important;
}


/* ============================================
   11. PAGINATION
   ============================================ */
.woocommerce-pagination ul.page-numbers li a,
.woocommerce-pagination ul.page-numbers li span {
	background: var(--bg-card) !important;
	border: 1px solid var(--border) !important;
	color: var(--text-light) !important;
	border-radius: var(--radius-sm) !important;
	padding: 8px 14px !important;
}

.woocommerce-pagination ul.page-numbers li span.current,
.woocommerce-pagination ul.page-numbers li a:hover {
	background: var(--neon-cyan) !important;
	border-color: var(--neon-cyan) !important;
	color: var(--bg-dark) !important;
	box-shadow: 0 0 10px var(--neon-cyan-dim);
}


/* ============================================
   12. MINI CART
   ============================================ */
.ct-cart-content,
.woocommerce-mini-cart {
	background: var(--bg-card) !important;
	border: 1px solid var(--border) !important;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
	border-radius: var(--radius-md) !important;
}

.ct-cart-content,
.ct-cart-content a,
.ct-cart-content strong,
.ct-cart-content .product-name {
	color: var(--text-white) !important;
}

.ct-cart-content .quantity, 
.ct-cart-content .quantity span,
.ct-cart-item-remove svg {
	color: var(--text-muted) !important;
	fill: var(--text-muted) !important;
}

.ct-cart-content .amount,
.ct-cart-content .total .amount {
	color: var(--neon-cyan) !important;
	font-weight: 800 !important;
}

.ct-cart-content .buttons .button,
.ct-cart-content .buttons .checkout {
	background: var(--neon-cyan) !important;
	color: #ffffff !important;
	border: none !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	border-radius: var(--radius-sm) !important;
	margin-top: 10px !important;
	transition: all 0.2s ease !important;
}

.ct-cart-content .buttons .button:hover,
.ct-cart-content .buttons .checkout:hover {
	filter: brightness(1.15) !important;
	box-shadow: var(--neon-cyan-glow) !important;
}


/* ============================================
   13. SINGLE PRODUCT PAGE
   ============================================ */
.single-product .product .summary .price {
	font-size: 1.8rem !important;
	color: var(--neon-cyan) !important;
}

.single-product .quantity input {
	border: 1px solid var(--border) !important;
	border-radius: var(--radius-sm) !important;
	background: var(--bg-dark) !important;
	color: var(--text-white) !important;
}

.woocommerce-tabs .tabs li a {
	color: var(--text-muted) !important;
}

.woocommerce-tabs .tabs li.active a {
	color: var(--neon-cyan) !important;
	border-bottom-color: var(--neon-cyan) !important;
}

.woocommerce-tabs .panel {
	background: var(--bg-card) !important;
	color: var(--text-light) !important;
}

/* Product Attributes Table */
.woocommerce table.shop_attributes {
	border-top: 1px solid var(--border) !important;
	border-bottom: 1px solid var(--border) !important;
	background: transparent !important;
}

.woocommerce table.shop_attributes th,
.woocommerce table.shop_attributes td,
.woocommerce table.shop_attributes tr:nth-child(even) th,
.woocommerce table.shop_attributes tr:nth-child(even) td {
	background: transparent !important;
	border-bottom: 1px solid var(--border) !important;
	color: var(--text-white) !important;
	padding: 14px 20px !important;
	font-size: 0.95rem;
}

.woocommerce table.shop_attributes th {
	color: var(--text-muted) !important;
	font-weight: 600 !important;
	width: 35% !important;
	border-right: 1px solid var(--border) !important;
}

.woocommerce table.shop_attributes tr:nth-child(even) {
	background: rgba(255, 255, 255, 0.02) !important;
}

/* Adjust Product Images Aspect Ratio and Size */
.woocommerce div.product div.images img,
.woocommerce div.product div.images .ct-image-container,
.woocommerce ul.products li.product .ct-image-container,
.woocommerce ul.products li.product img,
[data-products] figure.ct-image-container,
.woocommerce [style*="aspect-ratio"],
.woocommerce-product-gallery [style*="aspect-ratio"],
.woocommerce-product-gallery__image {
	aspect-ratio: 1 / 1 !important;
	object-fit: contain !important;
	width: 100% !important;
	background: var(--bg-elevated) !important;
}

@media (min-width: 992px) {
	.woocommerce #content div.product div.images,
	.woocommerce div.product div.images,
	.woocommerce-page #content div.product div.images,
	.woocommerce-page div.product div.images {
		width: 35% !important;
	}

	.woocommerce #content div.product div.summary,
	.woocommerce div.product div.summary,
	.woocommerce-page #content div.product div.summary,
	.woocommerce-page div.product div.summary {
		width: 60% !important;
	}
}


/* ============================================
   14. FOOTER
   ============================================ */
footer[data-footer],
.ct-footer {
	background-color: #06060a !important;
	color: var(--text-muted) !important;
	border-top: 1px solid var(--border) !important;
}

footer[data-footer] a,
.ct-footer a {
	color: var(--text-light) !important;
}

footer[data-footer] a:hover,
.ct-footer a:hover {
	color: var(--neon-cyan) !important;
}


/* ============================================
   15. WOOCOMMERCE SHOP OVERRIDES
   ============================================ */
.woocommerce-breadcrumb {
	display: none !important;
}

.woocommerce-products-header__title {
	display: none !important;
}

.site-main,
.content-area {
	padding-top: 0 !important;
}

/* Product grid */
.woocommerce ul.products[class*="columns-"] {
	display: grid !important;
	gap: 16px !important;
}

.woocommerce ul.products.columns-4 {
	grid-template-columns: repeat(4, 1fr) !important;
}

.woocommerce ul.products.columns-3 {
	grid-template-columns: repeat(3, 1fr) !important;
}

.woocommerce ul.products li.product {
	margin: 0 !important;
	width: 100% !important;
	float: none !important;
}

@media (max-width: 768px) {
	.woocommerce ul.products[class*="columns-"] {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 480px) {
	.woocommerce ul.products[class*="columns-"] {
		grid-template-columns: 1fr !important;
	}
}


/* ============================================
   16. UTILITIES
   ============================================ */
.mpc-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Badge: NEW */
.mpc-badge-new {
	background: var(--neon-green);
	color: var(--bg-dark);
	font-size: 0.7rem;
	font-weight: 800;
	padding: 2px 8px;
	border-radius: 3px;
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 5;
	text-transform: uppercase;
	font-family: var(--font-heading);
}

/* Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
	background: var(--border);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--text-muted);
}


/* ============================================
   17. BLOCKSY SPECIFIC OVERRIDES
   ============================================ */
[data-products] .product {
	background: var(--bg-card) !important;
}

/* WooCommerce ordering dropdown */
.woocommerce-ordering select {
	background: var(--bg-card) !important;
	border: 1px solid var(--border) !important;
	color: var(--text-light) !important;
	border-radius: var(--radius-sm) !important;
}

/* Forms and inputs */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
textarea,
select {
	background: var(--bg-dark) !important;
	border: 1px solid var(--border) !important;
	color: var(--text-white) !important;
	border-radius: var(--radius-sm) !important;
}

input:focus,
textarea:focus,
select:focus {
	border-color: var(--neon-cyan) !important;
	box-shadow: 0 0 8px var(--neon-cyan-dim) !important;
	outline: none !important;
}

/* WooCommerce notices */
.woocommerce-message {
	background: var(--bg-elevated) !important;
	border-top-color: var(--neon-cyan) !important;
	color: var(--text-light) !important;
}

.woocommerce-info {
	background: var(--bg-elevated) !important;
	border-top-color: var(--neon-purple) !important;
	color: var(--text-light) !important;
}

.woocommerce-error {
	background: var(--bg-elevated) !important;
	border-top-color: #ef4444 !important;
	color: var(--text-light) !important;
}

/* ============================================
   14. WOOCOMMERCE SIDEBAR LAYOUT
   ============================================ */

/* Make the sidebar container transparent so children can be separate cards */
#sidebar .ct-sidebar {
	background: transparent !important;
	box-shadow: none !important;
	border: none !important;
	padding: 0 !important;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Categories menu — its own card */
#sidebar .mpc-categories-wrapper {
	background: var(--bg-card) !important;
	border: 1px solid var(--border) !important;
	border-radius: var(--radius-md) !important;
	padding: 0 !important;
	overflow: visible;
}

/* Filters card — groups all filter widgets into one card */
.mpc-filters-card {
	background: var(--bg-card) !important;
	border: 1px solid var(--border) !important;
	border-radius: var(--radius-md) !important;
	padding: 20px !important;
}

.mpc-filters-title {
	font-size: 1.1rem !important;
	font-weight: 800 !important;
	text-transform: uppercase !important;
	color: var(--text-white) !important;
	margin: 0 0 15px 0 !important;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--border);
	letter-spacing: 0.5px;
}

/* Individual widgets inside the filters card — no separate cards */
.mpc-filters-card .ct-widget {
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin-bottom: 20px !important;
	border-radius: 0 !important;
}

.mpc-filters-card .ct-widget:last-child {
	margin-bottom: 0 !important;
}

/* Widget titles inside filters card */
.mpc-filters-card .ct-widget .widget-title,
.mpc-filters-card .ct-widget h3,
.mpc-filters-card .ct-widget h4 {
	font-size: 0.95rem !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	color: var(--text-white) !important;
	margin-bottom: 10px !important;
	letter-spacing: 0.3px;
}

/* Separator line between filter sections */
.mpc-filters-card .ct-widget + .ct-widget {
	padding-top: 15px !important;
	border-top: 1px solid var(--border) !important;
}

/* ============================================
   15. WOOCOMMERCE BLOCK FILTERS (Inside Sidebar)
   ============================================ */

/* Space between categories menu and filters */
.wp-block-woocommerce-product-filters {
	margin-top: 25px !important;
}

/* Main 'Filters' Heading */
.wp-block-woocommerce-product-filters > h2 {
	font-size: 1.2rem !important;
	font-weight: 800 !important;
	text-transform: uppercase !important;
	margin-bottom: 20px !important;
	color: var(--text-white) !important;
	border-bottom: 1px solid var(--border);
	padding-bottom: 10px;
}

/* Subheadings (Brand, Category, Status, Price) */
.wp-block-woocommerce-product-filters h3 {
	font-size: 0.95rem !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	color: var(--text-white) !important;
	margin-top: 20px !important;
	margin-bottom: 12px !important;
	letter-spacing: 0.5px;
}

/* Checkbox list container */
.wc-block-product-filter-checkbox-list {
	margin: 0 !important;
	padding: 0 !important;
}

.wc-block-product-filter-checkbox-list li {
	margin-bottom: 8px !important;
}

/* Checkbox styling */
.wc-block-components-checkbox .wc-block-components-checkbox__input[type="checkbox"] {
	border: 1px solid var(--border) !important;
	border-radius: 4px !important;
	width: 18px !important;
	height: 18px !important;
	background: var(--bg-elevated) !important;
	cursor: pointer;
	box-shadow: none !important;
	transition: all 0.2s ease;
}

.wc-block-components-checkbox .wc-block-components-checkbox__input[type="checkbox"]:checked {
	background-color: var(--neon-cyan) !important;
	border-color: var(--neon-cyan) !important;
}

.wc-block-components-checkbox .wc-block-components-checkbox__input[type="checkbox"]:focus {
	outline: none !important;
	box-shadow: 0 0 5px var(--neon-cyan-dim) !important;
}

/* Filter labels */
.wc-block-components-checkbox .wc-block-components-checkbox__label {
	color: var(--text-light) !important;
	font-size: 0.9rem !important;
	padding-left: 8px !important;
	cursor: pointer;
	transition: color 0.2s ease;
}

.wc-block-components-checkbox:hover .wc-block-components-checkbox__label {
	color: var(--neon-cyan) !important;
}

/* Item counts */
.wc-block-components-checkbox .wc-block-components-checkbox__label-count {
	color: var(--text-muted) !important;
	font-size: 0.8rem !important;
}

/* Price Slider */
.wc-block-product-filter-price-slider {
	margin-top: 10px !important;
}

.wc-block-product-filter-price-slider .wc-block-components-price-slider__range-input-progress {
	--range-color: var(--neon-cyan) !important;
	background: var(--neon-cyan) !important;
}

/* Clear Filters Button */
.wc-block-product-filter-clear-button .wp-block-button__link {
	background: transparent !important;
	color: var(--neon-cyan) !important;
	border: 1px solid var(--neon-cyan) !important;
	border-radius: var(--radius-sm) !important;
	font-weight: 600 !important;
	font-size: 0.85rem !important;
	text-transform: uppercase !important;
	transition: all 0.25s ease !important;
}

.wc-block-product-filter-clear-button .wp-block-button__link:hover {
	background: var(--neon-cyan) !important;
	color: #ffffff !important;
	box-shadow: var(--neon-cyan-glow) !important;
}

/* Removable filter chips */
.wc-block-product-filter-removable-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 10px;
}

.wc-block-product-filter-removable-chips .wc-block-components-chip {
	background: var(--bg-elevated) !important;
	border: 1px solid var(--border) !important;
	border-radius: var(--radius-sm) !important;
	color: var(--text-light) !important;
	font-size: 0.8rem !important;
	transition: all 0.2s ease;
}

.wc-block-product-filter-removable-chips .wc-block-components-chip:hover {
	border-color: var(--neon-cyan) !important;
	color: var(--neon-cyan) !important;
}

/* ============================================
   16. CLASSIC WOOCOMMERCE FILTER WIDGETS
   ============================================ */

/* --- Layered Nav (Attribute Filters) --- */
.woocommerce-widget-layered-nav-list {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.woocommerce-widget-layered-nav-list li {
	padding: 6px 0 !important;
	margin: 0 !important;
	border-bottom: none !important;
	display: flex !important;
	align-items: center !important;
	gap: 0 !important;
}

/* Fake checkbox before each item */
.woocommerce-widget-layered-nav-list li a {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	color: var(--text-light) !important;
	text-decoration: none !important;
	font-size: 0.9rem !important;
	transition: color 0.2s ease;
	flex: 1;
}

.woocommerce-widget-layered-nav-list li a::before {
	content: '' !important;
	display: inline-block !important;
	width: 16px !important;
	height: 16px !important;
	min-width: 16px !important;
	border: 2px solid var(--border) !important;
	border-radius: 3px !important;
	background: var(--bg-elevated) !important;
	transition: all 0.2s ease !important;
	flex-shrink: 0;
}

/* Hover state */
.woocommerce-widget-layered-nav-list li a:hover {
	color: var(--neon-cyan) !important;
}

.woocommerce-widget-layered-nav-list li a:hover::before {
	border-color: var(--neon-cyan) !important;
}

/* Active/chosen state (selected filter) */
.woocommerce-widget-layered-nav-list li.chosen a::before {
	background: var(--neon-cyan) !important;
	border-color: var(--neon-cyan) !important;
	/* Checkmark via CSS */
	content: '✓' !important;
	color: #fff !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	text-align: center;
	line-height: 16px !important;
}

.woocommerce-widget-layered-nav-list li.chosen a {
	color: var(--neon-cyan) !important;
	font-weight: 600 !important;
}

/* Item count (number in brackets) */
.woocommerce-widget-layered-nav-list li .count {
	color: var(--text-muted) !important;
	font-size: 0.8rem !important;
	margin-left: auto !important;
}

/* --- Price Filter Slider --- */
.widget_price_filter .price_slider_wrapper {
	padding: 5px 0 !important;
}

.widget_price_filter .ui-slider {
	background: var(--bg-elevated) !important;
	border: none !important;
	height: 6px !important;
	border-radius: 3px !important;
}

.widget_price_filter .ui-slider .ui-slider-range {
	background: var(--neon-cyan) !important;
}

.widget_price_filter .ui-slider .ui-slider-handle {
	background: var(--neon-cyan) !important;
	border: 2px solid #fff !important;
	border-radius: 50% !important;
	width: 16px !important;
	height: 16px !important;
	top: -5px !important;
	cursor: pointer;
	box-shadow: 0 0 6px var(--neon-cyan-dim) !important;
}

.widget_price_filter .price_label {
	color: var(--text-light) !important;
	font-size: 0.85rem !important;
	margin-top: 10px !important;
}

.widget_price_filter .button {
	background: var(--neon-cyan) !important;
	color: #fff !important;
	border: none !important;
	border-radius: var(--radius-sm) !important;
	font-weight: 600 !important;
	font-size: 0.8rem !important;
	text-transform: uppercase !important;
	padding: 6px 14px !important;
	cursor: pointer;
	transition: all 0.2s ease !important;
}

.widget_price_filter .button:hover {
	filter: brightness(1.15) !important;
	box-shadow: var(--neon-cyan-glow) !important;
}

/* --- Widget Titles (classic widgets) --- */
.mpc-filters-card .widget-title,
.mpc-filters-card .widgettitle {
	font-size: 0.95rem !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	color: var(--text-white) !important;
	margin-bottom: 12px !important;
	letter-spacing: 0.3px;
}


/* ============================================
   18. LANGUAGE SWITCHER (Polylang / Blocksy Pro)
   ============================================ */
.ct-language-switcher {
	font-family: var(--font-heading) !important;
	font-weight: 600 !important;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.85rem;
}

/* Active language button */
.ct-language-switcher .ct-active-language {
	color: var(--text-light) !important;
	padding: 8px 12px !important;
	border-radius: var(--radius-sm) !important;
	border: 1px solid var(--border) !important;
	background: var(--bg-dark) !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	cursor: pointer;
	transition: all 0.2s ease;
}

.ct-language-switcher .ct-active-language:hover {
	color: var(--neon-cyan) !important;
	border-color: var(--neon-cyan) !important;
	box-shadow: 0 0 10px var(--neon-cyan-dim) !important;
}

/* Dropdown menu list */
.ct-language-switcher ul {
	background: var(--bg-card) !important;
	border: 1px solid var(--border) !important;
	border-radius: var(--radius-md) !important;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
	padding: 6px 0 !important;
	margin-top: 5px !important;
	z-index: 1000 !important;
}

/* Dropdown items */
.ct-language-switcher ul li {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.ct-language-switcher ul li a {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	padding: 8px 16px !important;
	color: var(--text-light) !important;
	transition: all 0.15s ease !important;
	font-weight: 600 !important;
}

.ct-language-switcher ul li a:hover {
	background: var(--bg-hover) !important;
	color: var(--neon-cyan) !important;
}

/* Flags alignment and styling */
.ct-language-switcher img {
	border-radius: 2px !important;
	object-fit: cover !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
}


/* ============================================
   19. PC CONFIGURATOR
   ============================================ */
.mpc-configurator-page-container {
	padding-top: 30px;
	padding-bottom: 50px;
}

.mpc-configurator-title-section {
	margin-bottom: 35px;
	text-align: center;
}

.mpc-configurator-title-section h1 {
	font-size: 2.2rem !important;
	text-transform: uppercase;
	margin-bottom: 8px !important;
	letter-spacing: 0.5px;
}

.mpc-configurator-title-section .description {
	color: var(--text-light);
	font-size: 1rem;
	max-width: 600px;
	margin: 0 auto;
}

.mpc-configurator-wrap {
	display: flex;
	gap: 24px;
	align-items: flex-start;
}

/* Steps Navigation */
.mpc-configurator-steps-sidebar {
	width: 280px;
	flex-shrink: 0;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 16px;
}

.mpc-steps-list {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.mpc-step-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	border-radius: var(--radius-sm);
	cursor: pointer;
	border: 1px solid transparent;
	transition: all 0.2s ease;
}

.mpc-step-item:hover {
	background: var(--bg-hover);
	border-color: var(--border-hover);
}

.mpc-step-item.active {
	background: var(--neon-cyan-dim);
	border-color: var(--neon-cyan);
}

.mpc-step-item .step-num {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	color: var(--text-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.85rem;
	font-family: var(--font-heading);
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.mpc-step-item.active .step-num {
	background: var(--neon-cyan);
	color: #fff;
	border-color: var(--neon-cyan);
}

.mpc-step-item .step-details {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.mpc-step-item .step-name {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--text-white);
	text-transform: uppercase;
	font-family: var(--font-heading);
	letter-spacing: 0.3px;
}

.mpc-step-item .step-selected-val {
	font-size: 0.78rem;
	color: var(--text-muted);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 1px;
}

.mpc-step-item .step-selected-val.has-val {
	color: var(--neon-cyan);
	font-weight: 600;
}

/* Main Selection Area */
.mpc-configurator-main {
	flex: 1;
	min-width: 0;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 24px;
}

.mpc-main-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	border-bottom: 1px solid var(--border);
	padding-bottom: 16px;
	margin-bottom: 24px;
}

.mpc-main-header h2 {
	margin: 0 !important;
	font-size: 1.3rem !important;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.mpc-search-filter {
	width: 260px;
}

.mpc-search-filter input {
	margin: 0 !important;
}

/* Products Grid */
.mpc-products-grid-wrap {
	position: relative;
	min-height: 350px;
}

.mpc-products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
}

.mpc-product-card {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.mpc-product-card.selected {
	border-color: var(--neon-cyan) !important;
	box-shadow: var(--neon-cyan-glow) !important;
}

.mpc-card-img-wrap {
	aspect-ratio: 1 / 1;
	background: var(--bg-elevated);
	border-radius: var(--radius-sm);
	overflow: hidden;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border);
}

.mpc-card-img-wrap img {
	max-height: 90%;
	max-width: 90%;
	object-fit: contain;
}

.mpc-product-features {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: auto;
	margin-bottom: 14px;
}

.mpc-feat-badge {
	font-size: 0.7rem;
	background: var(--bg-elevated);
	color: var(--text-light);
	padding: 2px 8px;
	border-radius: var(--radius-sm);
	border: 1px solid var(--border);
	font-family: var(--font-heading);
	text-transform: uppercase;
	font-weight: 500;
}

.mpc-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	margin-top: auto;
	padding-top: 10px;
	border-top: 1px solid var(--border);
}

.mpc-card-footer .price {
	font-size: 1.15rem !important;
}

.mpc-card-footer button {
	padding: 8px 16px !important;
	font-size: 0.8rem !important;
	margin: 0 !important;
	white-space: nowrap;
}

/* Loading Overlay */
.mpc-loading-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	border-radius: var(--radius-md);
	backdrop-filter: blur(2px);
}

.mpc-spinner {
	width: 44px;
	height: 44px;
	border: 3px solid rgba(255, 107, 0, 0.15);
	border-top: 3px solid var(--neon-cyan);
	border-radius: 50%;
	animation: mpc-spin 0.8s linear infinite;
}

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

/* Summary Sidebar */
.mpc-configurator-summary-sidebar {
	width: 320px;
	flex-shrink: 0;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 20px;
}

.mpc-configurator-summary-sidebar h3 {
	margin-top: 0 !important;
	border-bottom: 2px solid var(--neon-cyan);
	padding-bottom: 10px;
	margin-bottom: 18px !important;
}

.mpc-summary-items {
	display: flex;
	flex-direction: column;
	gap: 10px;
	border-bottom: 1px solid var(--border);
	padding-bottom: 18px;
	margin-bottom: 18px;
	min-height: 80px;
}

.mpc-empty-summary-text {
	color: var(--text-muted);
	text-align: center;
	margin: 25px 0;
	font-size: 0.88rem;
}

.mpc-summary-item {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 10px;
	position: relative;
	transition: border-color 0.2s;
}

.mpc-summary-item:hover {
	border-color: var(--border-hover);
}

.mpc-item-img {
	width: 48px;
	height: 48px;
	border-radius: var(--radius-sm);
	background: #fff;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border: 1px solid var(--border);
}

.mpc-item-img img {
	max-width: 85%;
	max-height: 85%;
	object-fit: contain;
}

.mpc-item-info {
	display: flex;
	flex-direction: column;
	min-width: 0;
	flex: 1;
	padding-right: 15px;
}

.mpc-item-cat {
	font-size: 0.7rem;
	color: var(--text-muted);
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.3px;
	font-family: var(--font-heading);
}

.mpc-item-title {
	font-size: 0.8rem;
	color: var(--text-white) !important;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 1px;
}

.mpc-item-title:hover {
	color: var(--neon-cyan) !important;
}

.mpc-item-price {
	font-size: 0.85rem;
	color: var(--neon-cyan);
	font-weight: 700;
	font-family: var(--font-heading);
}

.mpc-remove-selected-btn {
	position: absolute;
	top: 6px;
	right: 6px;
	background: transparent;
	border: none;
	color: var(--text-muted);
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
	padding: 0 4px;
	transition: color 0.15s;
}

.mpc-remove-selected-btn:hover {
	color: #ef4444;
}

/* Stats */
.mpc-summary-stats {
	border-bottom: 1px solid var(--border);
	padding-bottom: 18px;
	margin-bottom: 18px;
}

.mpc-stat-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.88rem;
	color: var(--text-light);
	margin-bottom: 6px;
}

.mpc-total-price-row {
	font-size: 1.25rem !important;
	color: var(--text-white) !important;
	font-weight: 800;
	margin-top: 14px;
}

.mpc-total-price-row #mpc-total-price {
	color: var(--neon-cyan);
}

/* TDP Bar */
.mpc-tdp-bar-container {
	height: 6px;
	background: var(--bg-elevated);
	border-radius: 3px;
	overflow: hidden;
	margin-bottom: 12px;
	border: 1px solid var(--border);
}

.mpc-tdp-bar {
	height: 100%;
	background: var(--neon-green);
	transition: width 0.3s ease, background-color 0.3s ease;
}

.mpc-tdp-bar.warning {
	background: var(--neon-orange);
}

.mpc-tdp-bar.danger {
	background: #ef4444;
}

/* Compatibility logs */
.mpc-compatibility-checker {
	margin-bottom: 22px;
}

.mpc-compatibility-checker h4 {
	font-size: 0.88rem !important;
	text-transform: uppercase;
	margin-bottom: 8px !important;
	font-weight: 700 !important;
	letter-spacing: 0.3px;
}

#mpc-compat-logs {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

#mpc-compat-logs li {
	font-size: 0.78rem;
	padding: 6px 10px;
	border-radius: var(--radius-sm);
	border-left: 3px solid;
}

#mpc-compat-logs li.success {
	background: rgba(34, 197, 94, 0.08);
	border-color: var(--neon-green);
	color: #4ade80;
}

#mpc-compat-logs li.warning {
	background: rgba(245, 158, 11, 0.08);
	border-color: var(--neon-orange);
	color: #fbbf24;
}

#mpc-compat-logs li.error {
	background: rgba(239, 68, 68, 0.08);
	border-color: #ef4444;
	color: #f87171;
}

#mpc-compat-logs li.info {
	background: var(--bg-elevated);
	border-color: var(--border);
	color: var(--text-light);
}

.mpc-btn-add-all {
	width: 100% !important;
	padding: 10px !important;
	font-size: 0.9rem !important;
}

/* Responsive */
@media (max-width: 991px) {
	.mpc-configurator-wrap {
		flex-direction: column;
	}
	.mpc-configurator-steps-sidebar,
	.mpc-configurator-summary-sidebar {
		width: 100%;
	}
}

/* PC Configurator Header Button */
.mpc-header-configurator-btn {
	background: var(--neon-cyan-dim, rgba(0, 229, 255, 0.15));
	border: 1px solid var(--neon-cyan);
	color: var(--neon-cyan) !important;
	padding: 8px 18px;
	border-radius: 30px;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.78rem;
	letter-spacing: 0.8px;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--neon-cyan-glow);
}

.mpc-header-configurator-btn:hover {
	background: var(--neon-cyan);
	color: #0b0c10 !important;
	box-shadow: 0 0 20px var(--neon-cyan);
	transform: translateY(-1.5px);
}

/* Adjust layout in responsive */
@media (max-width: 991px) {
	.mpc-menu-btn-wrapper {
		padding: 10px 0 !important;
		justify-content: center;
	}
	.mpc-header-configurator-btn {
		width: 100%;
	}
}



