:root {
	--msc-accent: #0079c4;
	--msc-accent-hover: #0068aa;
	--msc-accent-deep: #00578f;
	--msc-bg: #ffffff;
	--msc-surface: #f4f5f7;
	--msc-card: #f8f9fa;
	--msc-border: #e1e5e9;
	--msc-border-strong: #cfd5dc;
	--msc-text: #171a1d;
	--msc-muted: #6f7782;
}

.msc-widget,
.msc-widget * {
	box-sizing: border-box;
}

.msc-widget {
	direction: rtl;
	font-family: inherit;
}

.msc-trigger {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 42px;
	min-height: 42px;
	padding: 8px 10px;
	border: 1px solid transparent;
	border-radius: 8px;
	background: transparent;
	color: var(--msc-text);
	font: inherit;
	line-height: 1;
	cursor: pointer;
	transition: .2s ease;
}

.msc-trigger:hover {
	color: var(--msc-accent);
}

.msc-trigger__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	flex: 0 0 auto;
}

.msc-trigger__icon svg,
.msc-trigger__icon i {
	width: 100%;
	height: 100%;
	font-size: inherit;
	fill: none;
}

.msc-icon-position--after .msc-trigger__icon {
	order: 3;
}

.msc-trigger__text {
	white-space: nowrap;
}

.msc-count {
	position: absolute;
	top: -6px;
	inset-inline-end: -6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 19px;
	height: 19px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--msc-accent);
	color: #ffffff;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
}

.msc-count.is-hidden,
.is-hidden {
	display: none !important;
}

.msc-drawer {
	position: fixed;
	inset: 0;
	z-index: 999999;
	pointer-events: none;
	visibility: hidden;
}

.msc-drawer.is-open {
	pointer-events: auto;
	visibility: visible;
}

.msc-overlay {
	position: absolute;
	inset: 0;
	background: rgba(17, 24, 39, .42);
	opacity: 0;
	transition: opacity .28s ease;
}

.msc-drawer.is-open .msc-overlay {
	opacity: 1;
}

.msc-panel {
	position: absolute;
	top: 0;
	bottom: 0;
	width: min(500px, 100vw);
	max-width: 100vw;
	display: flex;
	flex-direction: column;
	background: var(--msc-bg);
	color: var(--msc-text);
	border: 1px solid var(--msc-border);
	box-shadow: 0 24px 70px rgba(17, 24, 39, .16);
	overflow: hidden;
	transition: transform .34s cubic-bezier(.2,.8,.2,1);
}

.msc-side-left .msc-panel {
	left: 0;
	transform: translateX(-102%);
}

.msc-side-right .msc-panel {
	right: 0;
	transform: translateX(102%);
}

.msc-drawer.is-open .msc-panel {
	transform: translateX(0);
}

.msc-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 24px;
	border-bottom: 1px solid var(--msc-border);
	background: #ffffff;
	flex: 0 0 auto;
}

.msc-header__text {
	min-width: 0;
}

.msc-header__eyebrow {
	margin-bottom: 5px;
	color: var(--msc-accent);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
}

.msc-header__title {
	margin: 0;
	color: var(--msc-text);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.45;
}

.msc-close,
.msc-remove,
.msc-qty__button {
	appearance: none;
	font: inherit;
	cursor: pointer;
}

.msc-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--msc-border);
	border-radius: 8px;
	background: var(--msc-surface);
	color: #4b5563;
	font-size: 24px;
	line-height: 1;
	flex: 0 0 auto;
	transition: .2s ease;
}

.msc-close:hover {
	background: #eceff2;
	border-color: var(--msc-border-strong);
	color: var(--msc-accent);
}

.msc-body {
	position: relative;
	padding: 18px;
	background: #ffffff;
	overflow-y: auto;
	overflow-x: hidden;
	flex: 1 1 auto;
	overscroll-behavior: contain;
}

.msc-status {
	min-height: 0;
	color: var(--msc-muted);
	font-size: 12px;
}

.msc-status:not(:empty) {
	padding: 0 2px 10px;
}

.msc-items {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.msc-item {
	display: flex;
	align-items: stretch;
	gap: 14px;
	padding: 12px;
	border: 1px solid var(--msc-border);
	border-radius: 10px;
	background: var(--msc-card);
	box-shadow: 0 2px 10px rgba(17, 24, 39, .035);
	transition: opacity .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.msc-item:hover {
	border-color: var(--msc-border-strong);
	box-shadow: 0 5px 18px rgba(17, 24, 39, .06);
}

.msc-item.is-updating {
	opacity: .45;
	pointer-events: none;
}

.msc-thumb-wrap {
	width: 92px;
	flex: 0 0 92px;
}

.msc-thumb {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	border: 1px solid var(--msc-border);
	border-radius: 8px;
	overflow: hidden;
	background: #f0f2f4;
}

.msc-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.msc-item__main {
	min-width: 0;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
}

.msc-item__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.msc-item__title {
	margin: 0;
	color: var(--msc-text);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.65;
}

.msc-item__title a {
	color: inherit;
	text-decoration: none;
}

.msc-item__title a:hover {
	color: var(--msc-accent);
}

.msc-remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 7px;
	border: 1px solid var(--msc-border);
	border-radius: 7px;
	background: #ffffff;
	color: #7b8490;
	flex: 0 0 auto;
	transition: .2s ease;
}

.msc-remove:hover {
	color: var(--msc-accent);
	border-color: var(--msc-accent);
	background: #ffffff;
}

.msc-remove svg {
	width: 100%;
	height: 100%;
}

.msc-item__meta {
	margin-top: 4px;
	color: var(--msc-muted);
	font-size: 11px;
	line-height: 1.7;
}

.msc-item__meta dl,
.msc-item__meta p {
	margin: 0;
}

.msc-item__meta dt,
.msc-item__meta dd {
	display: inline;
	margin: 0;
}

.msc-item__meta dd + dt:before {
	content: ' · ';
}

.msc-item__prices {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 10px;
	margin-top: 10px;
}

.msc-item__unit-price {
	color: var(--msc-muted);
	font-size: 12px;
}

.msc-item__line-total {
	color: var(--msc-text);
	font-size: 13px;
	font-weight: 700;
	text-align: left;
}

.msc-item__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
	padding-top: 10px;
}

.msc-qty {
	display: inline-grid;
	grid-template-columns: 34px minmax(38px, auto) 34px;
	align-items: center;
	height: 36px;
	border: 1px solid var(--msc-border);
	border-radius: 7px;
	background: #ffffff;
	overflow: hidden;
}

.msc-qty__button,
.msc-qty__input {
	height: 100%;
	border: 0;
	background: transparent;
	color: var(--msc-text);
	text-align: center;
	font: inherit;
}

.msc-qty__button {
	font-size: 16px;
	transition: .2s ease;
}

.msc-qty__button:hover {
	background: var(--msc-surface);
	color: var(--msc-accent);
}

.msc-qty__input {
	width: 100%;
	min-width: 0;
	padding: 0 3px;
	font-size: 12px;
	-moz-appearance: textfield;
}

.msc-qty__input::-webkit-inner-spin-button,
.msc-qty__input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.msc-footer {
	padding: 18px;
	border-top: 1px solid var(--msc-border);
	background: #ffffff;
	box-shadow: 0 -8px 24px rgba(17, 24, 39, .035);
	flex: 0 0 auto;
}

.msc-summary {
	padding-bottom: 14px;
}

.msc-summary__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	color: var(--msc-text);
	font-size: 14px;
}

.msc-summary__row strong {
	font-size: 15px;
	font-weight: 700;
}

.msc-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.msc-action,
.msc-empty__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 10px 14px;
	border: 1px solid var(--msc-border);
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	text-decoration: none !important;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, filter .2s ease;
}

.msc-action--cart {
	background: #ffffff;
	border-color: var(--msc-border-strong);
	color: var(--msc-text);
}

.msc-action--cart:hover {
	background: var(--msc-surface);
	border-color: #bcc4cc;
	color: var(--msc-text);
}

.msc-action--checkout {
	background: var(--msc-accent);
	border-color: var(--msc-accent);
	color: #ffffff;
}

.msc-action--checkout:hover {
	background: var(--msc-accent-hover);
	border-color: var(--msc-accent-hover);
	color: #ffffff;
}

.msc-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 50vh;
	padding: 40px 20px;
	text-align: center;
}

.msc-empty__icon {
	width: 66px;
	height: 66px;
	margin-bottom: 20px;
	color: #7b8490;
}

.msc-empty__icon svg {
	width: 100%;
	height: 100%;
}

.msc-empty h3 {
	margin: 0 0 8px;
	color: var(--msc-text);
	font-size: 18px;
	font-weight: 700;
}

.msc-empty p {
	max-width: 300px;
	margin: 0 0 20px;
	color: var(--msc-muted);
	font-size: 13px;
	line-height: 1.9;
}

.msc-empty__button {
	min-width: 150px;
	background: var(--msc-accent);
	border-color: var(--msc-accent);
	color: #ffffff;
}

.msc-empty__button:hover {
	background: var(--msc-accent-hover);
	border-color: var(--msc-accent-hover);
	color: #ffffff;
}

.msc-hide-image .msc-thumb-wrap,
.msc-hide-meta .msc-item__meta,
.msc-hide-unit-price .msc-item__unit-price,
.msc-hide-line-total .msc-item__line-total,
.msc-hide-qty .msc-qty,
.msc-hide-remove .msc-remove,
.msc-hide-subtotal .msc-summary,
.msc-hide-cart-button .msc-action--cart,
.msc-hide-checkout-button .msc-action--checkout {
	display: none !important;
}

.msc-hide-cart-button .msc-actions,
.msc-hide-checkout-button .msc-actions {
	grid-template-columns: 1fr;
}

.msc-hide-cart-button.msc-hide-checkout-button .msc-actions {
	display: none;
}

body.msc-no-scroll {
	overflow: hidden !important;
	touch-action: none;
}

@media (max-width: 767px) {
	.msc-panel {
		width: min(92vw, 430px);
	}
	.msc-header {
		padding: 18px;
	}
	.msc-body,
	.msc-footer {
		padding: 14px;
	}
	.msc-item {
		gap: 10px;
		padding: 10px;
	}
	.msc-thumb-wrap {
		width: 76px;
		flex-basis: 76px;
	}
	.msc-actions {
		grid-template-columns: 1fr;
	}
}

/* =========================================================
 * v1.2.0 — Elementor typography / WooCommerce price hardening
 * ======================================================= */

.msc-close__icon,
.msc-remove__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	font-size: 18px;
	line-height: 1;
	color: inherit;
	pointer-events: none;
}

.msc-close__icon svg,
.msc-close__icon i,
.msc-remove__icon svg,
.msc-remove__icon i {
	display: block;
	width: 100%;
	height: 100%;
	font-size: inherit;
	color: inherit !important;
	fill: currentColor;
}

.msc-close__icon svg[fill="none"],
.msc-remove__icon svg[fill="none"] {
	fill: none;
}

/* Text generated by WooCommerce/themes must obey the typography set on
 * the parent Elementor control instead of keeping theme-level font rules. */
.msc-widget .msc-trigger__text,
.msc-widget .msc-trigger__text *,
.msc-widget .msc-header__eyebrow *,
.msc-widget .msc-header__title *,
.msc-widget .msc-item__title a,
.msc-widget .msc-item__title a *,
.msc-widget .msc-item__meta *,
.msc-widget .msc-item__unit-price *,
.msc-widget .msc-item__line-total *,
.msc-widget .msc-summary__row > span *,
.msc-widget .msc-summary__row strong,
.msc-widget .msc-summary__row strong *,
.msc-widget .msc-action *,
.msc-widget .msc-empty h3 *,
.msc-widget .msc-empty p *,
.msc-widget .msc-empty__button * {
	font-family: inherit !important;
	font-size: inherit !important;
	font-style: inherit !important;
	font-weight: inherit !important;
	line-height: inherit !important;
	letter-spacing: inherit !important;
	text-transform: inherit !important;
	text-decoration: inherit !important;
}

/* WooCommerce price markup often has its own color/font declarations. */
.msc-widget .msc-item__unit-price .amount,
.msc-widget .msc-item__unit-price .woocommerce-Price-amount,
.msc-widget .msc-item__unit-price .woocommerce-Price-currencySymbol,
.msc-widget .msc-item__unit-price bdi,
.msc-widget .msc-item__line-total .amount,
.msc-widget .msc-item__line-total .woocommerce-Price-amount,
.msc-widget .msc-item__line-total .woocommerce-Price-currencySymbol,
.msc-widget .msc-item__line-total bdi,
.msc-widget .msc-summary__row strong .amount,
.msc-widget .msc-summary__row strong .woocommerce-Price-amount,
.msc-widget .msc-summary__row strong .woocommerce-Price-currencySymbol,
.msc-widget .msc-summary__row strong bdi {
	color: inherit !important;
	font-family: inherit !important;
	font-size: inherit !important;
	font-style: inherit !important;
	font-weight: inherit !important;
	line-height: inherit !important;
	letter-spacing: inherit !important;
}

.msc-widget .msc-summary__row strong {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	letter-spacing: inherit;
}

.msc-status.is-error {
	color: #b42318;
}

.msc-status.is-loading {
	color: var(--msc-muted);
}

.msc-status:not(:empty) {
	margin-bottom: 10px;
	border-radius: 7px;
}

.msc-trigger,
.msc-close,
.msc-remove,
.msc-qty,
.msc-qty__button,
.msc-action,
.msc-empty__button,
.msc-item,
.msc-header,
.msc-footer,
.msc-header__eyebrow,
.msc-header__title,
.msc-item__title,
.msc-item__meta,
.msc-item__unit-price,
.msc-item__line-total,
.msc-summary__row,
.msc-count {
	transition-property: color, background-color, border-color, box-shadow, transform, opacity, font-size, font-weight, letter-spacing;
	transition-duration: .2s;
	transition-timing-function: ease;
}

.msc-close:focus-visible,
.msc-remove:focus-visible,
.msc-trigger:focus-visible,
.msc-qty__button:focus-visible,
.msc-action:focus-visible,
.msc-empty__button:focus-visible {
	outline: 2px solid #0079c4;
	outline-offset: 2px;
}


/* =========================================================
 * v1.2.1 — Reliable Elementor icons + SVG fallback
 * ======================================================= */

.msc-icon-holder {
	position: relative;
}

.msc-icon-rendered,
.msc-icon-fallback,
.msc-icon-fallback--only {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: inherit;
	line-height: 1;
	color: inherit;
	pointer-events: none;
}

.msc-icon-fallback {
	display: none;
}

.msc-icon-holder.msc-icon-failed .msc-icon-rendered {
	display: none !important;
}

.msc-icon-holder.msc-icon-failed .msc-icon-fallback {
	display: inline-flex !important;
}

.msc-icon-rendered > i,
.msc-icon-rendered > svg,
.msc-icon-fallback > svg,
.msc-icon-fallback--only > svg {
	display: block;
	width: 100% !important;
	height: 100% !important;
	font-size: inherit !important;
	line-height: 1 !important;
	color: inherit !important;
	fill: currentColor;
}

.msc-icon-rendered > svg[fill="none"],
.msc-icon-fallback > svg[fill="none"],
.msc-icon-fallback--only > svg[fill="none"] {
	fill: none;
}

/* Elementor Font Awesome 5/6 icons use ::before. Do not allow theme rules
 * to strip the font family, weight, display or generated glyph. */
.msc-widget .msc-icon-rendered > i.fas,
.msc-widget .msc-icon-rendered > i.fa-solid {
	font-family: "Font Awesome 5 Free", "Font Awesome 6 Free" !important;
	font-weight: 900 !important;
}

.msc-widget .msc-icon-rendered > i.far,
.msc-widget .msc-icon-rendered > i.fa-regular {
	font-family: "Font Awesome 5 Free", "Font Awesome 6 Free" !important;
	font-weight: 400 !important;
}

.msc-widget .msc-icon-rendered > i.fab,
.msc-widget .msc-icon-rendered > i.fa-brands {
	font-family: "Font Awesome 5 Brands", "Font Awesome 6 Brands" !important;
	font-weight: 400 !important;
}

.msc-widget .msc-icon-rendered > i::before {
	display: inline-block !important;
	font: inherit;
	line-height: 1;
	color: currentColor;
}


/* =========================================================
 * v1.2.2 — Native action icons (close/remove) hardening
 * ======================================================= */
.msc-widget .msc-close__icon,
.msc-widget .msc-remove__icon,
.msc-widget .msc-close__icon *,
.msc-widget .msc-remove__icon * {
	visibility: visible !important;
	opacity: 1 !important;
}

.msc-widget .msc-icon-native {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	line-height: 0;
	color: inherit !important;
	pointer-events: none;
	visibility: visible !important;
	opacity: 1 !important;
	overflow: visible;
}

.msc-widget .msc-icon-native > svg,
.msc-widget .msc-close__icon .msc-icon-native > svg,
.msc-widget .msc-remove__icon .msc-icon-native > svg {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	min-width: 1px;
	min-height: 1px;
	max-width: none !important;
	max-height: none !important;
	visibility: visible !important;
	opacity: 1 !important;
	overflow: visible !important;
	fill: none !important;
	stroke: currentColor !important;
	stroke-width: 1.8 !important;
	stroke-linecap: round !important;
	stroke-linejoin: round !important;
	color: inherit !important;
}

.msc-widget .msc-icon-native > svg path,
.msc-widget .msc-close__icon .msc-icon-native > svg path,
.msc-widget .msc-remove__icon .msc-icon-native > svg path {
	fill: none !important;
	stroke: currentColor !important;
	stroke-width: inherit;
	stroke-linecap: inherit;
	stroke-linejoin: inherit;
	visibility: visible !important;
	opacity: 1 !important;
}

/* Do not let generic theme button/svg rules collapse action icons. */
.msc-widget button.msc-close .msc-close__icon,
.msc-widget button.msc-remove .msc-remove__icon {
	position: relative !important;
	display: inline-flex !important;
	flex: 0 0 auto !important;
	transform: none;
	font-family: inherit;
}
