/*
 * ParentRoute Cart Drawer
 */

.pr-cart-drawer {
	--pr-drawer-width: 460px;
	--pr-drawer-text: #17231e;
	--pr-drawer-muted: #68746d;
	--pr-drawer-accent: #78917f;
	--pr-drawer-border: rgba(23, 35, 30, 0.1);
	--pr-drawer-surface: #ffffff;
	--pr-drawer-soft: #f7f8f5;

	position: fixed;
	z-index: 999999;
	inset: 0;
	display: block;
	visibility: hidden;
	pointer-events: none;
	transition: visibility 0s linear 300ms;
}

.pr-cart-drawer,
.pr-cart-drawer *,
.pr-cart-drawer *::before,
.pr-cart-drawer *::after {
	box-sizing: border-box;
}

.pr-cart-drawer-open {
	overflow: hidden;
}

.pr-cart-drawer__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: rgba(10, 18, 14, 0.54);
	opacity: 0;
	cursor: pointer;
	transition: opacity 260ms ease;
}

.pr-cart-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	width: calc(100% - 40px);
	max-width: 430px;
	height: 100dvh;
	max-height: 100dvh;
	margin: 0 0 0 auto;
	padding: 0;
	border: 0;
	border-radius: 26px 0 0 26px;
	background: var(--pr-drawer-surface);
	color: var(--pr-drawer-text);
	box-shadow: -28px 0 80px rgba(10, 18, 14, 0.18);
	outline: none;
	transform: translateX(102%);
	transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pr-cart-drawer.is-open {
	visibility: visible;
	pointer-events: auto;
	transition-delay: 0s;
}

.pr-cart-drawer.is-open .pr-cart-drawer__overlay {
	opacity: 1;
}

.pr-cart-drawer.is-open .pr-cart-drawer__panel {
	transform: translateX(0);
}

.pr-cart-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex: 0 0 auto;
	min-height: 82px;
	padding: 20px 24px;
	border-bottom: 1px solid var(--pr-drawer-border);
}

.pr-cart-drawer__heading {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.pr-cart-drawer__title {
	margin: 0;
	color: var(--pr-drawer-text);
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.04em;
}

.pr-cart-drawer__count {
	display: inline-grid;
	place-items: center;
	min-width: 25px;
	height: 25px;
	padding: 0 7px;
	border-radius: 999px;
	background: rgba(120, 145, 127, 0.13);
	color: var(--pr-drawer-text);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.pr-cart-drawer__close {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--pr-drawer-text);
	cursor: pointer;
	transition:
		background-color 160ms ease,
		transform 160ms ease;
}

.pr-cart-drawer__close:hover {
	background: var(--pr-drawer-soft);
	transform: rotate(2deg);
}

.pr-cart-drawer__contents {
	display: flex;
	flex: 1 1 auto;
	min-height: 0;
	flex-direction: column;
}

.pr-cart-drawer__body {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 22px 24px;
}

.pr-cart-drawer__items {
	display: grid;
	gap: 0;
}

.pr-cart-drawer__item {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	gap: 16px;
	padding: 0 0 22px;
	margin: 0 0 22px;
	border-bottom: 1px solid var(--pr-drawer-border);
}

.pr-cart-drawer__item:last-child {
	margin-bottom: 0;
}

.pr-cart-drawer__media {
	width: 76px;
}

.pr-cart-drawer__image-link {
	display: block;
	overflow: hidden;
	border-radius: 14px;
}

.pr-cart-drawer__product-image {
	display: block;
	width: 76px;
	height: 98px;
	margin: 0;
	border-radius: 14px;
	object-fit: cover;
}

.pr-cart-drawer__product {
	min-width: 0;
}

.pr-cart-drawer__product-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
}

.pr-cart-drawer__product-info {
	min-width: 0;
}

.pr-cart-drawer__product-title {
	display: block;
	margin: 0;
	color: var(--pr-drawer-text);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.02em;
	text-decoration: none;
	overflow-wrap: anywhere;
}

.pr-cart-drawer__product-title:hover {
	color: var(--pr-drawer-accent);
}

.pr-cart-drawer__unit-price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 5px;
	margin-top: 7px;
	color: var(--pr-drawer-muted);
	font-size: 13px;
	line-height: 1.4;
}

.pr-cart-drawer__unit-price del {
	color: #9ba39e;
	opacity: 0.78;
	font-weight: 400;
}

.pr-cart-drawer__unit-price ins {
	color: var(--pr-drawer-muted);
	font-weight: 500;
	text-decoration: none;
}

.pr-cart-drawer__remove {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	margin: 0;
	padding: 0;
	border: 1px solid var(--pr-drawer-border);
	border-radius: 50%;
	background: #ffffff;
	color: var(--pr-drawer-muted);
	cursor: pointer;
	transition:
		background-color 160ms ease,
		border-color 160ms ease,
		color 160ms ease;
}

.pr-cart-drawer__remove:hover {
	border-color: rgba(160, 67, 67, 0.18);
	background: rgba(160, 67, 67, 0.06);
	color: #a04343;
}

.pr-cart-drawer__product-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 16px;
}

.pr-cart-drawer__quantity {
	display: grid;
	grid-template-columns:
		34px
		38px
		34px;
	grid-template-rows: 40px;
	align-items: center;
	justify-content: center;
	width: 106px;
	min-width: 106px;
	height: 42px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: 1px solid var(--pr-drawer-border);
	border-radius: 999px;
	background: var(--pr-drawer-soft);
}

.pr-cart-drawer__quantity-button {
	display: grid;
	place-items: center;
	width: 34px;
	min-width: 34px;
	height: 40px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--pr-drawer-muted);
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	cursor: pointer;
	appearance: none;
}

.pr-cart-drawer__quantity-button:hover {
	background: rgba(23, 35, 30, 0.045);
	color: var(--pr-drawer-text);
}

.pr-cart-drawer__quantity-input {
	display: block !important;
	width: 38px !important;
	min-width: 38px !important;
	max-width: 38px !important;
	height: 40px !important;
	min-height: 40px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--pr-drawer-text) !important;
	-webkit-text-fill-color: var(--pr-drawer-text) !important;
	opacity: 1 !important;
	font-family: inherit;
	font-size: 14px !important;
	font-weight: 700;
	line-height: 40px !important;
	text-align: center !important;
	text-indent: 0 !important;
	appearance: textfield;
	-moz-appearance: textfield;
}

.pr-cart-drawer__quantity-input::-webkit-inner-spin-button,
.pr-cart-drawer__quantity-input::-webkit-outer-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.pr-cart-drawer__line-total {
	color: var(--pr-drawer-text);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	white-space: nowrap;
}

.pr-cart-drawer__footer {
	flex: 0 0 auto;
	padding: 18px 24px 24px;
	border-top: 1px solid var(--pr-drawer-border);
	background: #ffffff;
	box-shadow: 0 -18px 48px rgba(23, 35, 30, 0.045);
}

/* =========================================================
   APPLIED COUPONS
   ========================================================= */

.pr-cart-drawer__applied-coupons {
	display: grid;
	gap: 11px;
	padding: 0 0 15px;
	border-bottom: 1px solid var(--pr-drawer-border);
}

.pr-cart-drawer__applied-coupons-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	color: var(--pr-drawer-muted);
	font-size: 11px;
	font-weight: 600;
	line-height: 1.3;
}

.pr-cart-drawer__applied-coupons-status {
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: #eaf6ed;
	color: #317346;
}

.pr-cart-drawer__applied-coupon-list {
	display: grid;
	gap: 8px;
}

.pr-cart-drawer__applied-coupon {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.pr-cart-drawer__coupon-chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 32px;
	padding: 7px 9px 7px 10px;
	border: 1px solid rgba(49, 115, 70, 0.14);
	border-radius: 999px;
	background: #eaf6ed;
	color: #317346;
	font-size: 11px;
	line-height: 1;
}

.pr-cart-drawer__coupon-chip strong {
	font-weight: 700;
	letter-spacing: 0.025em;
}

.pr-cart-drawer__coupon-chip button {
	display: grid;
	place-items: center;
	width: 18px;
	height: 18px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(49, 115, 70, 0.09);
	color: currentColor;
	font: inherit;
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
}

.pr-cart-drawer__coupon-chip button:hover {
	background: rgba(49, 115, 70, 0.16);
}

.pr-cart-drawer__coupon-amount {
	flex: 0 0 auto;
	color: #317346;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

/* =========================================================
   DISCOUNT ACCORDION
   ========================================================= */

.pr-cart-drawer__discount {
	border-bottom: 1px solid var(--pr-drawer-border);
}

.pr-cart-drawer__discount-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 52px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--pr-drawer-text);
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	text-align: left;
	cursor: pointer;
	appearance: none;
	transition:
		color 180ms ease,
		opacity 180ms ease;
}

.pr-cart-drawer__discount-toggle:hover {
	background: transparent;
	color: var(--pr-drawer-accent);
}

.pr-cart-drawer__discount-toggle:focus,
.pr-cart-drawer__discount-toggle:focus-visible {
	outline: none;
	box-shadow: none;
}

.pr-cart-drawer__discount-icon {
	display: grid;
	place-items: center;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	margin: 0;
	padding: 0;
	color: var(--pr-drawer-text);
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	transform: rotate(0deg);
	transform-origin: center;
	transition:
		transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
		color 180ms ease;
}

.pr-cart-drawer__discount.is-open
	.pr-cart-drawer__discount-icon {
	transform: rotate(45deg);
	color: var(--pr-drawer-accent);
}

/* Smooth accordion */

.pr-cart-drawer__discount-panel {
	max-height: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
	opacity: 0;
	transform: translateY(-6px);
	visibility: hidden;
	transition:
		max-height 260ms cubic-bezier(0.22, 1, 0.36, 1),
		opacity 190ms ease,
		transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
		padding 260ms cubic-bezier(0.22, 1, 0.36, 1),
		visibility 0s linear 260ms;
}

.pr-cart-drawer__discount-panel.is-open {
	max-height: 160px;
	padding: 2px 0 16px;
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
	transition:
		max-height 260ms cubic-bezier(0.22, 1, 0.36, 1),
		opacity 210ms ease 30ms,
		transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
		padding 260ms cubic-bezier(0.22, 1, 0.36, 1),
		visibility 0s linear 0s;
}

.pr-cart-drawer__discount-panel[hidden] {
	display: none;
}

/* Form layout */

.pr-cart-drawer__discount-form {
	display: grid;
	grid-template-columns:
		minmax(0, 1fr)
		76px;
	gap: 9px;
	align-items: stretch;
	width: 100%;
	margin: 0;
}

/* Discount input */

.pr-cart-drawer__discount-input {
	display: block;
	width: 100%;
	min-width: 0;
	height: 48px;
	min-height: 48px;
	margin: 0;
	padding: 0 15px;
	border: 1px solid rgba(23, 35, 30, 0.14);
	border-radius: 13px!important;
	background: var(--pr-drawer-soft);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.72);
	color: var(--pr-drawer-text);
	-webkit-text-fill-color: var(--pr-drawer-text);
	font-family: inherit;
	font-size: 14px!important;
	font-weight: 400;
	line-height: 1.4;
	appearance: none;
	transition:
		border-color 180ms ease,
		background-color 180ms ease,
		box-shadow 180ms ease;
}

.pr-cart-drawer__discount-input::placeholder {
	color: #929d97;
	opacity: 1;
}

.pr-cart-drawer__discount-input:hover {
	border-color: rgba(23, 35, 30, 0.21);
	background: #ffffff;
}

/*
 * Suppression du focus bleu natif ou hérité de Blocksy.
 */

.pr-cart-drawer__discount-input:focus,
.pr-cart-drawer__discount-input:focus-visible {
	outline: none !important;
	border-color: rgba(120, 145, 127, 0.62) !important;
	background: #ffffff;
	box-shadow:
		0 0 0 4px rgba(120, 145, 127, 0.11) !important;
	border-radius: 13px!important;
}

/* Apply button */

.pr-cart-drawer__discount-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 76px;
	min-width: 76px;
	height: 48px;
	min-height: 48px;
	margin: 0;
	padding: 0 14px;
	border: 1px solid transparent;
	border-radius: 13px;
	background: var(--pr-drawer-text);
	box-shadow: none;
	color: #ffffff;
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	cursor: pointer;
	appearance: none;
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		color 180ms ease,
		opacity 180ms ease,
		transform 180ms ease;
}

/*
 * Actif : aucun hover bleu.
 */

.pr-cart-drawer__discount-submit:not(:disabled):hover {
	border-color: transparent;
	background: #24372d;
	color: #ffffff;
	transform: translateY(-1px);
}

.pr-cart-drawer__discount-submit:not(:disabled):active {
	transform: translateY(0);
}

.pr-cart-drawer__discount-submit:focus,
.pr-cart-drawer__discount-submit:focus-visible {
	outline: none !important;
	border-color: transparent !important;
	background: var(--pr-drawer-text);
	box-shadow:
		0 0 0 4px rgba(120, 145, 127, 0.13) !important;
	color: #ffffff;
}

/*
 * État désactivé identique à la logique du checkout.
 */

.pr-cart-drawer__discount-submit:disabled,
.pr-cart-drawer__discount-submit[aria-disabled="true"] {
	border-color: rgba(23, 35, 30, 0.08);
	background: #edf0ed;
	box-shadow: none;
	color: #9aa39e;
	opacity: 1;
	cursor: not-allowed;
	transform: none;
}

.pr-cart-drawer__discount-submit:disabled:hover,
.pr-cart-drawer__discount-submit[aria-disabled="true"]:hover {
	border-color: rgba(23, 35, 30, 0.08);
	background: #edf0ed;
	color: #9aa39e;
	transform: none;
}

/* Feedback */

.pr-cart-drawer__discount-message {
	margin: 9px 0 0;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.5;
}

.pr-cart-drawer__discount-message[hidden] {
	display: none !important;
}

.pr-cart-drawer__discount-message.is-error {
	color: #a04343;
}

.pr-cart-drawer__discount-message.is-success {
	color: #315e3d;
}


.pr-cart-drawer__totals {
	display: grid;
	padding-top: 16px;
}

.pr-cart-drawer__totals-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 5px 0;
	color: var(--pr-drawer-muted);
	font-size: 13px;
	line-height: 1.4;
}

.pr-cart-drawer__totals-row strong {
	color: var(--pr-drawer-text);
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}

.pr-cart-drawer__totals-row--discount,
.pr-cart-drawer__totals-row--discount strong {
	color: #317346;
}

.pr-cart-drawer__totals.has-discount
.pr-cart-drawer__total {
	margin-top: 10px;
	padding-top: 15px;
	border-top: 1px solid var(--pr-drawer-border);
}

.pr-cart-drawer__totals.has-no-discount
.pr-cart-drawer__total {
	margin-top: 0;
	padding-top: 15px;
	border-top: 0;
}


.pr-cart-drawer__total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.pr-cart-drawer__total-label {
	color: var(--pr-drawer-text);
	font-size: 15px;
	font-weight: 600;
}

.pr-cart-drawer__total-value {
	color: var(--pr-drawer-text);
	font-size: 19px;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
}

.pr-cart-drawer__delivery-note {
	margin: 10px 0 18px;
	color: var(--pr-drawer-muted);
	font-size: 12px;
	line-height: 1.5;
}

.pr-cart-drawer__checkout {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 58px;
	padding: 0 22px;
	border-radius: 999px;
	background:
		linear-gradient(
			135deg,
			#17231e,
			#24372d
		);
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 17px 34px rgba(23, 35, 30, 0.1);
	transition:
		transform 160ms ease,
		box-shadow 160ms ease;
}

.pr-cart-drawer__checkout:hover {
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 22px 42px rgba(23, 35, 30, 0.21);
}

.pr-cart-drawer__view-cart {
	display: block;
	margin-top: 13px;
	color: var(--pr-drawer-muted);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
}

.pr-cart-drawer__view-cart:hover {
	color: var(--pr-drawer-text);
}

.pr-cart-drawer__empty {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;
	flex-direction: column;
	min-height: 0;
	padding: 48px 28px;
	text-align: center;
}

.pr-cart-drawer__empty-icon {
	display: grid;
	place-items: center;
	width: 68px;
	height: 68px;
	margin-bottom: 22px;
	border: 1px solid rgba(120, 145, 127, 0.18);
	border-radius: 22px;
	background: rgba(120, 145, 127, 0.08);
	color: var(--pr-drawer-accent);
}

.pr-cart-drawer__empty-title {
	margin: 0;
	color: var(--pr-drawer-text);
	font-size: 25px;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.035em;
}

.pr-cart-drawer__empty-text {
	max-width: 320px;
	margin: 13px auto 24px;
	color: var(--pr-drawer-muted);
	font-size: 14px;
	line-height: 1.65;
}

.pr-cart-drawer__empty-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 25px;
	border-radius: 999px;
	background: var(--pr-drawer-text);
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.pr-cart-drawer__loading {
	position: absolute;
	z-index: 4;
	inset: 82px 0 0;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.62);
	backdrop-filter: blur(1px);
}

/*
 * L’attribut hidden doit toujours prendre le dessus.
 * Sans cette règle, display: grid maintient le loader visible.
 */

.pr-cart-drawer__loading[hidden] {
	display: none !important;
}

.pr-cart-drawer__spinner {
	width: 34px;
	height: 34px;
	border: 3px solid rgba(23, 35, 30, 0.13);
	border-top-color: var(--pr-drawer-text);
	border-radius: 50%;
	animation: pr-cart-drawer-spin 700ms linear infinite;
}

@keyframes pr-cart-drawer-spin {
	to {
		transform: rotate(360deg);
	}
}

@media screen and (max-width: 599px) {
	.pr-cart-drawer__panel {
		width: calc(100% - 40px);
		max-width: 430px;
		border-radius: 22px 0 0 22px;
	}

	.pr-cart-drawer__header {
		min-height: 72px;
		padding: 16px 18px;
	}

	.pr-cart-drawer__title {
		font-size: 25px;
	}

	.pr-cart-drawer__body {
		padding: 18px;
	}

	.pr-cart-drawer__item {
		grid-template-columns: 68px minmax(0, 1fr);
		gap: 13px;
	}

	.pr-cart-drawer__media,
	.pr-cart-drawer__product-image {
		width: 68px;
	}

	.pr-cart-drawer__product-image {
		height: 88px;
	}

	.pr-cart-drawer__product-title {
		font-size: 14px;
	}

	.pr-cart-drawer__product-bottom {
		gap: 10px;
		margin-top: 14px;
	}

	.pr-cart-drawer__quantity {
		grid-template-columns:
			32px
			36px
			32px;
		grid-template-rows: 38px;
		width: 100px;
		min-width: 100px;
		height: 40px;
	}

	.pr-cart-drawer__quantity-button {
		width: 32px;
		min-width: 32px;
		height: 38px;
		font-size: 13px;
	}

	.pr-cart-drawer__quantity-input {
		width: 36px !important;
		min-width: 36px !important;
		max-width: 36px !important;
		height: 38px !important;
		min-height: 38px !important;
		font-size: 13px !important;
		line-height: 38px !important;
	}

	.pr-cart-drawer__line-total {
		font-size: 13px;
	}

	.pr-cart-drawer__footer {
		padding: 15px 18px 18px;
	}

	.pr-cart-drawer__checkout {
		min-height: 56px;
	}
	
	.pr-cart-drawer__discount-form {
	grid-template-columns:
		minmax(0, 1fr)
		72px;
	gap: 8px;
}

.pr-cart-drawer__discount-input {
	height: 46px;
	min-height: 46px;
	padding-inline: 13px;
	border-radius: 12px;
	font-size: 12px;
}

.pr-cart-drawer__discount-submit {
	width: 72px;
	min-width: 72px;
	height: 46px;
	min-height: 46px;
	padding-inline: 12px;
	border-radius: 12px;
	font-size: 12px;
  }
}

@media screen and (max-width: 379px) {
	.pr-cart-drawer__panel {
		width: calc(100% - 24px);
		max-width: none;
		border-radius: 20px 0 0 20px;
	}

	.pr-cart-drawer__body {
		padding-inline: 14px;
	}

	.pr-cart-drawer__footer {
		padding-inline: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pr-cart-drawer__overlay,
	.pr-cart-drawer__panel,
	.pr-cart-drawer__checkout,
	.pr-cart-drawer__close {
		transition: none;
	}

	.pr-cart-drawer__spinner {
		animation-duration: 1.4s;
	}
}