/* Product catalog pages */

.site-main--catalog,
.site-main--product {
	max-width: none;
	padding-block: 0;
}

.aot-page-header {
	padding: 3rem 0 2rem;
	background: linear-gradient(180deg, #eef4f8, var(--aot-surface));
}

.aot-page-header--compact {
	padding-bottom: 1.5rem;
}

.aot-page-header__title {
	margin: 0;
	color: var(--aot-brand);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.aot-page-header__lead {
	margin: 0.75rem 0 0;
	max-width: 42rem;
	color: var(--aot-muted);
}

.aot-breadcrumb {
	margin: 0 0 0.5rem;
	color: var(--aot-muted);
	font-size: 0.9rem;
}

.aot-breadcrumb a {
	color: var(--aot-accent-dark);
}

.aot-category-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 2rem 0;
}

.aot-category-nav__item {
	padding: 0.5rem 1rem;
	border: 1px solid #d7e2ea;
	border-radius: 999px;
	background: var(--aot-white);
	color: var(--aot-brand);
	text-decoration: none !important;
	font-weight: 500;
}

.aot-category-nav__item.is-active,
.aot-category-nav__item:hover {
	background: var(--aot-brand);
	border-color: var(--aot-brand);
	color: var(--aot-white) !important;
}

.aot-product-list-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
	margin-bottom: 2rem;
}

.aot-product-list-card {
	height: 100%;
}

.aot-product-list-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid #e3eaf0;
	border-radius: 0.5rem;
	overflow: hidden;
	background: var(--aot-white);
	color: inherit;
	text-decoration: none !important;
	transition: box-shadow 0.2s, transform 0.2s;
}

.aot-product-list-card__link:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgb(10 37 64 / 10%);
}

.aot-product-list-card__image {
	aspect-ratio: 4 / 3;
	background: #e8f0f6;
}

.aot-product-list-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.aot-product-list-card__image--placeholder {
	background: linear-gradient(135deg, #d9e8f2, #eef4f8);
}

.aot-product-list-card__body {
	padding: 1.25rem;
}

.aot-product-list-card__title {
	margin: 0 0 0.5rem;
	font-size: 1.1rem;
	color: var(--aot-brand);
}

.aot-product-list-card__excerpt {
	margin: 0;
	color: var(--aot-muted);
	font-size: 0.95rem;
}

.aot-product-list-card__more {
	display: inline-block;
	margin-top: 1rem;
	color: var(--aot-accent-dark);
	font-weight: 600;
}

.aot-product-single {
	display: grid;
	gap: 2rem;
	padding-block: 2rem 3rem;
}

@media (min-width: 48rem) {
	.aot-product-single {
		grid-template-columns: 1fr 1.1fr;
		align-items: start;
	}
}

.aot-product-single__media img {
	width: 100%;
	border-radius: 0.5rem;
	border: 1px solid #e3eaf0;
}

.aot-product-sku {
	margin: 0.5rem 0 0;
	color: var(--aot-muted);
}

.aot-product-block {
	margin-top: 2rem;
}

.aot-product-block h2 {
	margin: 0 0 0.75rem;
	font-size: 1.2rem;
	color: var(--aot-brand);
}

.aot-product-single__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
}
