/* ===== CPGT Wishlist Page ===== */
.cpgt-wl,
.cpgt-wl-hero {
	box-sizing: border-box;
}
.cpgt-wl * { box-sizing: border-box; }

/* Full-width grey banner with the title centered — breaks out of the
   page's own content width using the same viewport-width technique
   used elsewhere in this plugin, so it spans edge-to-edge regardless
   of what column/container it's sitting inside. */
.cpgt-wl-hero {
	width: 100vw;
	max-width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	background: #f4f2ee;
	text-align: center;
	padding: 44px 24px;
}
.cpgt-wl-title {
	font-size: 22px;
	font-weight: 600;
	margin: 0;
	color: #111;
}
.cpgt-wl-intro {
	font-size: 14px;
	color: #666;
	margin: 8px 0 0;
}

.cpgt-wl {
	max-width: 1300px;
	margin: 0 auto;
	padding: 32px 32px 70px;
}

.cpgt-wl-loading,
.cpgt-wl-empty {
	padding: 60px 0;
	text-align: center;
	color: #777;
	font-size: 14px;
}
.cpgt-wl-empty p { margin: 0 0 14px; font-size: 15px; }
.cpgt-wl-shop-link {
	display: inline-block;
	background: #111;
	color: #fff !important;
	text-decoration: none !important;
	padding: 12px 26px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	border-radius: 4px;
}
.cpgt-wl-shop-link:hover { background: #333; }

.cpgt-wl-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px 20px;
}
@media (max-width: 1024px) {
	.cpgt-wl-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
	.cpgt-wl-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }
}
@media (max-width: 420px) {
	.cpgt-wl-grid { grid-template-columns: 1fr; }
}

.cpgt-wl-item {
	position: relative;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.cpgt-wl-item-link { display: block; background: #f4f2ee; }
.cpgt-wl-item-link img {
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	display: block;
}
.cpgt-wl-item-body { padding: 14px 14px 16px; flex: 1; display: flex; flex-direction: column; }
.cpgt-wl-item-title {
	font-size: 13px;
	font-weight: 600;
	margin: 0 0 6px;
	line-height: 1.35;
}
.cpgt-wl-item-title a { color: #111; text-decoration: none; }
.cpgt-wl-item-title a:hover { text-decoration: underline; }
.cpgt-wl-item-price {
	font-size: 13px;
	color: #111;
	margin-bottom: 12px;
}
.cpgt-wl-item-price del { color: #999; font-weight: 400; margin-right: 6px; }
.cpgt-wl-item-price ins { text-decoration: none; font-weight: 700; }
.cpgt-wl-item-actions {
	margin-top: auto;
	display: flex;
	gap: 8px;
}
.cpgt-wl-add,
.cpgt-wl-view {
	flex: 1 1 auto;
	text-align: center;
	background: #111 !important;
	color: #fff !important;
	text-decoration: none !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	padding: 10px 8px !important;
	border-radius: 4px !important;
	border: none !important;
	cursor: pointer;
}
.cpgt-wl-add:hover,
.cpgt-wl-view:hover { background: #333 !important; }
.cpgt-wl-add.is-disabled {
	background: #ddd !important;
	color: #888 !important;
	cursor: not-allowed;
	pointer-events: none;
}
.cpgt-wl-remove {
	flex: 0 0 38px !important;
	width: 38px !important;
	min-width: 38px !important;
	max-width: 38px !important;
	height: auto !important;
	align-self: stretch;
	box-sizing: border-box !important;
	background: #fff !important;
	background-image: none !important;
	border: 1px solid #ddd !important;
	border-radius: 4px !important;
	color: #999 !important;
	cursor: pointer !important;
	font-size: 16px !important;
	line-height: 1 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin: 0 !important;
	padding: 0 !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	font-family: inherit !important;
	box-shadow: none !important;
}
.cpgt-wl-remove:hover { background: #b23b3b !important; border-color: #b23b3b !important; color: #fff !important; }
