/**
 * Favoritos — listado tipo panel de reservas + botón corazón.
 */

.tb-wishlist {
	--tb-w-text: #1a2744;
	--tb-w-muted: #5b6475;
	--tb-w-teal: #2f998f;
	--tb-w-border: #e5e7eb;
	--tb-w-bg: #f5f4f2;
	max-width: 920px;
	margin: 0 auto;
	padding: 28px 16px 64px;
	color: var(--tb-w-text);
	font-family: Montserrat, system-ui, sans-serif;
}

.tb-wishlist__title {
	margin: 0 0 20px;
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.25;
	color: var(--tb-w-text);
}

.tb-wishlist__empty {
	margin: 0;
	color: var(--tb-w-muted);
	font-size: 1rem;
	line-height: 1.5;
}

.tb-wishlist__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	margin-top: 8px;
	padding: 10px 20px;
	border-radius: 999px;
	background: var(--tb-w-teal);
	color: #fff !important;
	font-weight: 700;
	text-decoration: none !important;
}

.tb-wishlist__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.tb-wishlist__card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border: 1px solid var(--tb-w-border);
	border-radius: 14px;
	background: #fff;
}

.tb-wishlist__link {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 1 1 auto;
	min-width: 0;
	text-decoration: none !important;
	color: inherit !important;
}

.tb-wishlist__thumb {
	width: 72px;
	height: 72px;
	border-radius: 10px;
	object-fit: cover;
	flex-shrink: 0;
	display: block;
}

.tb-wishlist__info {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.tb-wishlist__name {
	font-weight: 700;
	font-size: 0.98rem;
	line-height: 1.35;
}

.tb-wishlist__meta {
	color: var(--tb-w-muted);
	font-size: 0.88rem;
}

.tb-wishlist__price {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--tb-w-teal);
}

.tb-wishlist__remove {
	flex-shrink: 0;
	border: 0;
	background: transparent;
	color: var(--tb-w-muted);
	font: inherit;
	font-size: 0.85rem;
	font-weight: 700;
	cursor: pointer;
	text-decoration: underline;
	padding: 8px 4px;
}

.tb-wishlist__remove:hover {
	color: #b91c1c;
}

.tb-wishlist__card.is-removing {
	opacity: 0.45;
	pointer-events: none;
}

/* —— Botón corazón (overlay sobre imagen) —— */
.tb-wishlist-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 36px !important;
	height: 36px !important;
	min-width: 36px !important;
	min-height: 36px !important;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 50% !important;
	background: rgba(15, 23, 42, 0.32) !important;
	background-color: rgba(15, 23, 42, 0.32) !important;
	background-image: none !important;
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
	box-shadow: none !important;
	cursor: pointer !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	line-height: 1 !important;
	transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.tb-wishlist-btn:hover,
.tb-wishlist-btn:focus,
.tb-wishlist-btn:focus-visible {
	background: rgba(15, 23, 42, 0.46) !important;
	background-color: rgba(15, 23, 42, 0.46) !important;
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
	outline: none !important;
}

.tb-wishlist-btn.is-active {
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
}

.tb-wishlist-btn.is-active .tb-wishlist-btn__icon path {
	fill: currentColor;
}

.tb-wishlist-btn.is-loading {
	opacity: 0.6;
	pointer-events: none;
}

.tb-wishlist-btn__icon {
	display: block;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: inherit;
	stroke: currentColor;
}

.tb-wishlist-btn__icon path {
	stroke: currentColor;
	fill: none;
}

.tb-wishlist-btn.is-active .tb-wishlist-btn__icon path {
	fill: currentColor;
}

/* Cabecera: layout estándar (corazón va en meta) */
.tb-tour-product__header {
	display: block;
}

.tb-tour-product__header .tb-tour-product__title {
	margin-bottom: 12px;
}

.tb-tour-product__header .tb-tour-product__meta {
	margin-top: 0;
}

/* Misma pastilla oscura que el feed, al lado de Destino */
.tb-tour-product__meta .tb-wishlist-btn--meta {
	flex: 0 0 auto;
	margin-left: 4px;
}

.tb-tour-product__destination {
	margin-right: 0;
}

/* Galería móvil: sin caja amarilla del tema / share */
.custom-gallery-mobile__action--wishlist,
.custom-gallery-wrapper .custom-gallery-mobile__action--wishlist {
	padding: 0 !important;
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	border: 0 !important;
	box-shadow: none !important;
	width: auto !important;
	height: auto !important;
	min-width: 0 !important;
	min-height: 0 !important;
	cursor: default !important;
}

.custom-gallery-mobile__action--wishlist .tb-wishlist-btn,
.custom-gallery-wrapper .custom-gallery-mobile__action--wishlist .tb-wishlist-btn {
	width: 40px !important;
	height: 40px !important;
	min-width: 40px !important;
	min-height: 40px !important;
}

/* Feed cards */
.tb-product-loop__wishlist {
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
	border: 0 !important;
	width: auto !important;
	height: auto !important;
}

.tb-product-loop__wishlist .tb-wishlist-btn {
	width: 34px !important;
	height: 34px !important;
	min-width: 34px !important;
	min-height: 34px !important;
}

.tb-product-loop__wishlist .tb-wishlist-btn__icon {
	width: 18px;
	height: 18px;
}

@media (max-width: 640px) {
	.tb-wishlist {
		padding-top: 20px;
	}

	.tb-wishlist__title {
		font-size: 1.4rem;
	}

	.tb-wishlist__card {
		flex-wrap: wrap;
	}

	.tb-wishlist__remove {
		width: 100%;
		text-align: right;
	}
}

body.tb-wishlist-page .entry-title,
body.tb-wishlist-page .page-header .entry-title {
	display: none !important;
}
