.lsn-auth-shell {
	align-items: start;
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
	margin: 28px auto;
	max-width: 1120px;
}

.lsn-auth-panel {
	background: #ffffff;
	border: 1px solid #d8dee4;
	border-radius: 8px;
	box-shadow: 0 18px 50px rgba(20, 28, 38, 0.08);
	padding: clamp(22px, 4vw, 36px);
}

.lsn-notice {
	border: 1px solid #d8dee4;
	border-left: 5px solid #FCCA34;
	border-radius: 8px;
	display: grid;
	gap: 4px;
	margin: 18px auto;
	max-width: 1120px;
	padding: 14px 16px;
}

.lsn-notice strong,
.lsn-notice span {
	display: block;
}

.lsn-notice--success {
	background: #fff9e6;
}

.lsn-notice--error {
	background: #fff5f5;
	border-left-color: #000000;
}

.lsn-notice--info {
	background: #f7f9fc;
}

.lsn-auth-panel--login {
	position: sticky;
	top: 24px;
}

.lsn-auth-heading {
	display: grid;
	gap: 6px;
	margin-bottom: 22px;
}

.lsn-auth-heading p {
	color: #52606d;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0;
	margin: 0;
	text-transform: uppercase;
}

.lsn-auth-heading h2 {
	font-size: clamp(1.55rem, 3vw, 2.2rem);
	line-height: 1.1;
	margin: 0;
}

.lsn-stepper {
	counter-reset: lsn-step;
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	list-style: none;
	margin: 0 0 26px;
	padding: 0;
}

.lsn-stepper li {
	align-items: center;
	color: #697586;
	display: flex;
	font-size: 0.88rem;
	font-weight: 700;
	gap: 8px;
	min-width: 0;
}

.lsn-stepper li::before {
	align-items: center;
	background: #eef2f6;
	border: 1px solid #d8dee4;
	border-radius: 999px;
	color: #52606d;
	content: attr(data-step-indicator);
	display: inline-flex;
	flex: 0 0 30px;
	height: 30px;
	justify-content: center;
	width: 30px;
}

.lsn-stepper li.is-active {
	color: #102a43;
}

.lsn-stepper li.is-active::before,
.lsn-stepper li.is-complete::before {
	background: #FCCA34;
	border-color: #FCCA34;
	color: #111111;
}

.lsn-form {
	display: grid;
	gap: 16px;
	max-width: 720px;
}

.lsn-form label {
	display: grid;
	gap: 6px;
	font-weight: 600;
}

.lsn-form input,
.lsn-form select,
.lsn-form textarea {
	background: #ffffff;
	border: 1px solid #c9d1d9;
	border-radius: 8px;
	color: #102a43;
	font: inherit;
	padding: 11px 12px;
	width: 100%;
}

.lsn-form input:focus,
.lsn-form select:focus,
.lsn-form textarea:focus {
	border-color: #FCCA34;
	box-shadow: 0 0 0 3px rgba(252, 202, 52, 0.26);
	outline: none;
}

.lsn-form button,
.lsn-button {
	-webkit-appearance: none !important;
	appearance: none !important;
	background: #000000 !important;
	border: 1px solid #000000 !important;
	border-radius: 8px !important;
	box-shadow: none !important;
	color: #ffffff !important;
	cursor: pointer !important;
	font: inherit !important;
	font-weight: 800 !important;
	line-height: 1.2 !important;
	transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.lsn-form button:hover,
.lsn-form button:focus,
.lsn-button:hover,
.lsn-button:focus {
	background: #ffffff !important;
	border-color: #000000 !important;
	color: #000000 !important;
	outline: none !important;
}

.lsn-form button[hidden],
.lsn-button[hidden],
[data-step-submit][hidden] {
	display: none !important;
}

.lsn-multistep {
	max-width: none;
}

.lsn-step {
	display: none;
	gap: 18px;
}

.lsn-step.is-active {
	display: grid;
}

.lsn-step__copy {
	background: #f7f9fc;
	border: 1px solid #e3e8ef;
	border-radius: 8px;
	padding: 16px;
}

.lsn-step__copy h3 {
	font-size: 1.2rem;
	margin: 0 0 6px;
}

.lsn-step__copy p {
	color: #52606d;
	margin: 0;
}

.lsn-field-grid,
.lsn-upload-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lsn-upload-card {
	background: #fbfcfe;
	border: 1px dashed #9aa8b7;
	border-radius: 8px;
	padding: 18px;
}

.lsn-step-actions {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	margin-top: 6px;
}

.lsn-button {
	align-items: center;
	display: inline-flex;
	justify-content: center;
	min-height: 44px;
	padding: 10px 16px;
	text-decoration: none;
}

.lsn-button--primary {
	background: #000000 !important;
	border-color: #000000 !important;
	color: #ffffff !important;
}

.lsn-button--ghost {
	background: #ffffff !important;
	border-color: #000000 !important;
	color: #000000 !important;
}

.lsn-button--ghost:hover,
.lsn-button--ghost:focus {
	background: #000000;
	color: #ffffff;
}

.lsn-button:disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

.lsn-check {
	align-items: center;
	display: flex !important;
	font-weight: 600;
	gap: 8px !important;
}

.lsn-check input {
	width: auto;
}

.lsn-login-link {
	color: #000000;
	font-weight: 700;
	text-decoration: none;
}

.lsn-login-link:hover,
.lsn-login-link:focus {
	color: #FCCA34;
}

.lsn-vendor-console {
	align-items: start;
	display: grid;
	gap: 22px;
	grid-template-columns: 260px minmax(0, 1fr);
	margin: 28px auto;
	max-width: 1240px;
}

.lsn-vendor-sidebar {
	background: #111111;
	border-radius: 8px;
	color: #ffffff;
	display: grid;
	gap: 18px;
	padding: 18px;
	position: sticky;
	top: 24px;
}

.lsn-vendor-card {
	align-items: center;
	display: grid;
	gap: 7px;
	justify-items: center;
	text-align: center;
}

.lsn-vendor-card__avatar {
	background: #FCCA34;
	border: 3px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	height: 74px;
	object-fit: cover;
	width: 74px;
}

.lsn-vendor-card__avatar--empty {
	display: block;
}

.lsn-vendor-card span {
	color: #FCCA34;
	font-size: 0.85rem;
	font-weight: 800;
	text-transform: uppercase;
}

.lsn-vendor-nav {
	display: grid;
	gap: 8px;
}

.lsn-vendor-nav button {
	-webkit-appearance: none !important;
	appearance: none !important;
	background: transparent !important;
	border: 1px solid rgba(255, 255, 255, 0.16) !important;
	border-radius: 8px !important;
	box-shadow: none !important;
	color: #ffffff !important;
	cursor: pointer !important;
	font: inherit !important;
	font-weight: 800 !important;
	padding: 12px 14px !important;
	text-align: left !important;
}

.lsn-vendor-nav button:hover,
.lsn-vendor-nav button:focus,
.lsn-vendor-nav button.is-active {
	background: #FCCA34 !important;
	border-color: #FCCA34 !important;
	color: #111111 !important;
	outline: none !important;
}

.lsn-vendor-sidebar__link {
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	color: #ffffff;
	font-weight: 800;
	padding-top: 14px;
	text-decoration: none;
}

.lsn-vendor-sidebar__link:hover,
.lsn-vendor-sidebar__link:focus {
	color: #FCCA34;
}

.lsn-vendor-main {
	display: grid;
	gap: 18px;
	min-width: 0;
}

.lsn-vendor-hero {
	background: #ffffff;
	border: 1px solid #d8dee4;
	border-radius: 8px;
	overflow: hidden;
}

.lsn-vendor-hero__content {
	display: grid;
	gap: 6px;
	padding: 20px;
}

.lsn-vendor-hero__content p {
	color: #697586;
	font-size: 0.78rem;
	font-weight: 800;
	margin: 0;
	text-transform: uppercase;
}

.lsn-vendor-hero__content h2 {
	margin: 0;
}

.lsn-vendor-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 12px;
}

.lsn-store-owner-bar {
	align-items: center;
	background: #fff9e6;
	border: 1px solid #FCCA34;
	border-radius: 8px;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin: 0 auto 18px;
	max-width: 1120px;
	padding: 12px 14px;
}

.lsn-store-owner-bar span {
	font-weight: 800;
}

.lsn-store {
	margin: 28px auto;
	max-width: 1240px;
}

.lsn-store-hero {
	background: #111111;
	border-radius: 8px;
	color: #ffffff;
	overflow: hidden;
}

.lsn-store-hero__media {
	aspect-ratio: 5 / 1;
	background: linear-gradient(135deg, #111111 0%, #2f2f2f 100%);
	background-position: center;
	background-size: cover;
	min-height: 190px;
}

.lsn-store-hero__content {
	display: grid;
	gap: 18px;
	padding: clamp(20px, 4vw, 34px);
}

.lsn-store-profile {
	align-items: center;
	display: flex;
	gap: 18px;
}

.lsn-store-profile__avatar {
	background: #FCCA34;
	border: 4px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	height: 104px;
	object-fit: cover;
	width: 104px;
}

.lsn-store-profile__avatar--empty {
	display: block;
}

.lsn-store-profile p,
.lsn-store-section-heading p {
	color: #FCCA34;
	font-size: 0.8rem;
	font-weight: 900;
	letter-spacing: 0;
	margin: 0 0 4px;
	text-transform: uppercase;
}

.lsn-store-profile h1 {
	color: #ffffff;
	font-size: clamp(2rem, 5vw, 4rem);
	line-height: 1;
	margin: 0;
}

.lsn-store-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.lsn-store-meta span {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	font-weight: 800;
	padding: 8px 12px;
}

.lsn-store-description {
	color: rgba(255, 255, 255, 0.86);
	max-width: 760px;
}

.lsn-store-description p {
	margin: 0;
}

.lsn-store-layout {
	align-items: start;
	display: grid;
	gap: 22px;
	grid-template-columns: 320px minmax(0, 1fr);
	margin-top: 22px;
}

.lsn-store-side {
	position: sticky;
	top: 24px;
}

.lsn-store-message,
.lsn-store-policies,
.lsn-message-thread {
	background: #ffffff;
	border: 1px solid #d8dee4;
	border-radius: 8px;
	display: grid;
	gap: 12px;
	margin: 18px auto;
	max-width: 1120px;
	padding: 18px;
}

.lsn-store-message {
	margin: 0;
}

.lsn-store-policies {
	margin: 0 0 14px;
	max-width: none;
}

.lsn-store-message h2,
.lsn-store-policies h2 {
	margin: 0;
}

.lsn-store-policies a {
	background: #fff9e6;
	border: 1px solid #FCCA34;
	border-radius: 8px;
	color: #111111;
	display: block;
	font-weight: 900;
	padding: 10px 12px;
	text-decoration: none;
}

.lsn-store-policies a:hover,
.lsn-store-policies a:focus {
	background: #000000;
	border-color: #000000;
	color: #ffffff;
	outline: none;
}

.lsn-store-section-heading {
	margin-bottom: 16px;
}

.lsn-store-section-heading h2 {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	line-height: 1.05;
	margin: 0;
}

.lsn-empty-state {
	background: #ffffff;
	border: 1px dashed #c9d1d9;
	border-radius: 8px;
	color: #697586;
	font-weight: 800;
	padding: 22px;
}

.lsn-message-form,
.lsn-message-reply {
	display: grid;
	gap: 10px;
}

.lsn-message-form textarea,
.lsn-message-reply textarea {
	border: 1px solid #c9d1d9;
	border-radius: 8px;
	font: inherit;
	padding: 11px 12px;
	width: 100%;
}

.lsn-message-form button,
.lsn-message-reply button {
	background: #000000;
	border: 1px solid #000000;
	border-radius: 8px;
	color: #ffffff;
	cursor: pointer;
	font: inherit;
	font-weight: 800;
	justify-self: start;
	padding: 10px 14px;
}

.lsn-message-form button:hover,
.lsn-message-form button:focus,
.lsn-message-reply button:hover,
.lsn-message-reply button:focus {
	background: #ffffff;
	color: #000000;
	outline: none;
}

.lsn-message-list {
	display: grid;
	gap: 14px;
}

.lsn-message-thread {
	margin: 0;
	max-width: none;
}

.lsn-message-thread__heading {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: space-between;
}

.lsn-message-thread__heading span {
	color: #697586;
	font-size: 0.86rem;
}

.lsn-message-bubbles {
	display: grid;
	gap: 8px;
}

.lsn-message-bubble {
	background: #f7f9fc;
	border: 1px solid #e3e8ef;
	border-radius: 8px;
	justify-self: start;
	max-width: 78%;
	padding: 10px 12px;
}

.lsn-message-bubble.is-mine {
	background: #fff5cc;
	border-color: #FCCA34;
	justify-self: end;
}

.lsn-console-panel {
	display: none;
	gap: 18px;
}

.lsn-console-panel.is-active {
	display: grid;
}

.lsn-console-grid {
	display: grid;
	gap: 14px;
}

.lsn-console-grid--stats {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lsn-metric,
.lsn-console-card {
	background: #ffffff;
	border: 1px solid #d8dee4;
	border-radius: 8px;
	box-shadow: 0 10px 28px rgba(20, 28, 38, 0.06);
}

.lsn-metric {
	border-top: 4px solid #FCCA34;
	display: grid;
	gap: 8px;
	padding: 18px;
}

.lsn-metric span {
	color: #697586;
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
}

.lsn-metric strong {
	font-size: 1.45rem;
	line-height: 1.1;
}

.lsn-console-card {
	display: grid;
	gap: 16px;
	padding: 18px;
}

.lsn-console-card__heading {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: space-between;
}

.lsn-console-card__heading h3 {
	margin: 0;
}

.lsn-console-card__heading span,
.lsn-console-card__heading a {
	color: #000000 !important;
	font-weight: 800;
	text-decoration: underline;
}

.lsn-text-button {
	-webkit-appearance: none !important;
	appearance: none !important;
	background: #ffffff !important;
	border: 1px solid #000000 !important;
	border-radius: 8px !important;
	box-shadow: none !important;
	color: #000000 !important;
	cursor: pointer !important;
	font: inherit !important;
	font-weight: 800 !important;
	padding: 10px 14px !important;
	text-decoration: none !important;
}

.lsn-text-button:hover,
.lsn-text-button:focus {
	background: #000000 !important;
	color: #ffffff !important;
	outline: none !important;
}

.lsn-form--wide {
	max-width: none;
}

.lsn-table-wrap {
	overflow-x: auto;
}

.lsn-table {
	border-collapse: collapse;
	width: 100%;
}

.lsn-table th,
.lsn-table td {
	border-bottom: 1px solid #d8dee4;
	padding: 10px;
	text-align: left;
	vertical-align: top;
}

.lsn-inline-form {
	display: grid;
	gap: 8px;
	min-width: 220px;
}

.lsn-inline-form input,
.lsn-inline-form select,
.lsn-inline-form textarea {
	width: 100%;
}

.lsn-status-pill {
	background: #fff5cc;
	border: 1px solid #FCCA34;
	border-radius: 999px;
	display: inline-flex;
	font-size: 0.82rem;
	font-weight: 800;
	padding: 3px 9px;
	text-transform: capitalize;
}

.lsn-product-manager,
.lsn-order-list {
	display: grid;
	gap: 14px;
}

.lsn-product-row,
.lsn-order-row {
	background: #fbfcfe;
	border: 1px solid #e3e8ef;
	border-radius: 8px;
	display: grid;
	gap: 12px;
	padding: 14px;
}

.lsn-product-table-row {
	align-items: center;
	display: grid;
	gap: 14px;
	grid-template-columns: 70px minmax(180px, 1.3fr) minmax(120px, 0.8fr) minmax(100px, 0.7fr) minmax(120px, 0.8fr) auto;
}

.lsn-product-table-cell {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.lsn-product-table-cell span {
	color: #697586;
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.lsn-product-table-cell strong {
	overflow-wrap: anywhere;
}

.lsn-product-table-cell--image img {
	border-radius: 8px;
	height: 58px;
	object-fit: cover;
	width: 58px;
}

.lsn-product-table-cell--action {
	justify-items: end;
}

.lsn-product-edit-form[hidden] {
	display: none !important;
}

.lsn-product-edit-form {
	background: #ffffff;
	border: 1px solid #d8dee4;
	border-radius: 8px;
	display: grid;
	gap: 14px;
	padding: 14px;
}

.lsn-product-edit-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.lsn-checkbox-fieldset {
	border: 1px solid #d8dee4;
	border-radius: 8px;
	margin: 0;
	padding: 14px;
}

.lsn-checkbox-fieldset legend {
	font-weight: 900;
	padding: 0 6px;
}

.lsn-checkbox-grid {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}

.lsn-checkbox-grid label {
	align-items: center;
	display: flex;
	gap: 8px;
}

.lsn-checkbox-grid input {
	width: auto !important;
}

.lsn-product-row__summary {
	align-items: center;
	display: flex;
	gap: 12px;
}

.lsn-product-row__summary img {
	border-radius: 8px;
	height: 56px;
	object-fit: cover;
	width: 56px;
}

.lsn-product-row__summary strong,
.lsn-product-row__summary span,
.lsn-order-row strong,
.lsn-order-row span {
	display: block;
}

.lsn-product-row__summary span,
.lsn-order-row span {
	color: #697586;
}

.lsn-order-row {
	grid-template-columns: minmax(180px, 1fr) 150px minmax(140px, 0.65fr) minmax(140px, 0.65fr) auto;
}

.lsn-order-row input,
.lsn-order-row select,
.lsn-product-row input,
.lsn-product-row textarea {
	background: #ffffff;
	border: 1px solid #c9d1d9;
	border-radius: 8px;
	font: inherit;
	padding: 10px 11px;
	width: 100%;
}

.lsn-product-row button,
.lsn-order-row button {
	-webkit-appearance: none !important;
	appearance: none !important;
	background: #000000 !important;
	border: 1px solid #000000 !important;
	border-radius: 8px !important;
	box-shadow: none !important;
	color: #ffffff !important;
	cursor: pointer !important;
	font: inherit !important;
	font-weight: 800 !important;
	padding: 10px 14px !important;
}

.lsn-product-row button:hover,
.lsn-product-row button:focus,
.lsn-order-row button:hover,
.lsn-order-row button:focus {
	background: #ffffff !important;
	color: #000000 !important;
	outline: none !important;
}

.lsn-product-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.lsn-product-card {
	background: #ffffff;
	border: 1px solid #d8dee4;
	border-radius: 8px;
	color: inherit;
	display: grid;
	overflow: hidden;
	text-decoration: none;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.lsn-product-card:hover,
.lsn-product-card:focus {
	border-color: #FCCA34;
	box-shadow: 0 14px 34px rgba(20, 28, 38, 0.12);
	transform: translateY(-2px);
	outline: none;
}

.lsn-product-card__image {
	background: #f7f9fc;
	display: block;
}

.lsn-product-card img {
	aspect-ratio: 1 / 1;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.lsn-product-card__body {
	display: grid;
	gap: 8px;
	padding: 14px;
}

.lsn-product-card__body strong {
	color: #111111;
	line-height: 1.2;
}

.lsn-product-card__body em {
	color: #697586;
	font-style: normal;
	font-weight: 900;
}

.lsn-product-table-cell del,
.lsn-product-card__body del {
	color: #697586;
	font-weight: 700;
	opacity: 0.72;
}

.lsn-product-table-cell ins,
.lsn-product-card__body ins {
	color: #111111;
	font-weight: 900;
	text-decoration: none;
}

.lsn-rating {
	font-weight: 700;
	margin: 0 0 8px;
}

@media (max-width: 700px) {
	.lsn-auth-shell {
		grid-template-columns: 1fr;
	}

	.lsn-auth-panel--login {
		position: static;
	}

	.lsn-stepper,
	.lsn-field-grid,
	.lsn-upload-grid {
		grid-template-columns: 1fr;
	}

	.lsn-stats {
		grid-template-columns: 1fr;
	}

	.lsn-dashboard__header {
		align-items: flex-start;
		flex-direction: column;
	}

	.lsn-vendor-console {
		grid-template-columns: 1fr;
	}

	.lsn-vendor-sidebar {
		position: static;
	}

	.lsn-console-grid--stats,
	.lsn-order-row,
	.lsn-product-table-row {
		grid-template-columns: 1fr;
	}

	.lsn-product-table-cell--action {
		justify-items: start;
	}

	.lsn-console-card__heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.lsn-store-layout {
		grid-template-columns: 1fr;
	}

	.lsn-store-side {
		position: static;
	}

	.lsn-store-profile {
		align-items: flex-start;
		flex-direction: column;
	}
}
