/**
 * Dokan marketplace overrides – enhanced vendor & store pages
 */

/* ===== CRITICAL: Fix broken product grid on vendor stores ===== */
/* Dokan applies grid to .seller-items but products live inside ul.products */
.dokan-store-wrap .seller-items,
.dokan-single-store .seller-items,
.dokan-store-products .seller-items,
.ls-store-products .seller-items {
	display: block !important;
	width: 100% !important;
	grid-template-columns: none !important;
}

body.ls-dokan-store-page ul.products,
.dokan-store-wrap ul.products,
.dokan-single-store ul.products,
.dokan-store-products ul.products,
.ls-dokan-store-wrap ul.products,
.ls-store-products ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 24px 18px !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	clear: both !important;
}

body.ls-dokan-store-page ul.products::before,
body.ls-dokan-store-page ul.products::after,
.dokan-store-wrap ul.products::before,
.dokan-store-wrap ul.products::after,
.ls-dokan-store-wrap ul.products::before,
.ls-dokan-store-wrap ul.products::after { display: none !important; content: none !important; }

body.ls-dokan-store-page ul.products li.product,
.dokan-store-wrap ul.products li.product,
.dokan-single-store ul.products li.product,
.dokan-store-products ul.products li.product,
.ls-dokan-store-wrap ul.products li.product {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	float: none !important;
	margin: 0 !important;
	clear: none !important;
	flex: unset !important;
}

/* Hide default Dokan store chrome when using custom hero */
.ls-dokan-store-wrap .dokan-profile-frame-wrapper,
.ls-dokan-store-wrap .profile-frame,
.ls-dokan-store-wrap .dokan-store-tabs,
.ls-dokan-store-wrap .dokan-store-product-filter,
.ls-dokan-store-wrap form.dokan-store-products-filter-search {
	display: none !important;
}

.dokan-store-wrap { padding: 0 0 80px; }

/* ===== STORE LISTING (All Vendors) ===== */
body.ls-store-listing-page,
body.page-template-default:has(.dokan-seller-wrap) {
	background: #f7f5f4;
}
body.ls-store-listing-page .site-main,
body.ls-store-listing-page #primary,
body.page:has(.dokan-seller-wrap) .site-main {
	padding: 0 0 72px;
	background: #f7f5f4;
}
body.ls-store-listing-page .entry-header,
body.page:has(.dokan-seller-wrap) .entry-header {
	max-width: var(--ls-container);
	margin: 0 auto;
	padding: 36px 20px 8px;
}
body.ls-store-listing-page .entry-title,
body.page:has(.dokan-seller-wrap) .entry-title,
#dokan-seller-listing-wrap h1,
.dokan-store-list-wrap h1,
.seller-listing-content ~ h1 {
	font-family: var(--ls-font-heading);
	font-size: clamp(1.8rem, 4vw, 2.4rem);
	margin: 0 0 8px;
}

#dokan-seller-listing-wrap,
.dokan-seller-listing,
.dokan-store-list-wrap {
	max-width: var(--ls-container);
	margin: 0 auto;
	padding: 12px 20px 40px;
}

/* Toolbar: filter / sort */
#dokan-seller-listing-wrap .dokan-seller-search-form,
.dokan-store-lists-filter-form-area,
#dokan-store-listing-filter-wrap,
.dokan-store-lists-filter-form-area .store-lists-filter-form,
div[class*="store-lists-filter"] {
	background: #fff;
	border: 1px solid var(--ls-border);
	border-radius: 16px;
	padding: 14px 16px;
	margin-bottom: 24px;
	box-shadow: 0 6px 24px rgba(0,0,0,0.04);
}
.dokan-store-list-filter-button.dokan-btn,
.dokan-store-list-filter-button.dokan-btn-theme,
#dokan-seller-listing-wrap .dokan-btn-theme,
.dokan-seller-listing .dokan-btn-theme {
	background: var(--ls-pink) !important;
	border-color: var(--ls-pink) !important;
	color: #fff !important;
	border-radius: 50px !important;
	padding: 10px 20px !important;
	font-weight: 700 !important;
	box-shadow: none !important;
}
#dokan-seller-listing-wrap .item.store-count,
.store-count {
	font-size: 13px;
	color: var(--ls-text-muted);
	margin-bottom: 12px;
}
#dokan-seller-listing-wrap .sort-by select,
#stores_orderby {
	border: 1px solid var(--ls-border);
	border-radius: 50px;
	padding: 10px 36px 10px 14px;
	background: #fff;
	font-size: 13px;
	min-height: 42px;
}

/* Seller grid */
ul.dokan-seller-wrap,
.dokan-seller-wrap {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 24px !important;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
}
ul.dokan-seller-wrap::before,
ul.dokan-seller-wrap::after,
.dokan-seller-wrap::before,
.dokan-seller-wrap::after {
	display: none !important;
	content: none !important;
}
li.dokan-single-seller,
.dokan-single-seller {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

/* Premium vendor cards (custom loop + fallback) */
.ls-vendor-card,
.dokan-single-seller .store-wrapper {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	border: 1px solid var(--ls-border);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 28px rgba(0,0,0,0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ls-vendor-card:hover,
.dokan-single-seller .store-wrapper:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.ls-vendor-card-banner,
.dokan-single-seller .store-header,
.dokan-single-seller .store-banner {
	display: block;
	height: 140px;
	background: linear-gradient(125deg, #9ad8d3 0%, #d83169 55%, #f7b3cb 100%);
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
}
.ls-vendor-card-banner.has-image,
.dokan-single-seller .store-banner {
	background-color: #e8e4e1;
}
.ls-vendor-card-banner-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.28));
}
.dokan-single-seller .store-banner a {
	display: block;
	height: 140px;
	background: linear-gradient(125deg, #9ad8d3 0%, #d83169 55%, #f7b3cb 100%);
}
.dokan-single-seller .store-banner img {
	width: 100%;
	height: 140px;
	object-fit: cover;
}
.dokan-single-seller .store-banner img[src*="default-store-banner"] {
	opacity: 0;
}

/* Hide Dokan's absolute overlay text on grey banner */
.dokan-single-seller .store-content {
	position: static !important;
	padding: 0 !important;
	margin: 0 !important;
	background: transparent !important;
}
.dokan-single-seller .store-data-container,
.dokan-single-seller .store-data {
	position: static !important;
	padding: 0 !important;
	color: inherit !important;
}
.dokan-single-seller .store-data h2,
.dokan-single-seller .store-data h2 a,
.dokan-single-seller .store-address,
.dokan-single-seller .store-phone {
	color: var(--ls-heading) !important;
	text-shadow: none !important;
}
.dokan-single-seller .store-address br {
	display: none;
}
.dokan-single-seller .store-address span {
	display: inline;
}
.dokan-single-seller .store-address span::after {
	content: ' ';
}

.ls-vendor-card-body,
.dokan-single-seller .store-content {
	padding: 0 20px 8px !important;
	text-align: center;
	margin-top: -36px !important;
	position: relative;
	z-index: 2;
}
.ls-vendor-card-avatar,
.dokan-single-seller .seller-avatar {
	width: 72px;
	height: 72px;
	margin: 0 auto 12px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid #fff;
	box-shadow: 0 6px 18px rgba(0,0,0,0.12);
	background: #f3f1ef;
	position: relative;
	z-index: 3;
}
.dokan-single-seller .store-footer .seller-avatar {
	position: static !important;
	left: auto !important;
	right: auto !important;
	bottom: auto !important;
	margin: -48px auto 12px;
	transform: none !important;
}
.ls-vendor-card-avatar img,
.dokan-single-seller .seller-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.ls-vendor-card-title,
.dokan-single-seller .store-data h2 {
	font-family: var(--ls-font-heading);
	font-size: 1.25rem;
	margin: 0 0 10px !important;
	line-height: 1.25;
}
.ls-vendor-card-title a,
.dokan-single-seller .store-data h2 a {
	color: var(--ls-heading) !important;
	text-decoration: none;
}
.ls-vendor-card-title a:hover,
.dokan-single-seller .store-data h2 a:hover {
	color: var(--ls-pink) !important;
}
.ls-vendor-card-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
	margin-bottom: 8px;
}
.ls-vendor-chip {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 5px 10px;
	border-radius: 999px;
	background: #faf7f6;
	border: 1px solid var(--ls-border);
	font-size: 12px;
	color: var(--ls-heading);
}
.ls-vendor-chip strong { color: var(--ls-pink); }
.ls-vendor-chip-muted { color: var(--ls-text-muted); }
.ls-vendor-card-phone,
.dokan-single-seller .store-phone {
	font-size: 12.5px;
	color: var(--ls-text-muted) !important;
	margin: 0 0 8px;
}
.dokan-single-seller .store-address {
	font-size: 13px;
	color: var(--ls-text-muted) !important;
	margin: 0 0 8px;
	line-height: 1.4;
}

.ls-vendor-card-footer,
.dokan-single-seller .store-footer {
	margin-top: auto;
	padding: 12px 20px 20px;
	border-top: none;
	background: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: auto;
}
.dokan-single-seller .store-footer .dokan-btn-theme,
.dokan-single-seller .store-footer .dashicons,
.dokan-single-seller .store-footer a.dokan-btn-round {
	display: none !important;
}
.ls-vendor-visit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 44px;
	padding: 10px 18px;
	border-radius: 50px;
	background: var(--ls-pink);
	color: #fff !important;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none !important;
	transition: background 0.2s, transform 0.2s;
}
.ls-vendor-visit-btn:hover {
	background: var(--ls-pink-dark);
	transform: translateY(-1px);
	color: #fff !important;
}

/* When using default Dokan footer (no custom loop), restyle arrow as full button */
.dokan-single-seller:not(.ls-vendor-card-item) .store-footer {
	padding-top: 0;
}
.dokan-single-seller:not(.ls-vendor-card-item) .store-footer a.dokan-btn-theme {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 44px;
	border-radius: 50px !important;
	background: var(--ls-pink) !important;
	border: none !important;
	color: #fff !important;
	font-size: 0 !important;
	box-shadow: none !important;
}
.dokan-single-seller:not(.ls-vendor-card-item) .store-footer a.dokan-btn-theme::after {
	content: 'Visit Store';
	font-size: 13px;
	font-weight: 700;
	font-family: var(--ls-font-body);
}
.dokan-single-seller:not(.ls-vendor-card-item) .store-footer a.dokan-btn-theme .dashicons {
	display: none !important;
}
.dokan-single-seller:not(.ls-vendor-card-item) .store-data {
	padding: 48px 16px 8px !important;
	text-align: center;
}
.dokan-single-seller:not(.ls-vendor-card-item) .store-footer .seller-avatar {
	margin: -56px auto 0;
}

@media (max-width: 992px) {
	ul.dokan-seller-wrap,
	.dokan-seller-wrap {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 18px !important;
	}
}
@media (max-width: 600px) {
	ul.dokan-seller-wrap,
	.dokan-seller-wrap {
		grid-template-columns: 1fr !important;
	}
	#dokan-seller-listing-wrap,
	.dokan-seller-listing {
		padding-left: 16px;
		padding-right: 16px;
	}
}

/* Single vendor store */
.dokan-store-header {
	border-radius: var(--ls-radius-lg);
	overflow: hidden;
	box-shadow: var(--ls-shadow);
	margin: 40px auto 32px;
	max-width: var(--ls-container);
	border: 1px solid var(--ls-border);
}
.dokan-store-header .profile-info-img {
	height: 220px;
	object-fit: cover;
}
.dokan-store-header .profile-info-summery-wrapper {
	background: var(--ls-white);
	padding: 28px 32px;
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}
.dokan-store-header .profile-img {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid var(--ls-white);
	box-shadow: var(--ls-shadow);
	margin-top: -60px;
	flex-shrink: 0;
}
.dokan-store-header .profile-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.dokan-store-header .store-name {
	font-family: var(--ls-font-heading);
	font-size: 1.75rem;
	margin: 0 0 6px;
}
.dokan-store-header .store-address,
.dokan-store-header .store-phone {
	font-size: 14px;
	color: var(--ls-text-muted);
}
.dokan-store-header .dokan-store-info {
	margin-left: auto;
	display: flex;
	gap: 20px;
	align-items: center;
}
.dokan-store-header .dokan-store-info .dokan-store-rating {
	background: var(--ls-lime);
	padding: 8px 16px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 14px;
}

.dokan-single-store {
	max-width: var(--ls-container);
	margin: 0 auto;
	padding: 0 20px;
}
.dokan-single-store .dokan-store-tabs ul {
	display: flex;
	gap: 8px;
	border: none;
	margin-bottom: 32px;
	flex-wrap: wrap;
}
.dokan-single-store .dokan-store-tabs ul li a {
	padding: 10px 24px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	background: var(--ls-white);
	box-shadow: var(--ls-shadow);
	border: 1px solid var(--ls-border);
	transition: all var(--ls-transition);
}
.dokan-single-store .dokan-store-tabs ul li.active a,
.dokan-single-store .dokan-store-tabs ul li a:hover {
	background: var(--ls-pink);
	color: var(--ls-white);
	border-color: var(--ls-pink);
}

.dokan-single-store .seller-items {
	display: block !important;
	width: 100%;
}
.ls-dokan-store-wrap ul.products,
.dokan-single-store ul.products,
.dokan-store-products ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 24px 18px !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}
.ls-dokan-store-wrap ul.products::before,
.ls-dokan-store-wrap ul.products::after,
.dokan-single-store ul.products::before,
.dokan-single-store ul.products::after { display: none !important; }
.ls-dokan-store-wrap ul.products li.product,
.dokan-single-store ul.products li.product,
.dokan-store-products ul.products li.product {
	width: 100% !important;
	max-width: 100% !important;
	float: none !important;
	margin: 0 !important;
	clear: none !important;
}

/* Store toolbar */
.ls-store-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 28px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--ls-border);
}
.ls-store-toolbar h2 {
	font-family: var(--ls-font-heading);
	font-size: 1.5rem;
	margin: 0;
}
.ls-store-sort .woocommerce-ordering {
	margin: 0;
}
.ls-store-sort select {
	padding: 10px 36px 10px 14px;
	border: 1px solid var(--ls-border);
	border-radius: 50px;
	font-size: 14px;
	background: var(--ls-white);
}

/* Default Dokan store fallback styling (if custom template not loaded) */
.dokan-store-wrap:not(.ls-dokan-store-wrap) .profile-frame {
	border-radius: var(--ls-radius-lg);
	overflow: hidden;
	margin: 32px auto;
	max-width: var(--ls-container);
	box-shadow: var(--ls-shadow);
}
.dokan-store-wrap:not(.ls-dokan-store-wrap) .dokan-store-product-filter,
.dokan-store-wrap:not(.ls-dokan-store-wrap) form.dokan-store-products-filter-search {
	max-width: var(--ls-container);
	margin: 0 auto 24px;
	padding: 0 20px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
}
.dokan-store-wrap:not(.ls-dokan-store-wrap) form.dokan-store-products-filter-search input[type="search"],
.dokan-store-wrap:not(.ls-dokan-store-wrap) form.dokan-store-products-filter-search input[type="text"] {
	flex: 1;
	min-width: 200px;
	padding: 12px 16px;
	border: 1px solid var(--ls-border);
	border-radius: 50px;
	font-size: 14px;
}
.dokan-store-wrap:not(.ls-dokan-store-wrap) form.dokan-store-products-filter-search button,
.dokan-store-wrap:not(.ls-dokan-store-wrap) .dokan-btn-theme {
	background: var(--ls-pink) !important;
	border: none !important;
	border-radius: 50px !important;
	padding: 12px 24px !important;
	color: #fff !important;
	font-weight: 600 !important;
}
.dokan-store-wrap:not(.ls-dokan-store-wrap) .dokan-single-store {
	max-width: var(--ls-container);
	margin: 0 auto;
	padding: 0 20px 60px;
}

/* Vendor dashboard */
.dokan-dashboard-wrap {
	padding: 32px 0 80px;
	background: var(--ls-bg-grey);
	min-height: 70vh;
}
.dokan-dashboard-wrap .dokan-dashboard-content {
	background: transparent;
}
.dokan-dashboard-wrap .dokan-dashboard-header {
	background: var(--ls-white);
	border: 1px solid var(--ls-border);
	border-radius: var(--ls-radius-lg);
	padding: 20px 28px;
	margin-bottom: 24px;
	box-shadow: var(--ls-shadow);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}
.dokan-dashboard-wrap .dokan-dashboard-header h1 {
	font-family: var(--ls-font-heading);
	font-size: 1.5rem;
	margin: 0;
}
.dokan-dashboard-wrap .dokan-dashboard-header .dokan-dashboard-header-btn {
	display: flex;
	gap: 12px;
	align-items: center;
}
.dokan-dashboard-wrap .dokan-dashboard-header .dokan-dashboard-header-btn a {
	padding: 10px 20px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
	background: var(--ls-bg-grey);
	color: var(--ls-heading);
	text-decoration: none;
	transition: all var(--ls-transition);
}
.dokan-dashboard-wrap .dokan-dashboard-header .dokan-dashboard-header-btn a:hover {
	background: var(--ls-pink);
	color: var(--ls-white);
}

.dokan-dashboard .dokan-dash-sidebar,
.dokan-dashboard-wrap .dokan-dash-sidebar {
	background: var(--ls-white) !important;
	border-radius: var(--ls-radius-lg) !important;
	box-shadow: var(--ls-shadow) !important;
	border: 1px solid var(--ls-border) !important;
	overflow: hidden;
	position: sticky;
	top: 100px;
}
.dokan-dashboard .dokan-dash-sidebar ul,
.dokan-dashboard-wrap .dokan-dash-sidebar ul {
	padding: 12px !important;
	margin: 0 !important;
}
.dokan-dashboard .dokan-dash-sidebar ul li,
.dokan-dashboard-wrap .dokan-dash-sidebar ul li {
	border: none !important;
	margin-bottom: 4px;
}
.dokan-dashboard .dokan-dash-sidebar ul li a,
.dokan-dashboard-wrap .dokan-dash-sidebar ul li a {
	padding: 12px 18px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	color: var(--ls-heading) !important;
	border-radius: var(--ls-radius) !important;
	transition: all var(--ls-transition) !important;
	background: transparent !important;
	display: flex;
	align-items: center;
	gap: 10px;
}
.dokan-dashboard .dokan-dash-sidebar ul li.active a,
.dokan-dashboard .dokan-dash-sidebar ul li a:hover,
.dokan-dashboard-wrap .dokan-dash-sidebar ul li.active a,
.dokan-dashboard-wrap .dokan-dash-sidebar ul li a:hover {
	background: linear-gradient(135deg, #fef5f8, #fff0f5) !important;
	color: var(--ls-pink) !important;
}
.dokan-dashboard .dokan-dash-sidebar ul li.active a,
.dokan-dashboard-wrap .dokan-dash-sidebar ul li.active a {
	box-shadow: inset 3px 0 0 var(--ls-pink);
}

.dokan-dashboard-content,
.dokan-dashboard-wrap .dokan-dashboard-content {
	background: var(--ls-white);
	border: 1px solid var(--ls-border);
	border-radius: var(--ls-radius-lg);
	padding: 28px;
	box-shadow: var(--ls-shadow);
}
.dokan-dashboard-content .dokan-alert,
.dokan-dashboard-wrap .dokan-alert {
	border-radius: var(--ls-radius);
	border: none;
	padding: 16px 20px;
}
.dokan-dashboard-content .dokan-alert-warning,
.dokan-dashboard-wrap .dokan-alert-warning {
	background: #fff8e6;
	color: #856404;
}

/* Hide Dokan default purple & selling-disabled error for pending vendors */
body.ls-vendor-pending .dokan-alert-danger,
body.ls-vendor-pending .dokan-error {
	display: none !important;
}

.dokan-dashboard-content .dokan-dashboard-widget,
.dokan-dashboard-wrap .dokan-dashboard-widget {
	background: var(--ls-bg-grey);
	border: 1px solid var(--ls-border);
	border-radius: var(--ls-radius);
	padding: 20px;
	margin-bottom: 16px;
}
.dokan-dashboard-content .dokan-dashboard-widget .widget-title,
.dokan-dashboard-wrap .dokan-dashboard-widget .widget-title {
	font-family: var(--ls-font-heading);
	font-size: 1rem;
	margin-bottom: 12px;
}
.dokan-dashboard-content .dokan-dashboard-widget .count,
.dokan-dashboard-wrap .dokan-dashboard-widget .count {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--ls-pink);
}

.dokan-dashboard-content table.dokan-table,
.dokan-dashboard-wrap table.dokan-table {
	border-radius: var(--ls-radius);
	overflow: hidden;
	border: 1px solid var(--ls-border);
}
.dokan-dashboard-content table.dokan-table th,
.dokan-dashboard-wrap table.dokan-table th {
	background: var(--ls-bg-grey);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}
.dokan-dashboard-content table.dokan-table td,
.dokan-dashboard-wrap table.dokan-table td {
	font-size: 14px;
}

.dokan-form-container .dokan-btn-theme,
.dokan-dashboard .dokan-btn-theme,
.dokan-dashboard-wrap .dokan-btn-theme {
	background: var(--ls-pink) !important;
	border-radius: 50px !important;
	border: none !important;
	padding: 12px 28px !important;
	font-weight: 600 !important;
	transition: transform var(--ls-transition), box-shadow var(--ls-transition) !important;
}
.dokan-form-container .dokan-btn-theme:hover,
.dokan-dashboard .dokan-btn-theme:hover,
.dokan-dashboard-wrap .dokan-btn-theme:hover {
	background: #c02858 !important;
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(216, 49, 105, 0.3);
}

/* Dokan analytics / overview cards */
.dokan-dashboard-wrap .dokan-dashboard-overview,
.dokan-dashboard-wrap .dokan-reports-content {
	border-radius: var(--ls-radius-lg);
}
.dokan-dashboard-wrap .dokan-dashboard-overview .chart-placeholder,
.dokan-dashboard-wrap .dokan-dashboard-overview .dokan-dashboard-widget {
	background: var(--ls-white);
}
.dokan-dashboard-wrap .dokan-dashboard-overview .dokan-dashboard-widget .widget-title {
	color: var(--ls-text-muted);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
}
.dokan-dashboard-wrap .dokan-dashboard-overview .dokan-dashboard-widget .count {
	font-size: 1.5rem;
}

/* Override Dokan purple sidebar globally */
.dokan-dash-sidebar,
#dokan-navigation {
	background: var(--ls-white) !important;
}
.dokan-dash-sidebar .dokan-dashboard-menu li a,
#dokan-navigation .dokan-dashboard-menu li a {
	color: var(--ls-heading) !important;
}
.dokan-dash-sidebar .dokan-dashboard-menu li.active a,
.dokan-dash-sidebar .dokan-dashboard-menu li a:hover,
#dokan-navigation .dokan-dashboard-menu li.active a,
#dokan-navigation .dokan-dashboard-menu li a:hover {
	background: #fef5f8 !important;
	color: var(--ls-pink) !important;
}

@media (max-width: 1024px) {
	body.ls-dokan-store-page ul.products,
	.ls-dokan-store-wrap ul.products,
	.dokan-single-store ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
	.dokan-dashboard-wrap .dokan-dash-sidebar { position: static; }
}
@media (max-width: 768px) {
	.dokan-store-list-wrap .seller-listing-content { grid-template-columns: 1fr; }
	body.ls-dokan-store-page ul.products,
	.ls-dokan-store-wrap ul.products,
	.dokan-single-store ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
	.dokan-store-header .profile-info-summery-wrapper { flex-direction: column; text-align: center; }
	.dokan-store-header .dokan-store-info { margin-left: 0; }
	.dokan-dashboard-content,
	.dokan-dashboard-wrap .dokan-dashboard-content { padding: 20px 16px; }
	.ls-store-profile-card { flex-direction: column; align-items: flex-start; text-align: left; }
	.ls-store-rating { margin-left: 0; text-align: left; }
	.ls-store-products { padding: 20px 16px; }
}
@media (max-width: 480px) {
	body.ls-dokan-store-page ul.products,
	.ls-dokan-store-wrap ul.products,
	.dokan-single-store ul.products { grid-template-columns: 1fr !important; }
}

/* ===== VENDOR REGISTRATION FORM ===== */
.ls-vendor-register-page,
.ls-vendor-invite-page,
.ls-vendor-pending-page {
	padding: 50px 0 80px;
}
.ls-vendor-register-wrap {
	max-width: 720px;
	margin: 0 auto;
}
.ls-vendor-register-header {
	text-align: center;
	margin-bottom: 36px;
}
.ls-vendor-register-header h1 {
	font-size: clamp(1.8rem, 4vw, 2.4rem);
	margin-bottom: 10px;
}
.ls-vendor-register-header p {
	color: var(--ls-text-muted);
	font-size: 16px;
}
.ls-vendor-form {
	background: var(--ls-white);
	border: 1px solid var(--ls-border);
	border-radius: var(--ls-radius-lg);
	padding: 32px;
	box-shadow: var(--ls-shadow);
}
.ls-form-section {
	margin-bottom: 28px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--ls-border);
}
.ls-form-section:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.ls-form-section h2 {
	font-family: var(--ls-font-body);
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 20px;
	color: var(--ls-heading);
}
.ls-form-row { margin-bottom: 16px; }
.ls-form-row-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.ls-form-field label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 6px;
}
.ls-form-field input,
.ls-form-field select,
.ls-form-field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--ls-border);
	border-radius: var(--ls-radius);
	font-family: var(--ls-font-body);
	font-size: 14px;
	transition: border-color var(--ls-transition), box-shadow var(--ls-transition);
}
.ls-form-field input:focus,
.ls-form-field select:focus,
.ls-form-field textarea:focus {
	outline: none;
	border-color: var(--ls-pink);
	box-shadow: 0 0 0 3px rgba(216, 49, 105, 0.12);
}
.ls-form-field small {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	color: var(--ls-text-muted);
}
.ls-input-prefix {
	display: flex;
	align-items: center;
	border: 1px solid var(--ls-border);
	border-radius: var(--ls-radius);
	overflow: hidden;
}
.ls-input-prefix span {
	padding: 12px 14px;
	background: var(--ls-bg-grey);
	font-size: 13px;
	color: var(--ls-text-muted);
	white-space: nowrap;
	border-right: 1px solid var(--ls-border);
}
.ls-input-prefix input {
	border: none;
	border-radius: 0;
	flex: 1;
}
.ls-checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	line-height: 1.5;
	cursor: pointer;
}
.ls-checkbox-label input { margin-top: 3px; flex-shrink: 0; }
.ls-form-submit { text-align: center; margin-top: 24px; }
.ls-form-submit .btn-lg { padding: 16px 48px; font-size: 15px; }
.ls-form-note {
	margin-top: 12px;
	font-size: 13px;
	color: var(--ls-text-muted);
}
.ls-vendor-login-link {
	text-align: center;
	margin-top: 24px;
	font-size: 14px;
}
.ls-vendor-notice {
	padding: 16px 20px;
	border-radius: var(--ls-radius);
	margin-bottom: 24px;
}
.ls-notice-error { background: #fde8ef; border: 1px solid #f5c6d6; color: #a02050; }
.ls-notice-warning { background: #fff8e6; border: 1px solid #ffe08a; color: #856404; }
.ls-notice-success { background: #e8f8ef; border: 1px solid #b8e6cc; color: #155724; }

/* Pending page */
.ls-vendor-pending-wrap {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
	padding: 40px 0;
}
.ls-pending-icon { font-size: 48px; margin-bottom: 16px; }
.ls-pending-lead { font-size: 17px; color: var(--ls-text-muted); margin-bottom: 36px; }
.ls-pending-steps { text-align: left; margin-bottom: 36px; }
.ls-pending-step {
	display: flex;
	gap: 16px;
	padding: 20px;
	border: 1px solid var(--ls-border);
	border-radius: var(--ls-radius);
	margin-bottom: 12px;
	background: var(--ls-white);
}
.ls-step-num {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--ls-bg-grey);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
	flex-shrink: 0;
}
.ls-step-done .ls-step-num { background: var(--ls-teal); color: var(--ls-white); }
.ls-step-active { border-color: var(--ls-pink); background: #fef5f8; }
.ls-step-active .ls-step-num { background: var(--ls-pink); color: var(--ls-white); }
.ls-pending-step strong { display: block; margin-bottom: 4px; }
.ls-pending-step p { margin: 0; font-size: 14px; color: var(--ls-text-muted); }
.ls-pending-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Dashboard pending notice */
.ls-vendor-pending-notice {
	background: linear-gradient(135deg, #fff8e6, #fef5f8);
	border: 1px solid #ffe08a;
	border-radius: var(--ls-radius-lg);
	padding: 32px;
	text-align: center;
	margin-bottom: 32px;
}
.ls-vendor-pending-notice h3 { margin-bottom: 10px; }
.ls-vendor-pending-notice p { color: var(--ls-text-muted); margin-bottom: 8px; }
.ls-pending-meta { font-size: 13px; }

@media (max-width: 600px) {
	.ls-form-row-2 { grid-template-columns: 1fr; }
	.ls-vendor-form { padding: 20px; }
	.ls-input-prefix { flex-direction: column; align-items: stretch; }
	.ls-input-prefix span { border-right: none; border-bottom: 1px solid var(--ls-border); }
}

/* ===== CUSTOM STORE HERO ===== */
.ls-dokan-store-wrap {
	padding: 0 0 80px;
	background: #f7f5f4;
}
.ls-store-premium .ls-store-hero {
	position: relative;
	margin-bottom: 36px;
}
.ls-store-premium .ls-store-banner {
	height: 220px;
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
}
.ls-store-premium .ls-store-banner.is-gradient {
	background: linear-gradient(125deg, #f7b3cb 0%, #d83169 42%, #7ec8d4 100%);
}
.ls-store-premium .ls-store-banner-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20,20,20,0.15) 0%, rgba(20,20,20,0.35) 100%);
}
.ls-store-premium .ls-store-banner-pattern {
	position: absolute;
	inset: 0;
	opacity: 0.18;
	background-image: radial-gradient(circle at 20% 20%, #fff 0 2px, transparent 3px),
		radial-gradient(circle at 80% 60%, #fff 0 1.5px, transparent 2.5px);
	background-size: 28px 28px, 40px 40px;
}
.ls-store-premium .ls-store-profile {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	background: #fff;
	border: 1px solid var(--ls-border);
	border-radius: 20px;
	padding: 24px 28px;
	margin-top: -72px;
	position: relative;
	z-index: 2;
	box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.ls-store-premium .ls-store-profile-main {
	display: flex;
	align-items: center;
	gap: 20px;
	flex: 1;
	min-width: 0;
}
.ls-store-premium .ls-store-avatar img,
.ls-store-premium .ls-store-avatar-img {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	border: 4px solid #fff;
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
	object-fit: cover;
	background: #f3f1ef;
}
.ls-store-premium .ls-store-eyebrow {
	margin: 0 0 4px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ls-pink);
}
.ls-store-premium .ls-store-name {
	font-family: var(--ls-font-heading);
	font-size: clamp(1.6rem, 3vw, 2.1rem);
	margin: 0 0 6px;
}
.ls-store-premium .ls-store-desc {
	margin: 0 0 12px;
	color: var(--ls-text-muted);
	font-size: 14px;
	max-width: 520px;
}
.ls-store-premium .ls-store-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.ls-store-premium .ls-store-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 12px;
	border-radius: 999px;
	background: #faf7f6;
	border: 1px solid var(--ls-border);
	font-size: 12.5px;
	color: var(--ls-heading);
	text-decoration: none;
}
.ls-store-premium .ls-store-chip strong {
	color: var(--ls-pink);
}
.ls-store-premium .ls-store-chip-muted {
	color: var(--ls-text-muted);
}
.ls-store-premium .ls-store-chip-rating .ls-stars {
	display: inline-flex;
	gap: 1px;
	color: #f5a623;
}
.ls-store-premium .ls-store-chip-rating .ls-star:not(.filled) {
	opacity: 0.25;
}
.ls-store-premium .ls-store-profile-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.ls-store-premium .ls-store-profile-actions .btn {
	min-height: 44px;
	padding: 12px 22px;
	border-radius: 50px;
	text-transform: none;
	letter-spacing: 0;
	font-size: 13px;
}
.ls-store-premium .ls-store-profile-actions .btn-outline {
	background: #fff;
	border: 1.5px solid var(--ls-border);
	color: var(--ls-heading);
}
.ls-store-premium .ls-store-profile-actions .btn-outline:hover {
	border-color: var(--ls-pink);
	color: var(--ls-pink);
	background: #fef5f8;
}

.ls-store-premium .ls-store-toolbar {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 22px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--ls-border);
}
.ls-store-premium .ls-store-toolbar h2 {
	margin: 0 0 4px;
	font-size: 1.5rem;
}
.ls-store-premium .ls-store-toolbar-meta {
	margin: 0;
	font-size: 13px;
	color: var(--ls-text-muted);
}
.ls-store-premium .ls-store-toolbar-right {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}
.ls-store-premium .ls-store-search {
	display: flex;
	align-items: stretch;
	background: #fff;
	border: 1px solid var(--ls-border);
	border-radius: 50px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.ls-store-premium .ls-store-search input {
	border: none;
	outline: none;
	padding: 11px 16px;
	min-width: 180px;
	font-size: 14px;
	background: transparent;
}
.ls-store-premium .ls-store-search-btn {
	border: none;
	background: var(--ls-pink);
	color: #fff;
	font-weight: 700;
	font-size: 13px;
	padding: 0 18px;
	cursor: pointer;
	transition: background 0.2s;
}
.ls-store-premium .ls-store-search-btn:hover {
	background: var(--ls-pink-dark);
}
.ls-store-premium .ls-store-sort select {
	border-radius: 50px;
	padding: 11px 36px 11px 14px;
	border: 1px solid var(--ls-border);
	background: #fff;
	font-size: 13px;
}
.ls-store-premium .ls-store-products {
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 0;
}
.ls-store-premium .ls-store-empty {
	text-align: center;
	padding: 64px 24px;
	background: #fff;
	border-radius: 20px;
	border: 1px solid var(--ls-border);
}
.ls-store-premium .ls-store-empty .btn {
	margin: 8px;
	border-radius: 50px;
	text-transform: none;
}

/* Store product cards — force premium CTA buttons */
body.ls-dokan-store-page ul.products li.product,
.ls-store-premium ul.products li.product {
	background: #fff;
	border: 1px solid var(--ls-border);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(0,0,0,0.04);
}
body.ls-dokan-store-page ul.products li.product .button,
body.ls-dokan-store-page ul.products li.product a.button,
body.ls-dokan-store-page ul.products li.product .add_to_cart_button,
.ls-store-premium ul.products li.product .button,
.ls-store-premium ul.products li.product a.button,
.ls-store-premium ul.products li.product .add_to_cart_button {
	display: block !important;
	margin: 0 12px 14px !important;
	width: calc(100% - 24px) !important;
	background: var(--ls-pink) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 50px !important;
	padding: 12px 16px !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	text-align: center !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	text-decoration: none !important;
	box-shadow: 0 4px 12px rgba(216, 49, 105, 0.22);
}
body.ls-dokan-store-page ul.products li.product .price,
.ls-store-premium ul.products li.product .price {
	padding: 6px 16px 10px !important;
}

/* Full-bleed store content (less boxed-in) */
.ls-store-premium .ls-store-content-wrap {
	max-width: var(--ls-container);
	margin: 0 auto;
	padding: 8px 20px 64px;
}
.ls-store-premium .ls-store-profile {
	max-width: var(--ls-container);
}
.ls-store-premium .ls-store-hero .container {
	max-width: var(--ls-container);
}

/* Hide any leftover Dokan purple filter chrome */
.ls-dokan-store-wrap .dokan-profile-frame-wrapper,
.ls-dokan-store-wrap .profile-frame,
.ls-dokan-store-wrap .dokan-store-tabs,
.ls-dokan-store-wrap .dokan-store-product-filter,
.ls-dokan-store-wrap form.dokan-store-products-filter-search,
.ls-store-premium .dokan-store-products-filter-search {
	display: none !important;
}

@media (max-width: 768px) {
	.ls-store-premium .ls-store-banner { height: 160px; }
	.ls-store-premium .ls-store-profile {
		margin-top: -48px;
		padding: 18px;
		flex-direction: column;
		align-items: stretch;
	}
	.ls-store-premium .ls-store-profile-main {
		flex-direction: column;
		align-items: flex-start;
	}
	.ls-store-premium .ls-store-toolbar-right {
		width: 100%;
	}
	.ls-store-premium .ls-store-search {
		width: 100%;
	}
	.ls-store-premium .ls-store-search input {
		flex: 1;
		min-width: 0;
	}
}

/* Legacy store card support */
.ls-dokan-store-wrap .ls-store-hero {
	margin-bottom: 40px;
}
.ls-dokan-store-wrap .ls-store-banner {
	height: 260px;
	background: linear-gradient(135deg, var(--ls-cyan) 0%, var(--ls-teal) 50%, var(--ls-pink) 100%);
	background-size: cover;
	background-position: center;
	position: relative;
}
.ls-dokan-store-wrap .ls-store-banner-placeholder {
	height: 100%;
	background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
}
.ls-dokan-store-wrap .ls-store-profile-card {
	display: flex;
	align-items: flex-end;
	gap: 24px;
	flex-wrap: wrap;
	background: var(--ls-white);
	border: 1px solid var(--ls-border);
	border-radius: var(--ls-radius-lg);
	padding: 24px 28px;
	margin-top: -60px;
	box-shadow: var(--ls-shadow);
	position: relative;
	z-index: 2;
}
.ls-dokan-store-wrap .ls-store-avatar img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 4px solid var(--ls-white);
	box-shadow: var(--ls-shadow);
	object-fit: cover;
}
.ls-dokan-store-wrap .ls-store-name {
	font-family: var(--ls-font-heading);
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin: 0 0 6px;
}
.ls-dokan-store-wrap .ls-store-location,
.ls-dokan-store-wrap .ls-store-phone,
.ls-dokan-store-wrap .ls-store-desc {
	font-size: 14px;
	color: var(--ls-text-muted);
	margin: 0 0 4px;
}
.ls-dokan-store-wrap .ls-store-rating {
	margin-left: auto;
	text-align: right;
}
.ls-dokan-store-wrap .ls-no-rating {
	display: inline-block;
	padding: 8px 16px;
	background: var(--ls-lime);
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
}
.ls-dokan-store-wrap .ls-store-product-count {
	font-size: 13px;
	font-weight: 600;
	color: var(--ls-teal);
	margin-top: 8px;
}
.ls-store-content-wrap {
	max-width: var(--ls-container);
	padding-top: 8px;
}
.ls-store-products {
	background: var(--ls-white);
	border: 1px solid var(--ls-border);
	border-radius: var(--ls-radius-lg);
	padding: 28px;
	box-shadow: var(--ls-shadow-sm);
}
.ls-store-empty {
	text-align: center;
	padding: 60px 20px;
	background: var(--ls-white);
	border-radius: var(--ls-radius-lg);
	border: 1px solid var(--ls-border);
}
.ls-store-empty p {
	font-size: 16px;
	color: var(--ls-text-muted);
	margin-bottom: 20px;
}

/* Hide blog sidebar & dokan store sidebar on store/dashboard pages */
body.ls-dokan-store-page #secondary,
body.ls-dokan-store-page .widget-area,
body.ls-dokan-store-page .dokan-store-sidebar,
body.ls-dokan-store-page #dokan-secondary,
body.ls-dokan-dashboard-page #secondary,
body.ls-dokan-dashboard-page .widget-area,
body.ls-no-sidebar #secondary,
body.ls-no-sidebar .widget-area {
	display: none !important;
}
body.ls-dokan-store-page .site-content,
body.ls-dokan-dashboard-page .site-content {
	width: 100%;
	max-width: 100%;
}
body.ls-dokan-store-page .dokan-store-wrap.layout-left,
body.ls-dokan-store-page .dokan-store-wrap.layout-right {
	display: block;
}
body.ls-dokan-store-page .dokan-store-wrap .dokan-store-sidebar {
	display: none !important;
}
body.ls-dokan-dashboard-page .dokan-dashboard-wrap {
	max-width: var(--ls-container);
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

/* Product vendor label on cards */
.ls-product-vendor {
	display: block;
	font-size: 12px;
	color: var(--ls-text-muted);
	margin-bottom: 4px;
}
.ls-product-vendor a {
	color: var(--ls-teal);
	text-decoration: none;
	font-weight: 600;
}
.ls-product-vendor a:hover {
	color: var(--ls-pink);
}

/* ===== MODERN DOKAN VENDOR PORTAL (override purple UI) ===== */
body.ls-dokan-dashboard-page {
	background: #f7f5f4;
}
body.ls-dokan-dashboard-page .dokan-dashboard-wrap,
body.dokan-dashboard .dokan-dashboard-wrap,
#dokan-vendor-dashboard,
.dokan-layout {
	--dokan-btn-primary-bg: var(--ls-pink);
	--dokan-btn-primary-border: var(--ls-pink);
	--dokan-sidebar-bg: #ffffff;
	--dokan-primary-color: var(--ls-pink);
}

/* Classic + modern sidebar */
.dokan-dash-sidebar,
.dokan-dashboard-wrap .dokan-dash-sidebar,
#dokan-navigation,
.dokan-layout__sidebar,
.dokan-frontend-layout .dokan-frontend-dashboard-sidebar {
	background: #fff !important;
	border-radius: 20px !important;
	border: 1px solid var(--ls-border) !important;
	box-shadow: 0 8px 32px rgba(0,0,0,0.05) !important;
	overflow: hidden;
}

/* Kill Dokan purple accents */
.dokan-dashboard-wrap .dokan-btn-theme,
.dokan-dashboard .dokan-btn-theme,
.dokan-dashboard-wrap a.dokan-btn-theme,
.dokan-product-listing .dokan-btn-theme,
.dokan-orders-content .dokan-btn-theme,
.dokan-settings-content .dokan-btn-theme,
.dokan-dashboard-wrap .button.button-primary,
.dokan-dashboard-wrap button.dokan-btn-success {
	background: var(--ls-pink) !important;
	border-color: var(--ls-pink) !important;
	color: #fff !important;
	border-radius: 50px !important;
	font-weight: 600 !important;
	box-shadow: none !important;
}
.dokan-dashboard-wrap .dokan-btn-theme:hover,
.dokan-dashboard .dokan-btn-theme:hover {
	background: #b82556 !important;
	border-color: #b82556 !important;
}

/* Active menu — pink instead of purple */
.dokan-dashboard-menu li.active > a,
.dokan-dashboard-menu li.active a,
.dokan-dash-sidebar ul li.active a,
.dokan-layout__sidebar .active,
.dokan-frontend-dashboard-sidebar a.active {
	background: linear-gradient(135deg, #fef5f8, #fff0f5) !important;
	color: var(--ls-pink) !important;
	border-left-color: var(--ls-pink) !important;
}

/* Content cards */
.dokan-dashboard-wrap .dokan-dashboard-content,
.dokan-dashboard-content {
	background: transparent !important;
	padding: 0 0 0 24px !important;
}
.dokan-dashboard-wrap .dokan-dashboard-widget,
.dokan-dashboard-content .dokan-dashboard-widget,
.dokan-panel,
.dokan-dashboard-content .panel {
	background: #fff !important;
	border: 1px solid var(--ls-border) !important;
	border-radius: 16px !important;
	box-shadow: 0 6px 24px rgba(0,0,0,0.04) !important;
	overflow: hidden;
}
.dokan-dashboard-wrap .dokan-dashboard-widget .widget-title,
.dokan-panel .panel-heading,
.dokan-dashboard-content .panel-heading {
	background: #faf9f8 !important;
	border-bottom: 1px solid var(--ls-border) !important;
	font-family: var(--ls-font-heading);
	font-weight: 700;
	color: var(--ls-heading) !important;
	padding: 14px 18px !important;
}

/* Stats / big numbers */
.dokan-dashboard-wrap .dokan-dashboard-widget .count,
.dokan-dashboard-content .count {
	color: var(--ls-pink) !important;
	font-family: var(--ls-font-heading);
	font-weight: 700;
}

/* Tables */
.dokan-dashboard-wrap table.dokan-table,
.dokan-dashboard-content table.dokan-table {
	border: 1px solid var(--ls-border) !important;
	border-radius: 12px !important;
	overflow: hidden;
	background: #fff;
}
.dokan-dashboard-wrap table.dokan-table th {
	background: #faf9f8 !important;
	font-weight: 700;
	color: var(--ls-heading);
}

/* Forms */
.dokan-dashboard-wrap input[type="text"],
.dokan-dashboard-wrap input[type="email"],
.dokan-dashboard-wrap input[type="number"],
.dokan-dashboard-wrap input[type="url"],
.dokan-dashboard-wrap input[type="password"],
.dokan-dashboard-wrap select,
.dokan-dashboard-wrap textarea {
	border: 1px solid var(--ls-border) !important;
	border-radius: 10px !important;
	padding: 10px 14px !important;
}
.dokan-dashboard-wrap input:focus,
.dokan-dashboard-wrap select:focus,
.dokan-dashboard-wrap textarea:focus {
	border-color: var(--ls-pink) !important;
	box-shadow: 0 0 0 3px rgba(216, 49, 105, 0.12) !important;
	outline: none !important;
}

/* Vendor portal page chrome */
body.ls-dokan-dashboard-page .site-header {
	box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
body.ls-dokan-dashboard-page .dokan-dashboard-wrap {
	display: grid !important;
	grid-template-columns: 260px 1fr;
	gap: 28px;
	align-items: start;
	padding-top: 36px;
	padding-bottom: 80px;
}
body.ls-dokan-dashboard-page .dokan-dashboard-wrap .dokan-dash-sidebar {
	width: 100% !important;
	float: none !important;
}
body.ls-dokan-dashboard-page .dokan-dashboard-wrap .dokan-dashboard-content {
	width: 100% !important;
	float: none !important;
	padding: 0 !important;
}

@media (max-width: 1024px) {
	body.ls-dokan-dashboard-page .dokan-dashboard-wrap {
		grid-template-columns: 1fr;
	}
}
