/* ==========================================================================
   Product CSV Import & Export — Professional Admin Styles
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
	--wcpie-purple: #7c3aed;
	--wcpie-purple-lt: #ede9fe;
	--wcpie-blue: #2563eb;
	--wcpie-blue-lt: #dbeafe;
	--wcpie-green: #059669;
	--wcpie-green-lt: #d1fae5;
	--wcpie-orange: #d97706;
	--wcpie-orange-lt: #fef3c7;
	--wcpie-text: #1e1b4b;
	--wcpie-muted: #6b7280;
	--wcpie-border: #e5e7eb;
	--wcpie-bg: #f8f7ff;
	--wcpie-card-bg: #ffffff;
	--wcpie-radius: 14px;
	--wcpie-shadow: 0 4px 24px rgba(124, 58, 237, .10);
	--wcpie-shadow-md: 0 8px 40px rgba(124, 58, 237, .15);
}

/* --------------------------------------------------------------------------
   Page Wrapper
   -------------------------------------------------------------------------- */
.wcpie-wrap {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--wcpie-text);
	/* max-width: 1200px; */
	padding: 0;
}

/* --------------------------------------------------------------------------
   Hero Header
   -------------------------------------------------------------------------- */
.wcpie-hero {
	background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 60%, #2563eb 100%);
	border-radius: var(--wcpie-radius);
	padding: 20px 48px 20px;
	margin: 24px 20px 0;
	display: flex;
	align-items: center;
	gap: 32px;
	position: relative;
	overflow: hidden;
	box-shadow: var(--wcpie-shadow-md);
}

.wcpie-hero::before {
	content: '';
	position: absolute;
	top: -60px;
	right: -60px;
	width: 260px;
	height: 260px;
	background: rgba(255, 255, 255, .07);
	border-radius: 50%;
}

.wcpie-hero::after {
	content: '';
	position: absolute;
	bottom: -80px;
	right: 120px;
	width: 180px;
	height: 180px;
	background: rgba(255, 255, 255, .05);
	border-radius: 50%;
}

.wcpie-hero-icon {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, .18);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, .25);
}

.wcpie-hero-icon svg {
	width: 38px;
	height: 38px;
	fill: #fff;
}

.wcpie-hero-text h1 {
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 8px;
	line-height: 1.2;
}

.wcpie-hero-text p {
	font-size: 15px;
	color: rgba(255, 255, 255, .80);
	margin: 0;
	max-width: 520px;
	line-height: 1.6;
}

.wcpie-hero-badge {
	margin-left: auto;
	flex-shrink: 0;
	background: rgba(255, 255, 255, .15);
	border: 1px solid rgba(255, 255, 255, .30);
	border-radius: 50px;
	padding: 6px 18px;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	letter-spacing: .4px;
	text-transform: uppercase;
	backdrop-filter: blur(8px);
}

/* --------------------------------------------------------------------------
   Content Area
   -------------------------------------------------------------------------- */
.wcpie-main-container {
	display: flex;
	gap: 20px;
	padding: 0 20px 32px;
}

.wcpie-content {
	width: 70%;
	padding: 32px 0;
}

.wcpie-sidebar {
	width: 30%;
	padding: 65px 0;
	display: flex;
	flex-direction: column;
	gap: 28px;
	position: sticky;
	top: 32px;
	height: fit-content;
}

@media (max-width: 1200px) {
	.wcpie-main-container {
		flex-direction: column;
	}

	.wcpie-content,
	.wcpie-sidebar {
		width: 100%;
		padding: 16px 0;
	}

	.wcpie-sidebar {
		position: static;
	}
}

/* --------------------------------------------------------------------------
   Sidebar Banners — Premium Refinements
   -------------------------------------------------------------------------- */
.wcpie-banner-card {
	background: var(--wcpie-card-bg);
	border-radius: var(--wcpie-radius);
	border: 1px solid var(--wcpie-border);
	box-shadow: var(--wcpie-shadow);
	padding: 0;
	position: relative;
	overflow: hidden;
	/* Prevent pro badge overflow */
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: flex;
	flex-direction: column;
}

.wcpie-sidebar .wcpie-banner-card--alt {
	margin-top: 30px;
}

.wcpie-banner-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--wcpie-shadow-md);
}

.wcpie-banner-pro-badge {
	position: absolute;
	top: 4px;
	right: 4px;
	background: transparent;
	color: #d97706;
	padding: 5px 10px;
	font-size: 11px;
	font-weight: 700;
	border-radius: 8px;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 6px;
	border: 1px solid rgba(217, 119, 6, 0.2);
}

.wcpie-banner-pro-badge::before,
.wcpie-banner-pro-badge::after {
	display: none;
}

.wcpie-banner-header {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 24px;
	border-bottom: 1px solid var(--wcpie-border);
	background: var(--wcpie-bg);
}

.wcpie-banner-header::before {
	display: none;
}

.wcpie-banner-icon {
	width: 48px;
	height: 48px;
	background: var(--wcpie-blue-lt);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.wcpie-banner-icon--alt {
	background: var(--wcpie-purple-lt);
}

.wcpie-banner-pro-badge svg {
	width: 14px;
	height: 14px;
	fill: #d97706;
}

.wcpie-banner-icon svg {
	width: 24px;
	height: 24px;
	fill: var(--wcpie-blue);
}

.wcpie-banner-icon--alt svg {
	fill: var(--wcpie-purple);
}

.wcpie-banner-title h3 {
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	line-height: 1.4;
	color: var(--wcpie-text);
}

.wcpie-banner-body {
	padding: 24px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.wcpie-banner-features {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.wcpie-banner-features li {
	font-size: 13px;
	color: var(--wcpie-muted);
	display: flex;
	align-items: flex-start;
	gap: 10px;
	line-height: 1.5;
}

.wcpie-check {
	width: 16px;
	height: 16px;
	background: var(--wcpie-green-lt);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
}

.wcpie-check::after {
	content: '';
	width: 6px;
	height: 3px;
	border-left: 2px solid #10b981;
	border-bottom: 2px solid #10b981;
	transform: rotate(-45deg);
	margin-bottom: 2px;
}

.wcpie-sidebar-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	background: #fff;
	color: var(--wcpie-text) !important;
	border: 1px solid var(--wcpie-border);
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none !important;
	transition: all 0.2s ease;
	margin-top: auto;
}

.wcpie-sidebar-btn:hover {
	background: var(--wcpie-bg);
	border-color: #d1d5db;
	color: var(--wcpie-text) !important;
}

.wcpie-sidebar-btn .arrow {
	margin-left: 6px;
	transition: transform 0.2s ease;
}

.wcpie-sidebar-btn:hover .arrow {
	transform: translateX(4px);
}

.description {
	font-size: 12px !important;
}

.wcpie-banner-title-small {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--wcpie-text);
	margin-bottom: 20px;
	position: relative;
	padding-left: 15px;
}

.wcpie-banner-title-small::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 18px;
	background: var(--wcpie-purple);
	border-radius: 2px;
}

.wcpie-banner-desc {
	font-size: 13px;
	color: var(--wcpie-muted);
	margin: 0 0 20px;
	line-height: 1.6;
}

.wcpie-banner-trust {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--wcpie-border);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.wcpie-banner-trust-title {
	font-size: 13px;
	font-weight: 600;
	color: var(--wcpie-text);
	margin: 0;
}

.wcpie-trust-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 0;
	background: transparent;
	border: none;
}

.wcpie-trust-badge {
	width: 24px;
	height: 24px;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: none;
}

.wcpie-trust-badge svg {
	width: 20px;
	height: 20px;
	fill: #f59e0b;
}

.wcpie-trust-text strong {
	font-size: 13px;
	color: var(--wcpie-muted);
	line-height: 1.4;
	display: block;
	font-weight: 500;
}

/* --------------------------------------------------------------------------
   Section Title
   -------------------------------------------------------------------------- */
.wcpie-section-title {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .8px;
	color: var(--wcpie-muted);
	margin: 0 0 16px;
}

/* --------------------------------------------------------------------------
   Card Grid
   -------------------------------------------------------------------------- */
.wcpie-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
	margin-bottom: 40px;
}

.wcpie-card {
	background: var(--wcpie-card-bg);
	border-radius: var(--wcpie-radius);
	border: 1px solid var(--wcpie-border);
	box-shadow: var(--wcpie-shadow);
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: transform .2s ease, box-shadow .2s ease;
	text-decoration: none !important;
	color: inherit !important;
	position: relative;
	overflow: hidden;
}

.wcpie-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--wcpie-shadow-md);
}

.wcpie-card-accent {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	border-radius: var(--wcpie-radius) var(--wcpie-radius) 0 0;
}

.wcpie-card--import .wcpie-card-accent {
	background: linear-gradient(90deg, #7c3aed, #4f46e5);
}

.wcpie-card--export .wcpie-card-accent {
	background: linear-gradient(90deg, #2563eb, #0891b2);
}

.wcpie-card-icon {
	width: 54px;
	height: 54px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.wcpie-card--import .wcpie-card-icon {
	background: var(--wcpie-purple-lt);
}

.wcpie-card--export .wcpie-card-icon {
	background: var(--wcpie-blue-lt);
}

.wcpie-card-icon svg {
	width: 26px;
	height: 26px;
}

.wcpie-card--import .wcpie-card-icon svg {
	fill: var(--wcpie-purple);
}

.wcpie-card--export .wcpie-card-icon svg {
	fill: var(--wcpie-blue);
}

.wcpie-card h2 {
	font-size: 18px;
	font-weight: 700;
	margin: 0;
	color: var(--wcpie-text);
}

.wcpie-card p {
	font-size: 14px;
	color: var(--wcpie-muted);
	margin: 0;
	line-height: 1.7;
}

.wcpie-card-features {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.wcpie-card-features li {
	font-size: 13px;
	color: var(--wcpie-muted);
	display: flex;
	align-items: center;
	gap: 8px;
}

.wcpie-card-features li::before {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	flex-shrink: 0;
}

.wcpie-card--import .wcpie-card-features li::before {
	background: var(--wcpie-purple);
}

.wcpie-card--export .wcpie-card-features li::before {
	background: var(--wcpie-blue);
}

.wcpie-card-footer {
	margin-top: auto;
	padding-top: 8px;
}

/* --------------------------------------------------------------------------
   Footer Horizontal Banners
   -------------------------------------------------------------------------- */
.wcpie-footer-banners {
	/* margin-top: 48px; */
	width: 96%;
	margin-left: 20px;
}

.wcpie-banner-card--horizontal {
	display: flex;
	padding: 0;
	flex-direction: row;
}

.wcpie-banner-horizontal-flex {
	display: flex;
	width: 100%;
}

.wcpie-banner-card--horizontal .wcpie-banner-header {
	width: 45%;
	flex-shrink: 0;
	border-bottom: none;
	border-right: 1px solid var(--wcpie-border);
	border-radius: var(--wcpie-radius) 0 0 var(--wcpie-radius) !important;
	padding: 32px;
}

.wcpie-banner-card--horizontal .wcpie-banner-body {
	width: 55%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 32px;
	gap: 24px;
}

.wcpie-banner-card--horizontal .wcpie-banner-trust {
	margin-top: 25px;
	padding-top: 0;
	border-top: none;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 16px;
}

.wcpie-banner-card--horizontal .wcpie-trust-item {
	padding: 10px 14px;
	background: transparent;
	border: 1px solid var(--wcpie-border);
	border-radius: 8px;
	flex: 1;
	min-width: 200px;
}

.wcpie-banner-card--horizontal .wcpie-banner-desc {
	margin: 12px 0 0;
}

.wcpie-banner-card--horizontal .wcpie-banner-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px 24px;
	margin-bottom: 0;
}

.wcpie-banner-card--horizontal .wcpie-sidebar-btn {
	align-self: flex-start;
}

@media (max-width: 1200px) {
	.wcpie-banner-card--horizontal .wcpie-banner-features {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	.wcpie-banner-horizontal-flex {
		flex-direction: column;
	}

	.wcpie-banner-card--horizontal .wcpie-banner-header,
	.wcpie-banner-card--horizontal .wcpie-banner-body {
		width: 100%;
		border-right: none;
		border-bottom: 1px solid var(--wcpie-border);
		border-radius: var(--wcpie-radius) var(--wcpie-radius) 0 0 !important;
	}

	.wcpie-banner-card--horizontal .wcpie-banner-body {
		border-radius: 0 0 var(--wcpie-radius) var(--wcpie-radius) !important;
		border-bottom: none;
	}

	.wcpie-banner-card--horizontal .wcpie-banner-features {
		grid-template-columns: 1fr;
	}
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.wcpie-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 24px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	border: none;
	text-decoration: none !important;
	transition: opacity .15s, box-shadow .15s, transform .15s;
	letter-spacing: .15px;
}

.wcpie-btn:hover {
	transform: translateY(-1px);
	opacity: .92;
}

.wcpie-btn--import {
	background: linear-gradient(135deg, #7c3aed, #4f46e5);
	color: #fff !important;
	box-shadow: 0 4px 12px rgba(124, 58, 237, .35);
}

.wcpie-btn--export {
	background: linear-gradient(135deg, #2563eb, #0891b2);
	color: #fff !important;
	box-shadow: 0 4px 12px rgba(37, 99, 235, .35);
}

.wcpie-btn svg {
	width: 16px;
	height: 16px;
	fill: #fff;
	flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Info / Tips Row
   -------------------------------------------------------------------------- */
.wcpie-tips {
	background: var(--wcpie-card-bg);
	border-radius: var(--wcpie-radius);
	border: 1px solid var(--wcpie-border);
	padding: 28px 32px;
	box-shadow: var(--wcpie-shadow);
}

.wcpie-tips h3 {
	font-size: 14px;
	font-weight: 700;
	margin: 0 0 18px;
	color: var(--wcpie-text);
}

.wcpie-tips-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}

.wcpie-tip {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.wcpie-tip-dot {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 15px;
}

.wcpie-tip-dot--purple {
	background: var(--wcpie-purple-lt);
}

.wcpie-tip-dot--blue {
	background: var(--wcpie-blue-lt);
}

.wcpie-tip-dot--green {
	background: var(--wcpie-green-lt);
}

.wcpie-tip-dot--orange {
	background: var(--wcpie-orange-lt);
}

.wcpie-tip-body strong {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--wcpie-text);
	margin-bottom: 3px;
}

.wcpie-tip-body span {
	font-size: 12px;
	color: var(--wcpie-muted);
	line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Sub-page Header (Import / Export pages)
   -------------------------------------------------------------------------- */
.wcpie-page-header {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 24px 20px 0;
	margin-bottom: -8px;
}

.wcpie-page-header-icon {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wcpie-page-header-icon--import {
	background: var(--wcpie-purple-lt);
}

.wcpie-page-header-icon--export {
	background: var(--wcpie-blue-lt);
}

.wcpie-page-header-icon svg {
	width: 22px;
	height: 22px;
}

.wcpie-page-header-icon--import svg {
	fill: var(--wcpie-purple);
}

.wcpie-page-header-icon--export svg {
	fill: var(--wcpie-blue);
}

.wcpie-page-header-text h1 {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 2px;
	color: var(--wcpie-text);
}

.wcpie-page-header-text p {
	font-size: 13px;
	color: var(--wcpie-muted);
	margin: 0;
}

.wcpie-back-btn {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 500;
	color: var(--wcpie-muted) !important;
	text-decoration: none !important;
	padding: 7px 14px;
	border-radius: 6px;
	border: 1px solid var(--wcpie-border);
	background: #fff;
	transition: color .15s, border-color .15s;
}

.wcpie-back-btn:hover {
	color: var(--wcpie-purple) !important;
	border-color: var(--wcpie-purple);
}

.wcpie-back-btn svg {
	width: 13px;
	height: 13px;
	fill: currentColor;
}

/* --------------------------------------------------------------------------
   WooCommerce importer / exporter overrides
   -------------------------------------------------------------------------- */

/* Progress form wrapper — override WooCommerce's built-in max-width: 710px */
.woocommerce-progress-form-wrapper,
.woocommerce-exporter-wrapper,
.woocommerce-importer-wrapper {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	box-sizing: border-box;
	margin-top: 10px !important;
}

/* Importer wrapper */
.woocommerce-importer,
.woocommerce-exporter-wrapper {
	background: #fff;
	border-radius: 12px;
	border: 1px solid var(--wcpie-border);
	box-shadow: var(--wcpie-shadow);
	/* margin: 20px !important; */
	overflow: hidden;
	margin-top: 10px !important;
}

.woocommerce-importer header,
.woocommerce-exporter header {
	background: linear-gradient(135deg, #f8f7ff 0%, #ede9fe 100%);
	border-bottom: 1px solid var(--wcpie-border);
	padding: 28px 32px !important;
}

.woocommerce-importer header h2,
.woocommerce-exporter header h2 {
	font-size: 17px !important;
	font-weight: 700 !important;
	color: var(--wcpie-text) !important;
	margin: 0 0 6px !important;
}

.woocommerce-importer header p,
.woocommerce-exporter header p {
	font-size: 13px !important;
	color: var(--wcpie-muted) !important;
	margin: 0 !important;
}

.woocommerce-importer section,
.woocommerce-exporter section {
	padding: 28px 32px !important;
}

/* Step indicator */
ol.wc-progress-steps {
	background: #fff;
	border-bottom: 1px solid var(--wcpie-border);
	padding: 16px 0px !important;
	margin: 0 !important;
	display: flex;
	gap: 0;
	border-radius: 12px;
}

ol.wc-progress-steps li {
	font-size: 12px !important;
	font-weight: 600 !important;
	color: var(--wcpie-muted) !important;
	letter-spacing: .3px;
}

ol.wc-progress-steps li.active {
	color: var(--wcpie-purple) !important;
}

ol.wc-progress-steps li.done {
	color: var(--wcpie-green) !important;
}

/* Form table */
.woocommerce-importer .form-table th,
.woocommerce-exporter .form-table th {
	font-size: 13px !important;
	font-weight: 600 !important;
	color: var(--wcpie-text) !important;
	padding: 16px 16px 16px 0 !important;
}

.woocommerce-importer .form-table td,
.woocommerce-exporter .form-table td {
	padding: 12px 0 !important;
}

/* Primary action button override */
.woocommerce-importer-action .button-primary,
.woocommerce-exporter .button-primary,
.wc-actions .woocommerce-exporter-button {
	background: linear-gradient(135deg, #7c3aed, #4f46e5) !important;
	border: none !important;
	border-radius: 8px !important;
	padding: 10px 24px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	box-shadow: 0 4px 12px rgba(124, 58, 237, .30) !important;
	color: #fff !important;
	cursor: pointer;
	transition: opacity .15s, transform .15s !important;
}

.woocommerce-importer-action .button-primary:hover,
.woocommerce-exporter .button-primary:hover,
.wc-actions .woocommerce-exporter-button:hover {
	opacity: .88 !important;
	transform: translateY(-1px) !important;
	box-shadow: 0 6px 16px rgba(124, 58, 237, .40) !important;
}

/* Progress bar */
.woocommerce-importer-progress,
.woocommerce-exporter-progress {
	border-radius: 50px !important;
	height: 8px !important;
	border: none !important;
	background: var(--wcpie-purple-lt) !important;
	overflow: hidden;
	display: block;
}

.woocommerce-importer-progress::-webkit-progress-bar,
.woocommerce-exporter-progress::-webkit-progress-bar {
	background: var(--wcpie-purple-lt);
}

.woocommerce-importer-progress::-webkit-progress-value,
.woocommerce-exporter-progress::-webkit-progress-value {
	background: linear-gradient(90deg, var(--wcpie-purple), var(--wcpie-blue));
	border-radius: 50px;
	transition: width .4s ease;
}

/* wc-actions bar */
.wc-actions {
	padding: 20px 32px !important;
	border-top: 1px solid var(--wcpie-border);
	background: #fafafa;
}

/* File upload area */
.woocommerce-importer .form-table input[type="file"] {
	border: 2px dashed var(--wcpie-border);
	border-radius: 8px;
	padding: 10px 14px;
	width: 100%;
	cursor: pointer;
}

/* Select2 overrides */
.select2-container--default .select2-selection--multiple {
	border-radius: 8px !important;
	border-color: var(--wcpie-border) !important;
	min-height: 42px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
	background: var(--wcpie-purple) !important;
	border: none !important;
	border-radius: 4px !important;
	color: #fff !important;
	font-size: 12px !important;
}

/* Import mapping table */
.woocommerce-importer-mapped-column,
.woocommerce-importer-not-mapped {
	font-size: 13px;
}

/* Done page */
.woocommerce-importer-done,
.woocommerce-importer-results {
	padding: 28px 32px;
}

/* Notice override */
.notice.notice-success,
.notice.notice-info {
	border-left-color: var(--wcpie-purple) !important;
	border-radius: 0 8px 8px 0;
}

/* Always show advanced options in importer */
.woocommerce-importer .woocommerce-importer-advanced.hidden {
	display: table-row !important;
}

/* Hide the toggle button since it's now redundant */
.woocommerce-importer-toggle-advanced-options {
	display: none !important;
}

/* --------------------------------------------------------------------------
   Form Controls
   -------------------------------------------------------------------------- */
.wcpie-wrap .regular-text {
	border-color: #8c8f94 !important;
}
/* --------------------------------------------------------------------------
   Dynamic Pricing Banner (In WooCommerce Pages)
   -------------------------------------------------------------------------- */
.wcpie-dynamic-pricing-banner {
	margin: 20px 20px 20px 0;
	background: #ffffff;
	border: 1px solid var(--wcpie-border);
	border-radius: var(--wcpie-radius);
	box-shadow: var(--wcpie-shadow);
	overflow: hidden;
	position: relative;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	animation: wcpieFadeIn 0.5s ease-out;
}

@keyframes wcpieFadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

.wcpie-dynamic-pricing-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 100%;
	background: linear-gradient(to bottom, #7c3aed, #2563eb);
}

.wcpie-dp-banner-content {
	display: flex;
	align-items: center;
	padding: 24px 32px;
	gap: 24px;
}

.wcpie-dp-banner-icon {
	width: 60px;
	height: 60px;
	background: var(--wcpie-purple-lt);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.wcpie-dp-banner-icon svg {
	width: 32px;
	height: 32px;
	fill: var(--wcpie-purple);
}

.wcpie-dp-banner-text {
	flex-grow: 1;
}

.wcpie-dp-banner-text h3 {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 700;
	color: var(--wcpie-text);
}

.wcpie-dp-banner-text p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--wcpie-muted);
	max-width: 850px;
}

.wcpie-dp-banner-actions {
	flex-shrink: 0;
}

.wcpie-btn--dp {
	background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
	color: #fff !important;
	padding: 12px 28px;
	font-size: 15px;
	box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.wcpie-btn--dp:hover {
	box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
	transform: translateY(-2px);
}

@media (max-width: 1000px) {
	.wcpie-dp-banner-content {
		flex-direction: column;
		align-items: flex-start;
		padding: 20px;
		gap: 16px;
	}
	
	.wcpie-dp-banner-actions {
		width: 100%;
	}
	
	.wcpie-btn--dp {
		display: block;
		text-align: center;
		width: 100%;
	}
}

/* --------------------------------------------------------------------------
   Insight Banner ("Did you know?")
   -------------------------------------------------------------------------- */
.wcpie-insight-banner {
	background-color: #EFEFFC !important;
	border: none !important;
	border-left: 4px solid #5A4BE8 !important;
	padding: 0 !important;
	display: flex;
	border-radius: 4px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
	margin-top: 15px;
	margin-bottom: 15px;
}

.wcpie-insight-banner-content {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 20px 24px;
	gap: 20px;
}

.wcpie-insight-banner-text {
	flex-grow: 1;
}

.wcpie-insight-banner-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	color: #5A4BE8;
	font-size: 15px;
	margin-bottom: 8px;
}

.wcpie-insight-banner-title svg {
	width: 16px;
	height: 16px;
	fill: #5A4BE8;
}

.wcpie-insight-banner-text p {
	margin: 0 !important;
	font-size: 13px;
	color: #333;
	line-height: 1.5;
}

.wcpie-insight-banner-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
	margin-right: 20px;
}

.wcpie-insight-btn-primary {
	background-color: #5A4BE8;
	color: #fff !important;
	padding: 8px 16px;
	border-radius: 4px;
	font-weight: 500;
	font-size: 13px;
	text-decoration: none !important;
	border: 1px solid #5A4BE8;
	transition: all 0.2s;
}

.wcpie-insight-btn-primary:hover {
	background-color: #4B3EBE;
	border-color: #4B3EBE;
}

.wcpie-insight-btn-secondary {
	background-color: transparent;
	color: #5A4BE8 !important;
	padding: 8px 16px;
	border-radius: 4px;
	font-weight: 500;
	font-size: 13px;
	text-decoration: none !important;
	border: 1px solid #5A4BE8;
	transition: all 0.2s;
}

.wcpie-insight-btn-secondary:hover {
	background-color: rgba(90, 75, 232, 0.05);
}

@media (max-width: 900px) {
	.wcpie-insight-banner-content {
		flex-direction: column;
		align-items: flex-start;
	}
	.wcpie-insight-banner-actions {
		margin-right: 0;
		width: 100%;
		justify-content: flex-start;
	}
}
