/**
 * Wishlist specialized styling
 */

.ecn-wishlist-header {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 32px;
}

.ecn-wishlist-header h1 {
	margin: 0;
	font-family: var(--ecn-serif);
	font-size: clamp(28px, 4vw, 36px);
	font-weight: 400;
}

.ecn-wishlist-header h1 span {
	font-size: 0.6em;
	color: var(--ecn-soft);
	margin-inline-start: 8px;
}

.ecn-wishlist-header p {
	margin: 8px 0 0;
	color: var(--ecn-muted);
	font-size: 14px;
}

.ecn-wishlist-actions {
	display: flex;
	gap: 12px;
}

.ecn-wishlist-sort select {
	height: 40px;
	padding-inline: 16px 32px;
	border: 1px solid var(--ecn-border);
	border-radius: var(--ecn-radius-sm);
	background: var(--ecn-paper);
	font-size: 12px;
	color: var(--ecn-text);
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238e7868' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 8px center;
	background-size: 16px;
}

[dir="rtl"] .ecn-wishlist-sort select {
	background-position: left 8px center;
}

/* Specialized Wishlist Card */
.ecn-product-card--wishlist {
	display: flex;
	flex-direction: column;
}

.ecn-product-card--wishlist h3 {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
}

.ecn-product-card--wishlist .ecn-wishlist-toggle {
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--ecn-text);
	flex-shrink: 0;
}

.ecn-wishlist-card-actions {
	display: flex;
	gap: 12px;
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid var(--ecn-border-soft);
}

.ecn-wishlist-card-actions .ecn-button {
	flex: 1;
	min-height: 36px;
	font-size: 11px;
}

/* Discovery Band */
.ecn-discovery-band {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin: 60px 0;
	padding: 40px;
	background: var(--ecn-panel);
	border-radius: var(--ecn-radius);
	text-align: center;
}

.ecn-discovery-band h2 {
	margin: 0;
	font-family: var(--ecn-serif);
	font-size: 24px;
	font-weight: 400;
}

.ecn-discovery-band p {
	margin: 0;
	color: var(--ecn-muted);
	font-size: 14px;
}

@media (min-width: 768px) {
	.ecn-wishlist-header {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

@media (min-width: 1024px) {
	.ecn-discovery-band {
		flex-direction: row;
		justify-content: space-between;
		text-align: start;
	}
	
	.ecn-discovery-band .ecn-button {
		min-width: 200px;
	}
}
