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

:root {
	--retail-primary: #1A1A1A;
	--retail-accent: #D4AF37;
	--retail-text: #111827;
	--retail-muted: #6B7280;
	--retail-border: #E5E7EB;
	--retail-bg: #F8F9FA;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body,
body[data-path="login"],
body[data-route="login"] {
	min-height: 100vh;
	background: var(--retail-bg);
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--retail-text);
	overflow-x: hidden;
}

.page-content-wrapper {
	padding: 0;
}

.web-footer,
footer,
header,
.navbar {
	display: none !important;
}

.retail-login-shell {
	min-height: 100vh;
	width: 100%;
	background: var(--retail-bg);
}

.retail-split-card {
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background: var(--retail-bg);
}

.retail-left-half {
	position: relative;
	overflow: hidden;
	background: #121212;
	display: none;
}

.retail-bg-image {
	position: absolute;
	inset: 0;
	background-image: url("https://images.unsplash.com/photo-1503951914875-452162b0f3f1?q=80&w=2070&auto=format&fit=crop");
	background-size: cover;
	background-position: center;
	opacity: 0.6;
	z-index: 0;
	transition: transform 10s ease;
}

.retail-left-half:hover .retail-bg-image {
	transform: scale(1.08);
}

.retail-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.2));
}

.retail-brand-content {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 48px;
	color: #ffffff;
}

.retail-logo {
	display: flex;
	align-items: center;
	gap: 12px;
}

.retail-logo-icon {
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.retail-brand-text {
	font-size: 30px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: #ffffff;
}

.retail-brand-accent {
	color: var(--retail-accent);
}

.retail-hero-section {
	max-width: 620px;
}

.retail-hero-title {
	font-size: clamp(40px, 3.8vw, 56px);
	line-height: 1.06;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: -0.03em;
	margin-bottom: 22px;
}

.retail-accent-text {
	display: block;
	color: var(--retail-accent);
}

.retail-hero-subtitle {
	font-size: clamp(15px, 1.05vw, 18px);
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.82);
	max-width: 610px;
	margin-bottom: 32px;
}

.retail-features-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	max-width: 420px;
}

.retail-feature {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.82);
}

.retail-feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--retail-accent);
}

.retail-icon {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.retail-icon-scissors {
	width: 25px;
	height: 25px;
	color: var(--retail-accent);
}

.retail-icon-eye {
	width: 22px;
	height: 22px;
	color: #9CA3AF;
}

.retail-icon-shield {
	width: 22px;
	height: 22px;
	color: #16A34A;
}

.retail-copyright {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.62);
}

.retail-right-half {
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 36px;
	background: #ffffff;
}

.retail-form-wrapper {
	width: 100%;
	max-width: 480px;
}

.retail-form-header {
	margin-bottom: 32px;
	text-align: left;
}

.retail-form-title {
	font-size: clamp(36px, 3.2vw, 50px);
	line-height: 1;
	font-weight: 800;
	color: #0F172A;
	letter-spacing: -0.03em;
	margin-bottom: 10px;
}

.retail-form-subtitle {
	font-size: clamp(15px, 1.05vw, 18px);
	line-height: 1.5;
	color: #6B7280;
}

.retail-login-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.retail-form-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}

.retail-form-label-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.retail-form-label {
	font-size: 14px;
	font-weight: 600;
	color: #374151;
}

.retail-forgot-link {
	font-size: 14px;
	font-weight: 500;
	color: var(--retail-accent);
	text-decoration: none;
}

.retail-forgot-link:hover {
	text-decoration: underline;
}

.retail-form-input {
	width: 100%;
	display: block;
	height: 56px;
	padding: 0 20px;
	border-radius: 14px;
	border: 1px solid var(--retail-border);
	background: #F9FAFB;
	font-size: 16px;
	font-weight: 500;
	color: #111827;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.retail-form-input::placeholder {
	color: #9CA3AF;
}

.retail-form-input:focus {
	outline: none;
	background: #ffffff;
	border-color: #1F2937;
	box-shadow: 0 0 0 2px rgba(17, 24, 39, 0.08);
}

.retail-password-wrapper {
	position: relative;
	width: 100%;
}

.retail-password-toggle {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.retail-form-checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 2px;
}

.retail-checkbox {
	width: 20px;
	height: 20px;
	accent-color: #111827;
	cursor: pointer;
}

.retail-checkbox-label {
	font-size: 14px;
	color: #4B5563;
	user-select: none;
}

.retail-btn-login {
	width: 100%;
	height: 56px;
	border: none;
	border-radius: 14px;
	background: var(--retail-primary);
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14);
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.retail-btn-login:hover {
	background: #2c2c2c;
}

.retail-btn-login:active {
	transform: scale(0.99);
}

.retail-btn-icon {
	font-size: 18px;
	line-height: 1;
}

.retail-divider {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 28px 0 18px;
}

.retail-divider-line {
	flex: 1;
	height: 1px;
	background: var(--retail-border);
}

.retail-divider-text {
	white-space: nowrap;
	font-size: 14px;
	color: #9CA3AF;
}

.retail-btn-secondary {
	width: 100%;
	height: 50px;
	border: 1px solid var(--retail-border);
	border-radius: 14px;
	background: #ffffff;
	color: #1F2937;
	font-size: 15px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.retail-btn-secondary:hover {
	background: #F9FAFB;
	border-color: #D1D5DB;
}

.retail-form-footer {
	margin-top: 28px;
	text-align: center;
	font-size: 14px;
	color: #6B7280;
}

.retail-footer-link {
	font-weight: 700;
	color: #1F2937;
	text-decoration: none;
}

.retail-footer-link:hover {
	text-decoration: underline;
}

@media (min-width: 768px) {
	.retail-split-card {
		flex-direction: row;
	}

	.retail-left-half {
		display: block;
		width: 50%;
		min-height: 100vh;
	}

	.retail-right-half {
		width: 50%;
		padding: 40px;
	}
}

@media (min-width: 1280px) {
	.retail-right-half {
		padding: 56px;
	}
}

@media (max-width: 1400px) {
	.retail-brand-text {
		font-size: 30px;
	}

	.retail-hero-title {
		font-size: clamp(34px, 3.8vw, 54px);
	}

	.retail-hero-subtitle {
		font-size: 16px;
	}

	.retail-feature {
		font-size: 14px;
	}

	.retail-copyright {
		font-size: 13px;
	}

	.retail-form-title {
		font-size: clamp(34px, 3.6vw, 52px);
	}

	.retail-form-subtitle {
		font-size: 16px;
	}

	.retail-form-label,
	.retail-checkbox-label,
	.retail-btn-login,
	.retail-btn-secondary,
	.retail-divider-text,
	.retail-form-input {
		font-size: 16px;
	}

	.retail-forgot-link,
	.retail-form-footer {
		font-size: 14px;
	}

	.retail-form-input {
		height: 56px;
	}

	.retail-btn-login {
		height: 56px;
	}

	.retail-btn-secondary {
		height: 50px;
	}
}

@media (max-width: 767px) {
	.retail-right-half {
		padding: 24px 20px 34px;
	}

	.retail-form-title {
		font-size: 32px;
		margin-bottom: 8px;
	}

	.retail-form-subtitle,
	.retail-form-label,
	.retail-forgot-link,
	.retail-checkbox-label,
	.retail-btn-login,
	.retail-btn-secondary,
	.retail-divider-text,
	.retail-form-footer,
	.retail-form-input {
		font-size: 14px;
	}

	.retail-form-input {
		height: 48px;
		padding: 0 14px;
	}

	.retail-btn-login {
		height: 48px;
	}

	.retail-btn-secondary {
		height: 44px;
	}

	.retail-checkbox {
		width: 16px;
		height: 16px;
	}
}
