/* ── دکمه قلب روی کارت فروشگاه ── */
.nw-wish-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .35rem;
	background: rgba(255,255,255,.9);
	border: none;
	border-radius: 50%;
	width: 2rem;
	height: 2rem;
	cursor: pointer;
	color: #666;
	font-size: .9rem;
	transition: color .2s, transform .15s;
	line-height: 1;
}
.nw-wish-btn:hover { color: #e53e3e; transform: scale(1.15); }
.nw-wish-btn--active { color: #e53e3e; }
.nw-wish-btn--active .ti-heart::before { content: "\eb22"; } /* نمایش filled از طریق CSS نیست — JS مدیریت می‌کند */

/* دکمه PDP (متنی) */
.nw-wish-btn--pdp {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	width: 100%;
	padding: .6rem 1rem;
	margin-block-start: .6rem;
	background: #fff;
	border: 1.5px solid #ddd;
	border-radius: 8px;
	font-size: .875rem;
	font-family: inherit;
	color: #555;
	cursor: pointer;
	transition: border-color .2s, color .2s;
}
.nw-wish-btn--pdp:hover,
.nw-wish-btn--pdp.nw-wish-btn--active {
	border-color: #e53e3e;
	color: #e53e3e;
}

/* ── صفحه علاقه‌مندی my-account ── */
.nw-wish-empty {
	text-align: center;
	padding: 3rem 1rem;
	color: #888;
}
.nw-wish-empty .ti { font-size: 3rem; display: block; margin-block-end: 1rem; }
.nw-wish-empty p { margin-block-end: 1.25rem; }

.nw-wish-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1.25rem;
}

.nw-wish-item {
	position: relative;
	border: 1px solid #eee;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	display: flex;
	flex-direction: column;
	transition: box-shadow .2s;
}
.nw-wish-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }

.nw-wish-item__remove {
	position: absolute;
	inset-block-start: .6rem;
	inset-inline-end: .6rem;
	z-index: 1;
}

.nw-wish-item__img-wrap { display: block; }
.nw-wish-item__img { width: 100%; aspect-ratio: 1; object-fit: contain; }

.nw-wish-item__body {
	padding: .75rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.nw-wish-item__name {
	font-size: .875rem;
	color: #222;
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-block-end: .4rem;
}
.nw-wish-item__price {
	font-size: .875rem;
	color: #e53e3e;
	margin-block-end: .75rem;
}
.nw-wish-item__out { color: #999; font-size: .8rem; }
.nw-wish-item__foot {
	margin-block-start: auto;
	display: flex;
	flex-direction: column;
	gap: .4rem;
}
.nw-wish-item__foot .button { text-align: center; font-size: .8rem; }
.nw-wish-item__view { text-decoration: none; }

/* انیمیشن حذف کارت */
.nw-wish-item--removing {
	opacity: 0;
	transform: scale(.9);
	transition: opacity .3s, transform .3s;
}
