
/* Vecchia Magia Keeper's Ledger — additive conversion layer only. */
.vm-keeper-panel,
.vm-keeper-purchase-note,
.vm-keeper-checkout-note,
.vm-shipping-progress {
	--vm-keeper-ink: #2b241d;
	--vm-keeper-green: #3f4b2b;
	--vm-keeper-gold: #8a6f2c;
	--vm-keeper-line: rgba(115, 91, 47, .28);
	--vm-keeper-paper: #f5eddf;
	color: var(--vm-keeper-ink);
}

.vm-keeper-panel {
	margin: 0 0 24px;
	padding: 22px 24px 20px;
	border: 1px solid var(--vm-keeper-line);
	background:
		linear-gradient(135deg, rgba(255,255,255,.34), rgba(255,255,255,0)),
		var(--vm-keeper-paper);
	box-shadow: 0 10px 30px rgba(48, 37, 23, .05);
}

.vm-keeper-panel__heading {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 7px;
}

.vm-keeper-panel__heading h3 {
	margin: 0 !important;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(23px, 2vw, 30px);
	font-weight: 400;
	line-height: 1.1;
	color: var(--vm-keeper-ink);
}

.vm-keeper-kicker {
	margin: 0 !important;
	font-size: 10px !important;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--vm-keeper-gold);
}

.vm-keeper-copy {
	margin: 0 0 15px !important;
	font-size: 14px;
	line-height: 1.55;
	color: #665b50;
}

.vm-keeper-marks {
	display: grid;
	grid-template-columns: repeat(8, 30px);
	gap: 7px;
	align-items: center;
	margin: 12px 0 13px;
}

.vm-keeper-mark {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(92, 72, 39, .35);
	border-radius: 50%;
	background: rgba(255,255,255,.26);
	color: rgba(85, 70, 43, .34);
}

.vm-keeper-mark span {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 9px;
	letter-spacing: -.04em;
}

.vm-keeper-mark.is-earned {
	border-color: #6e5d28;
	background: #4a5129;
	color: #d8bd6b;
	box-shadow: inset 0 0 0 2px rgba(211,181,97,.18);
}

.vm-keeper-footnote {
	margin: 0 !important;
	font-size: 11px !important;
	line-height: 1.5;
	color: #7b6d60;
}

.vm-keeper-panel--cart {
	margin-bottom: 18px;
}

.vm-keeper-account-hint {
	margin: -12px 0 20px !important;
	font-size: 12px;
	color: #6c6056;
}
.vm-keeper-account-hint a {
	color: #745c27;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.vm-keeper-purchase-note,
.vm-keeper-checkout-note {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 13px 0 0;
	padding: 11px 13px;
	border-top: 1px solid var(--vm-keeper-line);
	border-bottom: 1px solid var(--vm-keeper-line);
	background: rgba(244, 236, 221, .56);
	font-size: 12px;
	line-height: 1.45;
	color: #5e5247;
}

.vm-keeper-checkout-note {
	margin: 0 0 18px;
}

.vm-keeper-mini-seal {
	flex: 0 0 27px;
	display: grid;
	place-items: center;
	width: 27px;
	height: 27px;
	border: 1px solid #75612e;
	border-radius: 50%;
	background: #48502b;
	color: #d9bf72;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 9px;
}

.vm-shipping-progress {
	margin: 0 0 16px;
	padding: 12px 14px;
	border: 1px solid var(--vm-keeper-line);
	background: #faf5ec;
}

.vm-shipping-progress__row {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: baseline;
	font-size: 12px;
	color: #5c5148;
}

.vm-shipping-progress__row > span {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	color: #302821;
}

.vm-shipping-progress__row strong {
	font-size: 11px;
	font-weight: 500;
}

.vm-shipping-progress__track {
	height: 6px;
	margin-top: 9px;
	overflow: hidden;
	background: #e6dbc8;
}

.vm-shipping-progress__track span {
	display: block;
	height: 100%;
	background: #78672c;
	transition: width .25s ease;
}

.woocommerce div.product p.stock {
	color: #675624;
	font-weight: 600;
}

@media (max-width: 640px) {
	.vm-keeper-panel {
		padding: 18px 16px;
	}
	.vm-keeper-panel__heading {
		display: block;
	}
	.vm-keeper-kicker {
		margin-bottom: 5px !important;
	}
	.vm-keeper-marks {
		grid-template-columns: repeat(8, 25px);
		gap: 5px;
	}
	.vm-keeper-mark {
		width: 25px;
		height: 25px;
	}
	.vm-shipping-progress__row {
		display: block;
	}
	.vm-shipping-progress__row strong {
		display: block;
		margin-top: 3px;
	}
}
