/*
 * "Editorial" block style — applied to a `workbench/shop-collection`
 * block via `is-style-editorial`. Magazine / restaurant-menu
 * sophistication: clean white cards, large serif italic titles in
 * a deep burgundy, a thin typographic rule, and muted body copy.
 *
 * Targets both `.wb-category-card` (categories mode) and
 * `.wb-product-card` (products mode).
 */

.wp-block-workbench-shop-collection.is-style-editorial .wb-category-card,
.wp-block-workbench-shop-collection.is-style-editorial .wb-product-card {
	background: #ffffff;
	border-radius: 2px;
	padding: 1.25rem 1.5rem 1.75rem;
	box-shadow:
		0 6px 16px rgba(40, 30, 20, 0.12),
		0 1px 3px rgba(40, 30, 20, 0.08);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.wp-block-workbench-shop-collection.is-style-editorial .wb-category-card:hover,
.wp-block-workbench-shop-collection.is-style-editorial .wb-product-card:hover {
	transform: translateY(-3px);
	box-shadow:
		0 12px 24px rgba(40, 30, 20, 0.16),
		0 2px 6px rgba(40, 30, 20, 0.1);
}

/* Image wrap: tight rectangle, single subtle border-radius. */
.wp-block-workbench-shop-collection.is-style-editorial
	.wb-category-card__image-wrap,
.wp-block-workbench-shop-collection.is-style-editorial
	.wb-product-card__image-wrap {
	margin: -1.25rem -1.5rem 1.25rem;
	border-radius: 0;
	overflow: hidden;
}

/*
 * Title: typography (font-family, size, weight) flows through from
 * the user's controls (CategoryHeaderPanel — `categoryFontFamily`
 * etc.) which read from theme.json's `typography.fontFamilies`
 * preset. This style only adds layout (margin); the previous
 * typographic rule below the title was removed at the user's request.
 */
.wp-block-workbench-shop-collection.is-style-editorial .wb-category-card__title,
.wp-block-workbench-shop-collection.is-style-editorial .wb-product-card__title {
	margin: 0 0 0.6rem;
}

/* Description: typography again flows from controls + theme. We
 * only add minimal layout (margin reset, line-height). */
.wp-block-workbench-shop-collection.is-style-editorial
	.wb-category-card__description,
.wp-block-workbench-shop-collection.is-style-editorial
	.wb-product-card__description {
	line-height: 1.55;
	margin: 0;
}

/* Reduced motion: keep the static look — no hover lift. */
@media (prefers-reduced-motion: reduce) {
	.wp-block-workbench-shop-collection.is-style-editorial .wb-category-card,
	.wp-block-workbench-shop-collection.is-style-editorial .wb-product-card {
		transition: none;
	}
	.wp-block-workbench-shop-collection.is-style-editorial
		.wb-category-card:hover,
	.wp-block-workbench-shop-collection.is-style-editorial
		.wb-product-card:hover {
		transform: none;
	}
}
