/* =================================================
   ASTRA CART DRAWER
   ================================================= */
#astra-mobile-cart-drawer {
	position: fixed;
	inset: 0 0 0 auto;
	width: 420px;
	max-width: 92vw;
	background: var(--paper);
	transform: translateX(100%);
	transition: transform 0.35s cubic-bezier(.22, .61, .36, 1), box-shadow 0.2s ease;
	z-index: 2147483647;
	display: flex;
	flex-direction: column;
	overscroll-behavior: contain;
}

#astra-mobile-cart-drawer.active {
	transform: translateX(0);
	box-shadow: -24px 0 72px rgba(0, 0, 0, 0.2);
}

.ast-cart-overlay {
	position: fixed;
	inset: 0;
	z-index: 2147483646;
	background: rgba(27, 27, 27, 0.42);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.ast-cart-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

#astra-mobile-cart-drawer .astra-cart-drawer-header {
	position: sticky;
	top: 0;
	z-index: 3;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding: 14px 16px;
	background: color-mix(in oklab, var(--rose) 90%, white 10%);
	border-bottom: 1px solid #e9d9dc;
}

#astra-mobile-cart-drawer .astra-cart-drawer-title {
	grid-column: 2;
	margin: 0;
	text-align: center;
	font-family: "Cormorant Garamond", serif;
	font-weight: 700;
	font-size: 22px;
	color: var(--ink);
}

#astra-mobile-cart-drawer .astra-cart-drawer-close {
	grid-column: 3;
	justify-self: end;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	display: grid;
	place-items: center;
	padding: 0;
	line-height: 0;
	border: 1px solid #e0d3d6;
	background: #fff;
	color: var(--ink);
}

#astra-mobile-cart-drawer .astra-cart-drawer-close svg {
	width: 18px;
	height: 18px;
	display: block;
}

#astra-mobile-cart-drawer .astra-cart-drawer-content {
	padding: 0;
	height: calc(100dvh - 70px);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

#astra-mobile-cart-drawer .widget_shopping_cart_content {
	display: flex;
	flex-direction: column;
	height: 100%;
	gap: 12px;
	min-height: 0;
}

#astra-mobile-cart-drawer .elementor-menu-cart__products {
	display: grid;
	gap: var(--card-gap);
	margin: 0 !important;
	min-height: 0 !important;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart,
#astra-mobile-cart-drawer .woocommerce-mini-cart li {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart {
	flex: 1 1 auto;
	display: flex !important;
	flex-direction: column;
	gap: 12px;
	overflow-y: auto;
	padding: 16px !important;
	min-height: 0;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item {
	position: relative;
	display: flex !important;
	flex-direction: column;
	justify-content: center !important;
	align-items: flex-start !important;
	gap: 8px !important;
	padding: 16px 40px 16px 16px !important;
	background: #fff;
	border: 1px solid #e9d9dc;
	border-radius: 16px;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
	width: 100%;
	box-sizing: border-box;
	min-height: 0 !important;
	cursor: pointer !important;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item:last-child {
	border-bottom: 0;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item > * {
	float: none !important;
	min-width: 0;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item.spdm-mini-cart-normalized {
	display: grid !important;
	grid-template-columns: 68px minmax(0, 1fr);
	grid-template-areas:
		"media title"
		"media savings"
		"media price";
	align-items: start !important;
	column-gap: 12px;
	row-gap: 4px;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item > a.remove {
	position: absolute !important;
	top: 14px !important;
	right: 14px !important;
	margin: 0 !important;
	width: 28px !important;
	height: 28px !important;
	min-width: 28px;
	min-height: 28px;
	border-radius: 8px !important;
	border: 1px solid #e0d3d6;
	background: #fff;
	color: #8e8e8e !important;
	display: grid !important;
	place-items: center;
	line-height: 1 !important;
	text-decoration: none;
	opacity: 1 !important;
	z-index: 10;
	transition: all 0.2s ease;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item > a.remove::before {
	display: none !important;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item > a.remove:hover {
	background: var(--rose) !important;
	color: var(--burgundy) !important;
	border-color: var(--burgundy) !important;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item > a.remove .ahfb-svg-iconset,
#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item > a.remove svg {
	display: block;
	width: 14px !important;
	height: 14px !important;
	fill: currentColor !important;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item > a:not(.remove) {
	min-height: 0;
	margin: 0 !important;
	padding: 0 !important;
	display: flex !important;
	align-items: flex-start !important;
	gap: 12px !important;
	color: var(--ink);
	text-decoration: none;
	font-size: 14px;
	line-height: 1.3;
	font-weight: 700;
	word-break: break-word;
	position: relative;
	z-index: 2;
	width: 100%;
	padding-right: 4px;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item.spdm-mini-cart-normalized > a.spdm-mini-cart-media-link {
	grid-area: media;
	display: block !important;
	width: 68px !important;
	min-width: 68px !important;
	max-width: 68px !important;
	margin: 0 !important;
	padding: 0 !important;
	align-self: start !important;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item.spdm-mini-cart-normalized > a.spdm-mini-cart-title-link {
	grid-area: title;
	display: block !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	font-size: 14px;
	line-height: 1.3;
	font-weight: 700;
	color: var(--ink);
	text-decoration: none;
	word-break: break-word;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item > a:not(.remove) + a:not(.remove) {
	margin-top: 2px !important;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item img {
	position: static !important;
	transform: none !important;
	width: 68px !important;
	height: 68px !important;
	min-width: 68px;
	min-height: 68px;
	max-width: 68px;
	max-height: 68px;
	margin: 0 !important;
	padding: 4px;
	object-fit: contain;
	object-position: center;
	border-radius: 12px !important;
	border: 1px solid rgba(0, 0, 0, 0.06);
	background: #fff;
	box-shadow: inset 0 0 0 1px rgba(122, 59, 71, 0.06);
	float: none !important;
	flex: 0 0 68px !important;
	align-self: flex-start !important;
	pointer-events: none !important;
	z-index: 2 !important;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item.spdm-mini-cart-normalized > a.spdm-mini-cart-media-link img {
	display: block !important;
	width: 68px !important;
	height: 68px !important;
	min-width: 68px !important;
	min-height: 68px !important;
	max-width: 68px !important;
	max-height: 68px !important;
	margin: 0 !important;
	padding: 4px;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	object-position: center;
	border-radius: 12px !important;
	border: 1px solid rgba(0, 0, 0, 0.06);
	background: #fff;
	box-shadow: inset 0 0 0 1px rgba(122, 59, 71, 0.06);
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item > a:not(.remove) .sp-dm-mini-cart-savings {
	display: block !important;
	width: 100% !important;
	margin-top: 4px !important;
	margin-bottom: 2px !important;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item > a:not(.remove) br {
	display: none;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item .sp-dm-mini-cart-savings {
	display: block !important;
	width: 100% !important;
	margin-top: 2px !important;
	margin-bottom: 2px !important;
	font-size: 11px;
	line-height: 1.2 !important;
	font-weight: 600;
	color: #27ae60;
	position: relative;
	z-index: 2;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item.spdm-mini-cart-normalized > .sp-dm-mini-cart-savings {
	grid-area: savings;
	margin: 0 !important;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item .sp-dm-mini-cart-savings .amount {
	font-weight: 700;
	color: currentColor;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item .sp-dm-savings-data {
	display: none !important;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item > dl.variation {
	display: block;
	margin: 0 !important;
	width: 100%;
	padding: 0;
	color: var(--ink);
	position: relative;
	z-index: 2;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item > dl.variation dt {
	display: none;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item > dl.variation dd {
	margin: 0 !important;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item > dl.variation dd p {
	margin: 0;
	font-size: 12px;
	line-height: 1.45;
	color: rgba(27, 27, 27, 0.75);
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item > dl.variation .sp-dm-savings-label {
	display: inline-block;
	margin-right: 6px;
	color: rgba(27, 27, 27, 0.65);
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item > dl.variation .sp-dm-savings-amount {
	font-weight: 700;
	color: var(--ink);
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item > .quantity {
	display: flex !important;
	align-items: center !important;
	gap: 6px !important;
	flex-wrap: wrap !important;
	padding-left: 0;
	margin: 0 !important;
	width: 100%;
	color: var(--ink);
	font-size: 14px;
	line-height: 1.35;
	font-weight: 700;
	white-space: normal;
	position: relative;
	z-index: 2;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item.spdm-mini-cart-normalized > .quantity {
	grid-area: price;
	margin: 0 !important;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item > .quantity .sp-dm-price-old del {
	color: #999;
	font-size: 12px;
	font-weight: 500;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item > .quantity .sp-dm-price-new {
	font-weight: 800;
	color: var(--ink);
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item > .quantity .amount {
	font-weight: 700;
	font-variant-numeric: tabular-nums;
}

#astra-mobile-cart-drawer .elementor-menu-cart__product {
	display: grid;
	grid-template-columns: var(--thumb) minmax(0, 1fr) 24px;
	grid-template-areas:
		"image name remove"
		"image price remove";
	align-items: start;
	column-gap: 12px;
	row-gap: 6px;
	padding: 12px;
	background: #fff;
	border: 1px solid #e9d9dc;
	border-radius: var(--radius);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
	min-height: auto !important;
	width: 100%;
	box-sizing: border-box;
}

#astra-mobile-cart-drawer .elementor-menu-cart__product > * {
	min-width: 0;
	float: none !important;
}

#astra-mobile-cart-drawer .elementor-menu-cart__product-image {
	grid-area: image;
	width: var(--thumb);
	height: var(--thumb);
	display: grid;
	place-items: center;
	align-self: start;
	margin: 0 !important;
}

#astra-mobile-cart-drawer .elementor-menu-cart__product-image img {
	width: var(--thumb);
	height: var(--thumb);
	object-fit: cover;
	border-radius: 12px;
	background: #fff;
	box-shadow: inset 0 0 0 1px #eee;
}

#astra-mobile-cart-drawer .elementor-menu-cart__product-name {
	grid-area: name;
	margin: 0 !important;
	align-self: start;
	width: auto !important;
	padding-right: 0 !important;
}

#astra-mobile-cart-drawer .elementor-menu-cart__product-name a {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 15px;
	line-height: 1.25;
	font-weight: 700;
	color: var(--ink);
	word-break: break-word;
}

#astra-mobile-cart-drawer .elementor-menu-cart__product-price {
	grid-area: price;
	justify-self: start;
	align-self: start;
	white-space: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.35;
	color: var(--ink);
	margin: 0 !important;
	font-variant-numeric: tabular-nums;
	width: auto !important;
	padding-right: 0 !important;
}

#astra-mobile-cart-drawer .elementor-menu-cart__product-remove {
	grid-area: remove;
	position: static;
	align-self: start;
	justify-self: end;
	z-index: 1;
	margin: 0 !important;
	width: 24px;
	height: 24px;
}

#astra-mobile-cart-drawer .elementor-menu-cart__product-remove .elementor_remove_from_cart_button {
	display: none !important;
}

#astra-mobile-cart-drawer .elementor-menu-cart__product-remove .remove_from_cart_button {
	width: 24px;
	height: 24px;
	padding: 0;
	border-radius: 8px;
	border: 1px solid #e5d9dc;
	background: #fff;
	color: #8e8e8e;
	display: grid;
	place-items: center;
	text-indent: 0;
	line-height: 1;
	text-decoration: none;
}

#astra-mobile-cart-drawer .elementor-menu-cart__product-remove .remove_from_cart_button::before {
	content: "\00d7";
	font-size: 16px;
}

#astra-mobile-cart-drawer .elementor-menu-cart__subtotal {
	margin-top: calc(var(--cart-gap) - 2px);
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 12px;
	padding: 12px;
	border-radius: 12px;
	background: #fff;
	border: 1px solid #e9d9dc;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart__total {
	margin: auto 0 16px 0 !important;
	display: flex !important;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 14px 16px !important;
	margin-left: 16px !important;
	margin-right: 16px !important;
	border-radius: 12px;
	background: #fff;
	border: 1px solid #e9d9dc;
	color: var(--ink);
}

#astra-mobile-cart-drawer .elementor-menu-cart__subtotal strong {
	font-weight: 600;
	color: var(--ink);
}

#astra-mobile-cart-drawer .woocommerce-mini-cart__total strong {
	font-weight: 600;
	color: var(--ink);
}

#astra-mobile-cart-drawer .elementor-menu-cart__subtotal .amount {
	font-weight: 800;
	letter-spacing: 0.2px;
	font-variant-numeric: tabular-nums;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart__total .amount {
	font-weight: 800;
	font-size: 17px;
	letter-spacing: 0.2px;
	font-variant-numeric: tabular-nums;
}

#astra-mobile-cart-drawer .elementor-menu-cart__footer-buttons {
	position: sticky;
	bottom: 0;
	z-index: 2;
	background: linear-gradient(to top, var(--paper) 75%, transparent);
	padding: 10px 16px max(12px, env(safe-area-inset-bottom));
	display: grid;
	gap: 10px;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart__buttons.buttons {
	margin: 0 !important;
	display: grid;
	gap: 10px;
	padding: 0 16px 16px !important;
	background: var(--paper);
}

#astra-mobile-cart-drawer .woocommerce-mini-cart__buttons.buttons + .woocommerce-mini-cart__buttons.buttons {
	margin-top: -6px !important;
}

#astra-mobile-cart-drawer .elementor-menu-cart__footer-buttons .elementor-button,
#astra-mobile-cart-drawer .woocommerce-mini-cart__buttons .button {
	border-radius: 18px !important;
	padding: 14px 18px !important;
	font-weight: 700 !important;
	font-size: 16px !important;
	width: 100% !important;
	display: inline-flex !important;
	justify-content: center !important;
	align-items: center !important;
	transition: transform 0.08s ease, filter 0.15s ease, box-shadow 0.15s ease !important;
	-webkit-tap-highlight-color: transparent;
}

#astra-mobile-cart-drawer .elementor-menu-cart__footer-buttons .elementor-button--view-cart,
#astra-mobile-cart-drawer .woocommerce-mini-cart__buttons .button:not(.checkout) {
	display: none !important;
}

#astra-mobile-cart-drawer .elementor-menu-cart__footer-buttons .elementor-button--checkout,
#astra-mobile-cart-drawer .woocommerce-mini-cart__buttons .button.checkout {
	background: linear-gradient(135deg, var(--burgundy), var(--burgundyD)) !important;
	color: #fff !important;
	border: 0 !important;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12) !important;
}

#astra-mobile-cart-drawer .elementor-menu-cart__footer-buttons .elementor-button--checkout .elementor-button-text {
	color: #fff !important;
}

#astra-mobile-cart-drawer .elementor-menu-cart__footer-buttons .elementor-button--checkout:hover,
#astra-mobile-cart-drawer .woocommerce-mini-cart__buttons .button.checkout:hover {
	filter: brightness(1.06) !important;
	transform: translateY(-1px) !important;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16) !important;
}

#astra-mobile-cart-drawer .elementor-menu-cart__footer-buttons .elementor-button--checkout:active,
#astra-mobile-cart-drawer .woocommerce-mini-cart__buttons .button.checkout:active {
	transform: translateY(0) !important;
	filter: none !important;
}

#astra-mobile-cart-drawer .elementor-menu-cart__footer-buttons .elementor-button:focus-visible,
#astra-mobile-cart-drawer .woocommerce-mini-cart__buttons .button:focus-visible {
	outline: 2px solid var(--gold) !important;
	outline-offset: 2px !important;
}

#astra-mobile-cart-drawer .elementor-menu-cart__footer-buttons .elementor-button[disabled],
#astra-mobile-cart-drawer .elementor-menu-cart__footer-buttons .elementor-button.elementor-disabled,
#astra-mobile-cart-drawer .woocommerce-mini-cart__buttons .button.disabled,
#astra-mobile-cart-drawer .woocommerce-mini-cart__buttons .button:disabled {
	opacity: 0.55 !important;
	filter: grayscale(0.15) !important;
	pointer-events: none !important;
	transform: none !important;
	box-shadow: none !important;
}

@media (max-width: 480px) {
	#astra-mobile-cart-drawer .astra-cart-drawer-title {
		font-size: 20px;
	}

	#astra-mobile-cart-drawer .astra-cart-drawer-content {
		height: calc(100dvh - 70px);
	}

	#astra-mobile-cart-drawer .widget_shopping_cart_content {
		gap: 10px;
	}

	#astra-mobile-cart-drawer .woocommerce-mini-cart {
		padding: 12px !important;
	}

	#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item {
		padding: 14px 38px 14px 14px !important;
		gap: 6px !important;
	}

	#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item.spdm-mini-cart-normalized {
		grid-template-columns: 56px minmax(0, 1fr);
		column-gap: 10px;
	}

	#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item > a:not(.remove) {
		font-size: 14px;
		gap: 10px !important;
	}

	#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item img {
		width: 56px !important;
		height: 56px !important;
		min-width: 56px;
		min-height: 56px;
		max-width: 56px;
		max-height: 56px;
		flex-basis: 56px !important;
		margin: 0 !important;
	}

	#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item.spdm-mini-cart-normalized > a.spdm-mini-cart-media-link {
		width: 56px !important;
		min-width: 56px !important;
		max-width: 56px !important;
	}

	#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item.spdm-mini-cart-normalized > a.spdm-mini-cart-media-link img {
		width: 56px !important;
		height: 56px !important;
		min-width: 56px !important;
		min-height: 56px !important;
		max-width: 56px !important;
		max-height: 56px !important;
	}

	#astra-mobile-cart-drawer .woocommerce-mini-cart-item.mini_cart_item > .quantity {
		font-size: 13px;
	}

	#astra-mobile-cart-drawer .woocommerce-mini-cart__total {
		margin-left: 12px !important;
		margin-right: 12px !important;
		padding: 14px !important;
	}

	#astra-mobile-cart-drawer .woocommerce-mini-cart__buttons.buttons {
		padding: 0 12px 12px !important;
	}

	#astra-mobile-cart-drawer .elementor-menu-cart__product {
		grid-template-columns: 44px minmax(0, 1fr) 24px;
		padding: 10px;
	}

	#astra-mobile-cart-drawer .elementor-menu-cart__product-image,
	#astra-mobile-cart-drawer .elementor-menu-cart__product-image img {
		width: 44px;
		height: 44px;
	}

	#astra-mobile-cart-drawer .elementor-menu-cart__product-name a {
		font-size: 14px;
	}

	#astra-mobile-cart-drawer .elementor-menu-cart__product-price {
		font-size: 13px;
	}

	:root {
		--card-gap: 8px;
		--cart-gap: 8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	#astra-mobile-cart-drawer {
		transition: none !important;
	}
}

/* Emergency fallback for Astra/Woo raw mini-cart markup.
   Keep it deliberately simple until the JS normalizer rebuilds the item. */
#astra-mobile-cart-drawer .woocommerce-mini-cart-item:not(.spdm-mini-cart-normalized) {
	display: block !important;
	padding: 15px 35px 15px 87px !important;
	position: relative !important;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item:not(.spdm-mini-cart-normalized) > a:not(.remove),
#astra-mobile-cart-drawer .woocommerce-mini-cart-item:not(.spdm-mini-cart-normalized) > .sp-dm-mini-cart-savings,
#astra-mobile-cart-drawer .woocommerce-mini-cart-item:not(.spdm-mini-cart-normalized) > .quantity,
#astra-mobile-cart-drawer .woocommerce-mini-cart-item:not(.spdm-mini-cart-normalized) > dl.variation {
	display: block !important;
	width: 100% !important;
	min-width: 0 !important;
	margin: 0 0 4px 0 !important;
	padding: 0 !important;
	position: static !important;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item:not(.spdm-mini-cart-normalized) > a:not(.remove) {
	font-size: 13px !important;
	line-height: 1.28 !important;
	word-break: break-word !important;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item:not(.spdm-mini-cart-normalized) > a:nth-of-type(2) {
	min-height: 60px !important;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item:not(.spdm-mini-cart-normalized) > a:not(.remove) img {
	position: absolute !important;
	top: 15px !important;
	left: 15px !important;
	display: block !important;
	width: 60px !important;
	min-width: 60px !important;
	max-width: 60px !important;
	height: 60px !important;
	min-height: 60px !important;
	max-height: 60px !important;
	flex: 0 0 60px !important;
	margin: 0 !important;
	padding: 3px !important;
	object-fit: contain !important;
	object-position: center !important;
	float: none !important;
	transform: none !important;
	right: auto !important;
	bottom: auto !important;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item:not(.spdm-mini-cart-normalized) .sp-dm-mini-cart-savings,
#astra-mobile-cart-drawer .woocommerce-mini-cart-item:not(.spdm-mini-cart-normalized) .quantity {
	padding-left: 0 !important;
	margin-top: 3px !important;
	display: block !important;
}

#astra-mobile-cart-drawer .woocommerce-mini-cart-item:not(.spdm-mini-cart-normalized) a.remove {
	position: absolute !important;
	top: 15px !important;
	right: 10px !important;
	left: auto !important;
}

@media (max-width: 480px) {
	#astra-mobile-cart-drawer .woocommerce-mini-cart-item:not(.spdm-mini-cart-normalized) {
		padding: 14px 34px 14px 78px !important;
	}

	#astra-mobile-cart-drawer .woocommerce-mini-cart-item:not(.spdm-mini-cart-normalized) > a:nth-of-type(2) {
		min-height: 52px !important;
	}

	#astra-mobile-cart-drawer .woocommerce-mini-cart-item:not(.spdm-mini-cart-normalized) > a:not(.remove) img {
		top: 14px !important;
		left: 14px !important;
		width: 52px !important;
		min-width: 52px !important;
		max-width: 52px !important;
		height: 52px !important;
		min-height: 52px !important;
		max-height: 52px !important;
	}
}
