/**
 * Cart drawer v0501 — full-screen mobile wholesale cart + desktop drawer.
 *
 * Mobile (<=719px): 100vw × 100dvh fashion-app cart matching approved preview.
 * Desktop (>=720px): premium side drawer with desktop summary + CTAs.
 *
 * Tokens: black #111 · white #fff · line #e8e6e1 · muted #6b6b68 · warm #f7f7f5
 * Breakpoint: 720px (sticky / fullscreen boundary).
 * Path-bust: v0501 (density / qty / sticky hierarchy polish).
 * z-index 60 sits above WhatsApp float (40) and below skip-link (9999).
 */

/* ==========================================================================
   Shared tokens
   ========================================================================== */

.vw-ex-vat,
.vw-incl-vat {
	display: inline;
	margin-left: 0.22em;
	font-size: 0.78em;
	font-weight: 500;
	letter-spacing: 0.01em;
	color: #6b6b68;
	white-space: nowrap;
}

.vw-incl-vat {
	font-weight: 500;
}

.vw-min-status {
	margin: 0 0 0.75rem;
	padding: 0.65rem 0.75rem;
	border: 1px solid #e8e6e1;
	border-radius: 10px;
	background: #fff;
	color: #111;
}

.vw-min-status.is-complete {
	background: #f3f2ef;
}

.vw-min-status__headline {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	margin: 0;
	font-size: 0.84rem;
	font-weight: 650;
	letter-spacing: -0.02em;
	line-height: 1.25;
}

.vw-min-status__check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 1.15rem;
	height: 1.15rem;
	border-radius: 50%;
	background: #111;
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
}

.vw-min-status__copy {
	margin: 0.22rem 0 0;
	font-size: 0.72rem;
	line-height: 1.35;
	color: #6b6b68;
}

.vw-min-status__bar {
	height: 3px;
	margin: 0.5rem 0 0.35rem;
	border-radius: 2px;
	background: #e8e6e1;
	overflow: hidden;
}

.vw-min-status__fill {
	display: block;
	height: 100%;
	max-width: 100%;
	background: #111;
	transition: width 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.vw-min-status__amounts {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 500;
	font-variant-numeric: tabular-nums;
	color: #6b6b68;
}

.vw-b2b-summary {
	margin: 0 0 0.75rem;
	padding: 0.85rem 0.9rem;
	border: 1px solid #e8e6e1;
	border-radius: 12px;
	background: #fff;
}

.vw-b2b-summary__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.5rem 0.75rem;
	align-items: baseline;
	margin: 0 0 0.4rem;
	font-size: 0.8rem;
	line-height: 1.3;
}

.vw-b2b-summary__row span:last-child {
	font-variant-numeric: tabular-nums;
	text-align: right;
	white-space: nowrap;
}

.vw-b2b-summary__total-label {
	margin: 0.55rem 0 0.2rem;
	padding-top: 0.55rem;
	border-top: 1px solid #e8e6e1;
	font-size: 0.65rem;
	font-weight: 650;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #6b6b68;
}

.vw-b2b-summary__total-ex {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	font-variant-numeric: tabular-nums;
}

.vw-b2b-summary__total-inc {
	margin: 0.15rem 0 0;
	font-size: 0.8rem;
	font-weight: 500;
	color: #6b6b68;
	font-variant-numeric: tabular-nums;
}

.vw-b2b-vat-note {
	margin: 0 0 0.55rem;
}

.vw-b2b-vat-note__title {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 600;
	color: #111;
}

.vw-b2b-vat-note__copy {
	margin: 0.1rem 0 0;
	font-size: 0.68rem;
	color: #6b6b68;
}

.vw-cart-drawer .vw-cart-breakdown {
	margin: 0 0 0.75rem;
	border: 1px solid #e8e6e1;
	border-radius: 12px;
	background: #fff;
	overflow: hidden;
}

.vw-cart-drawer .vw-cart-breakdown__toggle {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.5rem;
	width: 100%;
	min-height: 48px;
	margin: 0;
	padding: 0.75rem 0.9rem;
	border: 0;
	background: #fff;
	color: #111;
	font: inherit;
	text-align: left;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.vw-cart-drawer .vw-cart-breakdown__toggle:hover,
.vw-cart-drawer .vw-cart-breakdown__toggle[aria-expanded="true"] {
	background: #f8f7f4;
}

.vw-cart-drawer .vw-cart-breakdown__toggle:focus-visible {
	outline: 2px solid #111;
	outline-offset: -2px;
}

.vw-cart-drawer .vw-cart-breakdown__toggle-label {
	font-size: 0.92rem;
	font-weight: 650;
	letter-spacing: -0.02em;
}

.vw-cart-drawer .vw-cart-breakdown__toggle-leading,
.vw-cart-drawer .vw-cart-breakdown__chevron {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.vw-cart-drawer .vw-cart-breakdown__chevron {
	color: #6b6b68;
	transition: transform 0.2s ease;
}

.vw-cart-drawer .vw-cart-breakdown__toggle[aria-expanded="true"] .vw-cart-breakdown__chevron {
	transform: rotate(180deg);
}

.vw-cart-drawer .vw-cart-breakdown__panel {
	padding: 0 0.9rem 0.8rem;
	border-top: 1px solid #f0eeea;
	background: #fff;
}

.vw-cart-drawer .vw-cart-breakdown__panel[hidden] {
	display: none !important;
}

.vw-cart-drawer .vw-cart-breakdown__list {
	list-style: none;
	margin: 0;
	padding: 0.25rem 0 0;
}

.vw-cart-drawer .vw-cart-breakdown__list li {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(6.5rem, auto);
	gap: 0.5rem 0.75rem;
	padding: 0.4rem 0;
	border-bottom: 1px solid #f3f2ef;
	font-size: 0.84rem;
}

.vw-cart-drawer .vw-cart-breakdown__list li:last-child {
	border-bottom: 0;
}

.vw-cart-drawer .vw-cart-breakdown__list li span:last-child {
	font-variant-numeric: tabular-nums;
	text-align: right;
	white-space: nowrap;
}

/* ==========================================================================
   Drawer shell
   ========================================================================== */

.vw-cart-drawer-root {
	position: fixed;
	inset: 0;
	z-index: 60;
	pointer-events: none;
}

.vw-cart-drawer-root:not([hidden]) {
	pointer-events: auto;
}

.vw-cart-drawer__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(17, 17, 17, 0.42);
	opacity: 0;
	transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.vw-cart-drawer-root.is-open .vw-cart-drawer__backdrop {
	opacity: 1;
}

.vw-cart-drawer-root.is-closing .vw-cart-drawer__backdrop {
	opacity: 0;
	transition: opacity 0.24s cubic-bezier(0.4, 0, 1, 1);
}

.vw-cart-drawer {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	width: min(440px, 100vw);
	height: 100%;
	max-height: 100dvh;
	background: #fff;
	color: #111;
	box-shadow: -12px 0 40px rgba(17, 17, 17, 0.18);
	transform: translateX(100%);
	opacity: 0.96;
	transition:
		transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform, opacity;
	overflow: hidden;
}

.vw-cart-drawer-root.is-open .vw-cart-drawer {
	transform: translateX(0);
	opacity: 1;
}

.vw-cart-drawer-root.is-closing .vw-cart-drawer {
	transform: translateX(100%);
	opacity: 0.96;
	transition:
		transform 0.26s cubic-bezier(0.4, 0, 1, 1),
		opacity 0.22s cubic-bezier(0.4, 0, 1, 1);
}

body.vw-cart-drawer-open {
	overflow: hidden;
}

/* ==========================================================================
   Header — preview: back | Your cart / N items | X
   ========================================================================== */

.vw-cart-drawer__header {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) 44px;
	align-items: center;
	gap: 0.25rem;
	padding: 0.85rem 0.75rem 0.8rem;
	border-bottom: 1px solid #e8e6e1;
	flex-shrink: 0;
	background: #fff;
	position: sticky;
	top: 0;
	z-index: 2;
}

.vw-cart-drawer__heading {
	min-width: 0;
	text-align: center;
}

.vw-cart-drawer__title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.15;
	color: #111;
}

.vw-cart-drawer__count {
	margin: 0.18rem 0 0;
	font-size: 0.78rem;
	font-weight: 500;
	line-height: 1.25;
	color: #6b6b68;
}

.vw-cart-drawer__back,
.vw-cart-drawer__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: #111;
	font-size: 1.55rem;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.15s ease, opacity 0.15s ease;
}

.vw-cart-drawer__back:hover,
.vw-cart-drawer__close:hover {
	background: #f7f7f5;
}

.vw-cart-drawer__back:focus-visible,
.vw-cart-drawer__close:focus-visible {
	outline: 2px solid #111;
	outline-offset: 2px;
}

.vw-cart-drawer__back span {
	font-size: 1.65rem;
	font-weight: 400;
	transform: translateY(-1px);
}

/* ==========================================================================
   Panel / scroll
   ========================================================================== */

.vw-cart-drawer__panel {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 0;
	background: #fff;
}

.vw-cart-drawer__scroll {
	flex: 1 1 auto;
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	display: flex;
	flex-direction: column;
	padding-bottom: 0.5rem;
}

.vw-cart-drawer__items {
	margin: 0;
	padding: 0 1rem;
	flex: 0 0 auto;
}

.vw-cart-drawer__mobile-footer {
	display: none;
	flex: 0 0 auto;
	padding: 0.2rem 1rem 0.55rem;
}

.vw-cart-drawer__desktop-summary {
	display: block;
	flex: 0 0 auto;
	padding: 0.55rem 1rem 0.35rem;
	border-top: 1px solid #e8e6e1;
}

.vw-cart-drawer__actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.45rem;
	padding: 0.35rem 1rem 1rem;
}

.vw-cart-drawer__primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	border-radius: 10px;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
}

.vw-cart-drawer__primary--desktop {
	display: none !important;
}

.vw-cart-drawer__secondary,
.vw-cart-drawer__continue {
	display: block;
	margin: 0 auto;
	padding: 0.35rem;
	border: 0;
	background: transparent;
	font-size: 0.8rem;
	font-weight: 500;
	color: #6b6b68;
	text-decoration: underline;
	text-underline-offset: 2px;
	cursor: pointer;
	text-align: center;
}

/* ==========================================================================
   Product rows — fashion-app density
   ========================================================================== */

.vw-cart-drawer__item {
	display: grid;
	grid-template-columns: 78px minmax(0, 1fr);
	gap: 0.7rem;
	align-items: start;
	padding: 0.72rem 0;
	margin: 0;
	border-bottom: 1px solid #ebe9e4;
	transition: opacity 0.18s ease, background-color 0.15s ease;
}

.vw-cart-drawer__item.is-updating {
	opacity: 0.55;
	pointer-events: none;
}

.vw-cart-drawer__item.is-removing {
	opacity: 0;
	transform: translateX(8px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.vw-cart-drawer__item-media {
	width: 78px;
}

.vw-cart-drawer__item-media a {
	display: block;
	line-height: 0;
	border-radius: 10px;
	overflow: hidden;
	background: #f0eeea;
}

.vw-cart-drawer__item-media img {
	display: block;
	width: 78px;
	height: 90px;
	object-fit: cover;
	background: #f0eeea;
}

.vw-cart-drawer__item-body {
	min-width: 0;
}

.vw-cart-drawer__item-main {
	display: flex;
	flex-direction: column;
	gap: 0.22rem;
	min-width: 0;
}

.vw-cart-drawer__item-top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.5rem 0.65rem;
	align-items: start;
}

.vw-cart-drawer__item-title {
	margin: 0;
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.2;
	color: #111;
}

.vw-cart-drawer__item-title a {
	color: inherit;
	text-decoration: none;
}

.vw-cart-drawer__item-subtotal {
	margin: 0;
	text-align: right;
	font-variant-numeric: tabular-nums;
	line-height: 1.15;
}

.vw-cart-drawer__item-subtotal-amount {
	display: block;
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #111;
	white-space: nowrap;
}

.vw-cart-drawer__item-subtotal .vw-ex-vat {
	display: block;
	margin: 0.08rem 0 0;
	font-size: 0.68rem;
	text-align: right;
}

.vw-cart-drawer__item-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.3rem 0.4rem;
	margin: 0;
	font-size: 0.72rem;
	line-height: 1.3;
	color: #6b6b68;
}

.vw-cart-item__badge {
	display: inline-block;
	padding: 0.14rem 0.38rem;
	border-radius: 3px;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.15;
	color: #fff;
	background: #111;
	border: 0;
}

.vw-cart-item__sep {
	opacity: 0.55;
}

/* Quantity stepper — [ −  10  + ] continuous outline, no internal dividers */
.vw-cart-drawer__qty {
	display: grid;
	grid-template-columns: 44px minmax(2.5rem, 1fr) 44px;
	align-items: stretch;
	width: 100%;
	max-width: 11.5rem;
	min-height: 38px;
	margin-top: 0.08rem;
	border: 1px solid #d9d7d2;
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
}

.vw-cart-drawer__qty-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #111;
	font-size: 1.1rem;
	line-height: 1;
	cursor: pointer;
	min-height: 38px;
	min-width: 44px;
}

.vw-cart-drawer__qty-btn:hover,
.vw-cart-drawer__qty-btn:focus-visible {
	background: #f7f7f5;
}

.vw-cart-drawer__qty-btn:focus-visible {
	outline: 2px solid #111;
	outline-offset: -2px;
}

.vw-cart-drawer__qty-input {
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #111;
	font-size: 0.9rem;
	font-weight: 650;
	font-variant-numeric: tabular-nums;
	text-align: center;
	line-height: 1;
	-moz-appearance: textfield;
	appearance: textfield;
}

.vw-cart-drawer__qty-input::-webkit-outer-spin-button,
.vw-cart-drawer__qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.vw-cart-drawer__item-remove {
	display: inline-block;
	align-self: start;
	margin-top: 0;
	padding: 0.12rem 0;
	min-height: 24px;
	font-size: 0.72rem;
	font-weight: 500;
	line-height: 1.2;
	color: #6b6b68;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.vw-cart-drawer__item-remove:hover,
.vw-cart-drawer__item-remove:focus-visible {
	color: #111;
}

/* ==========================================================================
   Empty
   ========================================================================== */

.vw-cart-drawer__empty {
	padding: 2rem 1.25rem 1.5rem;
	text-align: center;
}

.vw-cart-drawer__empty-title {
	margin: 0 0 0.35rem;
	font-size: 1.05rem;
	font-weight: 700;
}

.vw-cart-drawer__empty-copy {
	margin: 0 0 1rem;
	font-size: 0.84rem;
	color: #6b6b68;
}

.vw-cart-drawer__empty-actions {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

/* ==========================================================================
   Collapsible order summary + VAT strip
   ========================================================================== */

.vw-cart-drawer__order-summary {
	margin: 0 0 0.5rem;
	border: 1px solid #e8e6e1;
	border-radius: 12px;
	background: #fff;
	overflow: hidden;
}

.vw-cart-drawer__order-summary-toggle {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.5rem;
	width: 100%;
	margin: 0;
	padding: 0.7rem 0.85rem;
	border: 0;
	background: #fff;
	color: #111;
	font: inherit;
	text-align: left;
	cursor: pointer;
}

.vw-cart-drawer__order-summary-toggle:focus-visible {
	outline: 2px solid #111;
	outline-offset: -2px;
}

.vw-cart-drawer__order-summary-toggle-label {
	font-size: 0.92rem;
	font-weight: 650;
	letter-spacing: -0.02em;
}

.vw-cart-drawer__order-summary-chevron {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
	color: #6b6b68;
	transition: transform 0.2s ease;
}

.vw-cart-drawer__order-summary-toggle[aria-expanded="true"] .vw-cart-drawer__order-summary-chevron {
	transform: rotate(180deg);
}

.vw-cart-drawer__order-summary-panel {
	padding: 0 0.9rem 0.85rem;
	border-top: 1px solid #f0eeea;
}

.vw-cart-drawer__order-summary-panel[hidden] {
	display: none !important;
}

.vw-cart-drawer__model-list {
	list-style: none;
	margin: 0;
	padding: 0.35rem 0 0.15rem;
}

.vw-cart-drawer__model-row,
.vw-cart-drawer__detail-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(7.5rem, auto);
	gap: 0.5rem 0.75rem;
	align-items: center;
	padding: 0.55rem 0;
	border-bottom: 1px solid #f3f2ef;
	font-size: 0.84rem;
}

.vw-cart-drawer__model-row:last-child,
.vw-cart-drawer__detail-row:last-child {
	border-bottom: 0;
}

.vw-cart-drawer__model-label {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	min-width: 0;
	color: #111;
	font-weight: 500;
}

.vw-cart-drawer__model-icon {
	display: inline-flex;
	color: #6b6b68;
}

.vw-cart-drawer__model-amount {
	display: inline-flex;
	align-items: baseline;
	justify-content: flex-end;
	gap: 0.2rem;
	font-variant-numeric: tabular-nums;
	text-align: right;
	white-space: nowrap;
}

.vw-cart-drawer__amount {
	font-weight: 700;
	color: #111;
}

.vw-cart-drawer__amount--note {
	font-weight: 500;
	font-size: 0.78rem;
	color: #6b6b68;
	white-space: normal;
	text-align: right;
}

.vw-cart-drawer__view-details {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.3rem;
	width: 100%;
	margin: 0.15rem 0 0;
	padding: 0.55rem 0 0.15rem;
	border: 0;
	border-top: 1px solid #f0eeea;
	background: transparent;
	color: #6b6b68;
	font-size: 0.78rem;
	font-weight: 500;
	cursor: pointer;
}

.vw-cart-drawer__details {
	padding-top: 0.15rem;
}

.vw-cart-drawer__details[hidden] {
	display: none !important;
}

.vw-cart-drawer__vat-strip {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.5rem;
	padding: 0.62rem 0.8rem;
	border: 1px solid #e8e6e1;
	border-radius: 12px;
	background: #fff;
	color: #111;
	text-decoration: none;
}

.vw-cart-drawer__vat-strip:hover,
.vw-cart-drawer__vat-strip:focus-visible {
	border-color: #d0cec8;
}

.vw-cart-drawer__vat-strip:focus-visible {
	outline: 2px solid #111;
	outline-offset: 2px;
}

.vw-cart-drawer__vat-strip-icon {
	display: inline-flex;
	color: #6b6b68;
}

.vw-cart-drawer__vat-strip-text {
	min-width: 0;
	font-size: 0.78rem;
	line-height: 1.3;
	color: #6b6b68;
}

.vw-cart-drawer__vat-strip-text strong {
	color: #111;
	font-weight: 700;
	margin-right: 0.2em;
}

.vw-cart-drawer__vat-strip-chevron {
	font-size: 1.15rem;
	color: #6b6b68;
	line-height: 1;
}

/* ==========================================================================
   Sticky checkout panel
   ========================================================================== */

.vw-cart-drawer__sticky {
	flex-shrink: 0;
	display: none;
	flex-direction: column;
	gap: 0.55rem;
	padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
	border-top: 1px solid #e8e6e1;
	background: #fff;
	box-shadow: 0 -8px 24px rgba(17, 17, 17, 0.06);
}

.vw-cart-drawer__sticky-totals {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 0.65rem;
	align-items: start;
}

.vw-cart-drawer__sticky-col--ex {
	text-align: left;
}

.vw-cart-drawer__sticky-col--inc {
	text-align: right;
}

.vw-cart-drawer__sticky-label {
	margin: 0 0 0.15rem;
	font-size: 0.68rem;
	font-weight: 500;
	line-height: 1.2;
	color: #6b6b68;
}

.vw-cart-drawer__sticky-col--inc .vw-cart-drawer__sticky-label {
	font-size: 0.64rem;
	font-weight: 450;
	color: #8a8a86;
}

.vw-cart-drawer__sticky-total {
	margin: 0;
	font-size: 1.14rem;
	font-weight: 750;
	letter-spacing: -0.03em;
	font-variant-numeric: tabular-nums;
	line-height: 1.15;
	color: #111;
	white-space: nowrap;
}

.vw-cart-drawer__sticky-total--inc {
	font-size: 0.86rem;
	font-weight: 550;
	letter-spacing: -0.015em;
	color: #6b6b68;
}

.vw-cart-drawer__sticky-total .vw-ex-vat {
	font-size: 0.68rem;
	font-weight: 500;
	color: #6b6b68;
}

.vw-cart-drawer__sticky-total .vw-incl-vat {
	font-size: 0.62rem;
	font-weight: 450;
	color: #8a8a86;
}

.vw-cart-drawer__sticky-remaining {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	white-space: nowrap;
}

.vw-cart-drawer__sticky-meta {
	min-width: 0;
}

.vw-cart-drawer__sticky .vw-cart-drawer__sticky-cta,
.vw-cart-drawer__sticky-cta.vw-button,
a.vw-cart-drawer__sticky-cta {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	width: 100% !important;
	min-height: 52px;
	padding: 0.85rem 1rem;
	border-radius: 12px;
	font-size: 0.86rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	border: 1px solid #111 !important;
	background: #111 !important;
	color: #fff !important;
	transition: transform 0.12s ease, opacity 0.12s ease;
}

.vw-cart-drawer__sticky .vw-cart-drawer__sticky-cta:hover,
.vw-cart-drawer__sticky .vw-cart-drawer__sticky-cta:focus-visible,
.vw-cart-drawer__sticky .vw-cart-drawer__sticky-cta:active,
a.vw-cart-drawer__sticky-cta:hover,
a.vw-cart-drawer__sticky-cta:focus-visible,
a.vw-cart-drawer__sticky-cta:active {
	border-color: #2b2b29 !important;
	background: #2b2b29 !important;
	color: #fff !important;
}

.vw-cart-drawer__sticky-cta:active {
	transform: scale(0.985);
}

.vw-cart-drawer__sticky-cta:focus-visible {
	outline: 3px solid #1f6feb;
	outline-offset: 3px;
}

/* Exact eligible Checkout anchors: parent-theme link states otherwise win in some responses. */
.vw-cart-drawer a.vw-cart-drawer__checkout-cta,
.vw-cart-drawer a.vw-cart-drawer__checkout-cta:link,
.vw-cart-drawer a.vw-cart-drawer__checkout-cta:visited {
	border-color: #111 !important;
	background: #111 !important;
	color: #fff !important;
}

.vw-cart-drawer a.vw-cart-drawer__checkout-cta:hover,
.vw-cart-drawer a.vw-cart-drawer__checkout-cta:focus,
.vw-cart-drawer a.vw-cart-drawer__checkout-cta:focus-visible,
.vw-cart-drawer a.vw-cart-drawer__checkout-cta:active {
	border-color: #2b2b29 !important;
	background: #2b2b29 !important;
	color: #fff !important;
}

/* ==========================================================================
   Mobile full-screen (<=719px) — approved preview
   ========================================================================== */

@media (max-width: 719px) {
	.vw-cart-drawer__backdrop {
		background: #fff;
	}

	.vw-cart-drawer {
		inset: 0;
		width: 100vw;
		max-width: 100vw;
		height: 100%;
		height: 100dvh;
		max-height: 100dvh;
		box-shadow: none;
		border-radius: 0;
	}

	body.admin-bar .vw-cart-drawer {
		top: 46px;
		height: calc(100% - 46px);
		height: calc(100dvh - 46px);
		max-height: calc(100dvh - 46px);
	}

	@media (min-width: 783px) {
		body.admin-bar .vw-cart-drawer {
			top: 32px;
			height: calc(100% - 32px);
			height: calc(100dvh - 32px);
			max-height: calc(100dvh - 32px);
		}
	}

	.vw-cart-drawer-root.is-open .vw-cart-drawer,
	.vw-cart-drawer-root.is-closing .vw-cart-drawer {
		transform: translateY(0);
	}

	.vw-cart-drawer {
		transform: translateY(12px);
		opacity: 0;
	}

	.vw-cart-drawer-root.is-open .vw-cart-drawer {
		transform: translateY(0);
		opacity: 1;
	}

	.vw-cart-drawer-root.is-closing .vw-cart-drawer {
		transform: translateY(10px);
		opacity: 0;
	}

	.vw-cart-drawer__header {
		padding: 0.62rem 0.65rem 0.65rem;
	}

	.vw-cart-drawer__title {
		font-size: 1.05rem;
	}

	.vw-cart-drawer__items {
		padding: 0 1rem;
	}

	.vw-cart-drawer__item {
		grid-template-columns: 76px minmax(0, 1fr);
		gap: 0.7rem;
		padding: 0.62rem 0;
	}

	.vw-cart-drawer__item-media {
		width: 76px;
	}

	.vw-cart-drawer__item-media img {
		width: 76px;
		height: 88px;
	}

	.vw-cart-drawer__item-title {
		font-size: 0.9rem;
		line-height: 1.18;
	}

	.vw-cart-drawer__item-subtotal-amount {
		font-size: 0.9rem;
	}

	.vw-cart-drawer__qty {
		min-height: 36px;
		max-width: 10.75rem;
	}

	.vw-cart-drawer__qty-btn {
		min-height: 36px;
	}

	.vw-cart-drawer__scroll {
		padding-bottom: 0.15rem;
	}

	.vw-cart-drawer__mobile-footer {
		display: block;
	}

	.vw-cart-drawer__desktop-summary,
	.vw-cart-drawer__actions--desktop {
		display: none !important;
	}

	.vw-cart-drawer__sticky {
		display: flex;
	}

	/* Hide duplicate desktop primary on mobile — sticky owns Checkout */
	.vw-cart-drawer__primary--desktop {
		display: none !important;
	}

	.vw-cart-drawer__mobile-footer .vw-min-status {
		margin-bottom: 0.65rem;
	}
}

/* ==========================================================================
   Desktop / tablet (>=720px)
   ========================================================================== */

@media (min-width: 720px) {
	.vw-cart-drawer {
		width: min(460px, 42vw);
	}

	.vw-cart-drawer__back {
		display: none;
	}

	.vw-cart-drawer__header {
		grid-template-columns: minmax(0, 1fr) 44px;
	}

	.vw-cart-drawer__heading {
		text-align: left;
	}

	.vw-cart-drawer__mobile-footer {
		display: none !important;
	}

	.vw-cart-drawer__desktop-summary {
		display: block;
	}

	.vw-cart-drawer__actions--desktop {
		display: flex;
	}

	.vw-cart-drawer__primary--desktop {
		display: inline-flex !important;
	}

	.vw-cart-drawer__sticky {
		display: none !important;
	}

	.vw-cart-drawer__item-media,
	.vw-cart-drawer__item-media img {
		width: 72px;
	}

	.vw-cart-drawer__item-media img {
		height: 84px;
	}

	.vw-cart-drawer__item {
		grid-template-columns: 72px minmax(0, 1fr);
	}
}

@media (min-width: 1100px) {
	.vw-cart-drawer {
		width: min(480px, 40vw);
	}
}

@media (prefers-reduced-motion: reduce) {
	.vw-cart-drawer,
	.vw-cart-drawer__backdrop,
	.vw-cart-drawer__item,
	.vw-cart-drawer__sticky-cta,
	.vw-min-status__fill,
	.vw-cart-drawer__order-summary-chevron {
		transition: none !important;
	}
}
