.tww-wishlist-control {
	position: relative;
	font-family: "Open Sans", Arial, sans-serif;
}

.tww-wishlist-control--card {
	margin-top: 8px;
}

.tww-wishlist-trigger {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 100%;
	min-height: 40px;
	padding: 8px 10px !important;
	border: 1px solid #cfd9e8 !important;
	border-radius: 10px !important;
	background: #fff !important;
	color: #182033 !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	line-height: 1.25;
	box-shadow: none !important;
}

.tww-wishlist-trigger:hover,
.tww-wishlist-trigger:focus-visible,
.tww-wishlist-trigger.is-saved {
	border-color: #3478f6 !important;
	background: #eef5ff !important;
}

.tww-wishlist-trigger > [aria-hidden="true"] {
	color: #3478f6;
	font-size: 18px;
	line-height: 1;
}

.tww-wishlist-trigger.is-loading {
	opacity: .65;
	pointer-events: none;
}

.tww-wishlist-control--single {
	flex: 1 1 100%;
	margin-top: 6px;
}

.tww-wishlist-control--single .tww-wishlist-trigger {
	min-height: 48px;
	font-size: 14px !important;
}

.tww-wishlist-popover {
	position: absolute;
	z-index: 100;
	right: 0;
	top: calc(100% + 8px);
	width: min(290px, calc(100vw - 28px));
	padding: 12px;
	border: 1px solid #dbe3f0;
	border-radius: 15px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(24, 32, 51, .18);
	color: #182033;
}

.tww-wishlist-popover__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 9px;
}

.tww-wishlist-popover__head > button {
	width: 30px;
	height: 30px;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 50% !important;
	background: #f1f4f9 !important;
	color: #182033 !important;
	font-size: 21px !important;
}

.tww-wishlist-choices {
	display: grid;
	gap: 6px;
	max-height: 240px;
	overflow: auto;
}

.tww-wishlist-choice {
	display: grid;
	grid-template-columns: 26px 1fr;
	gap: 0 7px;
	width: 100%;
	padding: 8px !important;
	border: 1px solid #e0e6f0 !important;
	border-radius: 10px !important;
	background: #fff !important;
	color: #182033 !important;
	text-align: left;
}

.tww-wishlist-choice > span {
	grid-row: 1 / 3;
	align-self: center;
	font-size: 18px;
	color: #3478f6;
}

.tww-wishlist-choice strong,
.tww-wishlist-choice small {
	display: block;
}

.tww-wishlist-choice small {
	color: #667085;
}

.tww-wishlist-choice.is-saved {
	background: #eef8f4 !important;
	opacity: 1;
}

.tww-wishlist-new-toggle {
	width: 100%;
	margin-top: 8px;
	padding: 8px !important;
	border: 0 !important;
	background: transparent !important;
	color: #3478f6 !important;
	font-size: 12px !important;
}

.tww-wishlist-popover__new {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 6px;
	margin-top: 8px;
}

.tww-wishlist-popover__new input {
	min-width: 0;
	padding: 9px;
	border: 1px solid #cfd9e8;
	border-radius: 9px;
}

.tww-wishlist-popover__new button {
	padding: 8px 10px !important;
	border-radius: 9px !important;
	font-size: 11px !important;
}

.tww-wishlist-toast {
	position: fixed;
	z-index: 10000;
	left: 50%;
	bottom: 28px;
	transform: translate(-50%, 18px);
	max-width: min(440px, calc(100vw - 28px));
	padding: 11px 16px;
	border: 1px solid #edc12a;
	border-radius: 12px;
	background: #fff1a8;
	color: #182033;
	font: 700 13px/1.35 "Open Sans", Arial, sans-serif;
	box-shadow: 0 14px 36px rgba(24, 32, 51, .2);
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s ease, transform .2s ease;
}

.tww-wishlist-toast.is-visible {
	transform: translate(-50%, 0);
	opacity: 1;
}

.tww-wishlist-account {
	font-family: "Open Sans", Arial, sans-serif;
	color: #182033;
}

.tww-account-summary {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 30px;
	font-family: "Open Sans", Arial, sans-serif;
}

.tww-account-summary__card {
	position: relative;
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) auto;
	align-items: center;
	gap: 13px;
	min-height: 138px;
	padding: 20px;
	overflow: hidden;
	border: 1px solid #d9e3f2;
	border-radius: 20px;
	background: linear-gradient(145deg, #fff 5%, #f5f8ff 100%);
	color: #182033;
	box-shadow: 0 13px 34px rgba(25, 41, 70, .09);
	text-decoration: none !important;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.tww-account-summary__card::after {
	position: absolute;
	right: -28px;
	top: -34px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: rgba(52, 120, 246, .09);
	content: "";
}

.tww-account-summary__card:hover,
.tww-account-summary__card:focus-visible {
	transform: translateY(-3px);
	border-color: #8db4ff;
	box-shadow: 0 18px 42px rgba(25, 41, 70, .14);
}

.tww-account-summary__icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 15px;
	background: linear-gradient(135deg, #3478f6, #7658ff);
	box-shadow: 0 8px 20px rgba(52, 120, 246, .24);
}

.tww-account-summary__icon::before {
	color: #fff;
	font-size: 23px;
	line-height: 1;
}

.tww-account-summary__card--box .tww-account-summary__icon::before {
	content: "▣";
}

.tww-account-summary__card--cart .tww-account-summary__icon::before {
	content: "🛒";
	font-size: 20px;
}

.tww-account-summary__card--heart .tww-account-summary__icon::before {
	content: "♥";
}

.tww-account-summary__content,
.tww-account-summary__content strong,
.tww-account-summary__content b,
.tww-account-summary__content small {
	display: block;
}

.tww-account-summary__content strong {
	margin-bottom: 2px;
	font-size: 30px;
	line-height: 1;
}

.tww-account-summary__content b {
	font-size: 14px;
}

.tww-account-summary__content small {
	margin-top: 5px;
	color: #667085;
	font-size: 11px;
	line-height: 1.35;
}

.tww-account-summary__arrow {
	position: relative;
	z-index: 1;
	align-self: end;
	color: #3478f6;
	font-size: 20px;
	font-weight: 800;
}

.tww-address-sync {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	margin: 0 0 18px;
	padding: 14px 16px;
	border: 1px solid #bfd4fb;
	border-radius: 14px;
	background: linear-gradient(135deg, #eef6ff, #f7f4ff);
	color: #182033;
	font-family: "Open Sans", Arial, sans-serif;
	cursor: pointer;
}

.tww-address-sync--billing {
	margin-top: 18px;
}

.tww-address-sync input {
	flex: 0 0 auto;
	width: 19px !important;
	height: 19px !important;
	margin: 2px 0 0 !important;
	accent-color: #3478f6;
}

.tww-address-sync span,
.tww-address-sync strong,
.tww-address-sync small {
	display: block;
}

.tww-address-sync strong {
	font-size: 14px;
	line-height: 1.4;
}

.tww-address-sync small {
	margin-top: 2px;
	color: #667085;
	font-size: 12px;
}

.tww-wishlist-account__header {
	margin-bottom: 20px;
}

.tww-wishlist-account__header span {
	color: #00a9c7;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .12em;
}

.tww-wishlist-account__header h2 {
	margin: 4px 0 7px;
	font-size: clamp(26px, 3vw, 38px);
}

.tww-wishlist-account__header p {
	max-width: 760px;
	margin: 0;
	color: #667085;
}

.tww-wishlist-account__layout {
	display: grid;
	grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
	gap: 20px;
}

.tww-wishlist-lists,
.tww-wishlist-current {
	border: 1px solid #dbe3f0;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(25, 41, 70, .07);
}

.tww-wishlist-lists {
	align-self: start;
	padding: 10px;
}

.tww-wishlist-list {
	padding: 9px;
	border-radius: 12px;
}

.tww-wishlist-list + .tww-wishlist-list {
	margin-top: 5px;
}

.tww-wishlist-list.is-active {
	background: #eef5ff;
}

.tww-wishlist-list a,
.tww-wishlist-list strong,
.tww-wishlist-list small {
	display: block;
}

.tww-wishlist-list small {
	margin-top: 2px;
	color: #667085;
}

.tww-wishlist-list > div {
	display: flex;
	gap: 8px;
	margin-top: 6px;
}

.tww-wishlist-list > div button,
.tww-wishlist-product__actions button {
	padding: 2px 0 !important;
	border: 0 !important;
	background: transparent !important;
	color: #667085 !important;
	font-size: 11px !important;
}

.tww-wishlist-list > div button:last-child,
.tww-wishlist-product__actions button {
	color: #b42318 !important;
}

.tww-wishlist-create {
	margin-top: 12px;
	padding: 11px 8px 3px;
	border-top: 1px solid #e5eaf2;
}

.tww-wishlist-create label {
	display: block;
	margin-bottom: 6px;
	font-size: 12px;
	font-weight: 700;
}

.tww-wishlist-create > div {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 5px;
}

.tww-wishlist-create input {
	min-width: 0;
	padding: 9px;
	border: 1px solid #cfd9e8;
	border-radius: 9px;
}

.tww-wishlist-create button {
	padding: 8px 11px !important;
	border-radius: 9px !important;
}

.tww-wishlist-current {
	padding: 18px;
}

.tww-wishlist-current__title {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 14px;
}

.tww-wishlist-current__title h3 {
	margin: 0;
	font-size: 22px;
}

.tww-wishlist-current__title span {
	color: #667085;
	font-size: 12px;
}

.tww-wishlist-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.tww-wishlist-product {
	min-width: 0;
	overflow: hidden;
	border: 1px solid #dbe3f0;
	border-radius: 14px;
	background: #fff;
}

.tww-wishlist-product__image {
	display: block;
	aspect-ratio: 1;
	background: #f4f7fc;
}

.tww-wishlist-product__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.tww-wishlist-product__body {
	padding: 11px;
}

.tww-wishlist-product__body h4 {
	margin: 0 0 6px;
	font-size: 14px;
	line-height: 1.3;
}

.tww-wishlist-product__price {
	color: #182033;
	font-weight: 800;
}

.tww-wishlist-product__actions {
	display: grid;
	gap: 5px;
	margin-top: 10px;
}

.tww-wishlist-product__actions .button {
	width: 100%;
	padding: 8px 10px !important;
	text-align: center;
}

.tww-wishlist-empty {
	padding: 46px 20px;
	text-align: center;
}

.tww-wishlist-empty > span {
	display: block;
	color: #3478f6;
	font-size: 48px;
}

.tww-wishlist-empty h3 {
	margin: 6px 0;
}

.tww-wishlist-empty p {
	margin: 0 0 18px;
	color: #667085;
}

@media (max-width: 980px) {
	.tww-account-summary {
		grid-template-columns: 1fr;
	}

	.tww-wishlist-account__layout {
		grid-template-columns: 1fr;
	}

	.tww-wishlist-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.tww-wishlist-product-grid {
		grid-template-columns: 1fr;
	}

	.tww-wishlist-current {
		padding: 12px;
	}
}
