.vdlv-wishlist-page {
	--vdlv-blue: var(--bpa-shop-blue, #202447);
	--vdlv-yellow: var(--bpa-shop-yellow, #fdc831);
	--vdlv-teal: var(--bpa-shop-teal, #08aaa5);
	--vdlv-border: #d8dce5;
	--vdlv-muted: #647085;
	width: min(100% - 32px, 1180px);
	margin: 48px auto 80px;
	color: var(--vdlv-blue);
	font-family: Inter, Arial, sans-serif;
}

.vdlv-wishlist-page__header,
.vdlv-wishlist-detail__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.vdlv-wishlist-page__header h1,
.vdlv-wishlist-detail__header h2 {
	margin: 0;
	color: var(--vdlv-blue);
	font-family: Arsenica Variable, Georgia, serif;
	font-weight: 600;
	line-height: 1.05;
}

.vdlv-wishlist-page__header h1 {
	font-size: clamp(32px, 4vw, 52px);
}

.vdlv-wishlist-page__header h1 span {
	display: block;
	font-weight: 400;
}

.vdlv-wishlist-detail__header h2 {
	font-size: clamp(26px, 3vw, 38px);
}

.vdlv-wishlist-detail__cart-feedback {
	margin: 8px 0 0;
	color: var(--vdlv-teal);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
}

.vdlv-wishlist-page__header>div>p {
	max-width: 560px;
	margin: 12px 0 0;
	color: var(--vdlv-muted);
}

.vdlv-wishlist-page__eyebrow {
	margin: 0 0 8px;
	color: var(--vdlv-teal);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.vdlv-wishlist-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 12px 20px;
	border: 1px solid transparent;
	border-radius: 999px;
	font: 700 14px/1.1 Inter, Arial, sans-serif;
	text-decoration: none;
	cursor: pointer;
	transition: transform .2s ease, background-color .2s ease;
}

.vdlv-wishlist-button:hover,
.vdlv-wishlist-button:focus-visible {
	transform: translateY(-1px);
}

.vdlv-wishlist-button--primary {
    background: #fdc831;
    color: var(--vdlv-blue);
}

.vdlv-wishlist-button--outline {
	border-color: var(--vdlv-blue);
	background: #fff;
	color: var(--vdlv-blue);
}

.vdlv-wishlist-button[aria-busy="true"] {
	cursor: wait;
	opacity: .7;
}

.vdlv-wishlist-list-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-bottom: 48px;
}

.vdlv-wishlist-list-card {
    position: relative;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-rows: 1fr auto;
    align-items: stretch;
    gap: 12px 18px;
    min-height: 150px;
    height: 150px;
    padding: 18px;
    border: 1px solid #e6e8f0;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 17px rgba(0, 0, 0, .05);
}

.vdlv-wishlist-list-card.is-selected {
	border-color: #e6e8f0;
	box-shadow: 0 10px 17px rgba(0, 0, 0, .05);
}

.vdlv-wishlist-list-card__heart {
	display: flex;
	grid-column: 1;
	grid-row: 1;
	width: 54px;
	height: 54px;
	align-items: center;
	justify-content: center;
	align-self: start;
	justify-self: start;
	border-radius: 999px;
	background: rgba(0, 162, 155, .12);
	color: #202344;
}

.vdlv-wishlist-list-card__heart svg {
	display: block;
	width: 31px;
	height: 31px;
	flex: 0 0 31px;
	fill: #fff;
	stroke: currentColor;
	stroke-width: 4;
}

.vdlv-wishlist-list-card__content {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    flex-direction: column;
    justify-content: flex-start;
}

.vdlv-wishlist-list-card h2 {
	margin: 0 0 5px;
	font: 400 24px/1.05 Arsenica Variable, Georgia, serif;
}

.vdlv-wishlist-list-card__content>span {
	display: block;
	color: var(--vdlv-muted);
	line-height: 1.4;
}

.vdlv-wishlist-list-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 10px;
}

.vdlv-wishlist-list-card__meta span {
	padding: 7px 10px;
	border-radius: 999px;
	background: #f6f8fb;
	color: #202344;
	font-size: 12px;
	font-weight: 800;
}

.vdlv-wishlist-list-card__meta .vdlv-wishlist-default {
	background: rgba(0, 162, 155, .12);
	color: var(--vdlv-teal);
}

.vdlv-wishlist-list-card__actions {
	grid-column: 1 / -1;
	grid-row: 2;
	align-self: end;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	margin-bottom: 0;
}

.vdlv-wishlist-list-card__actions .vdlv-wishlist-button {
	min-width: 132px;
	border: 0;
	background: var(--vdlv-yellow);
	color: var(--vdlv-blue);
}

.vdlv-wishlist-list-card__tools {
	position: absolute;
	top: 12px;
	right: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.vdlv-wishlist-list-card__edit,
.vdlv-wishlist-list-card__remove {
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #717a73;
	cursor: pointer;
}

.vdlv-wishlist-list-card__edit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #e6e8f0;
	border-radius: 50%;
	background: #fff;
}

.vdlv-wishlist-list-card__edit svg {
	display: block;
	width: 17px;
	height: 17px;
}

.vdlv-wishlist-list-card__remove {
	background: url('https://vdlv-multi.ethiko.io/wp-content/uploads/2026/07/Button-Supprimer.svg') center / 20px 20px no-repeat;
}

.vdlv-wishlist-list-card__edit:hover,
.vdlv-wishlist-list-card__edit:focus-visible {
	color: var(--vdlv-blue);
}

.vdlv-wishlist-list-card__edit:focus-visible,
.vdlv-wishlist-list-card__remove:focus-visible {
	outline: 2px solid var(--vdlv-blue);
	outline-offset: 3px;
}

.vdlv-wishlist-icon-button {
	display: inline-grid;
	width: 40px;
	height: 40px;
	place-items: center;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #f2f4f8;
	color: var(--vdlv-blue);
	font-size: 20px;
	cursor: pointer;
}

.vdlv-wishlist-detail-modal__loader {
	padding: 42px 28px;
	border: 1px solid var(--vdlv-border);
	border-radius: 10px;
	background: #fff;
	color: var(--vdlv-muted);
	font-weight: 700;
	text-align: center;
}

.vdlv-wishlist-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 22px;
	margin-top: 24px;
	padding-top: 22px;
	border-top: 1px solid var(--vdlv-border);
}

.vdlv-wishlist-pagination button {
	display: inline-grid;
	width: 38px;
	height: 38px;
	place-items: center;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--vdlv-blue);
	font-family: "Myriad Pro", Arial, sans-serif;
	font-size: 22px;
	font-weight: 500;
	line-height: 1;
	cursor: pointer;
}

.vdlv-wishlist-pagination button:not(:disabled):hover,
.vdlv-wishlist-pagination button:not(:disabled):focus-visible {
	color: var(--vdlv-teal);
}

.vdlv-wishlist-pagination__page.is-active,
.vdlv-wishlist-pagination__page:disabled {
	background: #000;
	color: #fff;
	cursor: default;
	opacity: 1;
}

.vdlv-wishlist-pagination__arrow {
	font-size: 30px;
	font-weight: 600;
}

.vdlv-wishlist-pagination__ellipsis {
	color: var(--vdlv-muted);
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.vdlv-wishlist-empty-state,
.vdlv-wishlist-detail {
	padding: 28px;
	border: 1px solid var(--vdlv-border);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 10px 25px rgba(32, 36, 71, .06);
}

.vdlv-wishlist-empty-state {
	margin-bottom: 40px;
	text-align: center;
}

.vdlv-wishlist-empty-state--login {
	display: grid;
	justify-items: center;
	gap: 16px;
	max-width: 720px;
	margin-right: auto;
	margin-left: auto;
	padding: 44px 32px;
}

.vdlv-wishlist-empty-state__heart {
	display: grid;
	width: 82px;
	height: 82px;
	place-items: center;
	border-radius: 999px;
	background: rgba(0, 162, 155, .12);
	color: var(--vdlv-blue);
}

.vdlv-wishlist-empty-state__heart svg {
	display: block;
	width: 44px;
	height: 44px;
	fill: #fff;
	stroke: currentColor;
	stroke-width: 4;
}

.vdlv-wishlist-empty-state h2 {
	margin: 0 0 8px;
	font: 600 28px/1.1 Arsenica Variable, Georgia, serif;
}

.vdlv-wishlist-empty-state p,
.vdlv-wishlist-empty-state__inline {
	margin: 0;
	color: var(--vdlv-muted);
}

.vdlv-wishlist-empty-state--login p {
	max-width: 520px;
	line-height: 1.55;
}

.vdlv-wishlist-detail__total {
	font: 600 28px/1 Arsenica Variable, Georgia, serif;
}

.vdlv-wishlist-items {
	display: grid;
	gap: 14px;
}

.vdlv-wishlist-item {
	position: relative;
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr) auto;
	grid-template-rows: auto auto;
	align-items: center;
	gap: 12px 18px;
	padding: 18px;
	border: 1px solid var(--vdlv-border);
	border-radius: 10px;
	background: #fff;
}

.vdlv-wishlist-item__image {
	grid-column: 1;
	grid-row: 1 / span 2;
	align-self: center;
}

.vdlv-wishlist-item__image img {
	display: block;
	width: 106px;
	height: 106px;
	object-fit: contain;
}

.vdlv-wishlist-item__info h3 {
	margin: 0 0 8px;
	font: 600 20px/1.1 Arsenica Variable, Georgia, serif;
}

.vdlv-wishlist-item__info h3 a {
	color: var(--vdlv-blue);
	text-decoration: none;
}

.vdlv-wishlist-item__variation,
.vdlv-wishlist-item__stock {
	margin: 4px 0;
	color: var(--vdlv-muted);
	font-size: 13px;
}

.vdlv-wishlist-item__info>p {
	margin-bottom: 0;
}

.vdlv-wishlist-item__description {
	display: none;
}

.vdlv-wishlist-item__stock {
	color: var(--vdlv-teal);
	font-weight: 700;
}

.vdlv-wishlist-item.is-unavailable .vdlv-wishlist-item__stock {
	color: #b42318;
}

.vdlv-wishlist-item__controls {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: flex-start;
	gap: 8px;
	width: max-content;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
	margin: 8px 0 0;
	white-space: nowrap;
}

.vdlv-wishlist-item__controls>* {
	align-self: flex-start;
	margin: 0;
}

.vdlv-wishlist-item__controls br {
	display: none !important;
}

.vdlv-wishlist-item__info {
	grid-column: 2;
	grid-row: 1;
	align-self: start;
	min-width: 0;
}

.vdlv-wishlist-item {
	align-items: start;
}

.vdlv-wishlist-item__top-actions {
	grid-column: 3;
	grid-row: 1;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 16px;
	min-width: 0;
}

.vdlv-wishlist-item__price {
	align-self: flex-start;
	margin: 0;
	font: 600 22px/1 Arsenica Variable, Georgia, serif;
	white-space: nowrap;
}

.vdlv-wishlist-item__quantity {
	display: flex;
	width: 95px;
	min-width: 95px;
	height: 38px;
	align-items: center;
	justify-content: space-between;
	overflow: hidden;
	border: 1px solid rgba(32, 35, 68, .18);
	border-radius: 8px;
	background: #fff;
}

.vdlv-wishlist-item__controls select {
	box-sizing: border-box;
	min-height: 38px;
	padding: 8px 10px;
	border: 1px solid var(--vdlv-border);
	border-radius: 8px;
	background: #fff;
	color: var(--vdlv-blue);
}

.vdlv-wishlist-item__quantity button {
	width: 20px;
	height: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--vdlv-blue);
	font: 400 20px/1 "Myriad Pro", Arial, sans-serif;
	cursor: pointer;
}

.vdlv-wishlist-item__quantity input {
	width: 50px;
	min-height: 36px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--vdlv-blue);
	font: 500 18px/1 "Myriad Pro", Arial, sans-serif;
	text-align: center;
	appearance: textfield;
}

.vdlv-wishlist-item__quantity input::-webkit-inner-spin-button,
.vdlv-wishlist-item__quantity input::-webkit-outer-spin-button {
	margin: 0;
	appearance: none;
}

.vdlv-wishlist-item__controls select {
	width: 210px !important;
	max-width: 52%;
	min-width: 0;
	flex: 1 1 160px;
}

.vdlv-wishlist-item__controls .vdlv-wishlist-button {
	display: inline-flex !important;
	flex: 0 1 auto;
	width: auto !important;
	min-height: 38px;
	padding: 9px 10px;
	font-size: 12px;
	white-space: nowrap;
}

.vdlv-wishlist-item__top-actions [data-vdlv-remove-item] {
	display: inline-flex;
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent url('https://vdlv-multi.ethiko.io/wp-content/uploads/2026/07/Button-Supprimer.svg') center / 20px 20px no-repeat;
	font-size: 0;
}

.vdlv-wishlist-page-modal[hidden] {
	display: none;
}

.vdlv-wishlist-page-modal {
	position: fixed;
	inset: 0;
	z-index: 100002;
	display: grid;
	place-items: center;
	padding: 20px;
}

.vdlv-wishlist-page-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(32, 36, 71, .48);
}

.vdlv-wishlist-page-modal__dialog {
	position: relative;
	width: min(100%, 480px);
	padding: 32px;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(32, 36, 71, .2);
}

.vdlv-wishlist-page-modal__dialog h2 {
	margin: 0 40px 22px 0;
	color: var(--vdlv-blue);
	font: 400 34px/1.15 Arsenica Variable, Georgia, serif;
}

.vdlv-wishlist-page-modal__dialog label {
	display: block;
	margin-bottom: 8px;
	color: var(--vdlv-blue);
	font-weight: 700;
}

.vdlv-wishlist-page-modal__dialog input {
	box-sizing: border-box;
	width: 100%;
	min-height: 48px;
	padding: 10px 14px;
	border: 1px solid var(--vdlv-border);
	border-radius: 6px;
	background: #fff;
	color: var(--vdlv-blue);
}

.vdlv-wishlist-page-modal__check {
	display: flex !important;
	align-items: center;
	gap: 10px;
	margin: 16px 0 0;
	cursor: pointer;
}

.vdlv-wishlist-page-modal__check input {
	width: 18px;
	min-height: 18px;
	flex: 0 0 18px;
	margin: 0;
	accent-color: var(--vdlv-teal);
}

.vdlv-wishlist-page-modal__check input:disabled + span {
	color: var(--vdlv-muted);
}

.vdlv-wishlist-page-modal__note {
	margin: 8px 0 0;
	color: var(--vdlv-muted);
	font-size: 13px;
	font-weight: 600;
}

.vdlv-wishlist-page-modal__dialog>.vdlv-wishlist-icon-button {
	position: absolute;
	top: 14px;
	right: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #f2f4f8;
	color: var(--vdlv-blue);
	font-size: 20px;
	line-height: 1;
}

.vdlv-wishlist-page-modal__dialog [data-vdlv-page-feedback] {
	color: #b42318;
}

.vdlv-wishlist-page-modal__actions {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
	margin-top: 24px;
}

.vdlv-wishlist-page-modal__actions .vdlv-wishlist-button--outline {
	font-size: 15px;
}

/* Detail modal. The detail panel keeps its existing component styles. */
.vdlv-wishlist-detail-modal[hidden] {
	display: none !important;
}

.vdlv-wishlist-detail-modal {
	position: fixed;
	inset: 0;
	z-index: 100003;
	display: grid;
	place-items: center;
	padding: 20px;
}

.vdlv-wishlist-detail-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(32, 36, 71, .5);
}

.vdlv-wishlist-detail-modal__dialog {
	position: relative;
	width: min(100%, 1180px);
	max-height: 90vh;
	overflow-y: auto;
	outline: 0;
}

.vdlv-wishlist-detail-modal__close {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 2;
	width: 40px;
	height: 40px;
	background: #f2f4f8;
}

.vdlv-wishlist-detail-modal [data-wishlist-detail][hidden] {
	display: none;
}

body.vdlv-wishlist-page-modal-open {
	overflow: hidden;
}

/* Product preview: flexible card proportions matching the VDLV wishlist view. */

.vdlv-wishlist-item {
	grid-template-columns: 130px minmax(0, 1fr) 200px;
	min-height: 0;
	padding: 15px;
	border-radius: 8px;
	box-shadow: none;
	border-color: rgba(32, 35, 68, .22);
}

.vdlv-wishlist-item__info h3 {
	font-size: 20px;
	line-height: 1.15;
}

.vdlv-wishlist-item__info {
	align-self: start;
}

.vdlv-wishlist-item__variation,
.vdlv-wishlist-item__stock {
	font-size: 15px;
	line-height: 1.35;
}

.vdlv-wishlist-item__price {
	font-size: 30px;
	white-space: nowrap;
}


@media (min-width: 601px) {
	.vdlv-wishlist-list-card__meta {
		position: absolute;
		left: 90px;
		bottom: 18px;
		margin: 0;
		padding: 0;
	}

	.vdlv-wishlist-list-card__actions {
		position: absolute;
		right: 18px;
		bottom: 18px;
		grid-column: auto;
		grid-row: auto;
	}

	.vdlv-wishlist-list-card__actions .vdlv-wishlist-button {
		min-width: 112px;
		min-height: 36px;
		padding: 9px 16px;
		font-size: 12px;
	}

	.vdlv-wishlist-item {
		grid-template-columns: 130px minmax(0, 1fr) 200px;
		padding: 15px;
		border-radius: 8px;
		box-shadow: none;
		border-color: rgba(32, 35, 68, .22);
	}

	.vdlv-wishlist-item__image img {
		width: 130px;
		max-height: 150px;
	}

	.vdlv-wishlist-item__info h3 {
		font-size: 20px;
		line-height: 1.15;
	}

	.vdlv-wishlist-item__description {
		max-width: 680px;
	}
}

@media (min-width: 601px) and (max-width: 900px) {
	.vdlv-wishlist-item {
		grid-template-columns: 86px minmax(0, 1fr);
		width: 100%;
		box-sizing: border-box;
	}

	.vdlv-wishlist-item__image {
		grid-column: 1;
		grid-row: 1 / span 5;
	}

	.vdlv-wishlist-item__info,
	.vdlv-wishlist-item__top-actions {
		display: contents;
	}

	.vdlv-wishlist-item__info h3 {
		grid-column: 2;
		grid-row: 1;
		margin: 0;
	}

	.vdlv-wishlist-item__price {
		grid-column: 2;
		grid-row: 2;
		justify-self: start;
		margin: 0;
	}

	.vdlv-wishlist-item__variation {
		grid-column: 2;
		grid-row: 3;
	}

	.vdlv-wishlist-item__stock {
		grid-column: 2;
		grid-row: 4;
	}

	.vdlv-wishlist-item__controls {
		grid-column: 2;
		grid-row: 5;
	}

	.vdlv-wishlist-item__top-actions [data-vdlv-remove-item] {
		position: absolute;
		top: 12px;
		right: 12px;
		z-index: 1;
	}
}

@media (max-width: 900px) {
	.vdlv-wishlist-item {
		grid-template-columns: 86px minmax(0, 1fr);
	}

	.vdlv-wishlist-item__image {
		grid-column: 1;
	}

	.vdlv-wishlist-item__info {
		grid-column: 2;
		grid-row: 1;
	}

	.vdlv-wishlist-item__top-actions {
		grid-column: 2;
		grid-row: 2;
	}

	.vdlv-wishlist-item {
		grid-template-columns: inherit;
		grid-template-rows: auto auto auto;
		gap: 14px;
		min-height: 0;
		padding: 20px;
	}

	.vdlv-wishlist-item__controls select {
		flex: 1 1 40px;
	}
}

@media (max-width: 600px) {
	.vdlv-wishlist-page {
		width: min(100% - 24px, 560px);
		margin: 28px auto 48px;
	}

	.vdlv-wishlist-page__header,
	.vdlv-wishlist-detail__header {
		align-items: flex-start;
		flex-direction: column;
	}

	.vdlv-wishlist-page__header .vdlv-wishlist-button {
		width: 100%;
	}

	.vdlv-wishlist-list-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.vdlv-wishlist-list-card {
		grid-template-columns: 54px minmax(0, 1fr);
		grid-template-rows: 1fr auto;
		align-items: stretch;
		min-height: 0;
		gap: 12px;
		padding: 15px;
	}

	.vdlv-wishlist-list-card__actions {
		grid-column: 1 / -1;
		grid-row: 2;
		width: 100%;
	}

	.vdlv-wishlist-list-card__actions .vdlv-wishlist-button {
		width: 100%;
	}

	.vdlv-wishlist-item {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		grid-template-rows: auto;
		width: 100%;
		box-sizing: border-box;
		gap: 12px;
		padding: 16px;
	}

	.vdlv-wishlist-item__image img {
		width: 78px;
		height: 78px;
	}

	.vdlv-wishlist-item__image {
		grid-column: 1;
		grid-row: 1;
		justify-self: center;
	}

	.vdlv-wishlist-item__info {
		display: contents;
	}

	.vdlv-wishlist-item__info h3 {
		grid-column: 1;
		grid-row: 2;
		margin: 0;
		text-align: center;
	}

	.vdlv-wishlist-item__top-actions {
		display: contents;
	}

	.vdlv-wishlist-item__top-actions [data-vdlv-remove-item] {
		position: absolute;
		top: 12px;
		right: 12px;
		z-index: 1;
	}

	.vdlv-wishlist-item__price {
		grid-column: 1;
		grid-row: 3;
		justify-self: center;
		margin: 0;
		font-size: 22px;
	}

	.vdlv-wishlist-item__variation,
	.vdlv-wishlist-item__stock {
		grid-column: 1;
		text-align: center;
	}

	.vdlv-wishlist-item__variation {
		grid-row: 4;
	}

	.vdlv-wishlist-item__stock {
		grid-row: 5;
	}

	.vdlv-wishlist-item__controls {
		grid-column: 1;
		grid-row: 6;
		align-items: stretch;
		flex-direction: column !important;
		flex-wrap: nowrap !important;
		width: 100%;
		gap: 10px;
		margin-top: 4px;
	}

	.vdlv-wishlist-item__quantity,
	.vdlv-wishlist-item__controls select,
	.vdlv-wishlist-item__controls .vdlv-wishlist-button {
		width: 100% !important;
		max-width: none;
		box-sizing: border-box;
	}

	.vdlv-wishlist-item__controls select {
		height: 38px;
		min-height: 38px;
		padding: 4px 10px;
		line-height: 1.2;
	}

	.vdlv-wishlist-item__quantity {
		align-self: center;
		width: 110px !important;
	}

	.vdlv-wishlist-item__top-actions {
		grid-column: 1;
		grid-row: 6;
		align-items: center;
		justify-content: space-between;
		width: 100%;
	}

	.vdlv-wishlist-page-modal {
		align-items: end;
		padding: 12px;
		padding-bottom: calc(12px + env(safe-area-inset-bottom));
	}

	.vdlv-wishlist-page-modal__dialog {
		padding: 26px 20px 20px;
	}

	.vdlv-wishlist-page-modal__actions {
		flex-direction: column-reverse;
	}

	.vdlv-wishlist-page-modal__actions .vdlv-wishlist-button {
		width: 100%;
	}

	.vdlv-wishlist-item {
		grid-template-columns: inherit;
		grid-template-rows: auto auto auto;
		gap: 14px;
		min-height: 0;
		padding: 20px;
	}

	.vdlv-wishlist-item__controls select {
		flex: 1 1 40px;
	}

	.vdlv-wishlist-item__image img {
		width: 78px;
		height: 78px;
	}

	.vdlv-wishlist-item__info h3 {
		font-size: 24px;
	}

	.vdlv-wishlist-item__variation,
	.vdlv-wishlist-item__stock,
	.vdlv-wishlist-item__description {
		font-size: 14px;
	}

	.vdlv-wishlist-list-card {
		height: 240px;
	}
}
