/**
 * Selection View — layout.
 *
 * @package PasionGift_App
 */

.pg-selection-view {
	display: flex;
	flex-direction: column;
	gap: var(--pg-section-gap);
	width: 100%;
	min-width: 0;
}

.pg-selection-hero {
	display: flex;
	flex-direction: column;
	gap: var(--pg-space-sm);
	width: 100%;
	min-width: 0;
	padding: var(--pg-space-xl) var(--pg-shell-padding-x) 0;
}

.pg-selection-hero__title {
	margin: 0;
	font-family: var(--pg-font-family);
	font-size: var(--pg-type-hero-title);
	font-weight: var(--pg-font-weight-semibold);
	line-height: var(--pg-line-height-tight);
	color: var(--pg-color-text);
	letter-spacing: var(--pg-letter-spacing-tight);
}

.pg-selection-hero__subtitle {
	margin: 0;
	max-width: 22rem;
	font-family: var(--pg-font-family);
	font-size: var(--pg-type-hero-subtitle);
	font-weight: var(--pg-font-weight-medium);
	line-height: var(--pg-line-height-normal);
	color: var(--pg-color-text-muted);
}

.pg-selection-status {
	padding: 0 var(--pg-shell-padding-x);
}

.pg-selection-status__message {
	margin: 0;
	font-family: var(--pg-font-family);
	font-size: var(--pg-type-body);
	line-height: var(--pg-line-height-normal);
	color: var(--pg-color-text-muted);
}

.pg-selection-grid {
	width: 100%;
	min-width: 0;
	padding: 0 var(--pg-shell-padding-x);
}

.pg-selection-grid__items {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--pg-grid-gap);
	width: 100%;
	min-width: 0;
}

.pg-selection-item {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	height: 100%;
}

.pg-selection-item .pg-product-card {
	flex: 1 1 auto;
	height: 100%;
	min-width: 0;
}

/* Guard against WC/default link styles if cascade order shifts. */
.pg-selection-item .pg-product-card__link {
	text-decoration: none;
	color: inherit;
}

.pg-selection-item .pg-product-card__title {
	text-decoration: none;
}

.pg-selection-item__remove {
	position: absolute;
	top: var(--pg-space-xs, 0.25rem);
	left: var(--pg-space-xs, 0.25rem);
	right: auto;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	padding: 0;
	border: 1px solid var(--pg-color-border-subtle);
	border-radius: var(--pg-radius-full, 999px);
	background-color: var(--pg-color-surface);
	color: var(--pg-color-text);
	font-size: 1.125rem;
	line-height: 1;
	cursor: pointer;
}

.pg-selection-item__remove:focus-visible {
	outline: 2px solid var(--pg-color-brand-wine);
	outline-offset: 2px;
}

@media (min-width: 768px) {
	.pg-selection-view {
		gap: var(--pg-space-xl);
	}

	.pg-selection-hero {
		padding-top: var(--pg-space-2xl);
		padding-left: var(--pg-space-xl);
		padding-right: var(--pg-space-xl);
	}

	.pg-selection-status,
	.pg-selection-grid {
		padding-left: var(--pg-space-xl);
		padding-right: var(--pg-space-xl);
	}

	.pg-selection-grid__items {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.pg-selection-grid__items {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}
