/*
 * "Chalkboard" block style — applied to a `workbench/shop-collection`
 * block via `is-style-chalkboard`. Cards become slate-coloured
 * chalkboards with cream "chalk" text, slight inset glow, and a
 * subtle dust noise. Hand-drawn cursive title, sparse details —
 * café "today's specials" treatment.
 *
 * Targets both `.wb-category-card` (categories mode) and
 * `.wb-product-card` (products mode).
 */

.wp-block-workbench-shop-collection.is-style-chalkboard .wb-category-card,
.wp-block-workbench-shop-collection.is-style-chalkboard .wb-product-card {
	background-color: #2a3128;
	background-image: radial-gradient(
			circle at 20% 30%,
			rgba(255, 255, 255, 0.04) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 70%,
			rgba(255, 255, 255, 0.025) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 60% 20%,
			rgba(255, 255, 255, 0.02) 0%,
			transparent 40%
		);
	color: #f4ede0;
	padding: 1.25rem 1.4rem 1.5rem;
	border-radius: 6px;
	box-shadow:
		inset 0 0 30px rgba(0, 0, 0, 0.35),
		0 8px 18px rgba(0, 0, 0, 0.25),
		0 2px 4px rgba(0, 0, 0, 0.18);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
	overflow: hidden;
	position: relative;
}

.wp-block-workbench-shop-collection.is-style-chalkboard .wb-category-card:hover,
.wp-block-workbench-shop-collection.is-style-chalkboard .wb-product-card:hover {
	transform: translateY(-2px);
	box-shadow:
		inset 0 0 30px rgba(0, 0, 0, 0.35),
		0 12px 24px rgba(0, 0, 0, 0.32),
		0 3px 6px rgba(0, 0, 0, 0.22);
}

/* Image wrap: tighter, slight inset so the chalkboard frame
 * surrounds the image. Keep image colours intact. */
.wp-block-workbench-shop-collection.is-style-chalkboard
	.wb-category-card__image-wrap,
.wp-block-workbench-shop-collection.is-style-chalkboard
	.wb-product-card__image-wrap {
	border-radius: 4px;
	margin-bottom: 0.85rem;
	background: rgba(0, 0, 0, 0.2);
}

/* Title: hand-drawn cursive, slight chalk shadow. */
.wp-block-workbench-shop-collection.is-style-chalkboard
	.wb-category-card__title,
.wp-block-workbench-shop-collection.is-style-chalkboard
	.wb-product-card__title {
	font-family: "Caveat", "Patrick Hand", "Georgia", serif;
	font-size: 1.55em;
	font-weight: 600;
	letter-spacing: 0.01em;
	line-height: 1.15;
	margin: 0.25rem 0 0.5rem;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
	color: inherit;
}

.wp-block-workbench-shop-collection.is-style-chalkboard
	.wb-category-card__description,
.wp-block-workbench-shop-collection.is-style-chalkboard
	.wb-product-card__description {
	color: inherit;
	opacity: 0.78;
	font-style: italic;
	font-size: 0.95em;
	line-height: 1.45;
}

/* Price: chalk-bold, prominent. */
.wp-block-workbench-shop-collection.is-style-chalkboard
	.wb-product-card__price {
	font-family: "Caveat", "Patrick Hand", "Georgia", serif;
	font-size: 1.4em;
	font-weight: 700;
	color: inherit;
	opacity: 1;
	margin-top: 0.4rem;
}

/* Cart button: outlined chalk-on-slate look. */
.wp-block-workbench-shop-collection.is-style-chalkboard
	.wb-product-card__button,
.wp-block-workbench-shop-collection.is-style-chalkboard
	.wb-product-card__cart-btn {
	background: rgba(255, 255, 255, 0.08);
	border: 1.5px dashed rgba(244, 237, 224, 0.45);
	color: inherit;
	font-family: "Caveat", "Patrick Hand", "Georgia", serif;
	font-size: 1.15em;
	font-weight: 600;
}

.wp-block-workbench-shop-collection.is-style-chalkboard
	.wb-product-card__button:hover,
.wp-block-workbench-shop-collection.is-style-chalkboard
	.wb-product-card__cart-btn:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(244, 237, 224, 0.65);
	opacity: 1;
}

/* Sale badge: chalk yellow on dark. */
.wp-block-workbench-shop-collection.is-style-chalkboard
	.wb-product-card__badge {
	background: rgba(255, 230, 130, 0.95);
	color: #2a3128;
	font-family: "Caveat", "Patrick Hand", "Georgia", serif;
	font-weight: 700;
}

/* Reduced motion: drop transitions + hover lift. */
@media (prefers-reduced-motion: reduce) {
	.wp-block-workbench-shop-collection.is-style-chalkboard .wb-category-card,
	.wp-block-workbench-shop-collection.is-style-chalkboard .wb-product-card {
		transition: none;
	}
	.wp-block-workbench-shop-collection.is-style-chalkboard
		.wb-category-card:hover,
	.wp-block-workbench-shop-collection.is-style-chalkboard
		.wb-product-card:hover {
		transform: none;
	}
}
