:root {
	--nr-cart-blue: #0061ae;
	--nr-cart-ink: #0d1b30;
	--nr-cart-muted: #5b6678;
	--nr-cart-line: rgba(13, 27, 48, 0.12);
	--nr-cart-soft: #f5f8fc;
	--nr-cart-shadow: 0 18px 42px rgba(13, 27, 48, 0.22);
}

body.nr-cart-drawer-open {
	overflow: hidden;
}

.elementor-element-ec7ad89,
.e-ec7ad89-35a3d6b,
[data-id="ec7ad89"] {
	cursor: pointer;
}

.nr-cart-drawer {
	inset: 0;
	pointer-events: none;
	position: fixed;
	z-index: 99999;
}

.nr-cart-drawer.is-open {
	pointer-events: auto;
}

.nr-cart-drawer__overlay {
	background: rgba(13, 27, 48, 0.24);
	inset: 0;
	opacity: 0;
	position: absolute;
	transition: opacity 200ms ease;
}

.nr-cart-drawer.is-open .nr-cart-drawer__overlay {
	opacity: 1;
}

.nr-cart-drawer__panel {
	display: flex;
	height: 100%;
	inset-inline-end: 0;
	max-width: min(100vw, 370px);
	position: absolute;
	top: 0;
	transform: translateX(100%);
	transition: transform 220ms ease;
	width: min(100vw, 370px);
}

.nr-cart-drawer.is-open .nr-cart-drawer__panel {
	transform: translateX(0);
}

.nr-cart-drawer__panel-inner {
	background: #fff;
	box-shadow: var(--nr-cart-shadow);
	display: flex;
	flex: 1;
	flex-direction: column;
	min-height: 100%;
	padding: 22px 18px 16px;
}

.nr-cart-drawer__close {
	align-self: flex-start;
	appearance: none;
	background: transparent;
	border: 0;
	cursor: pointer;
	height: 34px;
	margin: 0 0 18px;
	padding: 0;
	position: relative;
	width: 34px;
}

.nr-cart-drawer__close span,
.nr-cart-drawer__close span::before {
	background: var(--nr-cart-ink);
	border-radius: 999px;
	content: "";
	height: 2px;
	inset: 16px 5px auto;
	position: absolute;
	transform: rotate(45deg);
}

.nr-cart-drawer__close span::before {
	inset: 0;
	transform: rotate(-90deg);
}

.nr-cart-drawer__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-height: 0;
}

.nr-cart-drawer__items {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 14px;
	min-height: 0;
	overflow-y: auto;
	padding-inline-end: 2px;
}

.nr-cart-drawer__item {
	border-bottom: 1px solid var(--nr-cart-line);
	display: grid;
	gap: 12px;
	grid-template-columns: 58px minmax(0, 1fr);
	padding: 0 0 14px;
}

.nr-cart-drawer__item-media img {
	border: 1px solid rgba(13, 27, 48, 0.08);
	display: block;
	height: 58px;
	object-fit: cover;
	width: 58px;
}

.nr-cart-drawer__item-main {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}

.nr-cart-drawer__item-head {
	display: grid;
	gap: 4px 12px;
	grid-template-columns: minmax(0, 1fr) auto auto;
}

.nr-cart-drawer__item-title,
.nr-cart-drawer__item-title a,
.nr-cart-drawer__recommendation-name,
.nr-cart-drawer__recommendation-name a {
	color: var(--nr-cart-ink);
	font-family: Inter, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
	text-decoration: none;
}

.nr-cart-drawer__item-price,
.nr-cart-drawer__total-value,
.nr-cart-drawer__recommendation-price {
	color: var(--nr-cart-blue);
	font-family: Inter, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.1;
}

.nr-cart-drawer__item-price .amount,
.nr-cart-drawer__total-value .amount,
.nr-cart-drawer__recommendation-price .amount {
	color: inherit;
}

.nr-cart-drawer__remove {
	align-self: start;
	appearance: none;
	background: #3b4048;
	border: 0;
	border-radius: 3px;
	cursor: pointer;
	height: 24px;
	padding: 0;
	position: relative;
	width: 24px;
}

.nr-cart-drawer__remove span,
.nr-cart-drawer__remove span::before {
	background: #fff;
	content: "";
	height: 2px;
	inset: 11px 5px auto;
	position: absolute;
	transform: rotate(45deg);
}

.nr-cart-drawer__remove span::before {
	inset: 0;
	transform: rotate(-90deg);
}

.nr-cart-drawer__qty {
	align-items: center;
	display: inline-flex;
	gap: 2px;
	justify-content: flex-end;
	margin-inline-start: auto;
}

.nr-cart-drawer__qty-button,
.nr-cart-drawer__recommendation-button {
	appearance: none;
	background: var(--nr-cart-blue) !important;
	border: 0;
	color: #fff;
	cursor: pointer;
	font-family: Inter, sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	padding: 0;
	transition: background-color 200ms ease;
}

.nr-cart-drawer__qty-button:hover,
.nr-cart-drawer__qty-button:focus,
.nr-cart-drawer__recommendation-button:hover,
.nr-cart-drawer__recommendation-button:focus {
	background: #234C79 !important;
}

.nr-cart-drawer__qty-button {
	height: 24px;
	width: 24px;
}

.nr-cart-drawer__qty-input {
	-moz-appearance: textfield;
	appearance: textfield;
	border: 1px solid rgba(13, 27, 48, 0.18);
	font-family: Inter, sans-serif;
	font-size: 16px;
	font-weight: 500;
	height: 24px;
	padding: 0;
	text-align: center;
	width: 38px;
}

.nr-cart-drawer__qty-input::-webkit-outer-spin-button,
.nr-cart-drawer__qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.nr-cart-drawer__recommendation {
	border-top: 1px solid var(--nr-cart-line);
	margin-top: 14px;
	padding-top: 16px;
}

.nr-cart-drawer__recommendation-title,
.nr-cart-drawer__total-label {
	color: var(--nr-cart-ink);
	font-family: Oswald, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 12px;
}

.nr-cart-drawer__recommendation-card {
	align-items: start;
	display: grid;
	gap: 10px;
	grid-template-columns: 56px minmax(0, 1fr);
}

.nr-cart-drawer__recommendation-media img {
	border: 1px solid rgba(13, 27, 48, 0.08);
	display: block;
	height: 56px;
	object-fit: cover;
	width: 56px;
}

.nr-cart-drawer__recommendation-copy {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.nr-cart-drawer__recommendation-text {
	color: var(--nr-cart-muted);
	font-family: Inter, sans-serif;
	font-size: 12px;
	line-height: 1.35;
	margin: 0;
}

.nr-cart-drawer__recommendation-button {
	align-self: flex-start;
	font-size: 12px;
	height: 28px;
	margin-top: 4px;
	padding: 0 12px;
}

.nr-cart-drawer__footer {
	border-top: 1px solid var(--nr-cart-line);
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 16px;
	padding-top: 14px;
}

.nr-cart-drawer__total {
	align-items: baseline;
	display: flex;
	gap: 8px;
	justify-content: space-between;
}

.nr-cart-drawer__checkout,
.nr-cart-drawer__empty-link {
	align-items: center;
	align-self: flex-start;
	background: #1565c0 !important;
	border: 0;
	border-radius: 5px;
	color: #ffffff !important;
	display: inline-flex;
	font-family: Inter, sans-serif;
	font-size: 18px;
	font-weight: 700;
	justify-content: center;
	line-height: 1;
	min-height: 0;
	padding: 15px 25px;
	fill: #fff;
	text-decoration: none;
	transition: background-color 200ms ease, color 200ms ease;
}

.nr-cart-drawer__checkout:hover,
.nr-cart-drawer__checkout:focus,
.nr-cart-drawer__empty-link:hover,
.nr-cart-drawer__empty-link:focus {
	background: #234C79 !important;
	color: #ffffff !important;
}

.nr-cart-drawer__empty {
	align-items: flex-start;
	background: var(--nr-cart-soft);
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 18px 16px;
}

.nr-cart-drawer__empty-title {
	color: var(--nr-cart-ink);
	font-family: Inter, sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0;
}

/* Brand-polish overrides restored after header/cart trigger refactor. */
.nr-cart-drawer__item-main {
	align-items: start;
	column-gap: 14px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) max-content auto;
	row-gap: 12px;
}

.nr-cart-drawer__item-head {
	display: contents;
}

.nr-cart-drawer__item-title,
.nr-cart-drawer__item-title a {
	color: #2c2f35;
	display: block;
	font-size: 18px;
	line-height: 1.28;
}

.nr-cart-drawer__item-title {
	grid-column: 1;
}

.nr-cart-drawer__item-price,
.nr-cart-drawer__item-price .amount,
.nr-cart-drawer__item-price .woocommerce-Price-currencySymbol {
	align-self: center;
	color: var(--nr-cart-blue);
	font-size: 18px;
	justify-self: end;
	margin: 0;
	white-space: nowrap;
}

.nr-cart-drawer__qty {
	gap: 4px;
	grid-column: 2 / 4;
	justify-self: end;
	margin-inline-start: 0;
}

.nr-cart-drawer__total-label {
	color: #2c2f35;
	font-size: 20px;
	letter-spacing: 0.02em;
	margin: 0;
}

.nr-cart-drawer__total-value,
.nr-cart-drawer__total-value .amount,
.nr-cart-drawer__total-value .woocommerce-Price-currencySymbol {
	color: var(--nr-cart-blue);
	font-size: 20px;
}

.nr-cart-drawer__recommendation-name,
.nr-cart-drawer__recommendation-name a {
	color: #2c2f35;
	font-size: 16px;
}

.nr-cart-drawer__recommendation-price,
.nr-cart-drawer__recommendation-price .amount,
.nr-cart-drawer__recommendation-price .woocommerce-Price-currencySymbol {
	color: var(--nr-cart-blue);
	font-size: 16px;
}

.nr-cart-drawer__recommendation-text {
	color: #2c2f35;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.45;
}

.nr-cart-drawer__close,
.nr-cart-drawer__remove {
	background: transparent;
	border: 0;
	box-shadow: none;
}

.nr-cart-drawer__close {
	align-items: center;
	display: inline-flex;
	justify-content: center;
}

.nr-cart-drawer__close:hover,
.nr-cart-drawer__close:focus,
.nr-cart-drawer__remove:hover,
.nr-cart-drawer__remove:focus {
	background: rgba(0, 97, 174, 0.08);
}

.nr-cart-drawer__close span,
.nr-cart-drawer__close span::before {
	background: var(--nr-cart-blue);
}

.nr-cart-drawer__close span {
	inset: auto;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	width: 20px;
}

.nr-cart-drawer__close span::before {
	inset: 0;
	width: 20px;
}

.nr-cart-drawer__remove {
	align-self: center;
	grid-column: 3;
	justify-self: end;
}

.nr-cart-drawer__remove span {
	background: center / contain no-repeat
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230061AE' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 6h18'/%3E%3Cpath d='M8 6V4h8v2'/%3E%3Cpath d='M19 6l-1 14H6L5 6'/%3E%3Cpath d='M10 11v5'/%3E%3Cpath d='M14 11v5'/%3E%3C/svg%3E");
	height: 16px;
	inset: auto;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 14px;
}

.nr-cart-drawer__remove span::before {
	content: none;
}

.nr-cart-drawer__qty-button {
	align-items: center;
	display: inline-flex;
	justify-content: center;
	min-width: 34px;
	width: 34px;
	height: 28px;
}

.nr-cart-drawer__qty-input {
	color: #2c2f35;
	font-weight: 600;
	height: 28px;
	width: 56px;
}

.nr-cart-drawer__checkout,
.nr-cart-drawer__empty-link,
.nr-cart-drawer__recommendation-button {
	font-family: Inter, sans-serif;
}

.nr-cart-drawer.is-busy .nr-cart-drawer__panel-inner {
	cursor: progress;
}

.single_add_to_cart_button.nr-add-to-cart-is-loading,
.add_to_cart_button.nr-add-to-cart-is-loading,
.ajax_add_to_cart.nr-add-to-cart-is-loading {
	align-items: center;
	cursor: progress !important;
	display: inline-flex !important;
	justify-content: center;
	min-width: var(--nr-add-to-cart-loading-width, auto);
	pointer-events: none;
}

.nr-add-to-cart-spinner {
	animation: nr-add-to-cart-spin 700ms linear infinite;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	border-top-color: #ffffff;
	box-sizing: border-box;
	display: block;
	height: 20px;
	width: 20px;
}

@keyframes nr-add-to-cart-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.nr-add-to-cart-spinner {
		animation-duration: 1400ms;
	}
}

@media (max-width: 767px) {
	.nr-cart-drawer__panel {
		max-width: 100vw;
		width: 100vw;
	}

	.nr-cart-drawer__panel-inner {
		padding: 18px 24px calc(22px + env(safe-area-inset-bottom, 0px));
	}

	.nr-cart-drawer__panel-inner .nr-cart-drawer__close {
		block-size: 44px !important;
		height: 44px;
		inline-size: 44px !important;
		margin: 0 0 12px -4px;
		min-width: 44px !important;
		width: 44px;
	}

	.nr-cart-drawer__items {
		gap: 16px;
		padding-inline-end: 0;
	}

	.nr-cart-drawer__item {
		gap: 14px;
		grid-template-columns: 56px minmax(0, 1fr);
		padding-bottom: 16px;
	}

	.nr-cart-drawer__item-media img {
		height: 56px;
		width: 56px;
	}

	.nr-cart-drawer__item-main {
		align-items: start;
		column-gap: 8px;
		grid-template-columns: minmax(0, 1fr) 40px;
		grid-template-areas:
			"title remove"
			"price remove"
			"qty qty";
		row-gap: 8px;
	}

	.nr-cart-drawer__item-title,
	.nr-cart-drawer__item-title a {
		font-size: 15px;
		line-height: 1.2;
	}

	.nr-cart-drawer__item-title {
		grid-area: title;
	}

	.nr-cart-drawer__item-price,
	.nr-cart-drawer__item-price .amount,
	.nr-cart-drawer__item-price .woocommerce-Price-currencySymbol {
		font-size: 17px;
		grid-area: price;
		justify-self: start;
		line-height: 1.1;
	}

	.nr-cart-drawer__item-main .nr-cart-drawer__remove {
		align-self: start;
		block-size: 40px !important;
		height: 40px;
		inline-size: 40px !important;
		grid-area: remove;
		justify-self: end;
		min-width: 40px !important;
		margin-top: -2px;
		width: 40px;
	}

	.nr-cart-drawer__qty {
		display: grid;
		gap: 8px;
		grid-area: qty;
		grid-template-columns: 44px minmax(0, 1fr) 44px;
		justify-self: stretch;
		margin-top: 2px;
		width: 100%;
	}

	.nr-cart-drawer__qty .nr-cart-drawer__qty-button {
		block-size: 44px !important;
		display: inline-flex !important;
		height: 44px;
		inline-size: 44px !important;
		min-width: 44px;
		width: 44px;
	}

	.nr-cart-drawer__qty .nr-cart-drawer__qty-input {
		block-size: 44px !important;
		font-size: 18px;
		height: 44px;
		min-width: 0;
		width: auto;
	}

	.nr-cart-drawer__recommendation-card {
		gap: 12px;
		grid-template-columns: 52px minmax(0, 1fr);
	}

	.nr-cart-drawer__recommendation-media img {
		height: 52px;
		width: 52px;
	}

	.nr-cart-drawer__footer {
		gap: 14px;
		margin-top: 14px;
		padding-top: 16px;
	}

	.nr-cart-drawer__total-label {
		font-size: 18px;
	}

	.nr-cart-drawer__total-value,
	.nr-cart-drawer__total-value .amount,
	.nr-cart-drawer__total-value .woocommerce-Price-currencySymbol {
		font-size: 18px;
	}

	.nr-cart-drawer__checkout,
	.nr-cart-drawer__empty-link {
		align-self: stretch;
		justify-content: center;
		min-height: 52px;
		padding: 16px 20px;
		width: 100%;
	}
}

.elementor-element-37110c4 .elementor-menu-cart__container { display: none !important; }
.elementor-element-37110c4 .elementor-menu-cart__toggle_button { cursor: pointer; }
