/**
 * SJ Shop Theme — business type and storefront hero styles.
 */

.sj-shop-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 320px;
	padding: 3rem 1.5rem;
	background: linear-gradient(
		135deg,
		var(--sj-color-primary, #007cba) 0%,
		var(--sj-color-secondary, #00a0d2) 100%
	);
	background-size: cover;
	background-position: center;
	color: #fff;
	text-align: center;
}

.sj-shop-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
}

.sj-shop-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 760px;
	margin: 0 auto;
}

.sj-shop-hero__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	line-height: 1.15;
	color: #fff;
}

.sj-shop-hero__subtitle {
	margin: 0 0 1.5rem;
	font-size: clamp(1rem, 2vw, 1.25rem);
	opacity: 0.95;
}

.sj-shop-hero__button.button {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border: 0;
	border-radius: 4px;
	background: #fff;
	color: var(--sj-color-primary-dark, #005a87);
	font-weight: 600;
	text-decoration: none;
}

.sj-shop-hero__button.button:hover,
.sj-shop-hero__button.button:focus {
	background: #f8fafc;
	color: var(--sj-color-primary-dark, #005a87);
}

/* Business-type accents */
.sj-shop-hero--restaurant,
.sj-shop-type-restaurant .sj-shop-hero {
	background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.sj-shop-hero--sub-shop,
.sj-shop-type-sub-shop .sj-shop-hero {
	background: linear-gradient(135deg, #c1440e 0%, #ff8c42 100%);
}

.sj-shop-hero--clothes,
.sj-shop-type-clothes .sj-shop-hero {
	background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
}

.woocommerce-shop-front {
	padding-top: 0;
}

.woocommerce-shop-front .sj-shop-hero + .woocommerce {
	padding: 2rem 1rem 3rem;
}

@media (min-width: 768px) {
	.sj-shop-hero {
		min-height: 380px;
		padding: 4rem 2rem;
	}
}
