/* Otakuno Sections - shared frontend styles */

.otk-hero-banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	text-align: center;
	color: #fff;
}
.otk-hero-banner__overlay {
	position: absolute;
	inset: 0;
	background: #000;
}
.otk-hero-banner__content {
	position: relative;
	z-index: 1;
	max-width: 640px;
	padding: 24px;
}
.otk-hero-banner__heading {
	font-size: clamp( 28px, 5vw, 48px );
	margin: 0 0 12px;
	color: #fff;
}
.otk-hero-banner__subheading {
	font-size: 18px;
	margin: 0 0 20px;
	opacity: 0.9;
}
.otk-hero-banner__button {
	display: inline-block;
	background: #e8590c;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	padding: 12px 28px;
	border-radius: 4px;
}
.otk-hero-banner__button:hover {
	background: #c94e0a;
	color: #fff;
}

.otk-text-image {
	display: flex;
	align-items: center;
	gap: 40px;
	padding: 48px 24px;
	flex-wrap: wrap;
}
.otk-text-image--image-left {
	flex-direction: row-reverse;
}
.otk-text-image__text,
.otk-text-image__media {
	flex: 1 1 320px;
}
.otk-text-image__heading {
	font-size: 32px;
	margin: 0 0 16px;
}
.otk-text-image__body p:last-child {
	margin-bottom: 0;
}
.otk-text-image__button {
	display: inline-block;
	margin-top: 16px;
	background: #111;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	padding: 10px 24px;
	border-radius: 4px;
}
.otk-text-image__media img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 6px;
}

.otk-cta-banner {
	text-align: center;
	padding: 56px 24px;
}
.otk-cta-banner__heading {
	margin: 0 0 12px;
	font-size: 32px;
	color: inherit;
}
.otk-cta-banner__text {
	margin: 0 0 24px;
	opacity: 0.9;
}
.otk-cta-banner__button {
	display: inline-block;
	font-weight: 700;
	padding: 12px 28px;
	border-radius: 4px;
	text-decoration: none;
}

.otk-featured-products {
	padding: 40px 24px;
}
.otk-featured-products__heading {
	text-align: center;
	font-size: 28px;
	margin: 0 0 24px;
}
.otk-featured-products__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 200px, 1fr ) );
	gap: 24px;
}
.otk-featured-products__item a {
	display: block;
	text-decoration: none;
	color: inherit;
	text-align: center;
}
.otk-featured-products__item img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 6px;
	margin-bottom: 10px;
}
.otk-featured-products__title {
	display: block;
	font-weight: 600;
	margin-bottom: 4px;
}
.otk-featured-products__price {
	display: block;
	color: #d71920;
	font-weight: 700;
}
