/* ==========================================================
 * SELLER CENTRAL LITE
 * Dashboard CSS
 * Version: 1.1.0
 * ========================================================== */


/* ==========================================================
 * ROOT / BOX SIZING
 * ========================================================== */

.scx-seller-dashboard-wrap,
.scx-seller-dashboard-wrap *,
.scx-seller-dashboard-wrap *::before,
.scx-seller-dashboard-wrap *::after {
	box-sizing: border-box;
}


/* ==========================================================
 * MAIN DASHBOARD WRAPPER
 * ========================================================== */

.scx-seller-dashboard-wrap {
	width: 100%;
	margin: 0;
	padding: 0;
}

.scx-seller-dashboard {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 24px;
	font-family: inherit;
	color: #222;
}


/* ==========================================================
 * HEADER
 * ========================================================== */

.scx-seller-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	margin-bottom: 24px;
	padding: 20px 24px;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.scx-seller-header-left {
	min-width: 0;
	flex: 1 1 auto;
}

.scx-seller-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.scx-seller-logo-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	border-radius: 10px;
	background: #2271b1;
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
}

.scx-seller-logo-text {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.scx-seller-logo-text strong {
	display: block;
	margin: 0;
	color: #222;
	font-size: 20px;
	line-height: 1.3;
	font-weight: 700;
}

.scx-seller-logo-text span {
	display: block;
	margin-top: 3px;
	color: #777;
	font-size: 13px;
	line-height: 1.5;
}

.scx-seller-header-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
	flex: 0 0 auto;
}

.scx-seller-user {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.scx-seller-user-avatar {
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
}

.scx-seller-user-avatar img,
.scx-seller-avatar {
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.scx-seller-user-info {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.scx-seller-user-info strong {
	display: block;
	max-width: 180px;
	overflow: hidden;
	color: #222;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 700;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.scx-seller-user-info span {
	display: block;
	margin-top: 2px;
	color: #777;
	font-size: 12px;
	line-height: 1.4;
}

.scx-seller-logout {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 8px 13px;
	border: 1px solid #d63638;
	border-radius: 7px;
	background: #fff;
	color: #b32d2e;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition:
		background-color 0.18s ease,
		border-color 0.18s ease,
		color 0.18s ease;
}

.scx-seller-logout:hover {
	background: #d63638;
	border-color: #d63638;
	color: #fff;
	text-decoration: none;
}


/* ==========================================================
 * DASHBOARD BODY
 * ========================================================== */

.scx-seller-dashboard-body {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 20px;
	align-items: start;
	width: 100%;
}


/* ==========================================================
 * NAVIGATION
 * ========================================================== */

.scx-seller-navigation {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 100%;
	padding: 8px;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.035);
}

.scx-seller-nav-item {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 42px;
	margin: 0;
	padding: 9px 11px;
	border: 1px solid transparent;
	border-radius: 7px;
	background: transparent;
	color: #555;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	transition:
		background-color 0.18s ease,
		border-color 0.18s ease,
		color 0.18s ease,
		transform 0.18s ease;
}

.scx-seller-nav-item:hover {
	background: #f4f6f8;
	border-color: #e5e7e9;
	color: #222;
}

.scx-seller-nav-item:focus {
	outline: 2px solid rgba(34, 113, 177, 0.25);
	outline-offset: 1px;
}

.scx-seller-nav-item.is-active {
	background: #2271b1;
	border-color: #2271b1;
	color: #fff;
}

.scx-seller-nav-item.is-active:hover {
	background: #135e96;
	border-color: #135e96;
	color: #fff;
}

.scx-nav-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	min-width: 28px;
	margin-right: 7px;
	font-size: 16px;
	line-height: 1;
}

.scx-nav-label {
	display: block;
	min-width: 0;
}


/* ==========================================================
 * MAIN CONTENT
 * ========================================================== */

.scx-seller-dashboard-content {
	min-width: 0;
	width: 100%;
}


/* ==========================================================
 * SECTION
 * ========================================================== */

.scx-seller-section {
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 0;
}

.scx-seller-section[hidden] {
	display: none !important;
}

.scx-seller-section.is-active {
	display: block;
}


/* ==========================================================
 * SECTION HEADING
 * ========================================================== */

.scx-section-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
}

.scx-section-heading h1 {
	margin: 0;
	color: #222;
	font-size: 26px;
	line-height: 1.3;
	font-weight: 700;
}

.scx-section-heading p {
	margin: 6px 0 0;
	color: #777;
	font-size: 14px;
	line-height: 1.6;
}


/* ==========================================================
 * STATISTICS GRID
 * ========================================================== */

.scx-seller-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	width: 100%;
	margin-bottom: 20px;
}


/* ==========================================================
 * STAT CARD
 * ========================================================== */

.scx-stat-card {
	display: flex;
	align-items: flex-start;
	gap: 13px;
	position: relative;
	min-width: 0;
	padding: 18px;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.035);
	transition:
		border-color 0.18s ease,
		box-shadow 0.18s ease,
		transform 0.18s ease;
}

.scx-stat-card:hover {
	border-color: #d8d8d8;
	box-shadow: 0 5px 14px rgba(0, 0, 0, 0.06);
	transform: translateY(-1px);
}

.scx-stat-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	border-radius: 9px;
	background: #f1f6fb;
	color: #2271b1;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.scx-stat-products .scx-stat-card-icon {
	background: #f1f6fb;
	color: #2271b1;
}

.scx-stat-orders .scx-stat-card-icon {
	background: #f3f0ff;
	color: #6842c2;
}

.scx-stat-sales .scx-stat-card-icon {
	background: #edf9f1;
	color: #18733c;
}

.scx-stat-pending .scx-stat-card-icon {
	background: #fff8e5;
	color: #956f00;
}

.scx-stat-card-content {
	display: flex;
	flex-direction: column;
	min-width: 0;
	flex: 1 1 auto;
}

.scx-stat-label {
	display: block;
	margin: 0 0 5px;
	color: #777;
	font-size: 12px;
	line-height: 1.4;
	font-weight: 600;
}

.scx-stat-value {
	display: block;
	margin: 0;
	color: #222;
	font-size: 25px;
	line-height: 1.25;
	font-weight: 700;
	word-break: break-word;
}

.scx-stat-description {
	display: block;
	margin-top: 5px;
	color: #888;
	font-size: 11px;
	line-height: 1.45;
}


/* ==========================================================
 * LOWER DASHBOARD GRID
 * ========================================================== */

.scx-seller-dashboard-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
	gap: 20px;
	align-items: start;
	width: 100%;
}


/* ==========================================================
 * SELLER PANEL
 * ========================================================== */

.scx-seller-panel {
	min-width: 0;
	width: 100%;
	padding: 20px;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.035);
}

.scx-panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	margin-bottom: 16px;
	padding-bottom: 13px;
	border-bottom: 1px solid #ededed;
}

.scx-panel-header h2 {
	margin: 0;
	color: #222;
	font-size: 17px;
	line-height: 1.4;
	font-weight: 700;
}


/* ==========================================================
 * QUICK ACTIONS
 * ========================================================== */

.scx-quick-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	width: 100%;
}

.scx-quick-action {
	display: flex;
	align-items: center;
	gap: 11px;
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 13px;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	background: #fff;
	color: #333;
	font-family: inherit;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	transition:
		border-color 0.18s ease,
		background-color 0.18s ease,
		box-shadow 0.18s ease,
		transform 0.18s ease;
}

.scx-quick-action:hover {
	background: #fafafa;
	border-color: #cfcfcf;
	color: #222;
	text-decoration: none;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
	transform: translateY(-1px);
}

.scx-quick-action:focus {
	outline: 2px solid rgba(34, 113, 177, 0.25);
	outline-offset: 1px;
}

.scx-quick-action-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	border-radius: 7px;
	background: #f1f6fb;
	color: #2271b1;
	font-size: 17px;
	font-weight: 700;
	line-height: 1;
}

.scx-quick-action > span:last-child {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.scx-quick-action strong {
	display: block;
	margin: 0;
	color: #333;
	font-size: 13px;
	line-height: 1.4;
	font-weight: 700;
}

.scx-quick-action small {
	display: block;
	margin-top: 3px;
	color: #777;
	font-size: 11px;
	line-height: 1.45;
}


/* ==========================================================
 * ACCOUNT SUMMARY
 * ========================================================== */

.scx-account-summary {
	width: 100%;
}

.scx-account-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 15px;
	padding: 10px 0;
	border-bottom: 1px solid #ededed;
}

.scx-account-row:first-child {
	padding-top: 0;
}

.scx-account-row:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.scx-account-row > span {
	color: #777;
	font-size: 13px;
	line-height: 1.5;
}

.scx-account-row > strong {
	max-width: 65%;
	overflow-wrap: anywhere;
	color: #222;
	font-size: 13px;
	line-height: 1.5;
	font-weight: 600;
	text-align: right;
}


/* ==========================================================
 * DYNAMIC AREAS
 * ========================================================== */

.scx-seller-dynamic-area {
	width: 100%;
	min-width: 0;
	margin-top: 0;
}

.scx-panel-placeholder {
	padding: 35px 20px;
	border: 1px dashed #d9d9d9;
	border-radius: 9px;
	background: #fafafa;
	text-align: center;
}

.scx-panel-placeholder p {
	margin: 0;
	color: #777;
	font-size: 14px;
	line-height: 1.6;
}


/* ==========================================================
 * LOADING
 * ========================================================== */

.scx-seller-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 70px;
	margin-top: 15px;
	padding: 15px;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	background: #fff;
	color: #666;
	font-size: 13px;
}

.scx-seller-loading[hidden] {
	display: none !important;
}

.scx-spinner {
	display: inline-block;
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	border: 3px solid #ddd;
	border-top-color: #2271b1;
	border-radius: 50%;
	animation: scx-spin 0.7s linear infinite;
}

@keyframes scx-spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}


/* ==========================================================
 * NOTICE
 * ========================================================== */

.scx-seller-notice {
	width: 100%;
	margin-top: 15px;
	padding: 12px 14px;
	border: 1px solid #e5e5e5;
	border-radius: 7px;
	background: #fff;
	color: #555;
	font-size: 13px;
	line-height: 1.55;
}

.scx-seller-notice[hidden] {
	display: none !important;
}


/* ==========================================================
 * AUTH MESSAGES
 * ========================================================== */

.scx-seller-auth-message {
	width: 100%;
	max-width: 600px;
	margin: 40px auto;
	padding: 35px 25px;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
	text-align: center;
}

.scx-auth-message-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin: 0 auto 15px;
	border-radius: 50%;
	background: #f1f6fb;
	color: #2271b1;
	font-size: 24px;
	font-weight: 700;
}

.scx-access-denied .scx-auth-message-icon {
	background: #fdecec;
	color: #b42324;
}

.scx-seller-auth-message h2 {
	margin: 0 0 8px;
	color: #222;
	font-size: 21px;
	line-height: 1.4;
}

.scx-seller-auth-message p {
	margin: 0 0 18px;
	color: #777;
	font-size: 14px;
	line-height: 1.6;
}

.scx-seller-auth-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 9px 16px;
	border: 1px solid #2271b1;
	border-radius: 7px;
	background: #2271b1;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
}

.scx-seller-auth-button:hover {
	background: #135e96;
	border-color: #135e96;
	color: #fff;
	text-decoration: none;
}


/* ==========================================================
 * GENERIC BUTTONS
 * ========================================================== */

.scx-seller-dashboard button,
.scx-seller-dashboard input,
.scx-seller-dashboard select,
.scx-seller-dashboard textarea {
	font-family: inherit;
}

.scx-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 40px;
	padding: 9px 15px;
	border: 1px solid transparent;
	border-radius: 7px;
	cursor: pointer;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	transition:
		background-color 0.18s ease,
		border-color 0.18s ease,
		color 0.18s ease,
		box-shadow 0.18s ease,
		transform 0.18s ease;
}

.scx-button:hover {
	text-decoration: none;
}

.scx-button:focus {
	outline: 2px solid rgba(34, 113, 177, 0.25);
	outline-offset: 2px;
}

.scx-button-primary {
	background: #2271b1;
	border-color: #2271b1;
	color: #fff;
}

.scx-button-primary:hover {
	background: #135e96;
	border-color: #135e96;
	color: #fff;
}

.scx-button-secondary {
	background: #fff;
	border-color: #d6d6d6;
	color: #333;
}

.scx-button-secondary:hover {
	background: #f6f6f6;
	border-color: #bbb;
	color: #222;
}

.scx-button-danger {
	background: #fff;
	border-color: #d63638;
	color: #b32d2e;
}

.scx-button-danger:hover {
	background: #d63638;
	border-color: #d63638;
	color: #fff;
}

.scx-button-small {
	min-height: 34px;
	padding: 7px 11px;
	font-size: 13px;
}


/* ==========================================================
 * TABLE
 * ========================================================== */

.scx-table-wrap {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.scx-seller-table {
	width: 100%;
	min-width: 680px;
	border-collapse: collapse;
	border-spacing: 0;
}

.scx-seller-table th,
.scx-seller-table td {
	padding: 12px 10px;
	border-bottom: 1px solid #ededed;
	text-align: left;
	vertical-align: middle;
	font-size: 13px;
	line-height: 1.5;
}

.scx-seller-table th {
	background: #fafafa;
	color: #555;
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
}

.scx-seller-table tbody tr:hover {
	background: #fcfcfc;
}

.scx-seller-table tbody tr:last-child td {
	border-bottom: 0;
}


/* ==========================================================
 * PRODUCT
 * ========================================================== */

.scx-product-cell {
	display: flex;
	align-items: center;
	gap: 11px;
	min-width: 220px;
}

.scx-product-thumb {
	width: 46px;
	height: 46px;
	flex: 0 0 46px;
	border-radius: 6px;
	object-fit: cover;
	background: #f3f3f3;
	border: 1px solid #e8e8e8;
}

.scx-product-name {
	min-width: 0;
}

.scx-product-name a {
	display: block;
	color: #222;
	text-decoration: none;
	font-weight: 600;
}

.scx-product-name a:hover {
	color: #2271b1;
	text-decoration: none;
}

.scx-product-sku {
	margin-top: 3px;
	color: #888;
	font-size: 11px;
}


/* ==========================================================
 * STATUS
 * ========================================================== */

.scx-status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 26px;
	padding: 4px 9px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
}

.scx-status-processing {
	background: #e7f3ff;
	color: #1769aa;
}

.scx-status-completed {
	background: #e8f7ed;
	color: #18733c;
}

.scx-status-pending {
	background: #fff6dd;
	color: #8a6200;
}

.scx-status-on-hold {
	background: #f1ecff;
	color: #6345a3;
}

.scx-status-cancelled,
.scx-status-failed {
	background: #fdecec;
	color: #b42324;
}

.scx-status-refunded {
	background: #f0f0f0;
	color: #666;
}


/* ==========================================================
 * FORMS
 * ========================================================== */

.scx-form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-bottom: 16px;
}

.scx-form-row-full {
	grid-template-columns: minmax(0, 1fr);
}

.scx-form-field {
	min-width: 0;
}

.scx-form-field label {
	display: block;
	margin-bottom: 6px;
	color: #333;
	font-size: 13px;
	font-weight: 600;
}

.scx-form-field input,
.scx-form-field select,
.scx-form-field textarea {
	width: 100%;
	max-width: 100%;
	min-height: 40px;
	padding: 9px 11px;
	border: 1px solid #d8d8d8;
	border-radius: 6px;
	background: #fff;
	color: #222;
	font-family: inherit;
	font-size: 14px;
	line-height: 1.4;
	box-shadow: none;
}

.scx-form-field textarea {
	min-height: 110px;
	resize: vertical;
}

.scx-form-field input:focus,
.scx-form-field select:focus,
.scx-form-field textarea:focus {
	border-color: #2271b1;
	outline: none;
	box-shadow: 0 0 0 1px #2271b1;
}


/* ==========================================================
 * FILTER BAR
 * ========================================================== */

.scx-filter-bar {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.scx-filter-bar input,
.scx-filter-bar select {
	min-height: 38px;
	padding: 8px 10px;
	border: 1px solid #d8d8d8;
	border-radius: 6px;
	background: #fff;
	font-family: inherit;
	font-size: 13px;
}

.scx-filter-bar input {
	min-width: 220px;
}


/* ==========================================================
 * PAGINATION
 * ========================================================== */

.scx-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	flex-wrap: wrap;
	margin-top: 20px;
}

.scx-pagination a,
.scx-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 34px;
	padding: 5px 9px;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: #fff;
	color: #444;
	font-size: 13px;
	text-decoration: none;
}

.scx-pagination a:hover {
	background: #f5f5f5;
	text-decoration: none;
}

.scx-pagination .current {
	background: #2271b1;
	border-color: #2271b1;
	color: #fff;
}


/* ==========================================================
 * NOTICE
 * ========================================================== */

.scx-notice {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 18px;
	padding: 12px 14px;
	border: 1px solid #e5e5e5;
	border-radius: 7px;
	font-size: 13px;
	line-height: 1.55;
}

.scx-notice-success {
	background: #f0faf3;
	border-color: #b8dfc4;
	color: #216e39;
}

.scx-notice-error {
	background: #fff4f4;
	border-color: #efb8b8;
	color: #a12626;
}

.scx-notice-warning {
	background: #fff9e8;
	border-color: #ead58a;
	color: #735c00;
}

.scx-notice-info {
	background: #f1f8ff;
	border-color: #b9d8f0;
	color: #195b85;
}


/* ==========================================================
 * EMPTY STATE
 * ========================================================== */

.scx-empty-state {
	padding: 40px 20px;
	text-align: center;
	color: #777;
}

.scx-empty-state-title {
	margin: 0 0 7px;
	color: #444;
	font-size: 16px;
	font-weight: 700;
}

.scx-empty-state-text {
	margin: 0;
	font-size: 13px;
	line-height: 1.6;
}


/* ==========================================================
 * MODAL
 * ========================================================== */

.scx-modal {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(0, 0, 0, 0.5);
}

.scx-modal.is-open {
	display: flex;
}

.scx-modal-dialog {
	position: relative;
	width: 100%;
	max-width: 650px;
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

.scx-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	padding: 18px 20px;
	border-bottom: 1px solid #ededed;
}

.scx-modal-title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	color: #222;
}

.scx-modal-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	border-radius: 6px;
	background: transparent;
	color: #666;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}

.scx-modal-close:hover {
	background: #f3f3f3;
	color: #222;
}

.scx-modal-body {
	padding: 20px;
}

.scx-modal-footer {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	padding: 15px 20px;
	border-top: 1px solid #ededed;
}


/* ==========================================================
 * PRICE / MONEY
 * ========================================================== */

.scx-price {
	font-weight: 700;
	color: #222;
	white-space: nowrap;
}

.scx-price-old {
	margin-right: 5px;
	color: #999;
	font-weight: 400;
	text-decoration: line-through;
}


/* ==========================================================
 * STOCK
 * ========================================================== */

.scx-stock-in {
	color: #18733c;
	font-weight: 600;
}

.scx-stock-low {
	color: #9a6700;
	font-weight: 600;
}

.scx-stock-out {
	color: #b42324;
	font-weight: 600;
}


/* ==========================================================
 * RESPONSIVE — TABLET
 * ========================================================== */

@media (max-width: 1100px) {

	.scx-seller-dashboard-body {
		grid-template-columns: 190px minmax(0, 1fr);
		gap: 16px;
	}

	.scx-seller-stats-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.scx-seller-dashboard-grid {
		grid-template-columns: minmax(0, 1fr);
	}

}


/* ==========================================================
 * RESPONSIVE — MOBILE
 * ========================================================== */

@media (max-width: 767px) {

	.scx-seller-dashboard {
		padding: 14px;
	}

	.scx-seller-header {
		align-items: flex-start;
		flex-direction: column;
		padding: 18px;
	}

	.scx-seller-header-right {
		justify-content: flex-start;
		width: 100%;
		flex-wrap: wrap;
	}

	.scx-seller-user {
		flex: 1 1 auto;
	}

	.scx-seller-logout {
		flex: 0 0 auto;
	}

	.scx-seller-dashboard-body {
		grid-template-columns: minmax(0, 1fr);
		gap: 15px;
	}

	.scx-seller-navigation {
		flex-direction: row;
		align-items: stretch;
		gap: 5px;
		overflow-x: auto;
		padding: 6px;
		-webkit-overflow-scrolling: touch;
	}

	.scx-seller-nav-item {
		width: auto;
		min-width: max-content;
		flex: 0 0 auto;
		justify-content: center;
	}

	.scx-nav-icon {
		width: auto;
		min-width: auto;
		margin-right: 6px;
	}

	.scx-seller-stats-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 12px;
	}

	.scx-seller-dashboard-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.scx-seller-panel {
		padding: 16px;
	}

	.scx-quick-actions {
		grid-template-columns: minmax(0, 1fr);
	}

	.scx-form-row {
		grid-template-columns: minmax(0, 1fr);
		gap: 12px;
	}

	.scx-filter-bar {
		align-items: stretch;
		flex-direction: column;
	}

	.scx-filter-bar input,
	.scx-filter-bar select,
	.scx-filter-bar .scx-button {
		width: 100%;
		min-width: 0;
	}

	.scx-modal {
		padding: 10px;
	}

	.scx-modal-dialog {
		max-height: calc(100vh - 20px);
	}

	.scx-modal-header,
	.scx-modal-body,
	.scx-modal-footer {
		padding-left: 15px;
		padding-right: 15px;
	}

}


/* ==========================================================
 * VERY SMALL SCREENS
 * ========================================================== */

@media (max-width: 420px) {

	.scx-seller-dashboard {
		padding: 10px;
	}

	.scx-seller-header {
		padding: 15px;
	}

	.scx-seller-logo-icon {
		width: 40px;
		height: 40px;
		flex-basis: 40px;
	}

	.scx-seller-logo-text strong {
		font-size: 18px;
	}

	.scx-seller-header-right {
		flex-direction: column;
		align-items: stretch;
	}

	.scx-seller-user {
		width: 100%;
	}

	.scx-seller-logout {
		width: 100%;
	}

	.scx-stat-card {
		padding: 16px;
	}

	.scx-stat-value {
		font-size: 23px;
	}

	.scx-section-heading h1 {
		font-size: 22px;
	}

	.scx-account-row {
		flex-direction: column;
		gap: 3px;
	}

	.scx-account-row > strong {
		max-width: 100%;
		text-align: left;
	}

}


/* ==========================================================
 * ACCESSIBILITY
 * ========================================================== */

@media (prefers-reduced-motion: reduce) {

	.scx-seller-nav-item,
	.scx-quick-action,
	.scx-seller-logout,
	.scx-stat-card,
	.scx-button {
		transition: none;
	}

	.scx-spinner {
		animation: none;
	}

}


/* ==========================================================
 * WORDPRESS / WOOCOMMERCE COMPATIBILITY
 * ========================================================== */

.scx-seller-dashboard img {
	max-width: 100%;
	height: auto;
}

.scx-seller-dashboard table {
	margin: 0;
}

.scx-seller-dashboard a {
	outline-offset: 2px;
}

.scx-seller-dashboard button::-moz-focus-inner {
	border: 0;
}

.scx-seller-dashboard button {
	-webkit-tap-highlight-color: transparent;
}


/* ==========================================================
 * HIDDEN STATE
 * ========================================================== */

.scx-seller-dashboard [hidden] {
	display: none !important;
}


/* ==========================================================
 * END — SELLER CENTRAL LITE DASHBOARD CSS
 * ========================================================== */