/* ============================================================================
   VIVERE Checkout — scoped stylesheet
   Local fonts (Google Sans + BPG Nino Mtavruli) loaded via @font-face below.
   Every rule is scoped under `.mc-shell`.
   ============================================================================ */

/* ── Local VIVERE fonts ── */
@font-face {
	font-family: 'Google Sans';
	src: url('/wp-content/uploads/GoogleSans-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Google Sans';
	src: url('/wp-content/uploads/GoogleSans-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'BPG Nino Mtavruli';
	src: url('/wp-content/uploads/bpg_nino_mtavruli_normal.woff') format('woff'),
	     url('/wp-content/uploads/bpg_nino_mtavruli_normal.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

/* ---- Reset / token scope ---- */
.mc-shell,
.mc-shell *,
.mc-shell *::before,
.mc-shell *::after { box-sizing: border-box; }

html.mc-html, body.mc-body { margin: 0 !important; padding: 0 !important; }
body.mc-checkout-shell { margin: 0 !important; padding: 0 !important; background: #fff !important; }

.mc-shell {
	/* ── VIVERE brand tokens ── */
	--c-primary: #56663e;
	--c-primary-hover: #444f30;
	--c-text: #111010;
	--c-text-muted: #888;
	--c-text-subtle: #bbb;
	--c-border: #e8e4dc;
	--c-border-strong: #c8c4bd;
	--c-surface: #ffffff;
	--c-surface-alt: #f5f4f1;
	--c-surface-sidebar: #faf9f6;
	--c-focus: #56663e;
	--c-success: #56663e;
	--c-sale: #6C2124;
	--c-accent: #DEB995;

	/* Sharp luxury aesthetic — no rounded corners */
	--radius-sm: 0px;
	--radius: 0px;
	--radius-lg: 0px;
	--shadow-focus: 0 0 0 2px #fff, 0 0 0 4px var(--c-focus);

	/* VIVERE font stack — local files, Google Sans body + BPG Nino display */
	--font-body: 'Google Sans', 'Noto Sans Georgian', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--font-display: 'BPG Nino Mtavruli', 'Google Sans', sans-serif;

	/* Motion tokens — VIVERE-style ease curve */
	--ease: cubic-bezier(.16, 1, .3, 1);
	--ease-out: cubic-bezier(0.0, 0, 0.2, 1);
	--ease-in: cubic-bezier(0.4, 0, 1, 1);
	--t-fast: 0.15s;
	--t-base: 0.22s;
	--t-slow: 0.32s;

	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: var(--c-text);
	line-height: 1.45;
	min-height: 100vh;
	background: #fff;
}

/* CRITICAL: `[hidden]` must beat `display: flex` / `display: grid` on dropdowns,
   or they render open on page load. Browsers set `display:none` on [hidden] but
   CSS rules like `.mc-phone-dropdown { display: flex }` override it. Force it. */
.mc-shell [hidden] { display: none !important; }

/* ─── Motion: dropdown fade-in, payment-box slide, section polish ───── */
@keyframes mc-dropdown-in {
	from { opacity: 0; transform: translateY(-6px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes mc-payment-box-in {
	from { opacity: 0; transform: translateY(-4px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes mc-notice-in {
	from { opacity: 0; transform: translateY(-4px); }
	to   { opacity: 1; transform: translateY(0); }
}

.mc-shell .mc-phone-dropdown:not([hidden]),
.mc-shell .mc-cselect-listbox:not([hidden]) {
	animation: mc-dropdown-in var(--t-base) var(--ease-out);
	transform-origin: top;
	will-change: opacity, transform;
}
.mc-shell .mc-payment-list .payment_box {
	animation: mc-payment-box-in var(--t-slow) var(--ease-out);
}
.mc-shell .woocommerce-error,
.mc-shell .woocommerce-info,
.mc-shell .woocommerce-message {
	animation: mc-notice-in var(--t-slow) var(--ease-out);
}

/* Selected-state background transitions (shipping + payment rows) */
.mc-shell #shipping_method li,
.mc-shell .mc-payment-list li > label {
	transition: background-color var(--t-base) var(--ease);
}

/* Small interactive elements — qty, remove links, chip remove */
.mc-shell .mc-qty-btn,
.mc-shell .mc-summary-remove,
.mc-shell .mc-discount-chip-remove,
.mc-shell .mc-checkbox-box,
.mc-shell .mc-cselect-option,
.mc-shell .mc-phone-list li {
	transition: background-color var(--t-fast) var(--ease),
	            color var(--t-fast) var(--ease),
	            border-color var(--t-base) var(--ease);
}

/* Caret rotation for open state */
.mc-shell .mc-cselect-caret,
.mc-shell .mc-phone-caret,
.mc-shell .mc-expandable summary::before {
	transition: transform var(--t-base) var(--ease);
	will-change: transform;
}

/* Smooth summary color */
.mc-shell .mc-expandable summary { transition: color var(--t-fast) var(--ease); }
.mc-shell .mc-expandable summary:hover { color: var(--c-primary-hover); }

/* Expandable body — JS sets inline height; we provide the transition baseline */
.mc-shell .mc-expandable-body {
	overflow: hidden;
}

/* ─── Page layout ─────────────────────────────────────────────────────── */
.mc-shell .mc-checkout-page {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 100vh;
}
.mc-shell .mc-checkout-main-col { background: var(--c-surface); display: flex; justify-content: flex-end; }
.mc-shell .mc-checkout-side-col { background: var(--c-surface-sidebar); border-left: 1px solid var(--c-border); display: flex; justify-content: flex-start; }
.mc-shell .mc-checkout-main { width: 100%; max-width: 560px; padding: 32px 56px 80px 32px; }
.mc-shell .mc-checkout-side { width: 100%; max-width: 520px; padding: 32px 32px 80px 56px; position: sticky; top: 0; align-self: start; }

/* ─── Header ──────────────────────────────────────────────────────────── */
.mc-shell .mc-checkout-header { padding-bottom: 20px; }
.mc-shell .mc-checkout-logo { display: inline-block; margin-bottom: 18px; text-decoration: none; }
.mc-shell .mc-checkout-logo img,
.mc-shell .mc-checkout-logo .mc-logo-img {
	display: block;
	max-height: 30px;
	width: auto;
	height: auto;
}
.mc-shell .mc-logo-text {
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0.02em;
	color: var(--c-text);
}
.mc-shell .mc-breadcrumb { display: flex; flex-wrap: wrap; gap: 4px 8px; font-size: 13px; color: var(--c-text-muted); align-items: center; }
.mc-shell .mc-breadcrumb a { color: var(--c-primary); text-decoration: none; }
.mc-shell .mc-breadcrumb a:hover { text-decoration: underline; }
.mc-shell .mc-breadcrumb .sep { color: var(--c-text-subtle); }
.mc-shell .mc-breadcrumb .current { color: var(--c-text); font-weight: 500; }

/* ─── Sections ────────────────────────────────────────────────────────── */
.mc-shell .mc-section { padding: 24px 0; }
.mc-shell .mc-section + .mc-section { border-top: 1px solid var(--c-border); }
.mc-shell .mc-section-head { display: flex; justify-content: space-between; align-items: baseline; margin: 0 0 16px; gap: 12px; flex-wrap: wrap; }
.mc-shell .mc-section-title {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 0.02em;
	margin: 0;
	color: var(--c-text);
	line-height: 1.1;
}
.mc-shell .mc-section-meta { font-size: 13px; color: var(--c-text-muted); margin: 0; }
.mc-shell .mc-section-meta a { color: var(--c-primary); text-decoration: none; }
.mc-shell .mc-section-meta a:hover { text-decoration: underline; }

/* ─── Fields / floating labels ────────────────────────────────────────── */
.mc-shell .mc-field { position: relative; margin-bottom: 12px; }
.mc-shell .mc-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mc-shell .mc-input,
.mc-shell .mc-textarea {
	width: 100%;
	height: 52px;
	padding: 20px 12px 6px 12px;
	border: 1px solid var(--c-border-strong);
	border-radius: var(--radius);
	background: #fff;
	font: inherit;
	font-size: 14.5px;
	color: var(--c-text);
	line-height: 1.3;
	transition: border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
	-webkit-appearance: none;
	appearance: none;
}
.mc-shell .mc-textarea { height: auto; min-height: 80px; padding: 20px 12px 12px 12px; resize: vertical; font-family: inherit; }
.mc-shell .mc-input::placeholder { color: transparent; }
.mc-shell .mc-input:hover,
.mc-shell .mc-textarea:hover { border-color: #8a8f94; }
.mc-shell .mc-input:focus,
.mc-shell .mc-textarea:focus {
	outline: none;
	border-color: var(--c-focus);
	box-shadow: inset 0 0 0 1px var(--c-focus);
}
.mc-shell .mc-field-label {
	position: absolute;
	left: 13px;
	top: 16px;
	font-family: var(--font-body);
	font-size: 14.5px;
	font-weight: 400;
	color: var(--c-text-muted);
	pointer-events: none;
	transition: transform var(--t-base) var(--ease), font-size var(--t-base) var(--ease), color var(--t-base) var(--ease);
	transform-origin: 0 0;
	background: transparent;
	padding: 0 3px;
	max-width: calc(100% - 26px);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.mc-shell .mc-input:focus ~ .mc-field-label,
.mc-shell .mc-input:not(:placeholder-shown) ~ .mc-field-label,
.mc-shell .mc-textarea:focus ~ .mc-field-label,
.mc-shell .mc-textarea:not(:placeholder-shown) ~ .mc-field-label,
.mc-shell .mc-field.has-value .mc-field-label {
	transform: translateY(-10px) scale(0.78);
	color: var(--c-text-muted);
}

/* Real native select is hidden (custom cselect drives it) */
.mc-shell .mc-hidden-native {
	position: absolute !important;
	width: 1px !important; height: 1px !important;
	padding: 0 !important; margin: -1px !important; overflow: hidden !important;
	clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important;
}

/* ─── Checkbox ────────────────────────────────────────────────────────── */
.mc-shell .mc-checkbox { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 14px; color: var(--c-text); padding: 6px 0; }
.mc-shell .mc-checkbox input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.mc-shell .mc-checkbox-box {
	width: 18px; height: 18px;
	border: 1.5px solid var(--c-border-strong);
	border-radius: 3px;
	background: #fff;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
	margin-top: 1px;
}
.mc-shell .mc-checkbox input:checked + .mc-checkbox-box { background: var(--c-primary); border-color: var(--c-primary); }
.mc-shell .mc-checkbox input:checked + .mc-checkbox-box::after {
	content: '';
	width: 10px; height: 6px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg) translate(1px, -1px);
}
.mc-shell .mc-checkbox input:focus-visible + .mc-checkbox-box { box-shadow: 0 0 0 3px rgba(201, 42, 74, 0.3); }

/* ─── Custom select (country/region) ──────────────────────────────────── */
.mc-shell .mc-cselect { position: relative; }
.mc-shell .mc-cselect-button {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 56px;
	padding: 8px 12px;
	border: 1px solid var(--c-border-strong);
	border-radius: var(--radius);
	background: #fff;
	font: inherit;
	color: var(--c-text);
	cursor: pointer;
	text-align: left;
	transition: border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.mc-shell .mc-cselect-button:hover { border-color: #8a8f94; }
.mc-shell .mc-cselect-button[aria-expanded="true"] { border-color: var(--c-focus); box-shadow: inset 0 0 0 1px var(--c-focus); }
.mc-shell .mc-cselect-inner { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.mc-shell .mc-cselect-label-mini { font-size: 11.5px; color: var(--c-text-muted); line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mc-shell .mc-cselect-value { font-size: 14.5px; line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mc-shell .mc-cselect-caret { color: var(--c-text-subtle); flex-shrink: 0; transition: transform var(--t-base) var(--ease); }
.mc-shell .mc-cselect-button[aria-expanded="true"] .mc-cselect-caret { transform: rotate(180deg); }
.mc-shell .mc-cselect-listbox {
	position: absolute;
	top: calc(100% + 4px); left: 0; right: 0;
	z-index: 30;
	max-height: 280px;
	overflow-y: auto;
	margin: 0; padding: 4px 0;
	list-style: none;
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.mc-shell .mc-cselect-option { padding: 10px 14px; cursor: pointer; font-size: 14px; }
.mc-shell .mc-cselect-option:hover,
.mc-shell .mc-cselect-option.is-active { background: var(--c-surface-alt); }
.mc-shell .mc-cselect-option[aria-selected="true"] { font-weight: 600; color: var(--c-primary); }

/* ─── Phone — unified field with inline country picker ─────────────────── */
.mc-shell .mc-phone-field {
	position: relative;
	display: flex;
	align-items: stretch;
	height: 52px;
	border: 1px solid var(--c-border-strong);
	border-radius: var(--radius);
	background: #fff;
	transition: border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
	margin-bottom: 12px;
}
.mc-shell .mc-phone-field:hover { border-color: #8a8f94; }
.mc-shell .mc-phone-field:focus-within,
.mc-shell .mc-phone-field.is-open {
	border-color: var(--c-focus);
	box-shadow: inset 0 0 0 1px var(--c-focus);
}

.mc-shell .mc-phone-selector {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 0 10px 0 12px;
	background: transparent;
	border: 0;
	border-right: 1px solid var(--c-border);
	cursor: pointer;
	font: inherit;
	font-size: 14px;
	color: var(--c-text);
	flex-shrink: 0;
	height: 100%;
	border-top-left-radius: var(--radius);
	border-bottom-left-radius: var(--radius);
}
.mc-shell .mc-phone-selector:hover { background: var(--c-surface-alt); }
.mc-shell .mc-phone-flag {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
	flex-shrink: 0;
}
.mc-shell .mc-phone-dial {
	font-size: 14px;
	color: var(--c-text);
}
.mc-shell .mc-phone-caret { color: var(--c-text-subtle); font-size: 10px; }

.mc-shell .mc-phone-input-wrap { flex: 1; position: relative; }
.mc-shell .mc-phone-input {
	width: 100%;
	height: 100%;
	padding: 20px 12px 6px 12px;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	font: inherit;
	font-size: 14.5px;
	color: var(--c-text);
	outline: none !important;
}
.mc-shell .mc-phone-input:focus { box-shadow: none !important; }

/* Dropdown — full-width under the whole phone field */
.mc-shell .mc-phone-dropdown {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	box-shadow: 0 8px 24px rgba(0,0,0,.12);
	z-index: 30;
	display: flex;
	flex-direction: column;
	max-height: min(420px, 60vh);
	overflow: hidden;
}
.mc-shell .mc-phone-search-wrap {
	padding: 8px;
	border-bottom: 1px solid var(--c-border);
	flex-shrink: 0;
}
.mc-shell .mc-phone-search {
	width: 100%;
	height: 40px;
	padding: 0 12px;
	border: 1px solid var(--c-border-strong);
	border-radius: var(--radius);
	background: #fff;
	font: inherit;
	font-size: 14px;
	color: var(--c-text);
	outline: none;
}
.mc-shell .mc-phone-search:focus {
	border-color: var(--c-focus);
	box-shadow: inset 0 0 0 1px var(--c-focus);
}
.mc-shell .mc-phone-list {
	flex: 1;
	overflow-y: auto;
	overflow-x: hidden;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	list-style: none;
	margin: 0;
	padding: 4px 0;
}
.mc-shell .mc-phone-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	cursor: pointer;
	font-size: 14px;
	list-style: none;
	margin: 0;
}
.mc-shell .mc-phone-list li:hover,
.mc-shell .mc-phone-list li.is-active { background: var(--c-surface-alt); }
.mc-shell .mc-phone-list li[aria-selected="true"] { color: var(--c-primary); font-weight: 600; }
.mc-shell .mc-phone-list li img {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}
.mc-shell .mc-phone-country-name { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mc-shell .mc-phone-country-dial { color: var(--c-text-muted); font-size: 13px; flex-shrink: 0; }
.mc-shell .mc-phone-list .mc-phone-empty {
	padding: 20px;
	text-align: center;
	color: var(--c-text-muted);
	font-size: 13px;
	cursor: default;
}
.mc-shell .mc-phone-list .mc-phone-empty:hover { background: transparent; }

/* Apply scroll containment to cselect too */
.mc-shell .mc-cselect-listbox {
	max-height: min(420px, 60vh);
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
}

/* ─── Expandable (<details>) ──────────────────────────────────────────── */
.mc-shell .mc-expandable { margin: 12px 0; }
.mc-shell .mc-expandable summary {
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	color: var(--c-primary);
	list-style: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 0;
}
.mc-shell .mc-expandable summary::-webkit-details-marker { display: none; }
.mc-shell .mc-expandable summary::before { content: '+'; font-size: 16px; line-height: 1; font-weight: 400; }
.mc-shell .mc-expandable[open] summary::before { content: '−'; }
.mc-shell .mc-expandable-body { padding-top: 10px; }

/* ─── Shipping methods (WC UL + radios, restyled) ─────────────────────── */
.mc-shell .mc-shipping-list,
.mc-shell #shipping_method {
	display: grid;
	gap: 0;
	border: 1px solid var(--c-border-strong);
	border-radius: var(--radius);
	overflow: hidden;
	list-style: none;
	margin: 0;
	padding: 0;
}
.mc-shell #shipping_method li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	cursor: pointer;
	background: #fff;
	font-size: 14px;
	list-style: none;
	margin: 0;
	position: relative;
}
.mc-shell #shipping_method li + li { border-top: 1px solid var(--c-border); }
.mc-shell #shipping_method li.is-selected { background: rgba(201, 42, 74, 0.04); }
.mc-shell #shipping_method input[type="radio"] { accent-color: var(--c-primary); width: 18px; height: 18px; margin: 0; flex-shrink: 0; }
.mc-shell #shipping_method label {
	flex: 1;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	gap: 8px;
	font-weight: 500;
	color: var(--c-text);
	margin: 0;
}

/* ─── Payment list (WC markup, restyled) ──────────────────────────────── */
/* Kill list markers at every level (some themes use ::marker, some list-style-image) */
.mc-shell #payment ul,
.mc-shell #payment ol,
.mc-shell #payment li,
.mc-shell .mc-payment-list ul,
.mc-shell .mc-payment-list ol,
.mc-shell .mc-payment-list li {
	list-style: none !important;
	list-style-type: none !important;
	list-style-image: none !important;
	padding-left: 0 !important;
	-webkit-padding-start: 0 !important;
	padding-inline-start: 0 !important;
}
.mc-shell #payment li::marker,
.mc-shell #payment ul::marker,
.mc-shell .mc-payment-list li::marker,
.mc-shell .mc-payment-list ul::marker { content: none !important; }

.mc-shell .mc-payment-list ul,
.mc-shell .mc-payment-list ul.wc_payment_methods,
.mc-shell .mc-payment-list ul.payment_methods {
	margin: 0 !important;
	padding: 0 !important;
	border: 1px solid var(--c-border-strong);
	border-radius: var(--radius);
	overflow: hidden;
	background: #fff;
}
.mc-shell .mc-payment-list li.wc_payment_method,
.mc-shell .mc-payment-list li.payment_method,
.mc-shell .mc-payment-list ul > li {
	position: relative;
	margin: 0 !important;
	padding: 0 !important;
	background: #fff;
}
.mc-shell .mc-payment-list li.wc_payment_method + li.wc_payment_method,
.mc-shell .mc-payment-list li.payment_method + li.payment_method,
.mc-shell .mc-payment-list ul > li + li { border-top: 1px solid var(--c-border); }

.mc-shell .mc-payment-list li > label {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-start !important;
	gap: 10px !important;
	flex-wrap: wrap;
	padding: 14px 16px !important;
	cursor: pointer;
	background: #fff;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4 !important;
	color: var(--c-text);
	margin: 0 !important;
	min-height: 52px;
}
.mc-shell .mc-payment-list li > label > * {
	align-self: center !important;
	vertical-align: middle;
}
.mc-shell .mc-payment-list li input[type="radio"] {
	accent-color: var(--c-primary);
	width: 18px; height: 18px;
	margin: 0 !important;
	flex-shrink: 0;
	align-self: center !important;
}
.mc-shell .mc-payment-list li.is-selected > label,
.mc-shell .mc-payment-list li:has(input:checked) > label { background: rgba(201, 42, 74, 0.04); }

/* Payment icons — pushed to the right edge, uniform size, vertically centered */
.mc-shell .mc-payment-list li > label img {
	height: 24px !important;
	width: auto !important;
	max-width: 44px;
	object-fit: contain;
	display: block !important;
	margin: 0 !important;
	padding: 0;
	align-self: center !important;
	vertical-align: middle;
}
.mc-shell .mc-payment-list li > label img:first-of-type {
	margin-left: auto !important;
}
.mc-shell .mc-payment-list li > label br { display: none; }

.mc-shell .mc-payment-list .payment_box {
	padding: 14px 16px 16px 46px !important;
	background: rgba(201, 42, 74, 0.04) !important;
	border-top: 1px dashed var(--c-border);
	color: var(--c-text-muted);
	font-size: 13px;
	line-height: 1.5;
	margin: 0 !important;
}
.mc-shell .mc-payment-list .payment_box:before { display: none !important; }
.mc-shell .mc-payment-list .payment_box p { margin: 0 0 8px; }
.mc-shell .mc-payment-list .payment_box p:last-child { margin-bottom: 0; }
.mc-shell .mc-payment-list .payment_box input[type="text"],
.mc-shell .mc-payment-list .payment_box input[type="email"],
.mc-shell .mc-payment-list .payment_box input[type="tel"] {
	font-size: 14px;
	padding: 10px;
	border: 1px solid var(--c-border-strong);
	border-radius: var(--radius);
	background: #fff;
	width: 100%;
}

/* ── Nuke any WC-default submit button + privacy/terms that a plugin re-injects
      into the payment section. Our own button lives OUTSIDE #payment, so it
      remains untouched.                                                        */
.mc-shell #payment button[name="woocommerce_checkout_place_order"],
.mc-shell #payment button#place_order,
.mc-shell #payment .form-row.place-order,
.mc-shell #payment .woocommerce-privacy-policy-text,
.mc-shell #payment .woocommerce-terms-and-conditions-wrapper,
.mc-shell #payment #terms,
.mc-shell #payment .wc-terms-and-conditions,
.mc-shell #payment .validate-required.terms,
.mc-shell #payment .create-account,
.mc-shell .mc-payment-list > .form-row.place-order,
.mc-shell .mc-payment-list > .woocommerce-privacy-policy-text,
.mc-shell .mc-payment-list > .woocommerce-terms-and-conditions-wrapper,
.mc-shell .mc-payment-list + .form-row.place-order,
.mc-shell .mc-payment-list + .woocommerce-privacy-policy-text {
	display: none !important;
	visibility: hidden !important;
	height: 0 !important;
	overflow: hidden !important;
	margin: 0 !important;
	padding: 0 !important;
}
/* Belt-and-suspenders: any button inside .mc-shell that is NOT .mc-place-order
   and NOT a cart/coupon control is a WC leftover — hide it if it submits checkout. */
.mc-shell button[name="woocommerce_checkout_place_order"]:not(.mc-place-order) {
	display: none !important;
}

/* Hide any Select2 wrapper WC or a plugin spawns for our hidden country select */
.mc-shell .mc-cselect ~ .select2,
.mc-shell .mc-cselect ~ .select2-container,
.mc-shell select.mc-hidden-native + .select2,
.mc-shell select.mc-hidden-native + .select2-container { display: none !important; }

/* WC's native "Have a coupon?" + "Returning customer?" blocks — we render
   our own equivalents. If PHP remove_action somehow doesn't catch them,
   this CSS does. */
.mc-shell .woocommerce-form-coupon-toggle,
.mc-shell .woocommerce-form-coupon,
.mc-shell form.checkout_coupon,
.mc-shell .woocommerce-form-login-toggle,
.mc-shell form.login.woocommerce-form-login,
.mc-shell .woocommerce-info.showcoupon,
.mc-shell .woocommerce-info .showcoupon {
	display: none !important;
}

/* ─── Submit ──────────────────────────────────────────────────────────── */
.mc-shell .mc-place-order,
.mc-shell #place_order {
	width: 100%;
	padding: 16px;
	background: var(--c-primary);
	color: #fff !important;
	border: 0;
	border-radius: var(--radius);
	font-family: var(--font-display);
	font-size: 19px;
	font-weight: 400;
	cursor: pointer;
	margin-top: 8px;
	transition: background var(--t-base) var(--ease), transform 0.08s var(--ease);
	letter-spacing: 0.04em;
	text-align: center;
	text-decoration: none;
	display: inline-block;
}
.mc-shell .mc-place-order:hover,
.mc-shell #place_order:hover { background: var(--c-primary-hover); }
.mc-shell .mc-place-order:active,
.mc-shell #place_order:active { transform: translateY(1px); }
.mc-shell .mc-btn-inline { width: auto; padding: 12px 28px; }

.mc-shell .mc-privacy-notice {
	margin: 20px 0 8px;
}
.mc-shell .mc-privacy-notice p {
	margin: 0 0 8px;
	line-height: 1.55;
}
.mc-shell .mc-privacy-notice-ka {
	color: var(--c-text-muted);
	font-size: 13px;
}
.mc-shell .mc-privacy-notice-en {
	color: var(--c-text-subtle);
	font-size: 12px;
	margin-top: 6px;
}
.mc-shell .mc-privacy-notice a { color: var(--c-primary); text-decoration: none; }
.mc-shell .mc-privacy-notice a:hover { text-decoration: underline; }

.mc-shell .mc-checkout-footer {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--c-border);
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 12.5px;
}
.mc-shell .mc-checkout-footer a { color: var(--c-primary); text-decoration: none; }
.mc-shell .mc-checkout-footer a:hover { text-decoration: underline; }

/* ═══ SIDEBAR ═════════════════════════════════════════════════════════════ */
.mc-shell .mc-mobile-summary-toggle { display: none; }

.mc-shell .mc-summary-items { list-style: none; margin: 0; padding: 0 0 20px; }
.mc-shell .mc-summary-item {
	display: grid;
	grid-template-columns: 64px 1fr auto;
	gap: 14px;
	align-items: center;
	padding: 10px 0;
}
.mc-shell .mc-summary-thumb-wrap { position: relative; width: 64px; height: 64px; flex-shrink: 0; }
.mc-shell .mc-summary-thumb {
	width: 64px; height: 64px;
	border-radius: var(--radius);
	border: 1px solid var(--c-border);
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.mc-shell .mc-summary-thumb img,
.mc-shell .mc-summary-thumb-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mc-shell .mc-summary-qty-badge {
	position: absolute;
	top: -6px; right: -6px;
	min-width: 22px; height: 22px;
	padding: 0 6px;
	border-radius: 11px;
	background: var(--c-text-muted);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--c-surface-sidebar);
	line-height: 1;
}
.mc-shell .mc-summary-discount-tag {
	position: absolute;
	top: -6px; left: -6px;
	background: var(--c-primary);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	padding: 2px 5px;
	border-radius: 3px;
	line-height: 1.2;
	letter-spacing: 0.02em;
	border: 2px solid var(--c-surface-sidebar);
	z-index: 1;
}
.mc-shell .mc-summary-info { min-width: 0; }
.mc-shell .mc-summary-name { font-size: 13.5px; font-weight: 500; color: var(--c-text); line-height: 1.35; margin-bottom: 4px; }
.mc-shell .mc-summary-qty {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--c-border);
	border-radius: 5px;
	overflow: hidden;
	background: #fff;
}
.mc-shell .mc-qty-btn {
	width: 26px; height: 26px;
	background: transparent;
	border: 0;
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
	color: var(--c-text);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background var(--t-fast) var(--ease);
}
.mc-shell .mc-qty-btn:hover { background: var(--c-surface-alt); }
.mc-shell .mc-qty-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.mc-shell .mc-qty-input {
	width: 28px;
	text-align: center;
	border: 0;
	padding: 0;
	font: inherit;
	font-size: 13px;
	background: transparent;
	-moz-appearance: textfield;
}
.mc-shell .mc-qty-input::-webkit-outer-spin-button,
.mc-shell .mc-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.mc-shell .mc-summary-remove {
	display: block;
	margin-top: 4px;
	border: 0;
	background: transparent;
	color: var(--c-text-subtle);
	cursor: pointer;
	font-size: 11.5px;
	padding: 0;
	text-decoration: underline;
}
.mc-shell .mc-summary-remove:hover { color: var(--c-primary); }
.mc-shell .mc-summary-line {
	font-family: var(--font-display);
	font-weight: 400;
	color: var(--c-text);
	white-space: nowrap;
	font-size: 18px;
	letter-spacing: 0.01em;
	align-self: flex-start;
	padding-top: 4px;
}
.mc-shell .mc-summary-line-discounted { display: flex; flex-direction: column; align-items: flex-end; gap: 1px; }
.mc-shell .mc-summary-line-old { font-family: var(--font-display); font-size: 14px; color: var(--c-text-subtle); text-decoration: line-through; font-weight: 400; line-height: 1.2; letter-spacing: 0.01em; }
.mc-shell .mc-summary-line-new { font-family: var(--font-display); font-size: 18px; font-weight: 400; color: var(--c-text); line-height: 1.2; letter-spacing: 0.01em; }

/* Coupon */
.mc-shell .mc-coupon {
	display: flex;
	gap: 8px;
	padding: 20px 0;
	border-top: 1px solid var(--c-border);
}
.mc-shell .mc-coupon input {
	flex: 1;
	height: 44px;
	padding: 0 12px;
	border: 1px solid var(--c-border-strong);
	border-radius: var(--radius);
	background: #fff;
	font: inherit;
	font-size: 14px;
	color: var(--c-text);
}
.mc-shell .mc-coupon input:focus {
	outline: none;
	border-color: var(--c-focus);
	box-shadow: inset 0 0 0 1px var(--c-focus);
}
.mc-shell .mc-coupon input::placeholder { color: var(--c-text-muted); }
.mc-shell .mc-coupon-apply {
	padding: 0 18px;
	height: 44px;
	border-radius: var(--radius);
	background: var(--c-surface-alt);
	color: var(--c-text-muted);
	border: 1px solid var(--c-border-strong);
	cursor: pointer;
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.03em;
	transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease);
}
.mc-shell .mc-coupon-apply:hover { background: var(--c-text); color: #fff; border-color: var(--c-text); }

/* Totals */
.mc-shell .mc-summary-totals { margin: 0; padding: 20px 0 0; border-top: 1px solid var(--c-border); }
.mc-shell .mc-summary-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; font-size: 14px; color: var(--c-text-muted); }
.mc-shell .mc-summary-row dt { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 0; font-family: var(--font-body); }
.mc-shell .mc-summary-row dd { margin: 0; color: var(--c-text); font-family: var(--font-display); font-size: 16px; font-weight: 400; letter-spacing: 0.01em; }
.mc-shell .mc-summary-row.mc-summary-discount dd { color: var(--c-success); font-weight: 600; }
.mc-shell .mc-discount-chip {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	padding: 3px 4px 3px 8px;
	background: var(--c-surface-alt);
	border: 1px solid var(--c-border);
	border-radius: 4px;
	font-size: 11.5px;
	font-weight: 600;
	color: var(--c-text);
	letter-spacing: 0.03em;
	line-height: 1;
}
.mc-shell .mc-discount-chip-code { padding-right: 2px; }
.mc-shell .mc-discount-chip-remove {
	width: 18px; height: 18px;
	border: 0;
	background: transparent;
	color: var(--c-text-muted);
	cursor: pointer;
	font-size: 14px;
	line-height: 1;
	padding: 0;
	border-radius: 3px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease);
}
.mc-shell .mc-discount-chip-remove:hover { background: rgba(201, 42, 74, 0.1); color: var(--c-primary); }
.mc-shell .mc-summary-row.mc-summary-total {
	font-size: 16px;
	padding-top: 14px;
	margin-top: 10px;
	border-top: 1px solid var(--c-border);
	color: var(--c-text);
	font-weight: 600;
}
.mc-shell .mc-summary-total dt { font-family: var(--font-body); font-weight: 600; font-size: 16px; color: var(--c-text); }
.mc-shell .mc-summary-total dd {
	font-family: var(--font-display);
	font-size: 28px;
	font-weight: 400;
	color: var(--c-text);
	letter-spacing: 0.01em;
	line-height: 1;
}
.mc-shell .mc-currency-code {
	font-size: 12px;
	font-weight: 500;
	color: var(--c-text-muted);
	margin-right: 6px;
	text-transform: uppercase;
}

/* ─── WooCommerce notices inside the shell ────────────────────────────── */
.mc-shell .woocommerce-error,
.mc-shell .woocommerce-info,
.mc-shell .woocommerce-message,
.mc-shell .woocommerce-notice {
	list-style: none !important;
	padding: 12px 14px !important;
	border-radius: var(--radius);
	margin: 0 0 16px !important;
	font-size: 14px;
	background: var(--c-surface-alt);
	color: var(--c-text);
}
.mc-shell .woocommerce-error { background: #fff1f2 !important; color: #9b1c2a !important; border: 1px solid #f1b7bf; }
.mc-shell .woocommerce-error li { list-style: none !important; margin: 2px 0; padding: 0; color: inherit !important; }
/* Kill leaked theme rules that color <strong> / <a> inside validation errors blue. */
.mc-shell .woocommerce-error strong,
.mc-shell .woocommerce-error b,
.mc-shell .woocommerce-error a,
.mc-shell .woocommerce-error a:visited,
.mc-shell .woocommerce-error a:hover,
.mc-shell .woocommerce-error a:focus,
.mc-shell .woocommerce-error__link {
	color: inherit !important;
	background: transparent !important;
	text-decoration: none !important;
}
.mc-shell .woocommerce-error a:hover,
.mc-shell .woocommerce-error a:focus { text-decoration: underline !important; }
.mc-shell .woocommerce-error strong { font-weight: 600; }
.mc-shell .blockUI.blockOverlay { border-radius: var(--radius); }

/* ─── Empty state ─────────────────────────────────────────────────────── */
.mc-shell .mc-empty-shell { text-align: center; padding: 120px 24px; }
.mc-shell .mc-empty-shell h1 { font-size: 24px; font-weight: 600; margin: 0 0 20px; }

/* ─── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 960px) {
	.mc-shell .mc-checkout-page { display: flex; flex-direction: column; }
	.mc-shell .mc-checkout-side-col {
		order: -1;
		border-left: 0;
		border-bottom: 1px solid var(--c-border);
		position: sticky;
		top: 0;
		z-index: 10;
	}
	.mc-shell .mc-checkout-main { max-width: 720px; margin: 0 auto; padding: 24px 20px 60px; }
	.mc-shell .mc-checkout-side { max-width: 720px; margin: 0 auto; padding: 16px 20px; position: static; }
	.mc-shell .mc-mobile-summary-toggle {
		display: flex;
		width: 100%;
		background: transparent;
		border: 0;
		padding: 6px 0;
		font: inherit;
		font-size: 14px;
		color: var(--c-primary);
		cursor: pointer;
		justify-content: space-between;
		align-items: center;
	}
	.mc-shell .mc-mobile-summary-toggle .caret { transition: transform var(--t-base) var(--ease); display: inline-block; }
	.mc-shell .mc-checkout-side.is-open .mc-mobile-summary-toggle .caret { transform: rotate(180deg); }
	.mc-shell .mc-summary-body { display: none; padding-top: 16px; border-top: 1px solid var(--c-border); margin-top: 12px; }
	.mc-shell .mc-checkout-side.is-open .mc-summary-body { display: block; }
	.mc-shell .mc-summary-total-mobile { font-size: 18px; font-weight: 700; color: var(--c-text); }
}
@media (max-width: 500px) {
	.mc-shell .mc-field-row { grid-template-columns: 1fr; gap: 0; }
}

/* WC form-row resets (any stray form.checkout markup that leaks through) */
.mc-shell form.checkout .form-row { all: unset; display: block; }
.mc-shell form.checkout abbr { text-decoration: none; }

/* Honor user motion preference */
@media (prefers-reduced-motion: reduce) {
	.mc-shell *,
	.mc-shell *::before,
	.mc-shell *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   THANK-YOU PAGE
   Scoped under .mc-shell.mc-thankyou-shell — shares all tokens + fonts
   with the checkout shell, different layout only.
   ═══════════════════════════════════════════════════════════════════════════ */

.mc-shell.mc-thankyou-shell {
	max-width: 960px;
	margin: 40px auto;
	padding: 0 16px;
}

.mc-shell .mc-ty-page {
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

/* ─── Hero ──────────────────────────────────────────────────────────── */
.mc-shell .mc-ty-hero { padding: 34px 40px 24px; }
.mc-shell .mc-ty-logo { display: inline-block; margin-bottom: 22px; text-decoration: none; }

.mc-shell .mc-ty-order-label {
	font-size: 12px;
	color: var(--c-text-muted);
	margin-bottom: 6px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.mc-shell .mc-ty-headline {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 38px;
	letter-spacing: 0.01em;
	margin: 0 0 6px;
	color: var(--c-text);
	line-height: 1.1;
}

.mc-shell .mc-ty-subtitle {
	margin: 0 0 20px;
	font-size: 14px;
	color: var(--c-text-muted);
}

.mc-shell .mc-ty-notice {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 13px 16px;
	background: #fff1f2;
	border: 1px solid #f1b7bf;
	border-radius: var(--radius);
}
.mc-shell .mc-ty-notice-icon {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--c-primary);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	flex-shrink: 0;
	line-height: 1;
}
.mc-shell .mc-ty-notice-text {
	font-size: 13.5px;
	color: #9b1c2a;
	line-height: 1.5;
}
.mc-shell .mc-ty-notice-text strong {
	color: var(--c-text);
	font-weight: 600;
}

/* ─── Two-column body ────────────────────────────────────────────────── */
.mc-shell .mc-ty-grid {
	display: grid;
	grid-template-columns: 1fr 0.9fr;
	border-top: 1px solid var(--c-border);
}

/* Left column — customer details */
.mc-shell .mc-ty-details {
	padding: 28px 40px 32px;
	border-right: 1px solid var(--c-border);
}
.mc-shell .mc-ty-section { margin-bottom: 22px; }
.mc-shell .mc-ty-section-title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 19px;
	letter-spacing: 0.03em;
	margin: 0 0 8px;
	color: var(--c-text);
	line-height: 1.1;
}
.mc-shell .mc-ty-section-body {
	margin: 0;
	font-size: 13.5px;
	color: var(--c-text-muted);
	line-height: 1.55;
}
.mc-shell .mc-ty-emphasis {
	color: var(--c-text);
	font-weight: 500;
}

.mc-shell .mc-ty-continue {
	display: inline-block;
	margin-top: 6px;
	padding: 13px 32px;
	background: var(--c-primary);
	color: #fff !important;
	text-decoration: none;
	border-radius: var(--radius);
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.04em;
	transition: background .15s ease;
}
.mc-shell .mc-ty-continue:hover { background: var(--c-primary-hover); }

/* Right column — order summary */
.mc-shell .mc-ty-summary {
	background: var(--c-surface-sidebar);
	padding: 28px 28px 32px;
}
.mc-shell .mc-ty-summary-title { margin-bottom: 14px; }

.mc-shell .mc-ty-items { margin: 0 0 4px; }
.mc-shell .mc-ty-item {
	display: grid;
	grid-template-columns: 48px 1fr auto;
	gap: 12px;
	align-items: center;
	padding: 8px 0;
}
.mc-shell .mc-ty-item + .mc-ty-item { border-top: 1px solid rgba(0,0,0,0.04); }

.mc-shell .mc-ty-item-thumb { position: relative; width: 48px; height: 48px; flex-shrink: 0; }
.mc-shell .mc-ty-item-thumb img,
.mc-shell .mc-ty-item-thumb-placeholder {
	width: 48px;
	height: 48px;
	border: 1px solid var(--c-border);
	border-radius: 4px;
	object-fit: cover;
	display: block;
	background: var(--c-surface-alt);
}

.mc-shell .mc-ty-item-qty {
	position: absolute;
	top: -6px;
	right: -6px;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	border-radius: 10px;
	background: var(--c-text-muted);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--c-surface-sidebar);
	line-height: 1;
}

.mc-shell .mc-ty-item-name {
	font-size: 12.5px;
	line-height: 1.35;
	color: var(--c-text);
	min-width: 0;
}
.mc-shell .mc-ty-item-price {
	font-family: var(--font-display);
	font-size: 15px;
	color: var(--c-text);
	letter-spacing: 0.01em;
	white-space: nowrap;
}

/* wc_price() spits out nested spans — cascade fonts through cleanly. */
.mc-shell .mc-ty-item-price .woocommerce-Price-amount,
.mc-shell .mc-ty-total-row dd .woocommerce-Price-amount {
	font-family: inherit;
	font-size: inherit;
	letter-spacing: inherit;
	color: inherit;
}

.mc-shell .mc-ty-totals {
	border-top: 1px solid var(--c-border);
	padding-top: 14px;
	margin-top: 14px;
}
.mc-shell .mc-ty-total-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 4px 0;
	font-size: 13px;
	color: var(--c-text-muted);
	margin: 0;
}
.mc-shell .mc-ty-total-row dt,
.mc-shell .mc-ty-total-row dd { margin: 0; }
.mc-shell .mc-ty-total-row dd {
	font-family: var(--font-display);
	font-size: 15px;
	color: var(--c-text);
	letter-spacing: 0.01em;
}

.mc-shell .mc-ty-total-grand {
	padding-top: 12px;
	margin-top: 8px;
	border-top: 1px solid var(--c-border);
	align-items: baseline;
}
.mc-shell .mc-ty-total-grand dt {
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	color: var(--c-text);
}
.mc-shell .mc-ty-total-grand dd {
	font-size: 26px;
	font-weight: 400;
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
}
.mc-shell .mc-ty-currency-label {
	font-family: var(--font-body);
	font-size: 11px;
	color: var(--c-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 400;
	letter-spacing: 0.08em;
}

/* ─── Footer band ──────────────────────────────────────────────────── */
.mc-shell .mc-ty-footer {
	padding: 16px 40px;
	border-top: 1px solid var(--c-border);
	background: var(--c-surface-sidebar);
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	font-size: 12.5px;
	color: var(--c-text-muted);
}
.mc-shell .mc-ty-footer a {
	color: var(--c-primary);
	text-decoration: none;
}
.mc-shell .mc-ty-footer a:hover { text-decoration: underline; }
.mc-shell .mc-ty-footer-copy { margin-left: auto; }

/* ─── Mobile ───────────────────────────────────────────────────────── */
@media (max-width: 720px) {
	.mc-shell.mc-thankyou-shell {
		margin: 0;
		padding: 0;
	}
	.mc-shell .mc-ty-page {
		border: 0;
		border-radius: 0;
	}
	.mc-shell .mc-ty-grid {
		grid-template-columns: 1fr;
	}
	.mc-shell .mc-ty-details {
		padding: 24px 22px 28px;
		border-right: 0;
		border-bottom: 1px solid var(--c-border);
	}
	.mc-shell .mc-ty-summary { padding: 24px 22px 28px; }
	.mc-shell .mc-ty-hero { padding: 28px 22px 20px; }
	.mc-shell .mc-ty-footer { padding: 14px 22px; }
	.mc-shell .mc-ty-headline { font-size: 30px; }
	.mc-shell .mc-ty-footer-copy {
		margin-left: 0;
		width: 100%;
	}
}

/* ============================================================================
   VIVERE Brand Overrides
   ──────────────────────────────────────────────────────────────────────────
   Display font (BPG Nino Mtavruli) is a Georgian Mtavruli display face —
   beautiful for headings but awkward for Latin digits/prices. Override those
   selectors to use the body font (Google Sans) for cleaner numeric rendering.

   CTA buttons follow VIVERE's small-caps letter-spaced style (matches the
   product page "კალათაში დამატება" button).
   ============================================================================ */

/* ── Prices / numeric displays → body font for clean numerals ── */
.mc-shell .mc-summary-line-old,
.mc-shell .mc-summary-line-new,
.mc-shell .mc-summary-row dd,
.mc-shell .mc-summary-total dd,
.mc-shell .mc-ty-item-price,
.mc-shell .mc-ty-total-row dd,
.mc-shell .mc-ty-total-grand dd {
	font-family: var(--font-body) !important;
	font-weight: 500 !important;
	letter-spacing: 0 !important;
	font-feature-settings: 'tnum';
}
.mc-shell .mc-summary-total dd,
.mc-shell .mc-ty-total-grand dd {
	color: var(--c-primary) !important;
}

/* ── CTA buttons — VIVERE small-caps letter-spaced ── */
.mc-shell .mc-place-order,
.mc-shell #place_order,
.mc-shell .mc-ty-continue {
	font-family: var(--font-body) !important;
	font-size: 10px !important;
	font-weight: 500 !important;
	letter-spacing: 0.22em !important;
	text-transform: uppercase !important;
	padding: 18px 24px !important;
	background: var(--c-text) !important;
	position: relative;
	overflow: hidden;
	transition: gap 0.3s var(--ease), color 0.3s !important;
}
.mc-shell .mc-place-order::before,
.mc-shell #place_order::before,
.mc-shell .mc-ty-continue::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--c-primary);
	transform: translateX(-101%);
	transition: transform 0.42s var(--ease);
	z-index: 0;
}
.mc-shell .mc-place-order:hover::before,
.mc-shell #place_order:hover::before,
.mc-shell .mc-ty-continue:hover::before {
	transform: translateX(0);
}
.mc-shell .mc-place-order > *,
.mc-shell #place_order > *,
.mc-shell .mc-ty-continue > * {
	position: relative;
	z-index: 1;
}
.mc-shell .mc-place-order:hover,
.mc-shell #place_order:hover,
.mc-shell .mc-ty-continue:hover {
	background: var(--c-text) !important;
}

/* ── Eyebrow pattern (line + small caps) — VIVERE signature ── */
.mc-shell .mc-section-head::before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 1px;
	background: var(--c-primary);
	margin-right: 12px;
	flex-shrink: 0;
	align-self: center;
}

/* ── Form inputs — sharp borders, no radius ── */
.mc-shell .mc-input,
.mc-shell .mc-select,
.mc-shell .mc-textarea {
	border-radius: 0 !important;
	transition: border-color 0.2s !important;
}
.mc-shell .mc-input:focus,
.mc-shell .mc-select:focus,
.mc-shell .mc-textarea:focus {
	border-color: var(--c-primary) !important;
	box-shadow: none !important;
}

/* ── Selection color → verde ── */
.mc-shell ::selection {
	background: rgba(86, 102, 62, 0.2) !important;
	color: inherit !important;
}

/* ── Discount / coupon chip → verde border ── */
.mc-shell .mc-discount-chip {
	background: rgba(86, 102, 62, 0.06);
	border: 1px solid var(--c-primary);
	color: var(--c-primary);
}
