/* Nizva Rate - Frontend Styles */
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800&display=swap');

:root {
	--nr-primary: #6366f1;
	--nr-primary-dark: #4f46e5;
	--nr-primary-light: #818cf8;
	--nr-secondary: #64748b;
	--nr-bg: #f8fafc;
	--nr-bg-card: #ffffff;
	--nr-bg-input: #f1f5f9;
	--nr-text: #1e293b;
	--nr-text-muted: #64748b;
	--nr-gold: #f59e0b;
	--nr-success: #22c55e;
	--nr-danger: #ef4444;
	--nr-border: #e2e8f0;
	--nr-radius: 16px;
	--nr-radius-lg: 24px;
	--nr-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.12);
	--nr-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.nizva-rate-page {
	margin: 0 !important;
	padding: 0 !important;
	background: var(--nr-bg) !important;
	overflow: hidden;
}

body.nizva-rate-page .site-header,
body.nizva-rate-page .site-footer,
body.nizva-rate-page #wpadminbar,
body.nizva-rate-page .entry-header,
body.nizva-rate-page .post-navigation {
	display: none !important;
}

body.nizva-rate-page .entry-content,
body.nizva-rate-page .site-content,
body.nizva-rate-page .content-area,
body.nizva-rate-page article {
	margin: 0 !important;
	padding: 0 !important;
	max-width: 100% !important;
	width: 100% !important;
}

.nr-app {
	font-family: 'Vazirmatn', Tahoma, sans-serif;
	direction: rtl;
	min-height: 100vh;
	min-height: 100dvh;
	height: 100dvh;
	background: linear-gradient(160deg, #f8fafc 0%, #eef2ff 50%, #f8fafc 100%);
	color: var(--nr-text);
	position: relative;
	overflow: hidden;
}

.nr-app::before {
	content: '';
	position: absolute;
	top: -30%;
	right: -20%;
	width: 60%;
	height: 60%;
	background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.nr-app::after {
	content: '';
	position: absolute;
	bottom: -20%;
	left: -10%;
	width: 50%;
	height: 50%;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
	pointer-events: none;
}

/* Welcome screen */
.nr-screen--welcome {
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
	justify-content: flex-start;
	align-items: stretch;
	padding: 2rem 1.25rem 6.5rem;
	background-color: #f4f6fb;
	min-height: 100dvh;
	height: 100dvh;
	max-height: 100dvh;
	-webkit-overflow-scrolling: touch;
}

.nr-welcome-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.nr-welcome-bg__svg {
	width: 100%;
	height: 100%;
	display: block;
}

.nr-welcome-bg__orb {
	opacity: 0.22;
	transform-origin: center;
	will-change: transform, opacity;
}

.nr-welcome-bg__orb--1 {
	animation: nrWelcomeOrb1 14s ease-in-out infinite;
}

.nr-welcome-bg__orb--2 {
	animation: nrWelcomeOrb2 18s ease-in-out infinite;
}

.nr-welcome-bg__orb--3 {
	animation: nrWelcomeOrb3 16s ease-in-out infinite;
}

.nr-welcome-bg__orb--4 {
	animation: nrWelcomeOrb4 20s ease-in-out infinite;
}

@keyframes nrWelcomeOrb1 {
	0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.2; }
	50% { transform: translate(40px, 30px) scale(1.12); opacity: 0.28; }
}

@keyframes nrWelcomeOrb2 {
	0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.18; }
	50% { transform: translate(-50px, 25px) scale(1.08); opacity: 0.26; }
}

@keyframes nrWelcomeOrb3 {
	0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.16; }
	50% { transform: translate(30px, -40px) scale(1.1); opacity: 0.24; }
}

@keyframes nrWelcomeOrb4 {
	0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.14; }
	50% { transform: translate(-25px, -30px) scale(1.06); opacity: 0.22; }
}

.nr-app:has(.nr-screen--welcome.nr-active) {
	background: #f4f6fb;
	overflow: hidden;
}

.nr-app:has(.nr-screen--welcome.nr-active)::before,
.nr-app:has(.nr-screen--welcome.nr-active)::after {
	display: none;
}

.nr-welcome {
	width: 100%;
	max-width: 480px;
	margin: 0 auto;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
}

.nr-welcome__body {
	width: 100%;
}

.nr-welcome__hero {
	text-align: center;
	margin-bottom: 2.5rem;
	width: 100%;
}

.nr-welcome__logo {
	margin: 0 auto 1.75rem;
	max-width: 200px;
}

.nr-welcome__logo-img {
	width: 100%;
	height: auto;
	max-height: 72px;
	object-fit: contain;
	display: block;
	margin: 0 auto;
}

.nr-welcome__title {
	font-size: clamp(1.75rem, 5vw, 2.35rem);
	font-weight: 800;
	margin: 0 0 0.65rem;
	color: #1e293b;
	line-height: 1.35;
}

.nr-welcome__subtitle {
	font-size: 1.05rem;
	color: #64748b;
	margin: 0;
	font-weight: 400;
	line-height: 1.6;
}

.nr-welcome__actions {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	width: 100%;
}

.nr-welcome-btn {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	width: 100%;
	padding: 1rem 1.25rem;
	border: none;
	border-radius: 18px;
	font-family: inherit;
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
	min-height: 64px;
}

.nr-welcome-btn:hover,
.nr-welcome-btn:active {
	transform: translateY(-2px);
}

.nr-welcome-btn__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	flex-shrink: 0;
}

.nr-welcome-btn__icon svg {
	width: 20px;
	height: 20px;
	display: block;
}

.nr-welcome-btn__text {
	flex: 1;
	text-align: center;
	line-height: 1.3;
}

.nr-welcome-btn__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	opacity: 0.85;
}

.nr-welcome-btn__arrow svg {
	width: 18px;
	height: 18px;
	display: block;
}

.nr-welcome-btn--survey {
	background: linear-gradient(90deg, #7c3aed 0%, #6366f1 50%, #4f46e5 100%);
	color: #fff;
	box-shadow: 0 10px 28px rgba(99, 102, 241, 0.35);
}

.nr-welcome-btn--survey .nr-welcome-btn__icon {
	background: rgba(255, 255, 255, 0.18);
	border: 1.5px solid rgba(255, 255, 255, 0.35);
	color: #fff;
}

.nr-welcome-btn--order {
	background: linear-gradient(90deg, #10b981 0%, #14b8a6 50%, #0d9488 100%);
	color: #fff;
	box-shadow: 0 10px 28px rgba(16, 185, 129, 0.3);
}

.nr-welcome-btn--order .nr-welcome-btn__icon {
	background: rgba(255, 255, 255, 0.18);
	border: 1.5px solid rgba(255, 255, 255, 0.3);
	color: #fff;
}

.nr-welcome-btn--expert {
	background: #fff;
	color: #1e293b;
	border: 1.5px solid #e8edf5;
	box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}

.nr-welcome-btn--expert .nr-welcome-btn__icon {
	background: #f5f3ff;
	color: #6366f1;
}

.nr-welcome-btn--expert .nr-welcome-btn__arrow {
	color: #94a3b8;
}

.nr-welcome__footer {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	flex-shrink: 0;
	width: 100%;
	margin-top: 0;
	padding: 0.85rem 1.25rem;
	padding-bottom: calc(0.85rem + env(safe-area-inset-bottom, 0));
	text-align: center;
	font-size: 0.82rem;
	color: #334155;
	line-height: 1.7;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-top: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 -4px 24px rgba(15, 23, 42, 0.06);
}

.nr-welcome__copyright,
.nr-welcome__credit {
	margin: 0;
}

.nr-welcome__credit {
	margin-top: 0.35rem;
	font-size: 0.78rem;
	color: #475569;
}

@media (max-width: 768px) {
	.nr-screen--welcome {
		padding: 1.5rem 1rem 6rem;
	}

	.nr-welcome__hero {
		margin-bottom: 2rem;
	}

	.nr-welcome__logo {
		max-width: 170px;
		margin-bottom: 1.25rem;
	}

	.nr-welcome__title {
		font-size: 1.65rem;
	}

	.nr-welcome__subtitle {
		font-size: 0.95rem;
	}

	.nr-welcome-btn {
		font-size: 1rem;
		min-height: 58px;
		padding: 0.9rem 1rem;
		border-radius: 16px;
	}

	.nr-welcome-btn__icon {
		width: 38px;
		height: 38px;
	}

	.nr-welcome__footer {
		padding: 0.75rem 1rem;
		padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0));
		font-size: 0.75rem;
	}
}

/* Legacy welcome (unused) */
.nr-bg-animated {
	display: none;
}

.nr-screen--welcome .nr-hero,
.nr-screen--welcome .nr-actions {
	position: relative;
	z-index: 1;
}

.nr-screen {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	min-height: 100dvh;
	height: 100dvh;
	padding: 2rem;
	position: relative;
	z-index: 1;
	animation: nrFadeIn 0.4s ease;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
}

.nr-screen.nr-active {
	display: flex;
}

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

/* Welcome */
.nr-hero {
	text-align: center;
	margin-bottom: 3rem;
}

.nr-logo {
	width: 140px;
	height: 140px;
	margin: 0 auto 1.5rem;
	animation: nrPulse 3s ease-in-out infinite;
}

.nr-logo-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	filter: drop-shadow(0 8px 24px rgba(99, 102, 241, 0.25));
}

@keyframes nrPulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.06); }
}

.nr-logo svg {
	width: 100%;
	height: 100%;
}

.nr-title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	margin: 0 0 0.5rem;
	color: var(--nr-text);
}

.nr-subtitle {
	font-size: 1.2rem;
	color: var(--nr-text-muted);
	margin: 0;
}

.nr-actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
	max-width: 420px;
}

/* Buttons */
.nr-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	border: none;
	border-radius: var(--nr-radius);
	font-family: inherit;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--nr-transition);
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.nr-btn--primary {
	background: linear-gradient(135deg, var(--nr-primary) 0%, var(--nr-primary-dark) 100%);
	color: #fff;
	box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.nr-btn--primary:hover,
.nr-btn--primary:active {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.nr-btn--secondary {
	background: var(--nr-bg-card);
	color: var(--nr-text);
	border: 2px solid var(--nr-border);
}

.nr-btn--secondary:hover,
.nr-btn--secondary:active {
	background: var(--nr-bg-input);
	border-color: var(--nr-primary-light);
}

.nr-btn--xl {
	padding: 1.5rem 2.5rem;
	font-size: 1.3rem;
	border-radius: var(--nr-radius-lg);
	min-height: 72px;
}

.nr-btn--full {
	width: 100%;
}

.nr-btn-icon {
	font-size: 1.5rem;
}

.nr-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none !important;
}

/* Card */
.nr-card {
	background: var(--nr-bg-card);
	border-radius: var(--nr-radius-lg);
	padding: 2.5rem;
	width: 100%;
	max-width: 480px;
	box-shadow: var(--nr-shadow);
	border: 1px solid var(--nr-border);
}

.nr-card h2 {
	margin: 0 0 0.5rem;
	font-size: 1.6rem;
	font-weight: 700;
}

.nr-hint {
	color: var(--nr-text-muted);
	margin: 0 0 1.5rem;
	font-size: 0.95rem;
	line-height: 1.6;
}

.nr-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--nr-text-muted);
	font-size: 0.9rem;
}

/* Inputs */
.nr-input {
	width: 100%;
	padding: 1rem 1.25rem;
	background: var(--nr-bg-input);
	border: 2px solid var(--nr-border);
	border-radius: var(--nr-radius);
	color: var(--nr-text);
	font-family: inherit;
	font-size: 1.1rem;
	transition: var(--nr-transition);
	box-sizing: border-box;
	margin-bottom: 1rem;
	direction: rtl;
}

.nr-input:focus {
	outline: none;
	border-color: var(--nr-primary);
	box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
}

.nr-input--xl {
	font-size: 1.5rem;
	text-align: center;
	letter-spacing: 2px;
	padding: 1.25rem;
}

.nr-textarea {
	resize: vertical;
	min-height: 120px;
	text-align: right;
}

select.nr-input {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: left 1rem center;
	padding-left: 2.5rem;
}

/* Phone Dialpad - standard ITU layout (LTR) */
.nr-phone-display {
	text-align: center;
	margin-bottom: 1.5rem;
}

.nr-phone-number {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 3px;
	color: var(--nr-text);
	direction: ltr;
	min-height: 2.5rem;
	font-variant-numeric: tabular-nums;
}

.nr-phone-hint {
	font-size: 0.85rem;
	color: var(--nr-text-muted);
	margin-top: 0.5rem;
}

.nr-dialpad {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	direction: ltr;
	max-width: 320px;
	margin: 0 auto 1.5rem;
}

.nr-dialpad-btn {
	aspect-ratio: 1.4;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: var(--nr-bg-card);
	border: 2px solid var(--nr-border);
	border-radius: 50%;
	color: var(--nr-text);
	font-family: inherit;
	cursor: pointer;
	transition: var(--nr-transition);
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
	padding: 0;
	min-height: 72px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.nr-dialpad-btn:active,
.nr-dialpad-btn:hover {
	background: var(--nr-primary);
	color: #fff;
	border-color: var(--nr-primary);
	transform: scale(0.95);
}

.nr-dialpad-digit {
	font-size: 1.75rem;
	font-weight: 600;
	line-height: 1;
}

.nr-dialpad-letters {
	font-size: 0.6rem;
	color: var(--nr-text-muted);
	margin-top: 2px;
	letter-spacing: 1px;
}

.nr-dialpad-btn:active .nr-dialpad-letters,
.nr-dialpad-btn:hover .nr-dialpad-letters {
	color: rgba(255, 255, 255, 0.8);
}

.nr-dialpad-btn--action {
	background: var(--nr-bg-input);
	border-radius: var(--nr-radius);
	aspect-ratio: auto;
	min-height: 72px;
}

.nr-dialpad-btn--action .nr-dialpad-digit {
	font-size: 1.4rem;
}

.nr-dialpad-btn--call {
	background: linear-gradient(135deg, var(--nr-success) 0%, #16a34a 100%);
	color: #fff;
	border-color: transparent;
}

.nr-dialpad-btn--call .nr-dialpad-digit {
	font-size: 1.6rem;
}

.nr-dialpad-btn--delete {
	color: var(--nr-danger);
}

/* Back button */
.nr-back {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	background: var(--nr-bg-card);
	border: 1px solid var(--nr-border);
	color: var(--nr-text-muted);
	padding: 0.75rem 1.25rem;
	border-radius: 50px;
	font-family: inherit;
	font-size: 1rem;
	cursor: pointer;
	transition: var(--nr-transition);
	z-index: 10;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.nr-back:hover {
	background: rgba(255, 255, 255, 0.15);
	color: var(--nr-text);
}

.nr-back--sm {
	position: static;
	margin-bottom: 1rem;
}

/* Greeting */
.nr-greeting {
	text-align: center;
	margin-bottom: 2.5rem;
}

.nr-greeting-emoji {
	font-size: 4rem;
	margin-bottom: 1rem;
	animation: nrWave 1.5s ease-in-out infinite;
}

.nr-greeting .nr-status-icon--welcome {
	display: none;
}

@keyframes nrWave {
	0%, 100% { transform: rotate(0deg); }
	25% { transform: rotate(20deg); }
	75% { transform: rotate(-10deg); }
}

.nr-greeting h2 {
	font-size: clamp(1.5rem, 4vw, 2.2rem);
	margin: 0 0 1rem;
	line-height: 1.5;
}

.nr-greeting p {
	color: var(--nr-text-muted);
	font-size: 1.1rem;
	margin: 0;
	max-width: 500px;
}

/* Products / Survey screen */
.nr-screen--products {
	justify-content: flex-start;
	padding: 0;
	overflow-y: auto;
	background: #f5f6fa;
}

.nr-screen--products.nr-active {
	background: #f5f6fa;
}

.nr-app:has(.nr-screen--products.nr-active)::before,
.nr-app:has(.nr-screen--products.nr-active)::after {
	display: none;
}

.nr-survey-layout {
	width: 100%;
	max-width: 920px;
	margin: 0 auto;
	padding: 1rem 1.25rem 3rem;
}

.nr-survey-topbar {
	display: flex;
	justify-content: flex-start;
	margin-bottom: 0.5rem;
}

.nr-survey-finish {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: none;
	background: transparent;
	color: var(--nr-text-muted);
	cursor: pointer;
	border-radius: 50%;
	transition: var(--nr-transition);
	padding: 0;
}

.nr-survey-finish svg {
	width: 20px;
	height: 20px;
}

.nr-survey-finish:hover {
	background: rgba(0, 0, 0, 0.05);
	color: var(--nr-text);
}

.nr-survey-header {
	text-align: center;
	margin-bottom: 1.25rem;
}

.nr-survey-title {
	font-size: clamp(1.35rem, 4vw, 1.75rem);
	font-weight: 800;
	margin: 0 0 0.5rem;
	color: var(--nr-text);
}

.nr-survey-subtitle {
	font-size: 0.9rem;
	color: var(--nr-text-muted);
	margin: 0;
	line-height: 1.7;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
}

.nr-survey-tabs {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.nr-survey-tab {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 1rem;
	background: #fff;
	border: 1.5px solid var(--nr-border);
	border-radius: 14px;
	color: var(--nr-text-muted);
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--nr-transition);
}

.nr-survey-tab__icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.nr-survey-tab--active {
	background: #eef2ff;
	border-color: var(--nr-primary);
	color: var(--nr-primary);
}

.nr-survey-toolbar {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	align-items: stretch;
}

.nr-survey-filter-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0 1rem;
	background: #fff;
	border: 1.5px solid var(--nr-border);
	border-radius: 14px;
	color: var(--nr-text);
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--nr-transition);
	white-space: nowrap;
	flex-shrink: 0;
}

.nr-survey-filter-btn svg {
	width: 16px;
	height: 16px;
}

.nr-survey-filter-btn:hover,
.nr-survey-filter-btn[aria-expanded="true"] {
	border-color: var(--nr-primary);
	color: var(--nr-primary);
	background: #eef2ff;
}

.nr-survey-search {
	flex: 1;
	position: relative;
	display: flex;
	align-items: center;
}

.nr-survey-search__input {
	width: 100%;
	padding: 0.85rem 2.75rem 0.85rem 1rem;
	background: #fff;
	border: 1.5px solid var(--nr-border);
	border-radius: 14px;
	color: var(--nr-text);
	font-family: inherit;
	font-size: 0.95rem;
	transition: var(--nr-transition);
	box-sizing: border-box;
	direction: rtl;
}

.nr-survey-search__input:focus {
	outline: none;
	border-color: var(--nr-primary);
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.nr-survey-search__icon {
	position: absolute;
	right: 1rem;
	width: 18px;
	height: 18px;
	color: var(--nr-text-muted);
	pointer-events: none;
}

.nr-survey-filter-panel {
	margin-bottom: 1rem;
	animation: nrFadeIn 0.2s ease;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.nr-survey-filter-panel[hidden] {
	display: none !important;
}

.nr-survey-select {
	width: 100%;
	padding: 0.85rem 1rem;
	background: #fff;
	border: 1.5px solid var(--nr-border);
	border-radius: 14px;
	color: var(--nr-text);
	font-family: inherit;
	font-size: 0.95rem;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: left 1rem center;
	padding-left: 2.5rem;
	direction: rtl;
}

.nr-survey-date-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: flex-end;
}

.nr-survey-date-field {
	flex: 1;
	min-width: 140px;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.nr-survey-date-label {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--nr-text-muted);
}

.nr-survey-date-field .nr-date-field {
	position: relative;
}

.nr-survey-date-input {
	width: 100%;
	padding: 0.75rem 2.5rem 0.75rem 0.85rem;
	background: #fff;
	border: 1.5px solid var(--nr-border);
	border-radius: 12px;
	color: var(--nr-text);
	font-family: inherit;
	font-size: 0.9rem;
	text-align: center;
	box-sizing: border-box;
	cursor: pointer;
	direction: rtl;
}

.nr-survey-date-input:focus {
	outline: none;
	border-color: var(--nr-primary);
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.nr-date-field__icon {
	position: absolute;
	right: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	color: var(--nr-text-muted);
	pointer-events: none;
}

.nr-date-field__icon svg {
	width: 18px;
	height: 18px;
	display: block;
}

.nr-survey-filter-apply,
.nr-survey-filter-clear {
	padding: 0.75rem 1.25rem;
	border-radius: 12px;
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	border: none;
	transition: var(--nr-transition);
	white-space: nowrap;
}

.nr-survey-filter-apply {
	background: var(--nr-primary);
	color: #fff;
}

.nr-survey-filter-apply:hover {
	background: var(--nr-primary-dark);
}

.nr-survey-filter-clear {
	background: #fff;
	color: var(--nr-text-muted);
	border: 1.5px solid var(--nr-border);
}

.nr-survey-filter-clear:hover {
	border-color: var(--nr-primary);
	color: var(--nr-primary);
}

.nr-jalali-picker {
	background: #fff;
	border: 1.5px solid var(--nr-border);
	border-radius: 14px;
	padding: 0.75rem;
	box-shadow: var(--nr-shadow);
	min-width: 260px;
}

.nr-jalali-picker__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.75rem;
}

.nr-jalali-picker__title {
	font-weight: 700;
	font-size: 0.95rem;
}

.nr-jalali-picker__nav {
	background: var(--nr-bg-input);
	border: none;
	border-radius: 8px;
	padding: 0.35rem 0.65rem;
	cursor: pointer;
	font-family: inherit;
	font-size: 0.85rem;
}

.nr-jalali-picker__nav:hover {
	background: #eef2ff;
	color: var(--nr-primary);
}

.nr-jalali-picker__weekdays,
.nr-jalali-picker__days {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 0.25rem;
	text-align: center;
}

.nr-jalali-picker__weekdays {
	margin-bottom: 0.35rem;
	font-size: 0.75rem;
	color: var(--nr-text-muted);
	font-weight: 600;
}

.nr-jalali-picker__day {
	border: none;
	background: transparent;
	border-radius: 8px;
	padding: 0.35rem 0;
	cursor: pointer;
	font-family: inherit;
	font-size: 0.85rem;
}

.nr-jalali-picker__day:hover {
	background: #eef2ff;
	color: var(--nr-primary);
}

.nr-jalali-picker__day.is-selected {
	background: var(--nr-primary);
	color: #fff;
}

.nr-jalali-picker__day--empty {
	visibility: hidden;
}

.nr-survey-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	width: 100%;
}

.nr-survey-card {
	display: flex;
	align-items: stretch;
	gap: 1rem;
	background: #fff;
	border: 1.5px solid var(--nr-border);
	border-radius: 16px;
	padding: 1rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nr-survey-card__image {
	width: 80px;
	height: 80px;
	border-radius: 12px;
	object-fit: cover;
	flex-shrink: 0;
	background: var(--nr-bg-input);
	cursor: zoom-in;
}

.nr-survey-card__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.nr-survey-card__title {
	font-weight: 700;
	font-size: 1rem;
	margin: 0;
	line-height: 1.4;
	color: var(--nr-text);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.nr-survey-card__rating-block {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.nr-survey-card__rating-label {
	font-size: 0.8rem;
	color: var(--nr-text-muted);
	margin: 0;
	font-weight: 500;
}

.nr-survey-card__rating-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.nr-survey-card__stars {
	display: flex;
	gap: 0.1rem;
	flex-shrink: 0;
}

.nr-survey-card__star {
	background: none;
	border: none;
	font-size: 1.35rem;
	color: #d1d5db;
	cursor: pointer;
	padding: 0;
	line-height: 1;
	transition: var(--nr-transition);
	touch-action: manipulation;
}

.nr-survey-card__star.nr-star--active,
.nr-survey-card__star.nr-star--selected {
	color: var(--nr-gold);
}

.nr-survey-card__feedback {
	flex: 1;
	min-width: 120px;
	display: flex;
	align-items: center;
	gap: 0.35rem;
	border: 1.5px solid var(--nr-border);
	border-radius: 10px;
	padding: 0.35rem 0.5rem;
	background: #fafbfc;
}

.nr-survey-card__comment {
	flex: 1;
	min-width: 0;
	border: none;
	background: transparent;
	padding: 0.2rem 0;
	margin: 0;
	font-family: inherit;
	font-size: 0.85rem;
	color: var(--nr-text);
	resize: none;
	min-height: 1.8rem;
	max-height: 1.8rem;
	line-height: 1.4;
	direction: rtl;
}

.nr-survey-card__comment:focus {
	outline: none;
}

.nr-survey-card__comment::placeholder {
	color: #94a3b8;
}

.nr-survey-card__feedback .nr-voice-recorder {
	flex-shrink: 0;
}

.nr-survey-card__feedback .nr-voice-recorder__row {
	gap: 0.2rem;
}

.nr-survey-card__feedback .nr-voice-recorder__playback {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.nr-survey-card__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	flex-shrink: 0;
	min-width: 90px;
}

.nr-survey-card__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	padding: 0.6rem 1rem;
	background: linear-gradient(135deg, var(--nr-primary) 0%, var(--nr-primary-dark) 100%);
	color: #fff;
	border: none;
	border-radius: 12px;
	font-family: inherit;
	font-size: 0.85rem;
	font-weight: 700;
	cursor: pointer;
	transition: var(--nr-transition);
	white-space: nowrap;
	box-shadow: 0 3px 12px rgba(99, 102, 241, 0.35);
}

.nr-survey-card__submit svg {
	width: 14px;
	height: 14px;
}

.nr-survey-card__submit:hover {
	transform: translateY(-1px);
	box-shadow: 0 5px 16px rgba(99, 102, 241, 0.45);
}

.nr-survey-card__date {
	font-size: 0.75rem;
	color: var(--nr-text-muted);
	text-align: center;
	margin: 0;
	white-space: nowrap;
}

.nr-survey-card__questions {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	width: 100%;
}

.nr-survey-card__question {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	flex-wrap: wrap;
}

.nr-survey-card__q-text {
	font-size: 0.75rem;
	color: var(--nr-text-muted);
	min-width: 60px;
}

.nr-survey-load-more {
	margin-top: 1rem;
	min-height: 48px;
	font-size: 1rem;
	font-weight: 700;
	border-radius: 14px;
}

.nr-pagination__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 0.5rem;
	background: #fff;
	border: 1.5px solid var(--nr-border);
	border-radius: 10px;
	color: var(--nr-text);
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--nr-transition);
}

.nr-pagination__btn:hover:not(:disabled) {
	border-color: var(--nr-primary);
	color: var(--nr-primary);
}

.nr-pagination__btn--active {
	background: var(--nr-primary);
	border-color: var(--nr-primary);
	color: #fff;
}

.nr-pagination__btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.nr-pagination__btn svg {
	width: 16px;
	height: 16px;
}

.nr-pagination__dots {
	color: var(--nr-text-muted);
	padding: 0 0.25rem;
	font-size: 0.9rem;
}

.nr-pagination__info {
	width: 100%;
	text-align: center;
	font-size: 0.85rem;
	color: var(--nr-text-muted);
	margin-top: 0.35rem;
	flex-basis: 100%;
}

.nr-survey-loading {
	padding: 0;
}

.nr-skeleton--label {
	height: 12px;
	width: 32%;
	margin-bottom: 8px;
}

.nr-skeleton--input {
	height: 52px;
	width: 100%;
	border-radius: 12px;
	margin-bottom: 4px;
}

.nr-employee-card {
	min-height: 280px;
}

.nr-employee-skeleton {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.nr-employee-skeleton__field {
	display: flex;
	flex-direction: column;
}

.nr-employee-skeleton[hidden],
.nr-employee-form[hidden] {
	display: none !important;
}

@media (prefers-reduced-motion: reduce) {
	.nr-welcome-bg__orb {
		animation: none;
	}

	.nr-skeleton,
	.nr-skeleton-stars__item {
		animation: none;
		background: #eef2f7;
	}
}

@media (max-width: 768px) {
	.nr-survey-layout {
		padding: 0.75rem 0.75rem 1.5rem;
	}

	.nr-survey-tabs {
		flex-direction: column;
		gap: 0.5rem;
	}

	.nr-survey-toolbar {
		flex-direction: column;
	}

	.nr-survey-filter-btn {
		justify-content: center;
		padding: 0.75rem 1rem;
	}

	.nr-survey-card {
		flex-wrap: wrap;
		padding: 0.85rem;
		gap: 0.75rem;
	}

	.nr-survey-card__image {
		width: 64px;
		height: 64px;
	}

	.nr-survey-card__body {
		flex: 1 1 calc(100% - 80px);
	}

	.nr-survey-card__actions {
		flex-direction: row;
		width: 100%;
		justify-content: space-between;
		min-width: 0;
	}

	.nr-survey-card__submit {
		flex: 1;
	}

	.nr-survey-card__rating-row {
		flex-direction: column;
		align-items: stretch;
	}

	.nr-survey-card__feedback {
		width: 100%;
	}
}

.nr-products-header {
	width: 100%;
	max-width: 1200px;
	margin-bottom: 1rem;
}

.nr-products-header h2 {
	margin: 0;
	font-size: 1.5rem;
}

.nr-tabs {
	display: flex;
	gap: 0.5rem;
	width: 100%;
	max-width: 1200px;
	margin-bottom: 1rem;
}

.nr-tab {
	flex: 1;
	padding: 1rem;
	background: var(--nr-bg-card);
	border: 2px solid transparent;
	border-radius: var(--nr-radius);
	color: var(--nr-text-muted);
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--nr-transition);
}

.nr-tab--active {
	background: var(--nr-primary);
	color: #fff;
	border-color: var(--nr-primary-light);
}

.nr-filters {
	display: flex;
	gap: 0.75rem;
	width: 100%;
	max-width: 1200px;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}

.nr-filters .nr-input {
	margin-bottom: 0;
	flex: 1;
	min-width: 200px;
}

.nr-products-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}

.nr-product-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: var(--nr-bg-card);
	border-radius: var(--nr-radius);
	padding: 1rem 1.25rem;
	cursor: pointer;
	transition: var(--nr-transition);
	border: 2px solid var(--nr-border);
	touch-action: manipulation;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nr-product-item:hover,
.nr-product-item:active {
	border-color: var(--nr-primary);
	box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
	transform: translateX(-4px);
}

.nr-product-item--purchased {
	border-right: 4px solid var(--nr-gold);
}

.nr-product-item--purchased.nr-product-item--rated {
	border-right: 4px solid var(--nr-gold);
}

.nr-product-item-badge--rated {
	background: #dcfce7;
	color: #166534;
}

.nr-edit-hint {
	margin: 0.25rem 0 0;
	font-size: 0.85rem;
	color: var(--nr-primary);
}

.nr-product-item-image {
	width: 72px;
	height: 72px;
	border-radius: 12px;
	object-fit: cover;
	flex-shrink: 0;
	background: var(--nr-bg-input);
}

.nr-product-item-image--zoom {
	cursor: zoom-in;
}

.nr-product-item-image--zoom:active {
	opacity: 0.85;
}

.nr-product-item-body {
	flex: 1;
	min-width: 0;
	overflow: hidden;
}

.nr-product-item-name {
	font-weight: 600;
	font-size: 1.05rem;
	margin: 0 0 0.25rem;
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.nr-product-item-meta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.nr-product-item-badge {
	background: #fef3c7;
	color: #92400e;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.2rem 0.6rem;
	border-radius: 50px;
}

.nr-product-item-arrow {
	color: var(--nr-text-muted);
	font-size: 1.25rem;
	flex-shrink: 0;
}

/* Employee inline review rows */
.nr-section {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 2rem;
}

.nr-section-title {
	font-size: 1.2rem;
	font-weight: 700;
	margin: 0 0 0.25rem;
	color: var(--nr-text);
}

.nr-section-hint {
	font-size: 0.9rem;
	color: var(--nr-text-muted);
	margin: 0 0 1rem;
}

.nr-employee-products-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	width: 100%;
}

.nr-tabs--employee {
	margin-bottom: 1rem;
}

.nr-employee-tab-panel {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.nr-product-item--inline {
	cursor: default;
	flex-wrap: wrap;
	align-items: flex-start;
	padding: 1rem;
}

.nr-product-item--inline .nr-product-item-body {
	flex: 1 1 8rem;
	min-width: 0;
	max-width: 100%;
	overflow: hidden;
}

.nr-product-item--inline:hover,
.nr-product-item--inline:active {
	transform: none;
}

.nr-product-item-date {
	font-size: 0.85rem;
	color: var(--nr-text-muted);
	margin: 0.15rem 0 0;
}

.nr-product-item-review {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	flex: 1 1 280px;
	min-width: 240px;
}

.nr-inline-questions {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.nr-inline-question {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.nr-inline-q-text {
	font-size: 0.8rem;
	color: var(--nr-text-muted);
	min-width: 80px;
}

.nr-stars--inline {
	display: flex;
	gap: 0.15rem;
}

.nr-star--inline {
	font-size: 1.5rem;
	padding: 0.1rem;
	background: none;
	border: none;
	color: #d1d5db;
	cursor: pointer;
	line-height: 1;
}

.nr-star--inline.nr-star--active,
.nr-star--inline.nr-star--selected {
	color: var(--nr-gold);
}

.nr-inline-comment {
	margin-bottom: 0 !important;
	font-size: 0.9rem;
	min-height: 2.5rem;
	resize: vertical;
}

.nr-btn--sm {
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
	align-self: center;
}

.nr-date-filters {
	display: flex;
	gap: 0.75rem;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 1.25rem;
	flex-wrap: wrap;
	align-items: flex-end;
}

.nr-date-field {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	flex: 1;
	min-width: 140px;
}

.nr-date-field .nr-input {
	margin-bottom: 0;
	text-align: center;
}

.nr-filters--employee {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

#nr-employee-product-ui {
	width: 100%;
	padding-bottom: 2rem;
}

@media (min-width: 900px) {
	.nr-product-item--inline {
		flex-wrap: nowrap;
		align-items: center;
	}

	.nr-product-item-review {
		flex-direction: row;
		align-items: center;
		flex-wrap: nowrap;
	}

	.nr-inline-comment {
		flex: 1;
		min-width: 160px;
	}
}

/* Review screen scroll */
.nr-screen--review {
	justify-content: flex-start;
	padding: 0.75rem;
	overflow-y: auto;
}

.nr-review-card {
	max-height: none;
	background: var(--nr-bg-card);
	border-radius: var(--nr-radius-lg);
	padding: 0.75rem 0.65rem;
	width: 100%;
	max-width: 520px;
	box-shadow: var(--nr-shadow);
	border: 1px solid var(--nr-border);
}

.nr-feedback {
	margin-bottom: 0;
}

#nr-questions-container {
	margin-bottom: 0.35rem;
}

.nr-review-footer-row {
	display: flex;
	align-items: stretch;
	gap: 0.4rem;
	width: 100%;
}

.nr-feedback-combined {
	flex: 1;
	min-width: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.3rem;
	border: 1px solid var(--nr-border);
	border-radius: var(--nr-radius);
	padding: 0.3rem 0.4rem;
	background: var(--nr-bg);
}

.nr-btn--submit-inline {
	flex-shrink: 0;
	width: auto;
	min-width: 4.25rem;
	margin: 0;
	padding: 0.45rem 0.55rem;
	font-size: 0.78rem;
	line-height: 1.2;
	white-space: nowrap;
	align-self: stretch;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--nr-radius);
}

.nr-feedback-combined__stars {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	padding-left: 0.35rem;
	border-left: 1px solid var(--nr-border);
}

.nr-feedback-combined .nr-textarea--compact {
	flex: 1;
	min-width: 3rem;
	border: none;
	background: transparent;
	padding: 0.15rem 0;
	margin: 0;
	resize: none;
	box-shadow: none;
	min-height: 2.35rem;
	max-height: 2.35rem;
	line-height: 1.4;
	font-size: 0.82rem;
	align-self: center;
	overflow-y: auto;
}

.nr-feedback-combined .nr-textarea--compact:focus {
	outline: none;
	box-shadow: none;
}

.nr-feedback-combined .nr-voice-recorder {
	flex-shrink: 0;
	flex-direction: row;
	align-items: center;
	align-self: center;
	gap: 0.2rem;
}

.nr-feedback-combined .nr-voice-recorder__playback {
	flex-basis: 100%;
	width: 100%;
	height: 26px;
	margin-top: 0;
}

.nr-feedback-combined:has(.nr-voice-recorder__playback:not([hidden])) {
	align-items: flex-start;
}

.nr-stars--compact {
	display: flex;
	align-items: center;
	gap: 0;
	margin: 0;
	flex-wrap: nowrap;
}

.nr-stars--compact .nr-star {
	font-size: 1.2rem;
	padding: 0;
	line-height: 1;
}

.nr-feedback-combined--inline {
	flex: 1;
	min-width: 0;
	padding: 0.3rem 0.4rem;
}

.nr-feedback-combined--inline .nr-inline-comment {
	flex: 1;
	min-width: 0;
	border: none;
	background: transparent;
	padding: 0.25rem 0;
	margin: 0;
	resize: none;
	min-height: 2rem;
}

.nr-voice-recorder {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.25rem;
}

.nr-voice-recorder__row {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 0.3rem;
}

.nr-voice-recorder__timer {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 700;
	color: #ef4444;
	font-variant-numeric: tabular-nums;
	min-width: 2.2rem;
}

.nr-voice-recorder__timer[hidden] {
	display: none;
}

.nr-voice-recorder__playback {
	width: 140px;
	height: 28px;
}

.nr-voice-recorder__playback[hidden] {
	display: none;
}

.nr-voice-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.65rem;
	height: 1.65rem;
	padding: 0;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	transition: var(--nr-transition);
	flex-shrink: 0;
	touch-action: manipulation;
}

.nr-voice-btn__icon {
	width: 0.85rem;
	height: 0.85rem;
	display: block;
}

.nr-voice-btn--record {
	background: #ef4444;
	color: #fff;
}

.nr-voice-btn--record:hover {
	filter: brightness(1.08);
}

.nr-voice-btn--stop {
	background: #64748b;
	color: #fff;
}

.nr-voice-btn--restart {
	background: var(--nr-bg);
	color: var(--nr-primary);
	border: 1px solid var(--nr-border);
}

.nr-voice-btn--delete {
	background: var(--nr-bg);
	color: #94a3b8;
	border: 1px solid var(--nr-border);
}

.nr-voice-btn--delete:hover {
	color: #ef4444;
	border-color: #fecaca;
}

.nr-voice-btn[hidden] {
	display: none;
}

.nr-feedback--inline {
	margin-bottom: 0.35rem;
}

.nr-feedback--inline .nr-voice-recorder__playback {
	width: 100%;
	flex-basis: 100%;
	height: 26px;
}

.nr-textarea--compact {
	min-height: 0;
	padding: 0.55rem 0.75rem;
	font-size: 0.9rem;
}

.nr-stars--question.nr-stars--compact {
	justify-content: flex-start;
	margin: 0;
}

.nr-stars--question.nr-stars--compact .nr-star {
	font-size: 1.1rem;
}

.nr-feedback-combined .nr-voice-recorder__playback[hidden] {
	display: none;
}

.nr-feedback-combined__stars,
.nr-review-card #nr-fallback-rating {
	display: flex;
	align-items: center;
}

.nr-question-block {
	margin-bottom: 0.45rem;
	padding-bottom: 0.35rem;
	border-bottom: 1px solid var(--nr-border);
}

.nr-question-block:last-of-type {
	border-bottom: none;
}

.nr-question-text {
	font-weight: 600;
	font-size: 0.78rem;
	margin: 0 0 0.15rem;
	color: var(--nr-text);
	line-height: 1.3;
}

.nr-stars--question .nr-star {
	font-size: 2.25rem;
}

.nr-question-label {
	text-align: center;
	margin: 0.5rem 0 0;
	font-size: 0.9rem;
}

/* Goodbye */
.nr-goodbye {
	text-align: center;
	margin-bottom: 2.5rem;
	max-width: 520px;
}

.nr-goodbye-icon {
	font-size: 5rem;
	margin-bottom: 1rem;
}

.nr-goodbye h2 {
	font-size: clamp(1.6rem, 4vw, 2.2rem);
	margin: 0 0 1rem;
	color: var(--nr-text);
}

.nr-goodbye p {
	color: var(--nr-text-muted);
	font-size: 1.15rem;
	line-height: 1.8;
	margin: 0;
}

.nr-review-product {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.55rem;
	padding-bottom: 0.45rem;
	border-bottom: 1px solid var(--nr-border);
	min-width: 0;
}

.nr-review-product img {
	width: 44px;
	height: 44px;
	object-fit: cover;
	border-radius: var(--nr-radius);
	flex-shrink: 0;
}

.nr-review-product__info {
	flex: 1;
	min-width: 0;
	overflow: hidden;
}

.nr-review-product h4 {
	margin: 0;
	font-size: 0.85rem;
	line-height: 1.3;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.nr-review-product .nr-edit-hint {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.nr-stars {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin: 1rem 0;
}

.nr-star {
	background: none;
	border: none;
	font-size: 3rem;
	color: #e2e8f0;
	cursor: pointer;
	transition: var(--nr-transition);
	padding: 0.25rem;
	touch-action: manipulation;
	line-height: 1;
}

.nr-star:hover,
.nr-star.nr-star--active {
	color: var(--nr-gold);
	transform: scale(1.15);
}

.nr-star.nr-star--selected {
	color: var(--nr-gold);
	text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.nr-rating-label {
	text-align: center;
	color: var(--nr-text-muted);
	margin: 0 0 1.5rem;
	font-size: 1rem;
}

/* Success */
.nr-success {
	text-align: center;
	margin-bottom: 2rem;
}

.nr-success-icon {
	font-size: 5rem;
	margin-bottom: 1rem;
	animation: nrBounce 0.6s ease;
}

@keyframes nrBounce {
	0% { transform: scale(0); }
	50% { transform: scale(1.2); }
	100% { transform: scale(1); }
}

.nr-success h2 {
	font-size: 2rem;
	margin: 0 0 0.5rem;
}

.nr-success p {
	color: var(--nr-text-muted);
	font-size: 1.1rem;
}

.nr-success-actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
	max-width: 400px;
}

/* Loading & Empty */
.nr-loading {
	text-align: center;
	padding: 3rem;
}

.nr-spinner {
	width: 48px;
	height: 48px;
	border: 4px solid var(--nr-bg-input);
	border-top-color: var(--nr-primary);
	border-radius: 50%;
	animation: nrSpin 0.8s linear infinite;
	margin: 0 auto;
}

@keyframes nrSpin {
	to { transform: rotate(360deg); }
}

/* Skeleton loaders */
@keyframes nrSkeletonShimmer {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

.nr-skeleton {
	display: block;
	border-radius: 8px;
	background: linear-gradient(90deg, #eef2f7 0%, #f8fafc 45%, #eef2f7 90%);
	background-size: 200% 100%;
	animation: nrSkeletonShimmer 1.4s ease-in-out infinite;
}

.nr-skeleton--line {
	height: 14px;
	width: 100%;
	margin-bottom: 8px;
	border-radius: 6px;
}

.nr-skeleton--line:last-child {
	margin-bottom: 0;
}

.nr-skeleton--title {
	height: 18px;
	width: 75%;
}

.nr-skeleton--short {
	width: 45%;
	height: 12px;
}

.nr-skeleton--w60 { width: 60%; }
.nr-skeleton--w70 { width: 70%; }
.nr-skeleton--w80 { width: 80%; }

.nr-skeleton--img {
	flex-shrink: 0;
}

.nr-skeleton--btn {
	height: 44px;
	width: 120px;
	border-radius: 12px;
}

.nr-skeleton--btn-lg {
	height: 52px;
	width: 100%;
	border-radius: 16px;
	margin-top: 8px;
}

.nr-skeleton--section-title {
	height: 16px;
	width: 40%;
	margin-bottom: 14px;
}

.nr-skeleton--global-title {
	height: 18px;
	width: 70%;
	margin: 0 auto 10px;
}

.nr-skeleton--global-sub {
	height: 12px;
	width: 85%;
	margin: 0 auto 8px;
}

.nr-skeleton-stars {
	display: flex;
	gap: 4px;
	margin: 6px 0 10px;
}

.nr-skeleton-stars__item {
	width: 18px;
	height: 18px;
	border-radius: 4px;
	background: linear-gradient(90deg, #eef2f7 0%, #f8fafc 45%, #eef2f7 90%);
	background-size: 200% 100%;
	animation: nrSkeletonShimmer 1.4s ease-in-out infinite;
}

.nr-skeleton-card {
	pointer-events: none;
	user-select: none;
}

.nr-skeleton-card .nr-survey-card__image {
	width: 80px;
	height: 80px;
	border-radius: 12px;
}

.nr-skeleton-card .nr-survey-card__actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	min-width: 100px;
}

.nr-skeleton-card .nr-skeleton--block {
	height: 38px;
	width: 100%;
	border-radius: 10px;
}

.nr-skeleton-order-item {
	display: flex;
	gap: 1rem;
	background: var(--nr-bg-card);
	border: 2px solid var(--nr-border);
	border-radius: var(--nr-radius);
	padding: 1rem;
	pointer-events: none;
}

.nr-skeleton-order-item .nr-skeleton--img {
	width: 72px;
	height: 72px;
	border-radius: 12px;
}

.nr-skeleton-order-item__body {
	flex: 1;
	min-width: 0;
}

.nr-skeleton-order-item__actions {
	display: flex;
	gap: 8px;
	margin-top: 10px;
}

.nr-skeleton-order-item__actions .nr-skeleton--btn {
	flex: 1;
	width: auto;
	height: 40px;
}

.nr-checkout-skeleton {
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
}

.nr-skeleton-section {
	background: var(--nr-bg-card);
	border: 2px solid var(--nr-border);
	border-radius: var(--nr-radius);
	padding: 1.25rem;
	margin-bottom: 1rem;
}

.nr-skeleton-checkout-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.65rem 0;
	border-bottom: 1px dashed var(--nr-border);
}

.nr-skeleton-checkout-item:last-of-type {
	border-bottom: none;
	margin-bottom: 8px;
}

.nr-skeleton--checkout-img {
	width: 48px;
	height: 48px;
	border-radius: 8px;
}

.nr-skeleton-checkout-item__body {
	flex: 1;
	min-width: 0;
}

.nr-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	text-align: center;
	padding: 3rem;
	color: var(--nr-text-muted);
	font-size: 1.1rem;
	width: 100%;
	max-width: 1200px;
}

.nr-empty::before {
	content: '📭';
	font-size: 2.5rem;
	line-height: 1;
	opacity: 0.85;
}

.nr-empty--pending::before { content: '📭'; }
.nr-empty--search::before { content: '🔍'; }

/* Toast */
.nr-toast {
	position: fixed;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%) translateY(100px);
	background: var(--nr-bg-card);
	color: var(--nr-text);
	padding: 1rem 1.5rem;
	border-radius: 50px;
	box-shadow: var(--nr-shadow);
	border: 1px solid var(--nr-border);
	font-size: 1rem;
	z-index: 9999;
	opacity: 0;
	transition: var(--nr-transition);
	pointer-events: none;
	max-width: 90%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.nr-toast__icon {
	font-size: 1.25rem;
	line-height: 1;
	flex-shrink: 0;
}

.nr-toast.nr-toast--error {
	border-color: var(--nr-danger);
	background: #fef2f2;
	color: var(--nr-danger);
}

.nr-tab {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.nr-tab__icon {
	font-size: 1.1em;
	line-height: 1;
}

.nr-section-hint::before {
	content: '💡 ';
}

.nr-product-item-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}

.nr-checkout-section-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.nr-checkout-section-title::before {
	font-size: 1.1em;
	line-height: 1;
}

.nr-checkout-section:nth-child(1) .nr-checkout-section-title::before { content: '🛒'; }
.nr-checkout-section:nth-child(2) .nr-checkout-section-title::before { content: '📍'; }
.nr-checkout-section:nth-child(3) .nr-checkout-section-title::before { content: '🚚'; }

.nr-btn--order {
	background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
	color: #fff;
	box-shadow: 0 4px 20px rgba(34, 197, 94, 0.35);
}

.nr-btn--order:hover,
.nr-btn--order:active {
	box-shadow: 0 8px 30px rgba(34, 197, 94, 0.45);
}

.nr-btn--sm {
	padding: 0.65rem 1rem;
	font-size: 0.95rem;
	min-height: auto;
}

/* Order flow */
.nr-screen--order-products {
	justify-content: flex-start;
	align-items: stretch;
	padding: 0;
	overflow: hidden;
}

.nr-order-products-scroll {
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	padding: 1rem 1rem 0.5rem;
	width: 100%;
}

.nr-screen--order-products .nr-products-header,
.nr-screen--order-products .nr-filters--order,
.nr-screen--order-products .nr-order-list,
.nr-screen--order-products .nr-loading,
.nr-screen--order-products .nr-empty,
.nr-screen--order-products #nr-order-load-more {
	max-width: 800px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.nr-screen--order-products .nr-products-header {
	padding-top: 0.25rem;
}

.nr-filters--order {
	display: flex;
	gap: 0.75rem;
	width: 100%;
	max-width: 800px;
	margin: 0 auto 1rem;
	flex-wrap: wrap;
}

.nr-filters--order .nr-input {
	margin-bottom: 0;
	flex: 1;
	min-width: 200px;
}

.nr-order-stock-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	width: 100%;
	background: var(--nr-bg-card);
	border: 2px solid var(--nr-border);
	border-radius: var(--nr-radius);
	padding: 0.75rem 1rem;
}

.nr-order-stock-toggle-label {
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--nr-text);
	white-space: nowrap;
}

.nr-order-stock-switch {
	position: relative;
	display: block;
	width: 52px;
	height: 30px;
	flex-shrink: 0;
}

.nr-order-stock-switch input {
	position: absolute;
	inset: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	cursor: pointer;
	z-index: 2;
	-webkit-tap-highlight-color: transparent;
}

.nr-order-stock-switch-slider {
	position: absolute;
	cursor: pointer;
	inset: 0;
	background: #cbd5e1;
	border-radius: 30px;
	transition: 0.3s;
}

.nr-order-stock-switch-slider:before {
	position: absolute;
	content: "";
	height: 22px;
	width: 22px;
	right: 4px;
	bottom: 4px;
	background: #fff;
	transition: 0.3s;
	border-radius: 50%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.nr-order-stock-switch input:checked + .nr-order-stock-switch-slider {
	background: #22c55e;
}

.nr-order-stock-switch input:checked + .nr-order-stock-switch-slider:before {
	transform: translateX(-22px);
}

.nr-order-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}

.nr-order-item {
	display: flex;
	gap: 1rem;
	background: var(--nr-bg-card);
	border: 2px solid var(--nr-border);
	border-radius: var(--nr-radius);
	padding: 1rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: var(--nr-transition);
}

.nr-order-item--selected {
	border-color: #22c55e;
	background: #f0fdf4;
}

.nr-order-item--unavailable {
	opacity: 0.85;
	background: #f9fafb;
}

.nr-order-item-image {
	cursor: pointer;
	transition: transform 0.15s ease;
}

.nr-order-item-image:active {
	transform: scale(0.95);
}

.nr-order-item-body {
	flex: 1;
	min-width: 0;
}

.nr-order-item-price {
	color: var(--nr-primary);
	font-weight: 700;
	font-size: 1rem;
	margin: 0.25rem 0 0.5rem;
}

.nr-order-item-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.nr-product-item-badge--pack {
	background: #fee2e2;
	color: #b91c1c;
}

.nr-order-selected-badge {
	background: #dcfce7;
	color: #166534;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.2rem 0.6rem;
	border-radius: 50px;
}

.nr-order-qty-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.nr-qty-btn {
	width: 44px;
	height: 44px;
	border: 2px solid var(--nr-border);
	background: var(--nr-bg-input);
	border-radius: 12px;
	font-size: 1.4rem;
	font-weight: 700;
	cursor: pointer;
	touch-action: manipulation;
	color: var(--nr-text);
	line-height: 1;
}

.nr-qty-btn:active {
	background: var(--nr-primary);
	color: #fff;
	border-color: var(--nr-primary);
}

.nr-order-qty-input {
	width: 80px;
	text-align: center;
	padding: 0.65rem;
	border: 2px solid var(--nr-border);
	border-radius: 12px;
	font-family: inherit;
	font-size: 1.1rem;
	font-weight: 600;
	background: #fff;
	direction: ltr;
}

.nr-order-add-btn {
	width: 100%;
}

.nr-stock-msg {
	font-size: 0.85rem;
	font-weight: 600;
	padding: 0.45rem 0.75rem;
	border-radius: 10px;
	margin-bottom: 0.75rem;
	line-height: 1.5;
}

.nr-stock-msg--out {
	background: #fee2e2;
	color: #b91c1c;
}

.nr-stock-msg--warn {
	background: #fef3c7;
	color: #b45309;
}

.nr-stock-msg--info {
	background: #e0f2fe;
	color: #0369a1;
}

.nr-order-unavailable-label {
	display: inline-block;
	background: #fee2e2;
	color: #b91c1c;
	font-weight: 700;
	padding: 0.5rem 1rem;
	border-radius: 10px;
	font-size: 0.9rem;
}

.nr-order-bar {
	position: relative;
	flex-shrink: 0;
	width: 100%;
	background: var(--nr-bg-card);
	border-top: 2px solid var(--nr-border);
	padding: 0;
	padding-bottom: env(safe-area-inset-bottom, 0);
	display: flex;
	flex-direction: column;
	box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
	z-index: 100;
	max-height: 50vh;
}

.nr-order-bar-cart {
	max-height: 220px;
	overflow-y: auto;
	padding: 0.75rem 1.5rem;
	border-bottom: 1px solid var(--nr-border);
	background: #f8fafc;
}

.nr-order-cart-title {
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--nr-text-muted);
	margin-bottom: 0.5rem;
}

.nr-order-cart-row {
	display: grid;
	grid-template-columns: 1fr auto auto auto;
	gap: 0.5rem 0.75rem;
	align-items: center;
	padding: 0.45rem 0;
	border-bottom: 1px dashed var(--nr-border);
	font-size: 0.9rem;
}

.nr-order-cart-row:last-child {
	border-bottom: none;
}

.nr-order-cart-name {
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.nr-order-cart-qty {
	color: var(--nr-text-muted);
	font-size: 0.85rem;
	white-space: nowrap;
}

.nr-order-cart-line {
	font-weight: 700;
	color: var(--nr-primary);
	white-space: nowrap;
}

.nr-order-cart-remove {
	width: 36px;
	height: 36px;
	border: none;
	background: #fee2e2;
	color: #b91c1c;
	border-radius: 50%;
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
	font-weight: 700;
	flex-shrink: 0;
}

.nr-order-cart-remove:active {
	background: #fecaca;
}

.nr-order-bar-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.5rem;
	flex-wrap: wrap;
}

.nr-order-bar-actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	flex-shrink: 0;
}

.nr-btn--cart-toggle.nr-btn--active {
	background: #e0f2fe;
	border-color: #0284c7;
	color: #0369a1;
}

.nr-btn--pos:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.nr-btn--accent {
	background: #0ea5e9;
	color: #fff;
	border: none;
}

.nr-btn--accent:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.nr-screen--order-checkout {
	justify-content: flex-start;
	padding: 1.5rem;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
}

.nr-checkout-loading {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem;
	color: var(--nr-text-muted);
	width: 100%;
}

.nr-checkout-body {
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
	padding-bottom: 2rem;
}

.nr-checkout-section {
	background: var(--nr-bg-card);
	border: 2px solid var(--nr-border);
	border-radius: var(--nr-radius);
	padding: 1.25rem;
	margin-bottom: 1rem;
}

.nr-checkout-section-title {
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 1rem;
	color: var(--nr-text);
}

.nr-checkout-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.65rem 0;
	border-bottom: 1px dashed var(--nr-border);
}

.nr-checkout-item:last-child {
	border-bottom: none;
}

.nr-checkout-item-img {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	object-fit: cover;
	flex-shrink: 0;
}

.nr-checkout-item-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.nr-checkout-item-name {
	font-weight: 600;
	font-size: 0.95rem;
}

.nr-checkout-item-qty {
	font-size: 0.85rem;
	color: var(--nr-text-muted);
}

.nr-checkout-item-line {
	font-weight: 700;
	color: var(--nr-primary);
	white-space: nowrap;
}

.nr-checkout-total-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 2px solid var(--nr-border);
	font-size: 1.1rem;
}

.nr-checkout-total-row strong {
	color: var(--nr-primary);
	font-size: 1.2rem;
}

.nr-checkout-address {
	line-height: 1.8;
	color: var(--nr-text);
	margin: 0;
}

.nr-checkout-address-details {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.nr-checkout-address-row {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 0.75rem;
	padding: 0.5rem 0;
	border-bottom: 1px dashed var(--nr-border);
	font-size: 0.95rem;
}

.nr-checkout-address-row:last-child {
	border-bottom: none;
}

.nr-checkout-address-label {
	font-weight: 700;
	color: var(--nr-text-muted);
}

.nr-checkout-address-value {
	color: var(--nr-text);
	line-height: 1.6;
}

.nr-checkout-address-empty {
	color: var(--nr-text-muted);
	margin: 0;
}

.nr-checkout-info {
	background: #eff6ff;
	border-right: 4px solid #1259a9;
	padding: 1rem;
	border-radius: 10px;
	margin-bottom: 1rem;
	font-size: 0.9rem;
	line-height: 1.8;
	color: #1e40af;
	text-align: justify;
}

.nr-checkout-label {
	display: block;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}

.nr-checkout-select {
	width: 100%;
	margin-bottom: 1rem;
}

.nr-checkout-switch-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #f8fafc;
	padding: 0.85rem 1rem;
	border-radius: 12px;
	border: 1px solid var(--nr-border);
	margin-bottom: 1rem;
	font-weight: 600;
}

.nr-checkout-switch {
	position: relative;
	width: 48px;
	height: 26px;
	flex-shrink: 0;
}

.nr-checkout-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.nr-checkout-switch-slider {
	position: absolute;
	cursor: pointer;
	inset: 0;
	background: #cbd5e1;
	border-radius: 30px;
	transition: 0.3s;
}

.nr-checkout-switch-slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	right: 3px;
	bottom: 3px;
	background: #fff;
	transition: 0.3s;
	border-radius: 50%;
}

.nr-checkout-switch input:checked + .nr-checkout-switch-slider {
	background: #1259a9;
}

.nr-checkout-switch input:checked + .nr-checkout-switch-slider:before {
	transform: translateX(-22px);
}

.nr-checkout-invoice-list {
	max-height: 160px;
	overflow-y: auto;
	border: 1px solid var(--nr-border);
	border-radius: 10px;
	background: #fff;
}

.nr-checkout-invoice-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	padding: 0.65rem 0.85rem;
	border-bottom: 1px solid #f1f5f9;
	cursor: pointer;
	font-size: 0.9rem;
}

.nr-checkout-invoice-item:last-child {
	border-bottom: none;
}

.nr-checkout-invoice-date {
	font-size: 0.75rem;
	color: #64748b;
	background: #f1f5f9;
	padding: 2px 8px;
	border-radius: 8px;
}

.nr-order-bar-info {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--nr-text);
}

.nr-order-bar-total {
	font-size: 0.95rem;
	color: var(--nr-primary);
}

.nr-image-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.88);
	z-index: 1000;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.nr-lightbox-close {
	position: absolute;
	top: 1rem;
	left: 1rem;
	width: 48px;
	height: 48px;
	border: none;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 2rem;
	border-radius: 50%;
	cursor: pointer;
	line-height: 1;
}

.nr-lightbox-image {
	max-width: 90vw;
	max-height: 75vh;
	object-fit: contain;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.nr-lightbox-caption {
	color: #fff;
	margin-top: 1rem;
	font-size: 1.1rem;
	font-weight: 600;
	text-align: center;
	max-width: 90vw;
}

.nr-btn--order-submit {
	flex-shrink: 0;
	min-width: 160px;
}

.nr-btn--place-order {
	min-height: 48px;
}

.nr-btn--cart-toggle {
	min-height: 48px;
}

.nr-btn--order-submit:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.nr-toast.nr-toast--show {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
}

/* Status icons */
.nr-status-icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	margin: 0 auto 1.25rem;
	position: relative;
}

.nr-status-icon--success {
	background: #dcfce7;
	border: 3px solid #22c55e;
}

.nr-status-icon--success::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 46%;
	width: 14px;
	height: 24px;
	border: solid #16a34a;
	border-width: 0 4px 4px 0;
	transform: translate(-50%, -50%) rotate(45deg);
}

.nr-status-icon--welcome {
	background: #eef2ff;
	border: 3px solid var(--nr-primary);
}

.nr-status-icon--welcome::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 28px;
	height: 28px;
	border-radius: 50% 50% 50% 0;
	background: var(--nr-primary);
	transform: translate(-30%, -60%) rotate(-45deg);
}

.nr-status-icon--warn {
	background: #fef3c7;
	border: 3px solid #f59e0b;
}

.nr-status-icon--warn::before,
.nr-status-icon--warn::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	background: #d97706;
	border-radius: 2px;
}

.nr-status-icon--warn::before {
	top: 18px;
	width: 4px;
	height: 22px;
}

.nr-status-icon--warn::after {
	bottom: 16px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
}

.nr-status-icon--thanks {
	background: #eef2ff;
	border: 3px solid var(--nr-primary-light);
}

.nr-status-icon--thanks::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 32px;
	height: 16px;
	border: solid var(--nr-primary);
	border-width: 0 0 4px 4px;
	transform: translate(-40%, -70%) rotate(-45deg);
	border-radius: 0 0 0 4px;
}

.nr-success .nr-status-icon--success {
	margin-bottom: 1rem;
}

/* Responsive touch */
@media (max-width: 768px) {
	.nr-screen {
		padding: 1rem;
	}

	.nr-screen--review {
		padding: 0.45rem 0.5rem;
	}

	.nr-review-card {
		padding: 0.5rem 0.45rem;
		border-radius: var(--nr-radius);
	}

	.nr-review-product {
		margin-bottom: 0.35rem;
		padding-bottom: 0.3rem;
		gap: 0.4rem;
	}

	.nr-review-product img {
		width: 36px;
		height: 36px;
	}

	.nr-review-product h4 {
		font-size: 0.78rem;
		line-height: 1.25;
	}

	.nr-question-block {
		margin-bottom: 0.3rem;
		padding-bottom: 0.25rem;
	}

	.nr-question-text {
		font-size: 0.72rem;
		margin-bottom: 0.1rem;
	}

	.nr-stars--compact .nr-star,
	.nr-stars--question.nr-stars--compact .nr-star {
		font-size: 0.95rem;
	}

	.nr-review-footer-row {
		gap: 0.3rem;
	}

	.nr-feedback-combined {
		padding: 0.2rem 0.3rem;
		gap: 0.2rem;
	}

	.nr-feedback-combined__stars {
		padding-left: 0.2rem;
	}

	.nr-feedback-combined .nr-textarea--compact {
		min-height: 2rem;
		max-height: 2rem;
		font-size: 0.76rem;
	}

	.nr-btn--submit-inline {
		min-width: 3.5rem;
		padding: 0.35rem 0.45rem;
		font-size: 0.72rem;
	}

	.nr-voice-btn {
		width: 1.5rem;
		height: 1.5rem;
	}

	.nr-voice-btn__icon {
		width: 0.75rem;
		height: 0.75rem;
	}

	.nr-feedback-combined .nr-voice-recorder__playback {
		height: 22px;
	}

	.nr-screen--order-products {
		padding: 0;
	}

	.nr-order-products-scroll {
		padding: 0.75rem 0.75rem 0.5rem;
	}

	.nr-filters--order .nr-input {
		min-width: 0;
		flex: 1 1 100%;
	}

	.nr-order-item {
		flex-direction: column;
		padding: 0.85rem;
	}

	.nr-order-item .nr-product-item-image {
		width: 100%;
		height: 140px;
		align-self: center;
		max-width: 200px;
	}

	.nr-order-qty-row {
		justify-content: center;
	}

	.nr-order-add-btn {
		min-height: 48px;
		font-size: 1rem;
	}

	.nr-qty-btn {
		width: 48px;
		height: 48px;
	}

	.nr-order-bar-footer {
		flex-direction: column;
		align-items: stretch;
		gap: 0.75rem;
		padding: 0.75rem;
	}

	.nr-order-bar-info {
		text-align: center;
	}

	.nr-order-bar-actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0.5rem;
		width: 100%;
	}

	.nr-order-bar-actions .nr-btn {
		width: 100%;
		min-height: 48px;
		padding: 0.75rem 0.5rem;
		font-size: 0.9rem;
		margin: 0;
	}

	.nr-order-bar-actions .nr-btn--place-order {
		grid-column: 1 / -1;
		min-height: 52px;
		font-size: 1.05rem;
	}

	.nr-order-cart-row {
		grid-template-columns: 1fr auto;
		grid-template-rows: auto auto;
	}

	.nr-order-cart-name {
		grid-column: 1 / -1;
		white-space: normal;
	}

	.nr-order-cart-remove {
		width: 44px;
		height: 44px;
	}

	.nr-screen--order-checkout {
		padding: 0.75rem;
	}

	.nr-checkout-address-row {
		grid-template-columns: 1fr;
		gap: 0.25rem;
	}

	.nr-checkout-switch-row {
		gap: 0.75rem;
	}

	.nr-actions {
		max-width: 100%;
	}

	.nr-actions .nr-btn {
		width: 100%;
		min-height: 52px;
	}

	.nr-btn--xl {
		min-height: 56px;
		padding: 1.1rem 1.5rem;
		font-size: 1.15rem;
	}

	.nr-dialpad-btn {
		min-height: 56px;
	}
}

@media (min-width: 769px) {
	.nr-actions {
		flex-direction: column;
		max-width: 420px;
	}

	.nr-actions .nr-btn {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.nr-card {
		padding: 1.5rem;
	}

	.nr-review-card .nr-star {
		font-size: 0.9rem;
	}
}
