/**
 * GotASale Admin Styles — Brand System
 *
 * Dual-theme (dark default, light toggle).
 * Plus Jakarta Sans, #0cf59c accent, card-based SaaS dashboard.
 */

/* ── Bundled Font — Plus Jakarta Sans ────────────────── */

@font-face {
	font-family: 'Plus Jakarta Sans';
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url('../fonts/plus-jakarta-sans-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: 'Plus Jakarta Sans';
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url('../fonts/plus-jakarta-sans-latin-ext.woff2') format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ── CSS Variables — Dark Theme (Default) ────────────── */

.gotasale-settings {
	--bg-primary: #0d0d0d;
	--bg-secondary: #161616;
	--bg-elevated: #1e1e1e;
	--bg-input: #252525;
	--text-primary: #f0f0f0;
	--text-secondary: #a0a0a0;
	--text-muted: #666666;
	--border-color: #2a2a2a;
	--border-hover: #3a3a3a;
	--accent: #0cf59c;
	--accent-hover: #0ad888;
	--accent-muted: rgba(12, 245, 156, 0.12);
	--accent-muted-hover: rgba(12, 245, 156, 0.2);
	--error: #f5400c;
	--error-muted: rgba(245, 64, 12, 0.12);
	--warning: #f59e0c;
	--warning-muted: rgba(245, 158, 12, 0.1);
	--telegram: #2AABEE;
	--telegram-muted: rgba(42, 171, 238, 0.12);
	--discord: #5865F2;
	--discord-muted: rgba(88, 101, 242, 0.12);
	--webhook-color: #0cf59c;
	--webhook-muted: rgba(12, 245, 156, 0.12);
	--push-color: #ffa500;
	--push-muted: rgba(255, 165, 0, 0.12);
	--slack: #4A154B;
	--slack-muted: rgba(74, 21, 75, 0.12);
	--teams: #6264A7;
	--teams-muted: rgba(98, 100, 167, 0.15);
	--gchat: #00AC69;
	--gchat-muted: rgba(0, 172, 105, 0.15);
	--shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	--pricing-popular-glow: 0 0 0 2px var(--accent), 0 4px 24px rgba(12, 245, 156, 0.15);
}

/* ── Light Theme Override ────────────────────────────── */

.gotasale-settings[data-theme="light"] {
	--bg-primary: #f5f5f5;
	--bg-secondary: #ececec;
	--bg-elevated: #ffffff;
	--bg-input: #f0f0f0;
	--text-primary: #1a1a1a;
	--text-secondary: #555555;
	--text-muted: #999999;
	--border-color: #e0e0e0;
	--border-hover: #ccc;
	--error-muted: rgba(245, 64, 12, 0.08);
	--warning-muted: rgba(245, 158, 12, 0.08);
	--telegram-muted: rgba(42, 171, 238, 0.08);
	--discord-muted: rgba(88, 101, 242, 0.08);
	--webhook-muted: rgba(12, 245, 156, 0.08);
	--push-muted: rgba(255, 165, 0, 0.08);
	--slack-muted: rgba(74, 21, 75, 0.08);
	--teams-muted: rgba(98, 100, 167, 0.1);
	--gchat-muted: rgba(0, 172, 105, 0.1);
	--shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
	--pricing-popular-glow: 0 0 0 2px var(--accent), 0 4px 24px rgba(12, 245, 156, 0.1);
}

/* ── Base Reset — Override WP Admin ──────────────────── */

.gotasale-settings {
	max-width: 960px;
	font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	color: var(--text-primary);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	background: var(--bg-primary);
	padding: 24px;
	padding-bottom: 40px;
	border-radius: 12px;
}

/* Override WP's white background within the settings area */
.gotasale-settings,
.gotasale-settings *,
.gotasale-settings *::before,
.gotasale-settings *::after {
	box-sizing: border-box;
}


.gotasale-settings h1,
.gotasale-settings h2,
.gotasale-settings h3 {
	font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	color: var(--text-primary);
	margin: 0;
	padding: 0;
	line-height: 1.3;
}

.gotasale-settings p {
	color: var(--text-secondary);
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

.gotasale-settings code {
	background: var(--bg-input);
	color: var(--accent);
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 13px;
	font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
}

.gotasale-settings input[type="text"],
.gotasale-settings input[type="url"] {
	font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	background: var(--bg-input);
	border: 1px solid var(--border-color);
	color: var(--text-primary);
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 14px;
	transition: border-color 0.15s, box-shadow 0.15s;
	outline: none;
	width: 100%;
}

.gotasale-settings input[type="text"]:focus,
.gotasale-settings input[type="url"]:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px var(--accent-muted);
}

.gotasale-settings input[type="checkbox"] {
	accent-color: var(--accent);
}

/* ── Theme Toggle ────────────────────────────────────── */

.gotasale-theme-toggle {
	position: absolute;
	top: 16px;
	right: 20px;
	display: flex;
	align-items: center;
	gap: 8px;
	z-index: 10;
}

.gotasale-theme-toggle__label {
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	user-select: none;
}

.gotasale-theme-toggle__switch {
	position: relative;
	width: 44px;
	height: 24px;
	background: var(--border-color);
	border-radius: 12px;
	cursor: pointer;
	transition: background 0.2s;
	border: none;
	padding: 0;
}

.gotasale-theme-toggle__switch::after {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 20px;
	height: 20px;
	background: var(--text-primary);
	border-radius: 50%;
	transition: transform 0.2s;
}

.gotasale-settings[data-theme="light"] .gotasale-theme-toggle__switch {
	background: var(--accent);
}

.gotasale-settings[data-theme="light"] .gotasale-theme-toggle__switch::after {
	transform: translateX(20px);
	background: #fff;
}

/* ── Brand Header ────────────────────────────────────── */

.gotasale-brand-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 28px;
	padding-right: 120px; /* space for theme toggle */
}

.gotasale-brand-wordmark {
	font-size: 28px;
	font-weight: 600;
	color: var(--text-primary);
	letter-spacing: -0.04em;
	display: flex;
	align-items: center;
	gap: 0;
}

.gotasale-settings[data-theme="light"] .gotasale-brand-wordmark {
	font-weight: 700;
}

.gotasale-brand-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-left: 2px;
	align-self: flex-end;
	margin-bottom: -3px;
	background: var(--accent);
	border-radius: 50%;
	box-shadow: 0 0 10px #0cf59c, 0 0 20px rgba(12, 245, 156, 0.4);
	animation: gotasale-pulse 2s ease-in-out infinite;
}

@keyframes gotasale-pulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.1); opacity: 0.8; }
}

/* ── Card Component ──────────────────────────────────── */

.gotasale-card {
	background: var(--bg-elevated);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 20px;
	box-shadow: var(--shadow);
}

.gotasale-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.gotasale-card__title {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-primary);
}

.gotasale-card__description {
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 16px;
}

/* ── Button Components ───────────────────────────────── */

.gotasale-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 14px;
	font-weight: 600;
	padding: 10px 20px;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: all 0.15s ease;
	text-decoration: none;
	line-height: 1;
	white-space: nowrap;
}

.gotasale-btn--sm {
	font-size: 12px;
	padding: 6px 12px;
	border-radius: 6px;
}

.gotasale-btn--primary {
	background: var(--accent);
	color: #0d0d0d;
}

.gotasale-btn--primary:hover {
	background: var(--accent-hover);
	color: #0d0d0d;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(12, 245, 156, 0.3);
}

.gotasale-btn--primary:active {
	transform: translateY(0);
}

.gotasale-btn--primary:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.gotasale-btn--secondary {
	background: transparent;
	color: var(--accent);
	border: 1px solid var(--accent);
}

.gotasale-btn--secondary:hover {
	background: var(--accent-muted);
	color: var(--accent);
}

.gotasale-btn--ghost {
	background: var(--accent-muted);
	color: var(--accent);
	border: none;
}

.gotasale-btn--ghost:hover {
	background: var(--accent-muted-hover);
	color: var(--accent);
}

.gotasale-btn--danger {
	background: var(--error-muted);
	color: var(--error);
	border: none;
}

.gotasale-btn--danger:hover {
	background: rgba(245, 64, 12, 0.2);
	color: var(--error);
}

/* ── Badge Components ────────────────────────────────── */

.gotasale-tier-badge {
	display: inline-flex;
	align-items: center;
	padding: 4px 14px;
	border-radius: 100px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.gotasale-tier-badge--free {
	background: var(--bg-input);
	color: var(--text-muted);
}

.gotasale-tier-badge--pro {
	background: var(--accent-muted);
	color: var(--accent);
}

.gotasale-tier-badge--agency {
	background: var(--discord-muted);
	color: var(--discord);
}

.gotasale-platform-badge {
	display: inline-flex;
	align-items: center;
	padding: 3px 10px;
	border-radius: 100px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.gotasale-platform-badge--telegram {
	background: var(--telegram-muted);
	color: var(--telegram);
}

.gotasale-platform-badge--discord {
	background: var(--discord-muted);
	color: var(--discord);
}

.gotasale-platform-badge--webhook {
	background: var(--webhook-muted);
	color: var(--webhook-color);
}

.gotasale-platform-badge--push {
	background: var(--push-muted);
	color: var(--push-color);
}

.gotasale-platform-badge--slack {
	background: var(--slack-muted);
	color: var(--slack);
}

.gotasale-platform-badge--teams {
	background: var(--teams-muted);
	color: var(--teams);
}

.gotasale-platform-badge--gchat {
	background: var(--gchat-muted);
	color: var(--gchat);
}

/* ── Registration Warning Banner ─────────────────────── */

.gotasale-registration-warning {
	background: var(--warning-muted);
	border: 1px solid rgba(245, 158, 12, 0.3);
	border-radius: 12px;
	padding: 16px 20px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.gotasale-registration-warning__content {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1;
	min-width: 0;
}

.gotasale-registration-warning__icon {
	font-size: 20px;
	flex-shrink: 0;
}

.gotasale-registration-warning__text {
	font-size: 14px;
	font-weight: 500;
	color: var(--warning);
}

.gotasale-registration-warning__text small {
	display: block;
	font-size: 12px;
	font-weight: 400;
	color: var(--text-muted);
	margin-top: 2px;
}

/* ── Pricing Grid ────────────────────────────────────── */

.gotasale-pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 16px;
}

@media (max-width: 860px) {
	.gotasale-pricing-grid {
		grid-template-columns: 1fr;
	}
}

.gotasale-pricing-tier {
	background: var(--bg-secondary);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 24px 20px;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: border-color 0.2s;
}

.gotasale-pricing-tier:hover {
	border-color: var(--border-hover);
}

.gotasale-pricing-tier--popular {
	border-color: var(--accent);
	box-shadow: var(--pricing-popular-glow);
}

.gotasale-pricing-tier--current {
	border-color: var(--accent);
}

.gotasale-pricing-popular-tag {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent);
	color: #0d0d0d;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 12px;
	border-radius: 100px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.gotasale-pricing-tier__name {
	font-size: 18px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 8px;
}

.gotasale-pricing-tier__price {
	font-size: 32px;
	font-weight: 700;
	color: var(--text-primary);
	line-height: 1;
	margin-bottom: 4px;
}

.gotasale-pricing-tier__price span {
	font-size: 14px;
	font-weight: 400;
	color: var(--text-muted);
}

.gotasale-pricing-tier__yearly {
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 20px;
}

.gotasale-pricing-tier__features {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	flex: 1;
}

.gotasale-pricing-tier__features li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 13px;
	color: var(--text-secondary);
	padding: 5px 0;
}

.gotasale-pricing-tier__features li::before {
	content: '';
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	margin-top: 1px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230cf59c'%3E%3Cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2.5-2.5a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
}

.gotasale-pricing-tier__action {
	margin-top: auto;
}

.gotasale-pricing-tier__action .gotasale-btn {
	width: 100%;
}

.gotasale-pricing-tier__action--dual {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.gotasale-save-tag {
	font-size: 11px;
	font-weight: 600;
	color: var(--accent, #0cf59c);
	background: rgba(12, 245, 156, 0.12);
	padding: 2px 8px;
	border-radius: 100px;
	margin-left: 4px;
}

.gotasale-pricing-current-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 10px 20px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--accent);
	background: var(--accent-muted);
}

/* ── Connection Card — Token Display ─────────────────── */

.gotasale-token-display {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
	margin-bottom: 16px;
}

.gotasale-token-value {
	flex: 1;
	font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
	font-size: 14px;
	background: var(--bg-input);
	color: var(--accent);
	padding: 10px 14px;
	border-radius: 8px;
	border: 1px solid var(--border-color);
	user-select: all;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gotasale-token-copy {
	flex-shrink: 0;
}

.gotasale-license-field {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--border-color);
}

.gotasale-license-field label {
	display: block;
	font-size: 13px;
	font-weight: 500;
	color: var(--text-secondary);
	margin-bottom: 6px;
}

.gotasale-license-field .gotasale-license-row {
	display: flex;
	gap: 8px;
}

.gotasale-license-field input {
	flex: 1;
}

/* ── Pending Link Requests ───────────────────────────── */

.gotasale-pending-list {
	margin: 10px 0;
}

.gotasale-pending-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	border: 1px solid rgba(245, 158, 12, 0.3);
	border-radius: 8px;
	margin-bottom: 8px;
	background: var(--warning-muted);
}

.gotasale-pending-info {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.gotasale-pending-title {
	font-size: 13px;
	font-weight: 600;
	color: var(--text-primary);
}

.gotasale-pending-code {
	font-size: 13px;
	color: var(--text-primary);
	font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
}

.gotasale-pending-expires {
	font-size: 12px;
	color: var(--text-muted);
}

.gotasale-pending-actions {
	flex-shrink: 0;
}

/* ── Destinations Section ────────────────────────────── */

.gotasale-channel-list {
	margin: 10px 0;
}

.gotasale-channel-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	margin-bottom: 8px;
}

.gotasale-channel-info {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.gotasale-channel-title {
	font-size: 13px;
	font-weight: 600;
	color: var(--text-primary);
}

.gotasale-channel-meta {
	display: flex;
	gap: 16px;
	flex: 1;
	min-width: 0;
}

.gotasale-channel-events,
.gotasale-channel-fields {
	font-size: 12px;
	color: var(--text-muted);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.gotasale-channel-actions {
	flex-shrink: 0;
}


/* ── Empty State ─────────────────────────────────────── */

.gotasale-empty-state {
	padding: 24px;
	text-align: center;
	color: var(--text-muted);
	font-size: 14px;
	border: 1px dashed var(--border-color);
	border-radius: 8px;
}

/* ── Loading State ───────────────────────────────────── */

.gotasale-loading {
	padding: 24px;
	text-align: center;
	color: var(--text-muted);
	font-size: 14px;
}

/* ── Test Result & Config Result Inline ──────────────── */

#gotasale-test-result {
	margin-left: 10px;
	font-size: 13px;
}

/* ── Utility ─────────────────────────────────────────── */

/* ── Accordion (Collapsible Sections) ────────────────── */

.gotasale-accordion {
	margin-top: 20px;
	margin-bottom: 16px;
	border: 1px solid var(--border-color);
	border-radius: 10px;
	overflow: hidden;
}

.gotasale-accordion__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 18px;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-primary);
	cursor: pointer;
	background: var(--bg-secondary);
	list-style: none;
	user-select: none;
	transition: background 0.15s;
}

.gotasale-accordion__trigger:hover {
	background: var(--bg-input);
}

.gotasale-accordion__trigger::-webkit-details-marker {
	display: none;
}

.gotasale-accordion__icon {
	font-size: 10px;
	color: var(--text-muted);
	transition: transform 0.2s ease;
}

.gotasale-accordion[open] .gotasale-accordion__icon {
	transform: rotate(180deg);
}

.gotasale-accordion[open] .gotasale-connect-guide {
	margin-top: 0;
	margin-bottom: 0;
	padding: 16px;
	border-radius: 0;
}

/* ── Connect Guide ───────────────────────────────────── */

.gotasale-connect-guide {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 20px;
	margin-bottom: 16px;
}

.gotasale-connect-guide__section {
	background: var(--bg-secondary);
	border: 1px solid var(--border-color);
	border-radius: 10px;
	padding: 18px;
}

.gotasale-connect-guide__header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-primary);
}

.gotasale-connect-steps {
	list-style: none;
	padding: 0;
	margin: 0;
	counter-reset: step-counter;
}

.gotasale-connect-steps li {
	counter-increment: step-counter;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	color: var(--text-secondary);
	padding: 6px 0;
	line-height: 1.5;
}

.gotasale-connect-steps li::before {
	content: counter(step-counter);
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	background: var(--accent-muted);
	color: var(--accent);
	font-size: 12px;
	font-weight: 700;
	border-radius: 50%;
	margin-top: 1px;
}

.gotasale-connect-command {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 4px;
}

.gotasale-connect-command code {
	flex: 1;
	display: block;
	background: var(--bg-input);
	color: var(--accent);
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 13px;
	font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
	border: 1px solid var(--border-color);
	user-select: all;
	word-break: break-all;
}

.gotasale-connect-command .gotasale-btn {
	flex-shrink: 0;
}

/* ── Utility ─────────────────────────────────────────── */

/* ── Notification Toggle Group ───────────────────────── */

.gotasale-toggle-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 8px;
}

.gotasale-toggle-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--text-secondary);
	cursor: pointer;
	padding: 4px 0;
}

#gotasale-events-result {
	margin-left: 10px;
	font-size: 13px;
}

/* ── Feature List (Info Section) ─────────────────────── */

.gotasale-feature-list {
	list-style: none;
	padding: 0;
	margin: 12px 0 0;
}

.gotasale-feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 13px;
	color: var(--text-secondary);
	padding: 5px 0;
}

.gotasale-feature-list li::before {
	content: '';
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	margin-top: 1px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230cf59c'%3E%3Cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2.5-2.5a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
}

.gotasale-mt-sm { margin-top: 8px; }
.gotasale-mt-md { margin-top: 16px; }
.gotasale-mb-sm { margin-bottom: 8px; }
.gotasale-mb-md { margin-bottom: 16px; }
.gotasale-text-success { color: var(--accent) !important; }
.gotasale-text-error { color: var(--error) !important; }
