.mv-dashboard {
	max-width: 1080px;
	margin: 0 auto;
	padding: 24px 0 40px;
}

.mv-hero,
.mv-panel,
.mv-form-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.mv-hero {
	padding: 28px 28px 22px;
	margin-bottom: 18px;
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 60%, #eef6ff 100%);
}

.mv-hero h2,
.mv-form-card h2,
.mv-payment-instructions h2 {
	margin-top: 0;
	margin-bottom: 8px;
}

.mv-hero p,
.mv-auth-intro {
	margin: 0;
	color: #475569;
}

.mv-inline-notice {
	margin-bottom: 20px;
	padding: 15px 16px;
	border-radius: 12px;
	border: 1px solid transparent;
}

.mv-inline-notice.is-warning {
	background: #fff7dd;
	color: #805b10;
	border-color: #f0d078;
}

.mv-inline-notice.is-danger {
	background: #fef2f2;
	color: #991b1b;
	border-color: #fecaca;
}

.mv-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 16px;
	margin-bottom: 28px;
}

.mv-stat-card {
	padding: 18px;
	border-radius: 16px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	border: 1px solid #e2e8f0;
}

.mv-stat-card__label {
	color: #64748b;
	font-size: 13px;
}

.mv-stat-card__value {
	margin-top: 8px;
	font-size: 22px;
	font-weight: 700;
	color: #0f172a;
}

.mv-stat-card__meta {
	margin-top: 6px;
	font-size: 12px;
	color: #64748b;
}

.mv-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 22px;
}

.mv-tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 16px;
	border-radius: 999px;
	border: 1px solid #dbe4ee;
	background: #fff;
	color: #334155;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.18s ease;
}

.mv-tab:hover,
.mv-tab.is-active {
	border-color: #0f766e;
	background: #0f766e;
	color: #fff;
}

.mv-panel {
	padding: 24px;
}

.mv-panel h3,
.mv-withdrawals h3,
.mv-withdrawals h4,
.mv-catalog h3 {
	margin-top: 0;
}

.mv-form-wrap {
	padding: 24px 0;
}

.mv-auth-shell {
	display: flex;
	justify-content: center;
}

.mv-auth-card {
	width: 75%;
	max-width: 1000px;
	padding: 20px 22px;
	border-radius: 14px;
}

.mv-auth-card--narrow {
	width: min(100%, 440px);
}

.mv-form-wrap label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	color: #0f172a;
}

.mv-form-field {
	margin: 0 0 10px;
}

.mv-multi-section-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.mv-form-wrap input,
.mv-form-wrap select,
.mv-form-wrap textarea,
.mv-wr-note,
.mv-table-search {
	width: 100%;
	min-height: 40px;
	padding: 10px 12px;
	border: 1px solid #e6eef8;
	border-radius: 22px;
	background: #fff;
	box-sizing: border-box;
}

.mv-form-wrap textarea {
	min-height: 96px;
	resize: vertical;
}

.mv-form-actions {
	margin: 10px 0 6px;
}

.mv-button-block {
	width: 100%;
	justify-content: center;
	min-height: 42px;
}

.mv-auth-alt {
	margin: 0;
	text-align: center;
	color: #475569;
}

.mv-balance-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	border-radius: 999px;
	background: #ecfeff;
	color: #155e75;
	border: 1px solid #a5f3fc;
}

.mv-withdrawals-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 16px;
}

.mv-withdrawals .mv-table-toolbar {
	align-items: center;
}

.mv-withdrawals .mv-table-toolbar .mv-sales-toolbar__title {
	margin-right: auto;
	font-size: 20px;
}

.mv-withdrawals .mv-table-toolbar .mv-table-search {
	max-width: 280px;
}

.mv-withdrawals-add-btn {
	min-height: 42px;
	padding-inline: 18px;
	border-radius: 10px;
	white-space: nowrap;
}

.mv-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	padding: 20px;
}

.mv-modal[hidden] {
	display: none !important;
}

.mv-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.55);
}

.mv-modal__dialog {
	position: relative;
	width: min(100%, 560px);
	max-height: 90vh;
	overflow: auto;
	padding: 22px;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
	border: 1px solid #e2e8f0;
}

.mv-modal__dialog h4 {
	margin: 0 0 14px;
	padding-right: 26px;
}

.mv-modal__close {
	position: absolute;
	right: 12px;
	top: 10px;
	border: 0;
	background: transparent;
	font-size: 30px;
	line-height: 1;
	color: #64748b;
	cursor: pointer;
}

.mv-modal__close:hover {
	color: #0f172a;
}

body.mv-modal-open {
	overflow: hidden;
}

.mv-form-card {
	padding: 18px;
	margin-bottom: 18px;
}

.mv-table-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.mv-table-toolbar--frontend {
	padding: 0;
}

.mv-table-meta {
	color: #64748b;
	font-size: 12px;
}

.mv-data-table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

.mv-data-table th,
.mv-data-table td {
	padding: 12px 14px;
	border: 1px solid #e2e8f0;
	text-align: left;
	vertical-align: middle;
}

.mv-data-table th {
	background: #f8fafc;
	color: #334155;
}

.mv-data-table tbody tr:nth-child(even) {
	background: #fcfdff;
}

.mv-data-table--frontend {
	overflow: hidden;
	border-radius: 14px;
}

.mv-sales-page {
	display: block;
	gap: 0;
}

.mv-sales-page__title {
	margin: 0;
}

.mv-sales-summary {
	display: grid;
	grid-template-columns: repeat(3, minmax(180px, 1fr));
	gap: 14px;
}

.mv-sales-summary__card {
	padding: 18px;
	border-radius: 14px;
	background: linear-gradient(135deg, #355af2 0%, #2563eb 100%);
	color: #fff;
	box-shadow: 0 12px 28px rgba(37, 99, 235, 0.26);
	display: grid;
	gap: 8px;
}

.mv-sales-summary__label {
	font-size: 13px;
	opacity: 0.9;
}

.mv-sales-summary__value {
	font-size: clamp(22px, 2.2vw, 34px);
	font-weight: 800;
	line-height: 1;
}

.mv-sales-summary__value .woocommerce-Price-currencySymbol,
.mv-sales-summary__value .woocommerce-Price-amount {
	color: inherit;
}

.mv-sales-panel {
	padding: 16px;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
	overflow-x: auto;
	max-width: 100%;
}

.mv-sales-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 14px;
}

.mv-sales-toolbar__title {
	margin: 0;
	font-size: 22px;
	color: #0f172a;
}

.mv-sales-toolbar__filters {
	display: grid;
	grid-template-columns: repeat(3, minmax(180px, 1fr));
	gap: 10px;
	width: min(100%, 760px);
}

/* Register form layout helpers */
.mv-multi-section-form {
	display: block;
}
.mv-form-grid {
	display: block;
	margin-top: 2px;
}
.mv-form-grid::after {
	content: '';
	display: block;
	clear: both;
}
.mv-form-cell {
	float: left;
	width: 50%;
	padding-right: 6px;
	box-sizing: border-box;
}
.mv-form-cell:nth-child(2n) {
	padding-right: 0;
	padding-left: 6px;
}
.mv-form-grid--stacked > .mv-form-cell,
.mv-form-grid--stacked > .mv-form-cell:nth-child(2n) {
	float: none;
	width: 100%;
	padding-right: 0;
	padding-left: 0;
}
.mv-form-cell--full {
	float: none;
	width: 100%;
	padding: 0;
	clear: both;
}
.mv-form-field {
	margin: 0 0 10px;
}
.mv-form-field--full {
	float: none;
	width: 100%;
	padding: 0;
}
@media (max-width: 720px) {
	.mv-form-cell,
	.mv-form-cell:nth-child(2n) {
		float: none;
		width: 100%;
		padding: 0;
	}
}
.mv-section--card {
	padding: 14px 16px;
	border: 1px solid #e6eef8;
	border-radius: 12px;
	/* background: #fff; */
	margin-bottom: 10px;
}
.mv-section__title {
	margin: 0 0 8px;
	font-size: 16px;
	color: #0f172a;
}
.mv-section__desc {
	margin: 0 0 8px;
	color: #64748b;
}
.mv-multi-section-form > .mv-form-grid > .mv-form-cell:nth-child(-n+2) .mv-section--card {
	border: 0;
}
#mv-register-form .mv-section--subscription {
	margin-top: 4px;
	padding: 16px 18px 14px;
	border-color: #dbe7ff;
	background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
}
#mv-register-form .mv-register-cta {
	margin-top: 2px;
	padding-top: 4px;
}
#mv-register-form .mv-register-cta .mv-form-actions--center {
	margin-top: 0;
}
#mv-register-form .mv-register-cta .mv-button-block {
	display: block;
	width: 40%;
	min-height: 50px;
	font-weight: 700;
	letter-spacing: 0.01em;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.22);
	margin: 0 auto;
	transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}
#mv-register-form .mv-register-cta .mv-button-block:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(37, 99, 235, 0.28);
	filter: brightness(1.02);
}
#mv-register-form .mv-auth-alt {
	margin-top: 12px;
	font-size: 15px;
	color: #475569;
}
#mv-register-form .mv-auth-alt a {
	font-weight: 700;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.16s ease;
}
#mv-register-form .mv-auth-alt a:hover {
	border-color: currentColor;
}
@media (max-width: 720px) {
	#mv-register-form .mv-register-cta .mv-button-block {
		width: 100%;
	}
}
.mv-form-field > span { display: block; margin-bottom: 6px; font-weight: 600; color: #0f172a; }
.mv-form-field input, .mv-form-field select { box-shadow: none; }
.mv-form-actions--center { text-align: center; margin-top: 8px; }
.required { color: #d92d20; margin-left: 4px; }

/* Slight button style tweak for prominence on register */
.mv-form-card .button-primary {
	background: linear-gradient(90deg,#2563eb,#0f62ff);
	border: 0;
	color: #fff;
	padding: 10px 18px;
	border-radius: 10px;
}

.mv-catalog-blocked { background: #fff7f0; padding: 12px; border-radius: 8px; border: 1px solid #fde1d6; color: #7a2e00; }

.mv-sales-filter {
	min-height: 42px;
	padding: 0 12px;
	border: 1px solid #dbe2ea;
	border-radius: 10px;
	background: #fff;
	color: #334155;
	font-size: 14px;
}

.mv-sales-search {
	width: 100%;
}

.mv-sales-table-wrap {
	overflow-x: auto;
}

/* Storefront pages: /shop/{vendor-slug}/, /top-selling/, /all-products/ */
.custom-shop-store-page {
	background: #f1f3f8;
	padding-bottom: 40px;
}

.custom-shop-store-banner {
	background: #ededf0;
	border-bottom: 1px solid #e3e4e9;
	padding: 34px 0;
}

.custom-shop-store-meta {
	align-items: center;
	background: #fff;
	border: 1px solid #e6e8f0;
	border-radius: 14px;
	box-shadow: 0 10px 26px rgba(24, 37, 56, 0.08);
	display: flex;
	gap: 20px;
	justify-content: center;
	margin: 0 auto;
	max-width: 760px;
	padding: 22px 26px;
	text-align: center;
}

.custom-shop-store-avatar {
	background: linear-gradient(145deg, #ff6a33, #ff3f2b);
	border-radius: 50%;
	height: 74px;
	position: relative;
	width: 74px;
}

.custom-shop-store-avatar::before {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	content: "";
	height: 42px;
	left: 50%;
	position: absolute;
	top: 17px;
	transform: translateX(-50%);
	width: 42px;
}

.custom-shop-store-meta h1 {
	color: #1f2732;
	font-size: 38px;
	line-height: 1.2;
	margin: 0 0 6px;
}

.custom-shop-store-rating {
	color: #f8b302;
	font-size: 14px;
	letter-spacing: 1px;
}

.custom-shop-store-meta p {
	color: #6d7682;
	font-size: 15px;
	margin: 6px 0 0;
}

.custom-shop-store-nav-wrap {
	background: #fff;
	border-bottom: 1px solid #e9e9ee;
}

.custom-shop-store-nav {
	display: flex;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.custom-shop-store-nav a {
	color: #262b35;
	display: block;
	font-size: 14px;
	font-weight: 600;
	padding: 13px 0;
	position: relative;
}

.custom-shop-store-nav a:hover {
	color: var(--wd-primary-color, #ff4a2f);
}

.custom-shop-store-nav a.is-active {
	color: var(--wd-primary-color, #ff4a2f);
}

.custom-shop-store-nav a.is-active::after {
	background: var(--wd-primary-color, #ff4a2f);
	bottom: 0;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	width: 100%;
}

.custom-shop-store-products {
	padding: 44px 0 20px;
}

.custom-shop-store-products h2,
.custom-shop-store-products h3 {
	color: #222a34;
	margin: 0;
	text-align: center;
}

.custom-shop-store-products.is-store-home h2 {
	font-size: 40px;
	margin-bottom: 26px;
}

.custom-shop-store-products h3 {
	font-size: 42px;
	margin: 18px 0 22px;
	text-align: left;
}

.custom-shop-store-products.is-store-home h3 {
	font-size: 34px;
}

.custom-shop-products-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.custom-shop-product-card {
	background: #fff;
	border: 1px solid #ececf2;
	padding: 10px;
}

.custom-shop-product-thumb {
	aspect-ratio: 4 / 3;
	background: #f4f5f7;
	display: block;
	overflow: hidden;
}

.custom-shop-product-thumb img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.custom-shop-product-price {
	color: #ff4a2f;
	font-size: 16px;
	font-weight: 700;
	margin-top: 10px;
}

.custom-shop-product-stars {
	color: #f8b302;
	font-size: 12px;
	margin: 3px 0 4px;
}

.custom-shop-product-card h4 {
	font-size: 14px;
	line-height: 1.4;
	margin: 0;
}

.custom-shop-product-card h4 a {
	color: #3b4452;
}

.custom-shop-product-card h4 a:hover {
	color: var(--wd-primary-color, #ff4a2f);
}

.custom-shop-pagination {
	display: none;
}

@media (max-width: 1199px) {
	.custom-shop-products-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.custom-shop-store-banner {
		padding: 22px 0;
	}

	.custom-shop-store-meta {
		flex-direction: column;
		padding: 18px;
	}

	.custom-shop-store-meta h1 {
		font-size: 28px;
	}

	.custom-shop-store-products h2 {
		font-size: 30px;
	}

	.custom-shop-store-products h3 {
		font-size: 30px;
	}

	.custom-shop-store-products.is-store-home h3 {
		font-size: 24px;
	}

	.custom-shop-products-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.mv-sales-table th {
	white-space: nowrap;
	font-size: 12px;
}

.mv-sales-table td {
	font-size: 12px;
	color: #1e293b;
}

.mv-sales-view {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border-radius: 999px;
	background: #e0f2fe;
	color: #0369a1;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	border: 0;
	cursor: pointer;
}

.mv-sales-view:hover {
	background: #bae6fd;
	color: #075985;
}

.mv-sales-view:focus-visible {
	outline: 2px solid #0284c7;
	outline-offset: 2px;
}

.mv-sales-view__icon {
	line-height: 1;
}

.mv-sales-details-row td {
	padding: 0;
	background: #f8fbff;
}

.mv-sales-details {
	display: grid;
	gap: 18px;
	padding: 16px;
	border-top: 1px solid #dbeafe;
}

.mv-sales-details__top {
	display: grid;
	grid-template-columns: minmax(220px, 1fr) minmax(180px, 220px) minmax(240px, 300px);
	gap: 16px;
}

.mv-sales-details__body {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: stretch;
}

.mv-sales-details__table-wrap {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: stretch;
	overflow-x: auto;
	background: #fff;
	border: 1px solid #dbeafe;
	border-radius: 12px;
	padding: 6px;
}

.mv-sales-details__aside {
	display: grid;
	gap: 16px;
	width: min(100%, 300px);
	align-self: flex-end;
}

.mv-sales-details__block {
	display: grid;
	gap: 8px;
	align-content: start;
	padding: 14px;
	border-radius: 12px;
	background: #fff;
}

.mv-sales-details__block h5 {
	margin: 0 0 2px;
	font-size: 15px;
	color: #0f172a;
}

.mv-sales-details__status-row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	align-items: center;
}

.mv-sales-details__total {
	padding-top: 8px;
	border-top: 1px solid #dbeafe;
}

.mv-sales-details__totals-table {
	display: grid;
	gap: 6px;
	line-height: 1.15;
}

.mv-sales-details__total-row {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	align-items: baseline;
	font-size: 13px;
	line-height: 1.15;
}

.mv-sales-details__total-row span,
.mv-sales-details__total-row strong {
	line-height: 1.15;
}

.mv-sales-details__total-row--grand {
	padding-top: 8px;
	margin-top: 2px;
	border-top: 1px solid #dbeafe;
	font-size: 14px;
	font-weight: 700;
}

.mv-sales-details__meta p {
	margin: 0 0 8px;
	font-size: 14px;
	color: #1e293b;
}

.mv-sales-details__meta p:last-child {
	margin-bottom: 0;
}

.mv-sales-details__products h5 {
	margin: 0 0 10px;
	font-size: 15px;
	color: #0f172a;
}

.mv-sales-products-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.mv-sales-products-list li {
	display: grid;
	grid-template-columns: 56px minmax(180px, 1.6fr) auto auto auto;
	gap: 10px;
	align-items: center;
	padding: 10px 12px;
	border: 1px solid #dbeafe;
	border-radius: 10px;
	background: #fff;
	font-size: 13px;
	color: #1e293b;
}

.mv-sales-products-list__media {
	width: 56px;
	height: 56px;
	overflow: hidden;
	border-radius: 10px;
	background: #e2e8f0;
}

.mv-sales-products-list__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mv-sales-products-list__body {
	display: grid;
	gap: 4px;
}

.mv-sales-products-list__name {
	font-weight: 600;
	color: #0f172a;
}

.mv-sales-products-list__description {
	color: #64748b;
	line-height: 1.4;
}

.mv-sales-products-list__qty {
	color: #475569;
	font-weight: 600;
	white-space: nowrap;
}

.mv-sales-products-list__amount {
	font-weight: 700;
	color: #0f766e;
	text-align: right;
	white-space: nowrap;
}

.mv-sales-products-list__profit {
	font-weight: 600;
	color: #155e75;
	text-align: right;
	white-space: nowrap;
}

.mv-sales-products-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
	background: #fff;
}

.mv-sales-products-table th,
.mv-sales-products-table td {
	padding: 12px 10px;
	border-bottom: 1px solid #e2e8f0;
	vertical-align: top;
	text-align: left;
}

.mv-sales-products-table th {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #475569;
	background: #f8fbff;
	position: sticky;
	top: 0;
}

.mv-sales-products-table__image {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border-radius: 8px;
	display: block;
	background: #e2e8f0;
}

.mv-sales-products-table__title {
	display: block;
	margin-bottom: 4px;
	font-size: 14px;
	color: #0f172a;
}

.mv-sales-products-table__description {
	color: #64748b;
	line-height: 1.45;
}

@media (max-width: 1100px) {
	.mv-sales-details__top,
	.mv-sales-details__body {
		grid-template-columns: 1fr;
	}

	.mv-sales-details__aside {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.mv-sales-table-wrap,
	.mv-sales-panel {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		max-width: 100%;
	}

	.mv-data-table--frontend {
		overflow: visible;
	}

	.mv-sales-table {
		width: 100%;
		min-width: 980px;
		table-layout: auto;
	}

	.mv-sales-table th,
	.mv-sales-table td {
		white-space: nowrap;
	}

	.mv-sales-details-row {
		display: none !important;
	}

	.mv-sales-details-row:not([hidden]) {
		display: table-row !important;
	}

	.mv-sales-details {
		padding: 12px;
		gap: 14px;
	}

	.mv-sales-details__top,
	.mv-sales-details__body {
		gap: 12px;
		grid-template-columns: 1fr;
	}

	.mv-sales-details__aside {
		grid-template-columns: 1fr;
		align-self: flex-start;
	}

	.mv-sales-details__status-row {
		justify-content: flex-start;
	}

	.mv-sales-products-table {
		min-width: 720px;
	}

	.mv-sales-products-table th,
	.mv-sales-products-table td {
		padding: 10px 8px;
	}

	.mv-sales-details__block {
		padding: 12px;
	}
}

.mv-status-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 86px;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
}

.mv-status-badge.is-pending {
	background: #fff3cd;
	color: #7a5b00;
}

.mv-status-badge.is-approved,
.mv-status-badge.is-active,
.mv-status-badge.is-completed {
	background: #dcfce7;
	color: #166534;
}

.mv-status-badge.is-paid {
	background: #dcfce7;
	color: #166534;
}

.mv-status-badge.is-processing,
.mv-status-badge.is-on-hold {
	background: #ede9fe;
	color: #5b21b6;
}

.mv-status-badge.is-rejected,
.mv-status-badge.is-inactive,
.mv-status-badge.is-failed,
.mv-status-badge.is-cancelled,
.mv-status-badge.is-unpaid,
.mv-status-badge.is-refunded {
	background: #fee2e2;
	color: #991b1b;
}

.mv-empty-state {
	color: #64748b;
}

.mv-product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
}

.mv-product-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 14px;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.mv-product-card__image {
	width: 100%;
	height: 140px;
	object-fit: cover;
	border-radius: 10px;
}

.mv-product-card__title {
	font-weight: 700;
	color: #0f172a;
}

.mv-product-card__price {
	color: #0f766e;
	font-weight: 600;
}

.mv-product-grid--selected {
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.mv-product-card--selected {
	position: relative;
	gap: 12px;
}

.mv-product-card__remove {
	position: absolute !important;
	top: 12px !important;
	right: 12px !important;
	margin: 0 !important;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 50%;
	background: rgba(15, 23, 42, 0.88);
	color: #fff;
	font-size: 24px;
	line-height: 1;
	font-weight: 700;
	padding: 0;
	display: grid;
	place-items: center;
	cursor: pointer;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.18);
	z-index: 2;
}

.mv-product-card__remove:hover {
	background: #dc2626;
}

.mv-product-card__details {
	display: grid;
	gap: 6px;
}

.mv-product-card__row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	font-size: 13px;
	line-height: 1.25;
	color: #334155;
}

.mv-product-card__row strong,
.mv-product-card__price strong {
	font-weight: 700;
	color: #0f172a;
}

.mv-product-card__price {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	align-items: baseline;
	padding-top: 8px;
	border-top: 1px solid #e2e8f0;
	color: #0f172a;
}

.mv-product-card__breakdown {
	display: grid;
	gap: 6px;
	padding: 10px 8px;
	background: #f8fafc;
	border-radius: 8px;
	font-size: 12px;
	line-height: 1.4;
}

.mv-breakdown-item {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	align-items: center;
}

.mv-breakdown-label {
	color: #64748b;
	font-weight: 600;
}

.mv-breakdown-value {
	color: #0f172a;
	font-weight: 700;
}

.mv-packages {
	max-width: 1120px;
	margin: 0 auto;
}

.mv-packages__header {
	margin-bottom: 18px;
	text-align: center;
}

.mv-packages__header h2 {
	margin: 0 0 8px;
	font-size: clamp(28px, 3.2vw, 48px);
	font-weight: 800;
	line-height: 1.08;
	color: #111827;
}

.mv-packages__header p {
	margin: 0;
	color: #4b5563;
}

.mv-packages__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(220px, 1fr));
	gap: 18px;
}

.mv-package-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 24px;
	border-radius: 20px;
	border: 1px solid #e5e7eb;
	background: #fff;
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
	min-height: 360px;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.mv-package-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 44px rgba(15, 23, 42, 0.13);
}

.mv-package-card.is-active {
	outline: 2px solid #0f766e;
	outline-offset: 2px;
}

.mv-package-card--free {
	background: linear-gradient(160deg, #ebf2ff 0%, #dbe8ff 100%);
}

.mv-package-card--platinum {
	background: linear-gradient(160deg, #ffeedd 0%, #ffe0ca 100%);
}

.mv-package-card--golden {
	background: linear-gradient(160deg, #fff5d8 0%, #ffebaf 100%);
}

.mv-package-card__top h3 {
	margin: 0 0 8px;
	font-size: 32px;
	line-height: 1;
	font-weight: 800;
	text-transform: capitalize;
	color: #111827;
}

.mv-package-card__price {
	margin-bottom: 2px;
	font-size: 26px;
	font-weight: 800;
	color: #111827;
}

.mv-package-card__duration {
	font-size: 14px;
	font-weight: 500;
	color: #6b7280;
}

.mv-package-card__features {
	margin: 0;
	padding: 0;
	list-style: none;
	color: #1f2937;
	font-weight: 600;
	line-height: 1.45;
	display: grid;
	gap: 8px;
}

.mv-package-card__features li {
	position: relative;
	padding-left: 22px;
}

.mv-package-card__features li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	top: 0;
	color: #0f766e;
	font-weight: 800;
}

.mv-package-select {
	margin-top: auto;
	width: 100%;
	min-height: 42px;
	border: 0;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.68);
	font-weight: 700;
	color: #b45309;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75);
	cursor: pointer;
	transition: background 0.18s ease;
}

.mv-package-select:hover {
	background: rgba(255, 255, 255, 0.88);
}

.mv-package-select:disabled {
	opacity: 0.75;
	cursor: not-allowed;
	color: #334155;
}

.mv-package-select.is-busy {
	opacity: 0.7;
}

.mv-catalog .mv-add-product {
	width: 100%;
	background: #0f766e;
	color: #fff;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	padding: 10px 12px;
}

.mv-catalog .mv-add-product:hover {
	background: #115e59;
}

@media (max-width: 782px) {
	.mv-packages__grid {
		grid-template-columns: 1fr;
	}

	.mv-hero,
	.mv-panel,
	.mv-form-card,
	.mv-auth-card {
		padding: 18px;
	}

	.mv-table-toolbar {
		flex-direction: column;
		align-items: stretch;
	}

	.mv-withdrawals-header {
		flex-direction: column;
		align-items: stretch;
	}

	.mv-withdrawals .mv-table-toolbar .mv-table-search {
		max-width: none;
	}

	.mv-withdrawals-add-btn {
		width: 100%;
	}

	.mv-sales-summary {
		grid-template-columns: 1fr;
	}

	.mv-sales-toolbar {
		flex-direction: column;
		align-items: stretch;
	}

	.mv-sales-toolbar__filters {
		grid-template-columns: 1fr;
		width: 100%;
	}

	.mv-sales-details {
		grid-template-columns: 1fr;
	}

	.mv-sales-products-list li {
		grid-template-columns: 48px 1fr;
		align-items: start;
	}

	.mv-sales-products-list__qty,
	.mv-sales-products-list__amount,
	.mv-sales-products-list__profit {
		text-align: left;
	}

	.mv-sales-products-list li {
		grid-template-columns: 1fr 1fr;
	}

	.mv-data-table:not(.mv-sales-table),
	.mv-data-table:not(.mv-sales-table) thead,
	.mv-data-table:not(.mv-sales-table) tbody,
	.mv-data-table:not(.mv-sales-table) th,
	.mv-data-table:not(.mv-sales-table) td,
	.mv-data-table:not(.mv-sales-table) tr {
		display: block;
		width: 100%;
	}

	.mv-data-table:not(.mv-sales-table) thead {
		display: none;
	}

	.mv-data-table:not(.mv-sales-table) tbody tr {
		padding: 12px 0;
		border-top: 1px solid #e2e8f0;
	}

	.mv-data-table:not(.mv-sales-table) td {
		display: flex;
		justify-content: space-between;
		gap: 16px;
		padding: 8px 0;
		border: 0;
	}

	.mv-data-table:not(.mv-sales-table) td::before {
		content: attr(data-label);
		font-weight: 600;
		color: #64748b;
		flex: 0 0 110px;
	}

	.mv-sales-table,
	.mv-sales-table thead,
	.mv-sales-table tbody,
	.mv-sales-table tr,
	.mv-sales-table th,
	.mv-sales-table td {
		display: table;
	}

	.mv-sales-table thead {
		display: table-header-group;
	}

	.mv-sales-table tbody {
		display: table-row-group;
	}

	.mv-sales-table tr {
		display: table-row;
	}

	.mv-sales-table th,
	.mv-sales-table td {
		display: table-cell;
	}
}
