/* General Wrapper */
.mpa-e2e6d838-wrapper {
	font-family: inherit;
	color: #e0e0e0;
}

/* Filters Top Bar */
.mpa-e2e6d838-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 30px;
	padding: 15px 20px;
	background-color: #1a1a1a;
	border-radius: 8px;
	align-items: center;
	border: 1px solid #333;
}

/* Sticky behavior when toggle is on */
.mpa-e2e6d838-sticky-yes .mpa-e2e6d838-filters {
	position: sticky;
	top: 0;
	z-index: 999;
	box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    margin-top: 10px;
}

/* Pseudo-element for sticky gap prevention */
.mpa-e2e6d838-sticky-yes .mpa-e2e6d838-filters::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1a1a1a;
    z-index: -1;
    border-radius: inherit;
}

.mpa-e2e6d838-filter-group {
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
	z-index: 2;
}

.mpa-e2e6d838-filter-label {
	font-weight: 600;
	font-size: 14px;
	color: #ccc;
}

.mpa-e2e6d838-cat-select,
.mpa-e2e6d838-subcat-select,
.mpa-e2e6d838-price-inputs input {
	padding: 8px 12px;
	border: 1px solid #444;
	border-radius: 4px;
	font-size: 14px;
	background: #2a2a2a;
	color: #eee;
	outline: none;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.mpa-e2e6d838-cat-select:focus,
.mpa-e2e6d838-subcat-select:focus,
.mpa-e2e6d838-price-inputs input:focus {
	border-color: #777;
	background: #333;
}

.mpa-e2e6d838-price-inputs {
	display: flex;
	align-items: center;
	gap: 5px;
}

.mpa-e2e6d838-price-inputs input {
	width: 80px;
}

.mpa-e2e6d838-dash {
	color: #888;
}

/* Grid & Loaders */
.mpa-e2e6d838-grid-container {
	position: relative;
	min-height: 200px;
}

.mpa-e2e6d838-loader {
	position: absolute;
	top: 50px;
	left: 50%;
	transform: translateX(-50%);
	border: 3px solid #333;
	border-top: 3px solid #fff;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	animation: mpa-e2e6d838-spin 1s linear infinite;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s;
	z-index: 10;
}

.mpa-e2e6d838-loader.active {
	opacity: 1;
	visibility: visible;
}

.mpa-e2e6d838-scroll-loader {
	text-align: center;
	padding: 30px 0;
}

.mpa-e2e6d838-spinner {
	display: inline-block;
	border: 3px solid #333;
	border-top: 3px solid #fff;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	animation: mpa-e2e6d838-spin 1s linear infinite;
}

@keyframes mpa-e2e6d838-spin {
	0% { transform: translateX(-50%) rotate(0deg); }
	100% { transform: translateX(-50%) rotate(360deg); }
}

.mpa-e2e6d838-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	transition: opacity 0.3s ease;
}

/* Product Cards */
.mpa-e2e6d838-card {
	display: flex;
	flex-direction: column;
	background: #1e1e1e;
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid #333;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.mpa-e2e6d838-card:hover {
	box-shadow: 0 10px 25px rgba(0,0,0,0.5);
	transform: translateY(-2px);
}

.mpa-e2e6d838-img-wrap {
	position: relative;
	overflow: hidden;
	display: block;
	aspect-ratio: 1 / 1;
	background: #111;
}

.mpa-e2e6d838-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.mpa-e2e6d838-card:hover .mpa-e2e6d838-img-wrap img {
	transform: scale(1.05);
}

/* Hover Overlay */
.mpa-e2e6d838-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.mpa-e2e6d838-card:hover .mpa-e2e6d838-overlay {
	opacity: 1;
}

.mpa-e2e6d838-view-btn {
	background: #fff;
	color: #000;
	padding: 10px 20px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 3px;
	transform: translateY(15px);
	transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.mpa-e2e6d838-view-btn:hover {
	background: #ddd;
}

.mpa-e2e6d838-card:hover .mpa-e2e6d838-view-btn {
	transform: translateY(0);
}

/* Card Details */
.mpa-e2e6d838-details {
	padding: 20px 15px;
	text-align: center;
}

.mpa-e2e6d838-title {
	margin: 0 0 10px;
	font-size: 16px;
	font-weight: 600;
}

.mpa-e2e6d838-title a {
	color: #fff;
	text-decoration: none;
	transition: color 0.2s ease;
}

.mpa-e2e6d838-title a:hover {
	color: #aaa;
}

.mpa-e2e6d838-price {
	font-size: 15px;
	font-weight: 500;
	color: #bbb;
}

.mpa-e2e6d838-price del {
	color: #666;
	margin-right: 8px;
	font-size: 14px;
}

.mpa-e2e6d838-no-products {
	grid-column: 1 / -1;
	text-align: center;
	padding: 40px;
	color: #999;
}