/**
 * Wishlist page — WoodMart-native controls (remove row + bulk toolbar).
 */

/* My Account sidebar on the wishlist page (logged-in layout). */
.wd-my-account-wrapper .wd-nav-my-acc > li > a {
	gap: 10px;
}

.wd-my-account-wrapper .wd-nav-my-acc > li > a .wd-nav-icon {
	flex-shrink: 0;
}

/* Remove social share row from wishlist header. */
.wd-wishlist-head .wd-social-icons,
.wd-wishlist-head .share-title {
	display: none !important;
}

/*
 * On the wishlist page every product is already saved.
 * WoodMart dims and disables the loop heart — restore filled/active state and allow remove.
 */
.wd-wishlist-content:not(.wd-wishlist-preview) .wd-wishlist-btn {
	opacity: 1 !important;
	pointer-events: auto !important;
}

.wd-wishlist-content:not(.wd-wishlist-preview) .wd-wishlist-btn a {
	cursor: pointer;
}

.wd-wishlist-content:not(.wd-wishlist-preview) .wd-wishlist-btn a.added .wd-action-icon {
	color: var(--wd-primary-color, #1ebbb4);
}

/* Per-product row: Remove (left) + checkbox (right), above the card. */
.wd-wishlist-content .wd-product > .wd-wishlist-product-actions {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0 0 10px;
	padding: 0 2px;
	height: auto;
}

.wd-wishlist-content .wd-wishlist-product-remove {
	display: block !important;
	flex: 0 1 auto;
	font-size: 13px;
}

.wd-wishlist-content .wd-wishlist-product-remove > a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 0;
	padding: 0;
	background: none;
	box-shadow: none;
	color: var(--color-gray-700, #555);
	text-decoration: none;
}

.wd-wishlist-content .wd-wishlist-product-remove > a:hover {
	color: var(--wd-primary-color, #1ebbb4);
}

.wd-wishlist-content .wd-wishlist-product-remove .wd-action-text {
	display: inline;
	font-weight: 600;
}

.wd-wishlist-content .wd-wishlist-product-checkbox {
	flex: 0 0 auto;
	text-align: end;
	font-size: 0;
}

.wd-wishlist-content .wd-wishlist-product-checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: var(--wd-primary-color, #1ebbb4);
	cursor: pointer;
	vertical-align: middle;
}

/* Bulk toolbar — visible on wishlist pages with items. */
.wd-wishlist-content:not(.wd-wishlist-preview) .wd-wishlist-bulk-action {
	height: 40px;
	margin-top: 0;
	margin-bottom: 16px;
	pointer-events: auto;
}

.wd-wishlist-content:not(.wd-wishlist-preview) .wd-wishlist-bulk-action .wd-action-btn {
	opacity: 1;
}

/* Selected for bulk remove. */
.wd-wishlist-content .wd-product.wd-current-product .wd-product-wrapper,
.wd-wishlist-content .wd-product.wd-current-product > .product-wrapper {
	outline: 2px solid var(--wd-primary-color, #1ebbb4);
	outline-offset: 3px;
	border-radius: var(--wd-brd-radius, 4px);
}
