/* =========================================================
   TLH Wishlist Pages
   ========================================================= */

.tlh-wishlist-page {
	width: 100%;
}

.tlh-wishlist-page__header {
	margin-bottom: 36px;
}

.tlh-wishlist-page__title {
	margin: 0 0 10px;
	font-family: "Shippori Mincho", serif;
	font-size: 38px;
	line-height: 1.1;
	color: #1f1f1f;
}

.tlh-wishlist-page__intro {
	margin: 0;
	font-family: "Shippori Mincho", serif;
	font-size: 16px;
	line-height: 1.7;
	color: rgba(0, 0, 0, 0.68);
	max-width: 760px;
}

.tlh-wishlist-page__guest-actions {
	display: flex;
	gap: 12px;
	margin: 0 0 32px;
	flex-wrap: wrap;
}

/* Guest/account action buttons */
/* Buttons */
.tlh-wishlist-page__action-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 20px;
	border: 1px solid #1f1f1f;
	background: transparent !important;
	color: #1f1f1f !important;
	font-family: "Shippori Mincho", serif;
	text-decoration: none !important;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	box-shadow: none !important;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.tlh-wishlist-page__action-button:hover,
.tlh-wishlist-page__action-button:focus {
	border-color: #FE5000;
	color: #FE5000 !important;
	background: transparent !important;
	box-shadow: none !important;
	outline: none;
	text-decoration: none !important;
}

.tlh-wishlist-page__action-button--secondary {
	opacity: 0.82;
}

.tlh-wishlist-page__empty-actions {
	margin-top: 20px;
}

.tlh-wishlist-page__empty {
	padding: 12px 0 18px;
}

.tlh-wishlist-page__empty-title {
	margin: 0 0 8px;
	font-family: "Shippori Mincho", serif;
	font-size: 24px;
	line-height: 1.3;
	color: #1f1f1f;
}

.tlh-wishlist-page__empty-text {
	margin: 0;
	font-family: "Shippori Mincho", serif;
	font-size: 15px;
	line-height: 1.7;
	color: rgba(0, 0, 0, 0.68);
}

.tlh-wishlist-page__section {
	margin-top: 40px;
}

.tlh-wishlist-page__section-title {
	margin: 0 0 22px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	font-family: "Shippori Mincho", serif;
	font-size: 24px;
	line-height: 1.2;
	color: #1f1f1f;
}

.tlh-wishlist-page__section--sold .tlh-wishlist-page__section-title {
	opacity: 0.8;
}

.tlh-wishlist-page__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

/* Wishlist card removal animation */
.tlh-wishlist-page-item {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 16px;
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.22s ease, transform 0.22s ease;
}

.tlh-wishlist-page-item.is-removing {
	opacity: 0;
	transform: translateY(8px);
	pointer-events: none;
}

.tlh-wishlist-page-item__image {
	display: block;
	background: #f8f8f6;
	text-decoration: none;
	overflow: hidden;
	aspect-ratio: 1 / 1;
}

.tlh-wishlist-page-item__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tlh-wishlist-page-item__content {
	min-width: 0;
	padding-right: 28px;
}

.tlh-wishlist-page-item__title {
	margin: 0 0 16px;
	font-family: "Shippori Mincho", serif;
	font-size: 15px;
	line-height: 1.55;
	font-weight: 400;
}

.tlh-wishlist-page-item__title a {
	color: #1f1f1f !important;
	text-decoration: none !important;
}

.tlh-wishlist-page-item__title a:hover,
.tlh-wishlist-page-item__title a:focus {
	color: #FE5000 !important;
	outline: none;
	text-decoration: none !important;
}

.tlh-wishlist-page-item__meta {
	font-family: "Shippori Mincho", serif;
	font-size: 16px;
	line-height: 1.4;
	margin-bottom: 16px;
}

.tlh-wishlist-page-item__price {
	color: #1f1f1f;
}

.tlh-wishlist-page-item__sold {
	color: rgba(0, 0, 0, 0.58);
}

@media (max-width: 1024px) {
	.tlh-wishlist-page__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.tlh-wishlist-page__title {
		font-size: 30px;
	}

	.tlh-wishlist-page__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

.tlh-wishlist-page-item__remove {
	position: absolute;
	top: 0;
	right: 0;
	width: 26px;
	height: 26px;
	padding: 0;
	margin: 0;
	border: none !important;
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
	color: #1f1f1f;
	font-family: "Shippori Mincho", serif;
	font-size: 24px;
	line-height: 1;
	text-decoration: none !important;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.tlh-wishlist-page-item__remove:hover,
.tlh-wishlist-page-item__remove:focus {
	color: #FE5000;
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
	outline: none;
	text-decoration: none !important;
}

.tlh-wishlist-page-item__cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 18px;
	border: 1px solid #1f1f1f;
	background: transparent !important;
	color: #1f1f1f !important;
	font-family: "Shippori Mincho", serif;
	font-size: 14px;
	line-height: 1.2;
	text-decoration: none !important;
	box-shadow: none !important;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.tlh-wishlist-page-item__cart:hover,
.tlh-wishlist-page-item__cart:focus {
	background: transparent !important;
	color: #FE5000 !important;
	border-color: #FE5000;
	box-shadow: none !important;
	outline: none;
	text-decoration: none !important;
}

.tlh-wishlist-page__empty.is-hidden,
.tlh-wishlist-page__section.is-hidden {
	display: none;
}

/* Public guest wishlist page: hide native page title */
.page-id-11238 .page-header,
.page-id-11238 .entry-title {
	display: none !important;
}


/* Public guest wishlist page: boxed layout + vertical spacing */
.page-id-11238 .page-content {
	max-width: 1240px;
	margin: 0 auto;
	padding: 8em 32px !important;
	box-sizing: border-box;
}

/* Make the shortcode output use the full boxed width cleanly */
.page-id-11238 .page-content .tlh-wishlist-page--guest {
	max-width: none;
	margin: 0 !important;
	padding: 0 !important;
}

.tlh-woocommerce-notice__inner {
	display: none;
}