:root {
	--mp-accent: #22c55e;
	--mp-bg: #0b0b0b;
	--mp-card-bg: #161616;
	--mp-text: #ffffff;
	--mp-text-muted: #a3a3a3;
	--mp-border: #2a2a2a;
}

.mp-products-grid {
	display: grid;
	grid-template-columns: repeat(var(--mp-columns, 3), minmax(0, 1fr));
	gap: 18px;
	width: 100%;
	box-sizing: border-box;
}

@media (max-width: 1024px) {
	.mp-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
	.mp-products-grid { grid-template-columns: 1fr; }
}

/* List view — toggled on via the Grid/List switch in the shop topbar.
   Only ever changes layout; every existing product card feature (image,
   title, excerpt, features, variations, price, Buy Now) is untouched. */
.mp-products-grid.mp-view-list {
	grid-template-columns: 1fr;
}
.mp-products-grid.mp-view-list .mp-product-card {
	flex-direction: row;
}
.mp-products-grid.mp-view-list .mp-card-media {
	width: 220px;
	flex-shrink: 0;
	aspect-ratio: 1 / 1;
}
.mp-products-grid.mp-view-list .mp-card-body {
	flex: 1;
	min-width: 0;
}
@media (max-width: 640px) {
	.mp-products-grid.mp-view-list .mp-product-card { flex-direction: column; }
	.mp-products-grid.mp-view-list .mp-card-media { width: 100%; aspect-ratio: 4 / 3; }
}

/* Grid/List toggle — sits at the end of the shop topbar/filter row. */
.mp-view-toggle {
	display: flex;
	gap: 6px;
	margin-left: auto;
}
.mp-view-toggle-btn {
	background: #0f0f0f;
	border: 1px solid var(--mp-border);
	color: var(--mp-text-muted);
	border-radius: 999px;
	padding: 10px 16px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.mp-view-toggle-btn:hover {
	color: var(--mp-text);
	border-color: var(--mp-accent);
}
.mp-view-toggle-btn.mp-active {
	background: var(--mp-accent);
	color: #05170b;
	border-color: var(--mp-accent);
}

.mp-product-card {
	background: var(--mp-card-bg);
	border: 1px solid var(--mp-border);
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.mp-product-card:hover {
	transform: translateY(-4px);
	border-color: var(--mp-accent);
	box-shadow: 0 10px 22px rgba(0,0,0,0.45);
}

.mp-card-media { width: 100%; aspect-ratio: 4 / 3; overflow: hidden; background: #000; }
.mp-card-image { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.mp-product-card:hover .mp-card-image { transform: scale(1.05); }
.mp-card-image-placeholder { background: linear-gradient(135deg, #1a1a1a, #222); }

.mp-card-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; box-sizing: border-box; }
.mp-card-title { margin: 0; font-size: 16px; font-weight: 700; color: var(--mp-text); line-height: 1.3; }
.mp-card-excerpt { margin: 0; font-size: 13px; color: var(--mp-text-muted); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.mp-variation-select-field { margin: 0; }
.mp-variation-select-field label { display: block; font-size: 11px; color: var(--mp-text-muted); margin-bottom: 4px; }
.mp-variation-select {
	width: 100%;
	box-sizing: border-box;
	padding: 8px 10px;
	background: #0f0f0f;
	border: 1px solid var(--mp-border);
	border-radius: 8px;
	color: #ffffff;
	font-size: 13px;
}

.mp-card-features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.mp-card-features li { font-size: 13px; color: var(--mp-text-muted); display: flex; align-items: center; gap: 8px; }
.mp-check { color: var(--mp-accent); font-weight: 700; }

.mp-card-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 8px; border-top: 1px solid var(--mp-border); }
.mp-card-price { font-size: 16px; font-weight: 800; color: var(--mp-text); }

.mp-buy-now-btn {
	background: var(--mp-accent);
	color: #05170b;
	border: none;
	padding: 8px 16px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 13px;
	cursor: pointer;
	transition: transform 0.15s ease, filter 0.15s ease;
	white-space: nowrap;
}
.mp-buy-now-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.mp-buy-now-btn:active { transform: translateY(0); }

.mp-empty-state { color: var(--mp-text-muted); padding: 40px; text-align: center; border: 1px dashed var(--mp-border); border-radius: 12px; }

/* Card actions — groups the Buy Now button with the new eye-icon
   "view description" button. Purely a wrapper; .mp-buy-now-btn keeps
   all of its existing styling and behavior untouched. */
.mp-card-actions { display: flex; align-items: center; gap: 8px; }

.mp-desc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	flex-shrink: 0;
	background: #0f0f0f;
	border: 1px solid var(--mp-border);
	border-radius: 999px;
	color: var(--mp-text-muted);
	cursor: pointer;
	padding: 0;
	transition: color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.mp-desc-btn:hover { color: var(--mp-accent); border-color: var(--mp-accent); transform: translateY(-1px); }
.mp-desc-btn:active { transform: translateY(0); }

/* Description popup modal — reuses the existing .mp-overlay/.mp-modal/
   .mp-modal-close look, so it appears and closes consistently with the
   Buy Now checkout modal already on the page. */
.mp-description-modal { max-width: 560px; }
.mp-description-modal-title { margin: 0 0 14px; padding-right: 24px; font-size: 18px; color: var(--mp-text); }
.mp-description-modal-body { color: var(--mp-text-muted); line-height: 1.7; }
.mp-description-modal-body p { margin: 0 0 1em; }
.mp-description-modal-body p:last-child { margin-bottom: 0; }

/* ===================================================================
   Single product page — additive only. Reuses .mp-product-card,
   .mp-products-grid etc. exactly as-is; these rules just style the
   card-to-permalink links and the new description/related sections
   that appear around the (unchanged) card on a product's own page.
   =================================================================== */
.mp-card-link { color: inherit; text-decoration: none; display: block; }
.mp-card-title .mp-card-link { display: inline; }
.mp-card-title .mp-card-link:hover { color: var(--mp-accent); }

.mp-single-product-page { display: flex; flex-direction: column; gap: 28px; }
.mp-single-product-page .mp-products-grid-single { max-width: 520px; }
.mp-single-product-description h2,
.mp-related-products h2 {
	font-size: 20px;
	color: var(--mp-text);
	margin: 0 0 14px;
}
.mp-single-product-description {
	color: var(--mp-text-muted);
	line-height: 1.7;
	max-width: 760px;
}
.mp-single-product-description p { margin: 0 0 1em; }

/* Modal / overlay */
.mp-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.7);
	backdrop-filter: blur(4px);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 100000;
	padding: 20px;
	box-sizing: border-box;
}
.mp-overlay.mp-open { display: flex; }

.mp-modal {
	background: var(--mp-card-bg);
	border: 1px solid var(--mp-border);
	border-radius: 18px;
	max-width: 440px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	padding: 28px;
	position: relative;
	color: var(--mp-text);
	box-sizing: border-box;
	animation: mp-pop-in 0.2s ease;
}
@keyframes mp-pop-in {
	from { opacity: 0; transform: scale(0.96); }
	to { opacity: 1; transform: scale(1); }
}

.mp-modal-close {
	position: absolute;
	top: 14px;
	right: 14px;
	background: transparent;
	border: none;
	color: var(--mp-text-muted);
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}
.mp-modal-close:hover { color: var(--mp-text); }

.mp-modal-product { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.mp-modal-product-image { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; background: #000; }
.mp-modal-product-name { margin: 0 0 4px; font-size: 16px; }
.mp-modal-product-price { color: var(--mp-accent); font-weight: 700; }

.mp-qty-row, .mp-totals-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; font-size: 14px; }
.mp-qty-input { width: 70px; padding: 6px 8px; background: #0f0f0f; border: 1px solid var(--mp-border); border-radius: 8px; color: var(--mp-text); }

.mp-field { margin-bottom: 14px; }
.mp-field label { display: block; font-size: 13px; margin-bottom: 6px; color: var(--mp-text-muted); }
.mp-field input, .mp-field textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 12px;
	background: #0f0f0f;
	border: 1px solid var(--mp-border);
	border-radius: 8px;
	color: var(--mp-text);
	font-size: 14px;
}
.mp-field input:focus, .mp-field textarea:focus { outline: none; border-color: var(--mp-accent); }

.mp-btn-primary {
	width: 100%;
	background: var(--mp-accent);
	color: #05170b;
	border: none;
	padding: 13px 20px;
	border-radius: 12px;
	font-weight: 800;
	font-size: 15px;
	cursor: pointer;
	transition: filter 0.15s ease;
}
.mp-btn-primary:hover { filter: brightness(1.08); }
.mp-btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }

.mp-error-message { color: #f87171; font-size: 13px; min-height: 18px; margin: 4px 0 10px; }

.mp-order-summary { font-size: 13px; color: var(--mp-text-muted); margin-bottom: 16px; }

.mp-crypto-options { display: flex; flex-direction: column; gap: 10px; }
.mp-crypto-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	border: 1px solid var(--mp-border);
	border-radius: 10px;
	background: #0f0f0f;
	cursor: pointer;
	font-size: 14px;
	transition: border-color 0.15s ease, background 0.15s ease;
	/* Force white text on every device — some themes' global `button`
	   styles were overriding the inherited color. */
	color: #ffffff !important;
}
.mp-crypto-option:hover,
.mp-crypto-option:focus,
.mp-crypto-option:active { border-color: var(--mp-accent); background: #131313; color: #ffffff !important; }

.mp-order-number-row { display: flex; gap: 8px; align-items: center; background: #0f0f0f; border: 1px solid var(--mp-border); border-radius: 10px; padding: 10px 12px; margin-bottom: 16px; }
.mp-order-number-value { flex: 1; font-size: 13px; font-weight: 700; color: #ffffff; }

.mp-qr-code { display: block; margin: 0 auto 16px; border-radius: 10px; background: #fff; padding: 10px; }
.mp-pay-amount { text-align: center; font-size: 22px; font-weight: 800; color: var(--mp-accent); margin: 0 0 4px; }
.mp-pay-amount-usd { text-align: center; font-size: 13px; color: var(--mp-text-muted); margin: 0 0 16px; }

.mp-wallet-row { display: flex; gap: 8px; align-items: center; background: #0f0f0f; border: 1px solid var(--mp-border); border-radius: 10px; padding: 10px 12px; margin-bottom: 16px; }
.mp-wallet-address { flex: 1; overflow-wrap: anywhere; font-size: 12px; color: var(--mp-text-muted); }
.mp-copy-btn { background: transparent; border: 1px solid var(--mp-accent); color: var(--mp-accent); border-radius: 8px; padding: 6px 12px; cursor: pointer; font-size: 12px; font-weight: 700; }
.mp-copy-btn:hover { background: var(--mp-accent); color: #05170b; }

.mp-timer { text-align: center; font-size: 13px; color: var(--mp-text-muted); margin-bottom: 16px; }
.mp-timer-value { color: var(--mp-text); font-weight: 700; }

.mp-awaiting { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 13px; color: var(--mp-text-muted); }
.mp-loader {
	width: 16px; height: 16px;
	border: 2px solid var(--mp-border);
	border-top-color: var(--mp-accent);
	border-radius: 50%;
	animation: mp-spin 0.8s linear infinite;
	display: inline-block;
}
@keyframes mp-spin { to { transform: rotate(360deg); } }

.mp-success-icon {
	width: 56px; height: 56px;
	border-radius: 50%;
	background: var(--mp-accent);
	color: #05170b;
	display: flex; align-items: center; justify-content: center;
	font-size: 28px;
	margin: 0 auto 16px;
}

/* ===================================================================
   Shop layout: top filter bar, left sidebar, right product grid
   =================================================================== */

.mp-shop { --mp-sidebar-width: 240px; width: 100%; box-sizing: border-box; }
.mp-shop * { box-sizing: border-box; }

.mp-notice { padding: 12px 16px; border-radius: 10px; margin-bottom: 16px; font-size: 14px; }
.mp-notice-success { background: rgba(46, 204, 113, 0.12); border: 1px solid rgba(46, 204, 113, 0.4); color: #7be3a4; }
.mp-notice-error { background: rgba(231, 76, 60, 0.12); border: 1px solid rgba(231, 76, 60, 0.4); color: #ff9d92; }

/* Topbar row: existing search/sort form + the Grid/List view toggle */
.mp-shop-topbar {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 10px;
}

/* Top filter bar — always sits above the sidebar/grid row on desktop */
.mp-filter-bar {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	flex-wrap: wrap;
	flex: 1;
	min-width: 260px;
}
.mp-search-input {
	flex: 1;
	min-width: 180px;
	padding: 10px 14px;
	background: #0f0f0f;
	border: 1px solid var(--mp-border);
	border-radius: 999px;
	color: #ffffff;
	font-size: 14px;
}
.mp-sort-select {
	padding: 10px 14px;
	background: #0f0f0f;
	border: 1px solid var(--mp-border);
	border-radius: 999px;
	color: #ffffff;
	font-size: 14px;
}
.mp-filter-submit {
	background: var(--mp-accent);
	color: #05170b;
	border: none;
	padding: 10px 18px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
}
.mp-mobile-filter-toggle {
	display: none;
	background: #0f0f0f;
	border: 1px solid var(--mp-border);
	color: #ffffff;
	padding: 10px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}

/* Layout row: sidebar (left) + main content (right) */
.mp-shop-layout {
	display: grid;
	grid-template-columns: var(--mp-sidebar-width) 1fr;
	gap: 24px;
	align-items: start;
}

.mp-shop-sidebar {
	background: var(--mp-card-bg);
	border: 1px solid var(--mp-border);
	border-radius: 14px;
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	position: sticky;
	top: 20px;
}

.mp-sidebar-section { border-bottom: 1px solid var(--mp-border); padding-bottom: 14px; }
.mp-sidebar-toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: transparent;
	border: none;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	padding: 0;
}
.mp-sidebar-toggle .mp-caret { transition: transform 0.15s ease; color: var(--mp-text-muted); }
.mp-sidebar-toggle[aria-expanded="true"] .mp-caret { transform: rotate(180deg); }

.mp-category-list { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.mp-category-list a {
	display: block;
	color: var(--mp-text-muted);
	text-decoration: none;
	font-size: 13px;
	padding: 6px 8px;
	border-radius: 8px;
}
.mp-category-list a:hover { background: #151515; color: #ffffff; }
.mp-category-list a.mp-active { background: var(--mp-accent); color: #05170b; font-weight: 700; }

.mp-sidebar-nav { display: flex; flex-direction: column; gap: 4px; }
.mp-sidebar-nav a {
	color: var(--mp-text-muted);
	text-decoration: none;
	font-size: 14px;
	padding: 8px 10px;
	border-radius: 8px;
	font-weight: 600;
}
.mp-sidebar-nav a:hover { background: #151515; color: #ffffff; }
.mp-sidebar-nav a.mp-active { background: #151515; color: var(--mp-accent); }

/* Login/Logout pinned to the bottom of the sidebar */
.mp-sidebar-auth { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--mp-border); }
.mp-sidebar-login-btn,
.mp-sidebar-logout-btn {
	display: block;
	text-align: center;
	text-decoration: none;
	padding: 10px 16px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 14px;
}
.mp-sidebar-login-btn { background: var(--mp-accent); color: #05170b; }
.mp-sidebar-login-btn:hover { filter: brightness(1.08); }
.mp-sidebar-logout-btn { background: transparent; border: 1px solid var(--mp-border); color: #ffffff; }
.mp-sidebar-logout-btn:hover { border-color: var(--mp-accent); color: var(--mp-accent); }

.mp-shop-main { min-width: 0; }

/* Pagination */
.mp-pagination { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; justify-content: center; }
.mp-page-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 8px;
	border-radius: 8px;
	border: 1px solid var(--mp-border);
	color: var(--mp-text-muted);
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
}
.mp-page-link:hover { border-color: var(--mp-accent); color: #ffffff; }
.mp-page-link.mp-active { background: var(--mp-accent); border-color: var(--mp-accent); color: #05170b; }

.mp-empty-state { color: var(--mp-text-muted); font-size: 14px; padding: 30px 0; text-align: center; }

/* Account panels: Orders / Downloads / Topup / Support / Login / Register */
.mp-account-panel {
	background: var(--mp-card-bg);
	border: 1px solid var(--mp-border);
	border-radius: 14px;
	padding: 24px;
}
.mp-account-panel h2 { margin-top: 0; color: #ffffff; font-size: 20px; }
.mp-account-panel h3 { color: #ffffff; font-size: 15px; margin: 24px 0 10px; }

.mp-account-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.mp-account-table th, .mp-account-table td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--mp-border); color: var(--mp-text-muted); }
.mp-account-table th { color: #ffffff; font-weight: 700; }

.mp-status-badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; text-transform: capitalize; }
.mp-status-completed { background: rgba(46, 204, 113, 0.15); color: #7be3a4; }
.mp-status-pending { background: rgba(241, 196, 15, 0.15); color: #f5d76e; }
.mp-status-cancelled { background: rgba(231, 76, 60, 0.15); color: #ff9d92; }

.mp-download-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.mp-download-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 12px 14px;
	background: #0f0f0f;
	border: 1px solid var(--mp-border);
	border-radius: 10px;
	font-size: 13px;
	color: #ffffff;
}
.mp-download-list small { color: var(--mp-text-muted); }

.mp-btn-primary {
	display: inline-block;
	background: var(--mp-accent);
	color: #05170b;
	border: none;
	padding: 9px 18px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 13px;
	text-decoration: none;
	cursor: pointer;
}
.mp-btn-primary:hover { filter: brightness(1.08); color: #05170b; }

.mp-wallet-balance { font-size: 15px; color: var(--mp-text-muted); }
.mp-wallet-balance strong { color: var(--mp-accent); font-size: 20px; }

.mp-topup-form { display: flex; gap: 10px; align-items: flex-end; flex-wrap: wrap; margin: 16px 0 8px; }
.mp-topup-form label { display: block; font-size: 12px; color: var(--mp-text-muted); margin-bottom: 6px; }
.mp-topup-form input {
	padding: 10px 14px;
	background: #0f0f0f;
	border: 1px solid var(--mp-border);
	border-radius: 8px;
	color: #ffffff;
	font-size: 14px;
	width: 160px;
}

.mp-support-content { color: var(--mp-text-muted); font-size: 14px; line-height: 1.7; }

/* Login / Register forms */
.mp-auth-panel { max-width: 420px; }
.mp-auth-form { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.mp-auth-form label { font-size: 12px; color: var(--mp-text-muted); margin-top: 4px; }
.mp-auth-form input {
	padding: 10px 14px;
	background: #0f0f0f;
	border: 1px solid var(--mp-border);
	border-radius: 8px;
	color: #ffffff;
	font-size: 14px;
	width: 100%;
}
.mp-auth-form .mp-btn-primary { margin-top: 8px; width: 100%; text-align: center; }
.mp-auth-switch { font-size: 13px; color: var(--mp-text-muted); margin-top: 14px; }
.mp-auth-switch a { color: var(--mp-accent); text-decoration: none; }

/* ===================================================================
   Coupon field (checkout modal)
   =================================================================== */
.mp-coupon-field input { text-transform: uppercase; }

/* ===================================================================
   Sidebar contact buttons (WhatsApp / Telegram)
   =================================================================== */
.mp-sidebar-contact-buttons {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--mp-border);
}
.mp-contact-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	transition: filter 0.15s ease;
}
.mp-contact-btn:hover { filter: brightness(1.1); }
.mp-contact-icon { font-size: 14px; }
.mp-contact-btn-whatsapp { background: #25d366; color: #05170b; }
.mp-contact-btn-telegram { background: #229ed9; color: #ffffff; }

/* ===================================================================
   Account dashboard (profile / password forms)
   =================================================================== */
.mp-account-form { max-width: 420px; margin-bottom: 28px; }
.mp-field-description { font-size: 13px; color: var(--mp-text-muted); margin-top: -4px; margin-bottom: 14px; }
.mp-btn-small { padding: 4px 10px; font-size: 12px; display: inline-block; width: auto; }

/* ===================================================================
   Track order form
   =================================================================== */
.mp-track-form { max-width: 420px; }

/* ===================================================================
   Support tickets
   =================================================================== */
.mp-ticket-form { max-width: 560px; margin-bottom: 24px; }
.mp-ticket-thread { display: flex; flex-direction: column; gap: 12px; margin: 16px 0; }
.mp-ticket-message {
	background: #151515;
	border: 1px solid var(--mp-border);
	border-radius: 10px;
	padding: 12px 16px;
}
.mp-ticket-message-admin { background: rgba(34, 197, 94, 0.08); border-color: rgba(34, 197, 94, 0.3); }
.mp-ticket-message-meta { font-size: 11px; color: var(--mp-text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.03em; }
.mp-ticket-message-body { font-size: 14px; color: #e5e5e5; line-height: 1.6; }

/* ===================================================================
   Responsive: tablet
   =================================================================== */
@media (max-width: 1024px) {
	.mp-shop-layout { grid-template-columns: 1fr; }
	.mp-shop-sidebar { position: static; }
	.mp-products-grid[style*="--mp-columns:3"] { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}

/* ===================================================================
   Responsive: mobile — sidebar becomes a collapsible drawer under a
   "Filters" toggle, filter bar wraps, grid drops to a single column.
   =================================================================== */
@media (max-width: 680px) {
	.mp-mobile-filter-toggle { display: inline-flex; }
	.mp-filter-bar { gap: 8px; }
	.mp-search-input { flex-basis: 100%; }

	.mp-shop-sidebar {
		display: none;
	}
	.mp-shop-sidebar.mp-sidebar-open {
		display: flex;
	}

	.mp-products-grid[style*="--mp-columns:3"] { grid-template-columns: 1fr !important; }

	.mp-account-table { display: block; overflow-x: auto; white-space: nowrap; }
	.mp-topup-form { flex-direction: column; align-items: stretch; }
	.mp-topup-form input { width: 100%; }
}
