/* Menu Restauracji – 100% width, 30/70 split */

/* Hide WP page title above shortcode, keep theme header intact */
body.mr-menu-page .entry-header,
body.mr-menu-page .page-header,
body.mr-menu-page .entry-title,
body.mr-menu-page h1.entry-title,
body.mr-menu-page .page-title {
	display: none !important;
}

body.mr-menu-page .entry-content,
body.mr-menu-page .page-content,
body.mr-menu-page .site-content > .container,
body.mr-menu-page .content-area {
	max-width: 100% !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

/*
 * Override theme container (71%) ONLY on menu page.
 * Does not affect other pages – scoped to body.mr-menu-page.
 */
body.mr-menu-page:not([class*="elementor-page-"]) .site-main {
	max-width: 100% !important;
	width: 100% !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

body.mr-menu-page .page-header .entry-title {
	max-width: 100% !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.mr-page-wrap {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	clear: both;
}

.mr-page-wrap *,
.mr-page-wrap *::before,
.mr-page-wrap *::after {
	box-sizing: border-box;
}

/* ── Main layout ── */
.mr-page-wrap .mr-app {
	--mr-gold: #c4a06a;
	--mr-gold-light: #d4b88a;
	--mr-gold-hover: #b08d55;
	--mr-dark: #000000;
	--mr-light: #eeede9;
	--mr-white: #ffffff;
	--mr-text: #1a1a1a;
	--mr-text-muted: #888888;
	--mr-border: #e2e0dc;
	--mr-radius: 5px;

	display: flex;
	flex-direction: row;
	align-items: stretch;
	min-height: 600px;
	color: var(--mr-text);
	line-height: 1.5;
	overflow: hidden;
}

#mr-app {
	width: 1360px;
	max-width: 100%;
	margin: auto;
	margin-top: 50px;
	margin-bottom: 50px;
}

/* Reset only minimal controls – NOT cta/cat buttons */
.mr-page-wrap .mr-app .mr-qty-btn,
.mr-page-wrap .mr-app .mr-cart-remove {
	cursor: pointer;
	border: none;
	background: transparent;
	padding: 0;
	margin: 0;
	box-shadow: none;
	text-transform: none;
	letter-spacing: normal;
	line-height: inherit;
	-webkit-appearance: none;
	appearance: none;
}

.mr-page-wrap .mr-app .mr-cat-btn,
.mr-page-wrap .mr-app .mr-cta-button {
	cursor: pointer;
	box-shadow: none;
	text-transform: none;
	line-height: inherit;
	-webkit-appearance: none;
	appearance: none;
}

.mr-page-wrap .mr-app p {
	margin: 0;
}

.mr-page-wrap .mr-app span:not(.mr-qty-value) {
	margin: 0;
}

.mr-page-wrap .mr-app img {
	max-width: 100%;
	display: block;
}

/* ── Cart – left 30% ── */
.mr-page-wrap .mr-cart {
	flex: 0 0 30%;
	width: 30%;
	background: var(--mr-dark);
	color: var(--mr-white);
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.mr-page-wrap .mr-cart-inner {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 36px 24px 28px;
	min-height: 100%;
}

.mr-page-wrap .mr-cart-title {
	font-size: 2rem;
	font-weight: 400;
	margin: 0 0 20px;
	line-height: 1.15;
	color: var(--mr-white);
}

.mr-page-wrap .mr-cart-header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 0;
	margin-top: -23px;
}

.mr-page-wrap .mr-cart-box {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-height: 120px;
	margin-top: 0;
	padding: 16px 14px;
	border: 0 solid rgba(196, 160, 106, 0.45);
	border-radius: 0;
	border-left: 3px solid #bc9552;
}

.mr-page-wrap .mr-cart-label {
	font-size: 21px;
	color: rgb(255, 255, 255);
}

.mr-page-wrap .mr-cart-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	background: var(--mr-gold);
	color: var(--mr-white);
	border-radius: 50%;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	margin-top: 5px;
}

.mr-page-wrap .mr-cart-items {
	flex: 1;
	overflow-y: auto;
	min-height: 80px;
	margin-top: 14px;
	padding-top: 4px;
	border-left: none;
	padding-left: 0;
	max-height: none;
}

.mr-page-wrap .mr-cart-empty {
	color: rgba(255, 255, 255, 0.4);
	font-size: 13px;
	padding: 16px 0 8px;
	line-height: 1.6;
}

.mr-page-wrap .mr-cart-item {
	display: grid;
	grid-template-columns: 85px minmax(0, 1fr);
	grid-template-rows: auto auto;
	column-gap: 19px;
	row-gap: 8px;
	align-items: start;
	padding: 7px 0;
	border-bottom: 0 solid rgba(255, 255, 255, 0.08);
}

.mr-page-wrap .mr-cart-item-img {
	grid-column: 1;
	grid-row: 1 / 3;
	width: 85px;
	height: 85px;
	object-fit: cover;
	border-radius: 5px;
}

.mr-page-wrap .mr-cart-item-head {
	grid-column: 2;
	grid-row: 1;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	min-width: 0;
}

.mr-page-wrap .mr-cart-item-title {
	flex: 1;
	min-width: 0;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--mr-white);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-word;
	white-space: normal;
	max-height: calc(13px * 1.35 * 2);
}

.mr-page-wrap .mr-cart-remove {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: calc(13px * 1.35);
	padding: 0;
	margin: 0;
	border: none;
	background: transparent;
	color: rgba(255, 255, 255, 0.45);
	font-size: 20px;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
}

.mr-page-wrap .mr-cart-remove:hover {
	color: var(--mr-white);
}

.mr-page-wrap .mr-cart-item-bottom {
	grid-column: 2;
	grid-row: 2;
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	width: 100%;
}

.mr-page-wrap .mr-cart-item-price {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.45);
	flex-shrink: 0;
	white-space: nowrap;
}

.mr-page-wrap .mr-cart-item-actions {
	display: flex;
	align-items: center;
	flex: 1;
	min-width: 0;
	gap: 10px;
}

.mr-page-wrap .mr-cart .mr-qty-control--cart {
	flex-shrink: 0;
	margin-left: 6px;
}

.mr-page-wrap .mr-cart-item-subtotal {
	font-size: 14px;
	font-weight: 600;
	color: var(--mr-white);
	white-space: nowrap;
	flex-shrink: 0;
	margin-left: auto;
}

.mr-page-wrap .mr-cart-footer {
	margin-top: auto;
	padding-top: 28px;
	flex-shrink: 0;
}

.mr-page-wrap .mr-cart-total-label {
	display: block;
	font-size: 15px;
	color: rgb(255, 255, 255);
	margin-bottom: 10px;
}

.mr-page-wrap .mr-cart-total {
	display: block;
	font-size: 1.75rem;
	font-weight: 600;
	color: var(--mr-gold);
	line-height: 1.1;
	margin-top: 10px !important;
	margin-bottom: 10px !important;
}

.mr-page-wrap .mr-cart-disclaimer {
	font-size: 14px !important;
	color: rgb(255 255 255 / 96%) !important;
	line-height: 1.5;
	margin-bottom: 10px !important;
}

.mr-page-wrap .mr-cta-button {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 15px 18px !important;
	background: #bc9552 !important;
	color: var(--mr-white) !important;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border: none !important;
	border-radius: 5px;
	transition: background 0.2s;
}

.mr-page-wrap .mr-cta-button:hover:not(:disabled) {
	background: #a8844a !important;
	color: var(--mr-white) !important;
}

.mr-page-wrap .mr-cta-button:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	background: #bc9552 !important;
	color: var(--mr-white) !important;
}

.mr-page-wrap .mr-trust-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-top: 10px !important;
	font-size: 12px;
	color: rgb(255, 255, 255);
}

.mr-page-wrap .mr-trust-badge svg {
	opacity: 0.5;
	flex-shrink: 0;
}

/* ── Catalog – right 70% ── */
.mr-page-wrap .mr-catalog {
	flex: 0 0 70%;
	width: 70%;
	background: #eeede900;
	padding: 36px 32px 44px;
	position: relative;
	padding-top: 0;
}

.mr-page-wrap .mr-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 28px;
}

.mr-page-wrap .mr-cat-btn {
	padding: 10px 20px !important;
	background: var(--mr-white) !important;
	border: 1px solid #ddd !important;
	border-radius: 5px !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	color: var(--mr-text) !important;
	cursor: pointer;
	white-space: nowrap;
	line-height: 1.2 !important;
	transition: all 0.2s;
}

.mr-page-wrap .mr-cat-btn:hover {
	border-color: var(--mr-gold) !important;
	color: var(--mr-gold) !important;
	background: var(--mr-white) !important;
}

.mr-page-wrap .mr-cat-btn.is-active {
	background: var(--mr-gold) !important;
	border-color: var(--mr-gold) !important;
	color: var(--mr-white) !important;
}

.mr-page-wrap .mr-products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.mr-page-wrap .mr-products-grid.is-loading {
	opacity: 0.4;
	pointer-events: none;
}

.mr-page-wrap .mr-no-products {
	grid-column: 1 / -1;
	text-align: center;
	color: var(--mr-text-muted);
	padding: 40px 16px;
}

/* ── Product card ── */
.mr-page-wrap .mr-product-card {
	background: var(--mr-white);
	border-radius: var(--mr-radius);
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
}

.mr-page-wrap .mr-product-image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.mr-page-wrap .mr-product-body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.mr-page-wrap .mr-product-title {
	font-size: 14px !important;
	font-weight: 700 !important;
	font-style: normal !important;
	margin: 0 0 6px !important;
	line-height: 1.35 !important;
	color: var(--mr-text) !important;
	text-transform: none !important;
	letter-spacing: normal !important;
}

.mr-page-wrap .mr-product-desc {
	font-size: 12px;
	color: var(--mr-text-muted);
	margin: 0 0 10px;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1;
}

.mr-page-wrap .mr-product-price {
	font-size: 14px;
	font-weight: 700;
	margin: 0 0 14px;
	color: var(--mr-text);
	margin-top: 10px !important;
	margin-bottom: 10px !important;
}

.mr-page-wrap .mr-product-controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
}

/* ── Qty & checkbox ── */
.mr-page-wrap .mr-qty-control {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--mr-border);
	border-radius: 5px;
	overflow: hidden;
	background: #f5f4f2;
}

.mr-page-wrap .mr-cart .mr-qty-control {
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.06);
	border-radius: 5px;
}

.mr-page-wrap .mr-qty-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	font-size: 16px;
	color: var(--mr-text);
}

.mr-page-wrap .mr-cart .mr-qty-btn {
	color: var(--mr-white);
	width: 28px;
	height: 28px;
	font-size: 14px;
}

.mr-page-wrap .mr-qty-btn:hover {
	background: rgba(0, 0, 0, 0.04);
}

.mr-page-wrap .mr-cart .mr-qty-btn:hover {
	background: rgba(255, 255, 255, 0.08);
}

.mr-page-wrap .mr-qty-value {
	min-width: 22px;
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	color: var(--mr-text);
}

.mr-page-wrap .mr-cart .mr-qty-value {
	color: var(--mr-white);
	font-size: 12px;
}

.mr-page-wrap .mr-checkbox-wrap {
	position: relative;
	cursor: pointer;
}

.mr-page-wrap .mr-checkbox-wrap input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.mr-page-wrap .mr-checkbox-custom {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 2px solid #ccc;
	border-radius: 5px;
	background: var(--mr-white);
	transition: all 0.2s;
}

.mr-page-wrap .mr-checkbox-wrap input:checked + .mr-checkbox-custom {
	background: var(--mr-gold);
	border-color: var(--mr-gold);
}

.mr-page-wrap .mr-checkbox-wrap input:checked + .mr-checkbox-custom::after {
	content: '';
	width: 6px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	margin-top: -2px;
}

/* ── Loading ── */
.mr-page-wrap .mr-loading {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.mr-page-wrap .mr-spinner {
	width: 36px;
	height: 36px;
	border: 3px solid var(--mr-border);
	border-top-color: var(--mr-gold);
	border-radius: 50%;
	animation: mr-spin 0.7s linear infinite;
}

@keyframes mr-spin {
	to { transform: rotate(360deg); }
}

/* ── Modal (outside container, fixed) ── */
.mr-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s, visibility 0.25s;
}

.mr-modal-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.mr-modal {
	background: #fff;
	border-radius: 5px;
	width: 100%;
	max-width: 500px;
	max-height: 90vh;
	overflow-y: auto;
	transform: translateY(16px);
	transition: transform 0.25s;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.mr-modal-overlay.is-open .mr-modal {
	transform: translateY(0);
}

.mr-modal-header {
	padding: 28px 28px 0;
	position: relative;
}

.mr-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: none;
	border: none;
	font-size: 1.4rem;
	color: #888;
	cursor: pointer;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.mr-modal-title {
	font-size: 1.6rem;
	font-weight: 400;
	margin: 0 0 6px;
	color: #1a1a1a;
}

.mr-modal-subtitle {
	font-size: 0.85rem;
	color: #888;
	margin: 0;
}

.mr-modal-body {
	padding: 24px 28px 28px;
}

.mr-form-group {
	margin-bottom: 16px;
}

.mr-form-group label {
	display: block;
	font-size: 0.78rem;
	font-weight: 600;
	margin-bottom: 5px;
	color: #1a1a1a;
}

.mr-form-group label .mr-required {
	color: #c4a06a;
}

.mr-form-group input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #e2e0dc;
	border-radius: 5px;
	font-size: 0.9rem;
	color: #1a1a1a;
}

.mr-form-group input:focus {
	outline: none;
	border-color: #c4a06a;
	box-shadow: 0 0 0 3px rgba(196, 160, 106, 0.15);
}

.mr-form-group input.mr-input-error {
	border-color: #d44;
}

.mr-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.mr-form-error {
	font-size: 0.72rem;
	color: #d44;
	margin-top: 4px;
	display: none;
}

.mr-form-group.has-error .mr-form-error {
	display: block;
}

.mr-form-summary {
	background: #eeede9;
	border-radius: 5px;
	padding: 14px;
	margin-bottom: 20px;
	font-size: 0.8rem;
	color: #888;
	line-height: 1.55;
}

.mr-form-summary strong {
	color: #1a1a1a;
}

.mr-form-summary .mr-form-summary-total {
	display: block;
	margin-top: 6px;
	font-size: 1.15rem;
	color: #c4a06a;
	font-weight: 600;
}

.mr-form-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 14px 24px;
	background: #c4a06a;
	color: #fff;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.mr-form-submit:hover:not(:disabled) {
	background: #b08d55;
}

.mr-form-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.mr-form-success {
	text-align: center;
	padding: 32px 16px;
}

.mr-form-success-icon {
	width: 48px;
	height: 48px;
	background: #c4a06a;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	color: #fff;
	font-size: 1.3rem;
}

.mr-form-success h3 {
	font-size: 1.35rem;
	margin: 0 0 8px;
}

.mr-form-success p {
	color: #888;
	font-size: 0.85rem;
	margin: 0;
	line-height: 1.55;
}

body.mr-modal-open {
	overflow: hidden;
}

body.mr-has-mobile-bar {
	padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
}

/* ── Mobile sticky bar ── */
.mr-mobile-bar {
	display: none;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
	.mr-page-wrap .mr-products-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 960px) {
	#mr-app {
		width: 100%;
		margin-top: 16px;
		margin-bottom: 24px;
		padding: 0 16px;
	}

	.mr-page-wrap .mr-app {
		flex-direction: column;
		min-height: auto;
		overflow: visible;
		gap: 0;
	}

	.mr-page-wrap .mr-catalog {
		order: 1;
		flex: none;
		width: 100%;
		min-height: auto;
		padding: 8px 0 28px;
		background: var(--mr-light);
	}

	.mr-page-wrap .mr-cart {
		order: 2;
		flex: none;
		width: 100%;
		min-height: auto;
		border-radius: 16px 16px 0 0;
		margin-top: 8px;
		box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
	}

	.mr-page-wrap .mr-cart-inner {
		min-height: auto;
		padding: 24px 18px 28px;
	}

	.mr-page-wrap .mr-cart-title {
		font-size: 1.5rem;
		margin-bottom: 16px;
	}

	.mr-page-wrap .mr-cart-header {
		margin-top: 0;
	}

	.mr-page-wrap .mr-cart-box {
		flex: none;
		min-height: auto;
		height: auto;
		padding: 18px 16px;
		border-radius: 8px;
		background: rgba(255, 255, 255, 0.04);
	}

	.mr-page-wrap .mr-cart-items {
		flex: none;
		min-height: auto;
		max-height: none;
		overflow: visible;
		margin-top: 12px;
	}

	.mr-page-wrap .mr-cart-footer {
		padding-top: 20px;
	}

	.mr-page-wrap .mr-cart-total {
		font-size: 1.5rem;
	}

	.mr-page-wrap .mr-cta-button {
		min-height: 52px;
		font-size: 13px;
		border-radius: 8px;
	}

	/* Horizontal category scroll */
	.mr-page-wrap .mr-categories {
		display: flex;
		flex-wrap: nowrap;
		gap: 8px;
		margin: 0 -16px 20px;
		padding: 0 16px 4px;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x proximity;
		scrollbar-width: none;
	}

	.mr-page-wrap .mr-categories::-webkit-scrollbar {
		display: none;
	}

	.mr-page-wrap .mr-cat-btn {
		flex-shrink: 0;
		scroll-snap-align: start;
		padding: 11px 18px !important;
		font-size: 12px !important;
		border-radius: 999px !important;
		box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
	}

	.mr-page-wrap .mr-products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.mr-page-wrap .mr-product-card {
		border-radius: 10px;
		box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
	}

	.mr-page-wrap .mr-product-body {
		padding: 14px;
	}

	.mr-page-wrap .mr-product-title {
		font-size: 13px !important;
	}

	.mr-page-wrap .mr-product-desc {
		font-size: 11px;
		-webkit-line-clamp: 3;
	}

	.mr-page-wrap .mr-qty-btn {
		width: 36px;
		height: 36px;
	}

	.mr-page-wrap .mr-checkbox-custom {
		width: 36px;
		height: 36px;
	}

	/* Sticky bottom bar */
	.mr-mobile-bar {
		display: flex;
		align-items: center;
		gap: 10px;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 99998;
		padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
		background: rgba(0, 0, 0, 0.96);
		border-top: 1px solid rgba(196, 160, 106, 0.35);
		box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
		animation: mr-bar-in 0.25s ease;
	}

	@keyframes mr-bar-in {
		from {
			transform: translateY(100%);
			opacity: 0;
		}
		to {
			transform: translateY(0);
			opacity: 1;
		}
	}

	.mr-mobile-bar[hidden] {
		display: none !important;
	}

	.mr-mobile-bar-cart {
		display: flex;
		align-items: center;
		gap: 12px;
		flex: 1;
		min-width: 0;
		padding: 8px 10px;
		background: rgba(255, 255, 255, 0.06);
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 10px;
		color: #fff;
		cursor: pointer;
		text-align: left;
	}

	.mr-mobile-bar-icon {
		position: relative;
		flex-shrink: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		background: rgba(188, 149, 82, 0.2);
		border-radius: 10px;
		color: #bc9552;
	}

	.mr-mobile-bar-badge {
		position: absolute;
		top: -4px;
		right: -4px;
		min-width: 18px;
		height: 18px;
		padding: 0 5px;
		background: #bc9552;
		color: #fff;
		border-radius: 999px;
		font-size: 10px;
		font-weight: 700;
		line-height: 18px;
		text-align: center;
	}

	.mr-mobile-bar-info {
		display: flex;
		flex-direction: column;
		min-width: 0;
		gap: 2px;
	}

	.mr-mobile-bar-label {
		font-size: 11px;
		color: rgba(255, 255, 255, 0.55);
		text-transform: uppercase;
		letter-spacing: 0.06em;
	}

	.mr-mobile-bar-total {
		font-size: 15px;
		font-weight: 700;
		color: #bc9552;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.mr-mobile-bar-cta {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 6px;
		flex-shrink: 0;
		min-height: 48px;
		padding: 0 18px;
		background: #bc9552;
		color: #fff;
		border: none;
		border-radius: 10px;
		font-size: 12px;
		font-weight: 700;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		cursor: pointer;
		transition: background 0.2s;
	}

	.mr-mobile-bar-cta:hover:not(:disabled) {
		background: #a8844a;
	}

	.mr-mobile-bar-cta:disabled {
		opacity: 0.45;
		cursor: not-allowed;
	}

	/* Modal – bottom sheet on mobile */
	.mr-modal-overlay {
		align-items: flex-end;
		padding: 0;
	}

	.mr-modal {
		max-width: 100%;
		max-height: 92vh;
		border-radius: 16px 16px 0 0;
	}

	.mr-modal-header {
		padding: 24px 20px 0;
	}

	.mr-modal-body {
		padding: 20px 20px calc(24px + env(safe-area-inset-bottom, 0px));
	}

	.mr-modal-title {
		font-size: 1.35rem;
		padding-right: 36px;
	}

	.mr-form-submit {
		min-height: 52px;
		font-size: 0.82rem;
		border-radius: 8px;
	}
}

@media (max-width: 560px) {
	#mr-app {
		padding: 0 12px;
		margin-top: 12px;
	}

	.mr-page-wrap .mr-categories {
		margin-left: -12px;
		margin-right: -12px;
		padding-left: 12px;
		padding-right: 12px;
	}

	.mr-page-wrap .mr-products-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.mr-page-wrap .mr-product-card {
		flex-direction: row;
		align-items: stretch;
	}

	.mr-page-wrap .mr-product-image {
		flex: 0 0 112px;
		width: 112px;
	}

	.mr-page-wrap .mr-product-image img {
		width: 100%;
		height: 100%;
		min-height: 112px;
		aspect-ratio: auto;
		object-fit: cover;
	}

	.mr-page-wrap .mr-product-body {
		flex: 1;
		min-width: 0;
		padding: 12px 14px;
		justify-content: center;
	}

	.mr-page-wrap .mr-product-desc {
		-webkit-line-clamp: 2;
		margin-bottom: 6px;
	}

	.mr-page-wrap .mr-product-price {
		margin-top: 4px !important;
		margin-bottom: 8px !important;
	}

	.mr-page-wrap .mr-cart-inner {
		padding: 20px 14px 24px;
	}

	.mr-page-wrap .mr-cart-item {
		grid-template-columns: 72px minmax(0, 1fr);
		column-gap: 12px;
		padding: 10px 0;
	}

	.mr-page-wrap .mr-cart-item-img {
		width: 72px;
		height: 72px;
	}

	.mr-page-wrap .mr-cart-item-title {
		font-size: 14px;
		max-height: calc(14px * 1.35 * 2);
	}

	.mr-page-wrap .mr-cart-item-subtotal {
		font-size: 15px;
	}

	.mr-mobile-bar {
		padding-left: 10px;
		padding-right: 10px;
		gap: 8px;
	}

	.mr-mobile-bar-cta {
		padding: 0 14px;
		font-size: 11px;
	}

	.mr-form-row {
		grid-template-columns: 1fr;
	}
}

@media (max-width:991px)
{
	.mr-page-wrap .mr-catalog {
        order: 1;
        flex: none;
        width: 95%;
        min-height: auto;
        padding: 8px 0 28px;
        background: #ffffff;
        margin: auto;
    }
    .mr-modal {
        max-width: 93%;
	}

}

@media (min-width:991px)
{
	.mr-page-wrap .mr-cart-item {
    column-gap: 14px;
	}
.mr-page-wrap .mr-cart {
    flex: 0 0 31.5%;
    width: 32%;
}

.mr-page-wrap .mr-cart-item-bottom {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    width: 100%;
    justify-content: space-between;
}
.mr-page-wrap .mr-cart-item-actions {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    gap: 10px;
    justify-content: space-between;
}

.mr-page-wrap .mr-cart-remove {
    width: 11px;
	}

}

.mr-page-wrap .mr-cart {
    font-family: "Outfit", Sans-serif;
}

#mr-app {
    font-family: "Outfit", Sans-serif;
}

