/* ============================================================
   Technologia — Wishlist (boutons + page)
   ============================================================ */

/* Bouton "Ajouter à la wishlist" (fiche produit) */
.tec-wishlist-btn-wrap {
	margin: 16px 0;
}

.tec-wishlist-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border: 2px solid var(--tec-navy);
	border-radius: var(--tec-radius-md);
	background: transparent;
	color: var(--tec-navy);
	font-family: var(--tec-font-sans);
	font-weight: 600;
	font-size: var(--tec-fs-sm);
	cursor: pointer;
	transition: all var(--tec-dur-base);
}

.tec-wishlist-btn:hover {
	background: var(--tec-surface-tint, #EAF1F8);
	border-color: var(--tec-agent-ink, #0B7BA6);
}

.tec-wishlist-btn.is-active {
	background: var(--tec-navy);
	color: #fff;
	border-color: var(--tec-navy);
}

.tec-wishlist-btn svg {
	width: 20px;
	height: 20px;
	stroke-width: 1.7;
}

.tec-wishlist-btn.is-active svg {
	fill: currentColor;
	stroke: none;
}

/* Page wishlist : aucun produit */
.tec-wishlist-empty {
	padding: 40px 20px;
	text-align: center;
	color: var(--tec-ink-500);
	font-family: var(--tec-font-sans);
}

.tec-wishlist-empty p {
	margin: 0;
	font-size: var(--tec-fs-base);
	line-height: 1.5;
}

.tec-wishlist-empty a {
	color: var(--tec-agent-ink, #0B7BA6);
	text-decoration: none;
	font-weight: 600;
	transition: color var(--tec-dur-fast);
}

.tec-wishlist-empty a:hover {
	color: var(--tec-navy);
}

/* Grille de produits (wishlist) */
.tec-wishlist-products .products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 20px;
}

@media (min-width: 768px) {
	.tec-wishlist-products .products {
		grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
		gap: 24px;
	}
}
