/**
 * Starter Adult Shop — Wishlist Page
 */

.sas-wishlist {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
	font-family: 'Inter', sans-serif;
}
/* Page title styling for generic pages (wishlist, etc.) */
body:not(.single-product):not(.post-type-archive-product):not(.tax-product_cat):not(.woocommerce-account) .site-main > .page-header {
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 2rem 0;
}
body:not(.single-product):not(.post-type-archive-product):not(.tax-product_cat):not(.woocommerce-account) .site-main > .page-header .entry-title {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	font-weight: 600;
	color: #fff;
}
.sas-wishlist__title {
	font-family: 'Playfair Display', serif;
	font-size: 1.75rem;
	font-weight: 600;
	color: var(--sas-text, #fff);
	margin: 0 0 .5rem;
}
.sas-wishlist__count {
	font-size: .85rem;
	color: var(--sas-text3, rgba(255,255,255,.5));
	margin-bottom: 1.5rem;
	display: block;
}
.sas-wishlist__actions {
	display: flex;
	gap: .75rem;
	margin-bottom: 1.5rem;
}
.sas-wishlist__clear {
	background: transparent;
	border: 1px solid var(--sas-border2, rgba(232,98,138,.15));
	color: var(--sas-text3, rgba(255,255,255,.5));
	border-radius: 8px;
	padding: .5rem 1.25rem;
	font-size: .8rem;
	font-family: 'Inter', sans-serif;
	cursor: pointer;
	transition: all .25s;
}
.sas-wishlist__clear:hover {
	border-color: #e53e3e;
	color: #e53e3e;
}
.sas-wishlist__addall {
	background: linear-gradient(135deg, #e8628a, #d4507a);
	border: none;
	color: #fff;
	border-radius: 8px;
	padding: .5rem 1.25rem;
	font-size: .8rem;
	font-weight: 600;
	font-family: 'Inter', sans-serif;
	cursor: pointer;
	transition: all .25s;
}
.sas-wishlist__addall:hover {
	box-shadow: 0 4px 16px rgba(232,98,138,.3);
}

/* Empty state */
.sas-wishlist__empty {
	text-align: center;
	padding: 4rem 2rem;
	color: var(--sas-text4, rgba(255,255,255,.4));
}
.sas-wishlist__empty svg {
	margin-bottom: 1rem;
	opacity: .4;
}
.sas-wishlist__empty p {
	font-size: 1rem;
	margin: 0 0 1rem;
}
.sas-wishlist__empty a {
	color: #e8628a;
	text-decoration: none;
	font-weight: 600;
}

/* Loading */
.sas-wishlist__loading {
	text-align: center;
	padding: 3rem;
	color: var(--sas-text4);
	font-size: .9rem;
}

/* Grid */
.sas-wishlist__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1.25rem;
}

/* === Wishlist Card === */
.sas-wl-card {
	background: var(--sas-card-flat, #1a1028);
	border: 1px solid var(--sas-border, rgba(232,98,138,.08));
	border-radius: 14px;
	overflow: hidden;
	position: relative;
	transition: all .3s;
}
.sas-wl-card:hover {
	border-color: var(--sas-border2);
	box-shadow: 0 8px 24px var(--sas-shadow2);
}
.sas-wl-card__remove {
	position: absolute;
	top: .5rem;
	right: .5rem;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(0,0,0,.5);
	color: #fff;
	border: none;
	font-size: 1.1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition: background .2s;
	padding: 0;
	line-height: 1;
}
.sas-wl-card__remove:hover { background: #e53e3e; }
.sas-wl-card__img { display: block; }
.sas-wl-card__img img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
}
.sas-wl-card__body {
	padding: 1rem;
}
.sas-wl-card__name {
	font-size: .85rem;
	font-weight: 600;
	color: var(--sas-text, #fff);
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.4;
	margin-bottom: .35rem;
}
.sas-wl-card__name:hover { color: #e8628a; }
.sas-wl-card__price {
	font-size: .9rem;
	font-weight: 700;
	color: #e8628a;
	margin-bottom: .35rem;
}
.sas-wl-card__price del {
	color: var(--sas-text4);
	font-size: .75rem;
	font-weight: 400;
}
.sas-wl-card__price ins { text-decoration: none; }
.sas-wl-card__stock {
	font-size: .7rem;
	font-weight: 600;
	margin-bottom: .5rem;
}
.sas-wl-card__stock--in { color: #22c55e; }
.sas-wl-card__stock--out { color: #ef4444; }
.sas-wl-card__atc {
	display: block;
	text-align: center;
	background: linear-gradient(135deg, #e8628a, #d4507a);
	color: #fff;
	border-radius: 8px;
	padding: .5rem;
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	text-decoration: none;
	transition: all .25s;
}
.sas-wl-card__atc:hover {
	box-shadow: 0 4px 16px rgba(232,98,138,.3);
}

/* === Light mode === */
body.sas-light .sas-wl-card {
	background: #fff;
	border-color: #f0dce4;
}
body.sas-light .sas-wl-card__name { color: #2d2235; }
body.sas-light .sas-wl-card__remove { background: rgba(0,0,0,.3); }
body.sas-light .sas-wishlist__title { color: #2d2235; }
body.sas-light .sas-wishlist__count { color: #7a6a82; }
body.sas-light .sas-wishlist__clear { border-color: #e8d5de; color: #7a6a82; }
